:root {
  --bg: #050609;
  --surface: #11131a;
  --paper: #f7f5ee;
  --muted: #afb6bf;
  --lime: #d8ff22;
  --pink: #ff20be;
  --cyan: #22dffb;
  --gold: #e6ba60;
  --max: 1420px;
  color-scheme: dark;
  font-family:
    Inter,
    Manrope,
    Segoe UI,
    Arial,
    sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background:
    radial-gradient(circle at 90% 10%, rgba(255, 32, 190, 0.08), transparent 26%), var(--bg);
  color: var(--paper);
}
a {
  color: inherit;
}
.skip {
  position: fixed;
  z-index: 100;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  transform: translateY(-150%);
  background: #fff;
  color: #000;
}
.skip:focus {
  transform: none;
}
.topbar {
  position: relative;
  z-index: 20;
  display: flex;
  width: min(100% - 40px, var(--max));
  min-height: 84px;
  margin: auto;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #252a31;
}
.brand {
  display: flex;
  align-items: baseline;
  color: #fff;
  font-size: 25px;
  font-weight: 900;
  letter-spacing: -0.04em;
  text-decoration: none;
}
.brand span {
  color: var(--lime);
}
.brand small {
  margin-left: 14px;
  color: #7f8790;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}
.topbar nav,
footer nav,
.actions {
  display: flex;
  align-items: center;
  gap: 22px;
}
.topbar nav a,
footer nav a {
  color: #c3c9d0;
  font-size: 13px;
  text-decoration: none;
}
.topbar .nav-cta {
  padding: 10px 16px;
  border: 1px solid #6c7b2b;
  border-radius: 999px;
  color: var(--lime);
}
.start-image {
  position: relative;
  width: min(100% - 40px, 1731px);
  aspect-ratio: 1731/909;
  margin: 28px auto 0;
  overflow: hidden;
  border: 1px solid rgba(216, 255, 34, 0.25);
  border-radius: 28px;
  background: #000;
  box-shadow: 0 36px 120px #000;
}
.start-image:after {
  position: absolute;
  inset: 55% 0 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
  content: "";
}
.start-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.start-image figcaption {
  position: absolute;
  z-index: 2;
  right: 42px;
  bottom: 38px;
  display: flex;
  gap: 10px;
}
.button {
  display: inline-flex;
  min-height: 48px;
  padding: 12px 19px;
  align-items: center;
  justify-content: center;
  border: 1px solid #505763;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 850;
  text-decoration: none;
}
.button.primary {
  border-color: var(--lime);
  background: var(--lime);
  color: #050609;
}
.button.ghost {
  background: rgba(3, 4, 8, 0.76);
  backdrop-filter: blur(12px);
}
.intro,
.worlds,
.principles,
.module,
.booking,
.legal-copy {
  width: min(100% - 40px, var(--max));
  margin: auto;
}
.intro {
  padding: 110px 0 120px;
}
.eyebrow {
  margin: 0 0 18px;
  color: var(--lime);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}
.intro h1,
.worlds h2,
.principles h2,
.module h2,
.booking h2,
.legal-copy h1 {
  max-width: 1100px;
  margin: 0;
  font-size: clamp(46px, 7vw, 104px);
  line-height: 0.94;
  letter-spacing: -0.065em;
}
.intro h1 em,
.profile-hero h1 em {
  display: block;
  color: var(--lime);
  font-family: Georgia, serif;
  font-weight: 400;
}
.lead,
.copy {
  max-width: 850px;
  color: #bdc3ca;
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.65;
}
.trust {
  display: flex;
  margin-top: 45px;
  gap: 45px;
}
.trust span {
  display: grid;
  color: #8e969f;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.trust strong {
  color: #fff;
  font-size: 24px;
}
.worlds {
  padding-bottom: 120px;
}
.worlds > header {
  display: grid;
  margin-bottom: 42px;
  grid-template-columns: 1.2fr 0.65fr;
  gap: 50px;
  align-items: end;
}
.worlds > header p:last-child {
  color: var(--muted);
  line-height: 1.65;
}
.world-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.world-card {
  position: relative;
  display: flex;
  min-height: 520px;
  padding: 26px;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  border: 1px solid #30353c;
  border-radius: 22px;
  text-decoration: none;
  isolation: isolate;
}
.world-card:after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(to top, rgba(3, 3, 7, 0.98), rgba(3, 3, 7, 0.08) 75%);
  content: "";
}
.world-card img {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}
.world-card:hover img {
  transform: scale(1.04);
}
.world-card span,
.world-card small,
.media-card span,
.book-grid span,
.offer-grid span {
  color: var(--lime);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.world-card strong {
  margin: 10px 0 7px;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 0.96;
}
.book-card img {
  object-position: center 20%;
}
.book-card span,
.book-card small,
.books .eyebrow,
.books .number,
.books .book-grid span {
  color: var(--gold);
}
.ai-card span,
.ai-card small,
.ai-art .eyebrow,
.ai-art .number {
  color: var(--cyan);
}
.principles {
  padding: 100px 0 140px;
  border-top: 1px solid #282d33;
}
.principle-grid,
.offer-grid {
  display: grid;
  margin-top: 60px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid #3a4048;
  border-left: 1px solid #3a4048;
}
.principle-grid article,
.offer-grid article {
  min-height: 260px;
  padding: 25px;
  border-right: 1px solid #3a4048;
  border-bottom: 1px solid #3a4048;
}
.principle-grid article > span,
.offer-grid article > span {
  color: var(--lime);
  font-family: Georgia, serif;
  font-size: 28px;
}
.principle-grid h3,
.offer-grid h3 {
  margin: 75px 0 12px;
  font-size: 26px;
}
.principle-grid p,
.offer-grid p {
  color: #9da5ae;
  line-height: 1.6;
}
footer {
  display: flex;
  width: min(100% - 40px, var(--max));
  min-height: 170px;
  margin: auto;
  padding: 45px 0;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #2c3138;
}
footer > div {
  display: grid;
  gap: 7px;
}
footer span {
  color: #848d96;
  font-size: 11px;
}
.profile {
  --profile-accent: var(--lime);
  background:
    radial-gradient(circle at 15% 10%, rgba(255, 32, 190, 0.11), transparent 24%), #030207;
}
.profile.books {
  --profile-accent: var(--gold);
  background: radial-gradient(circle at 80% 10%, rgba(230, 186, 96, 0.1), transparent 25%), #05070b;
}
.profile.ai-art {
  --profile-accent: var(--cyan);
  background: radial-gradient(circle at 80% 12%, rgba(34, 223, 251, 0.1), transparent 26%), #010208;
}
.profile .brand span,
.profile .eyebrow,
.profile .number {
  color: var(--profile-accent);
}
.profile-hero {
  display: grid;
  width: min(100% - 40px, var(--max));
  min-height: 720px;
  margin: auto;
  grid-template-columns: minmax(0, 1fr) 330px;
  align-items: center;
  gap: 70px;
}
.profile-hero h1 {
  margin: 0;
  font-family: Georgia, serif;
  font-size: clamp(62px, 9vw, 138px);
  font-weight: 400;
  line-height: 0.82;
  letter-spacing: -0.075em;
}
.profile-hero h1 em {
  margin-top: 16px;
  color: var(--profile-accent);
  font-size: 0.54em;
}
.portrait {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--profile-accent) 45%, transparent);
  border-radius: 24px;
  background: #111;
}
.portrait img {
  display: block;
  width: 100%;
  height: 440px;
  object-fit: cover;
  object-position: center top;
}
.portrait figcaption,
.wide-art figcaption,
.artwork figcaption {
  padding: 14px;
  color: #aeb6bf;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.visual-hero {
  grid-template-columns: minmax(0, 0.72fr) minmax(460px, 1fr);
}
.wide-art {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(34, 223, 251, 0.35);
  border-radius: 25px;
  background: #05020c;
}
.wide-art img {
  display: block;
  width: 100%;
  min-height: 470px;
  object-fit: cover;
}
.marquee {
  display: flex;
  min-height: 62px;
  padding: 12px;
  align-items: center;
  justify-content: space-around;
  gap: 24px;
  overflow: hidden;
  border-block: 1px solid rgba(216, 255, 34, 0.3);
  background: #251032;
  color: var(--lime);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.13em;
  white-space: nowrap;
}
.module {
  display: grid;
  min-height: 440px;
  padding: 100px 0;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 55px;
  border-bottom: 1px solid #292d35;
}
.number {
  font-family: Georgia, serif;
  font-size: 70px;
}
.module h2,
.booking h2 {
  font-size: clamp(40px, 6vw, 76px);
}
.media-grid {
  display: grid;
  margin-top: 45px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px;
}
.media-card {
  overflow: hidden;
  border: 1px solid #343944;
  border-radius: 20px;
  background: #0e1017;
}
.media-card > img {
  display: block;
  width: 100%;
  height: 380px;
  object-fit: cover;
}
.media-card > div {
  display: grid;
  padding: 24px;
  gap: 12px;
}
.media-card h3,
.book-grid h3,
.offer-grid h3 {
  margin: 0;
  font-size: 30px;
}
.media-card audio {
  width: 100%;
}
.media-card small,
.book-grid small {
  padding-top: 10px;
  border-top: 1px solid #343944;
  color: #8f98a3;
}
.links a {
  padding: 13px 0;
  border-top: 1px solid #343944;
  color: var(--cyan);
  text-decoration: none;
}
.dimension {
  position: relative;
  min-height: 590px;
  margin-top: 42px;
  overflow: hidden;
  border: 1px solid rgba(34, 223, 251, 0.3);
  border-radius: 28px;
  background: radial-gradient(circle, #361347 0 8%, #071219 30%, #020205 68%);
  perspective: 900px;
}
.dimension i,
.dimension b {
  position: absolute;
  inset: 50%;
  width: 310px;
  height: 310px;
  margin: -155px;
  border: 4px solid var(--pink);
  border-radius: 50%;
  box-shadow:
    0 0 35px var(--pink),
    inset 0 0 28px var(--pink);
  animation: orbit 5s linear infinite;
}
.dimension i:nth-child(2) {
  width: 440px;
  height: 210px;
  margin: -105px -220px;
  border-color: var(--cyan);
  box-shadow: 0 0 35px var(--cyan);
  animation-direction: reverse;
  animation-duration: 4s;
  transform: rotateX(64deg);
}
.dimension i:nth-child(3) {
  width: 210px;
  height: 440px;
  margin: -220px -105px;
  border-color: var(--lime);
  box-shadow: 0 0 35px var(--lime);
  animation-duration: 3.4s;
  transform: rotateY(64deg);
}
.dimension b {
  width: 86px;
  height: 86px;
  margin: -43px;
  border-color: var(--gold);
  box-shadow: 0 0 45px var(--gold);
  animation-direction: reverse;
  animation-duration: 2.8s;
}
.helix-dimension:before,
.helix-dimension:after {
  position: absolute;
  top: 12%;
  bottom: 12%;
  left: calc(50% - 18px);
  width: 36px;
  border-radius: 50%;
  background: linear-gradient(var(--pink), var(--cyan), var(--lime), var(--pink));
  filter: blur(2px);
  content: "";
  animation: helix 3s ease-in-out infinite;
}
.helix-dimension:after {
  left: calc(50% - 18px);
  animation-delay: -1.5s;
}
@keyframes orbit {
  to {
    transform: rotateX(360deg) rotateY(540deg) rotateZ(360deg);
  }
}
@keyframes helix {
  0%,
  100% {
    transform: translateX(-65px) scaleX(0.55);
  }
  50% {
    transform: translateX(65px) scaleX(1.15);
  }
}
.book-grid {
  display: grid;
  margin-top: 45px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.book-grid article {
  overflow: hidden;
  border: 1px solid #3a352d;
  border-radius: 20px;
  background: #0c1118;
}
.book-grid img {
  display: block;
  width: 100%;
  height: 520px;
  object-fit: contain;
  background: #06080b;
}
.book-grid article > div {
  display: grid;
  padding: 22px;
  gap: 12px;
}
.book-grid p {
  color: #b6bdc5;
  line-height: 1.6;
}
.artwork {
  margin: 42px 0 0;
  overflow: hidden;
  border: 1px solid #2e3943;
  border-radius: 25px;
}
.artwork img {
  display: block;
  width: 100%;
}
.offer-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.booking {
  display: flex;
  min-height: 420px;
  padding: 90px 0;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}
.booking p {
  max-width: 780px;
  color: #adb5be;
  line-height: 1.65;
}
.legal-copy {
  max-width: 980px;
  padding: 100px 0 140px;
}
.legal-copy h1 {
  font-size: clamp(48px, 7vw, 90px);
}
.legal-copy article {
  padding: 35px 0;
  border-top: 1px solid #343a42;
}
.legal-copy article:first-of-type {
  margin-top: 60px;
}
.legal-copy h2 {
  margin: 0 0 14px;
  font-size: 30px;
}
.legal-copy p {
  color: #bbc2ca;
  line-height: 1.75;
}
@media (max-width: 960px) {
  .worlds > header,
  .profile-hero,
  .visual-hero,
  .module {
    grid-template-columns: 1fr;
  }
  .world-grid,
  .book-grid {
    grid-template-columns: 1fr;
  }
  .profile-hero {
    padding: 70px 0;
  }
  .portrait {
    width: min(100%, 560px);
  }
  .wide-art {
    order: 2;
  }
  .module {
    gap: 20px;
  }
  .booking {
    flex-direction: column;
    align-items: flex-start;
  }
  .principle-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .world-card {
    min-height: 440px;
  }
}
@media (max-width: 680px) {
  .topbar {
    width: min(100% - 24px, var(--max));
    min-height: 72px;
  }
  .brand small,
  .topbar nav a:not(.nav-cta) {
    display: none;
  }
  .topbar nav {
    gap: 8px;
  }
  .start-image {
    width: calc(100% - 16px);
    min-height: 330px;
    margin-top: 8px;
    border-radius: 18px;
  }
  .start-image img {
    object-position: center;
  }
  .start-image figcaption {
    right: 14px;
    bottom: 14px;
    left: 14px;
    justify-content: center;
  }
  .start-image .ghost {
    display: none;
  }
  .intro,
  .worlds,
  .principles,
  .module,
  .booking,
  .legal-copy,
  .profile-hero {
    width: min(100% - 28px, var(--max));
  }
  .intro {
    padding: 75px 0;
  }
  .intro h1,
  .worlds h2,
  .principles h2,
  .profile-hero h1 {
    font-size: clamp(44px, 15vw, 68px);
  }
  .trust {
    gap: 18px;
    flex-wrap: wrap;
  }
  .principle-grid,
  .offer-grid,
  .media-grid {
    grid-template-columns: 1fr;
  }
  .module {
    padding: 70px 0;
  }
  .number {
    font-size: 48px;
  }
  .portrait img {
    height: 420px;
  }
  .wide-art img {
    min-height: 330px;
  }
  .dimension {
    min-height: 420px;
  }
  .dimension i {
    transform: scale(0.75);
  }
  footer {
    padding: 50px 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 26px;
  }
  footer nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .world-card img,
  .dimension *,
  .helix-dimension:before,
  .helix-dimension:after {
    animation: none !important;
    transition: none !important;
  }
}
