:root {
  --ink: #172635;
  --navy: #10283d;
  --navy-deep: #091a2b;
  --paper: #fbf4e9;
  --paper-deep: #f0e0cb;
  --cream: #fffaf3;
  --gold: #c88c3d;
  --gold-light: #edc779;
  --coral: #d56d57;
  --teal: #3a9b9a;
  --violet: #7660a8;
  --leaf: #71855b;
  --line: rgba(23, 38, 53, 0.16);
  --shadow: 0 30px 80px rgba(27, 36, 45, 0.14);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, Avenir, "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

body.menu-open { overflow: hidden; }

img { display: block; max-width: 100%; }
a { color: inherit; }
button, input { font: inherit; }
button { color: inherit; }

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 100;
  padding: 10px 16px;
  background: var(--cream);
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }

.reading-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: 3px;
  background: transparent;
}
.reading-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--coral), var(--gold), var(--teal), var(--violet));
  transform: scaleX(0);
  transform-origin: left center;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  width: 100%;
  height: 86px;
  padding: 0 clamp(24px, 5vw, 78px);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  transition: background 300ms ease, box-shadow 300ms ease, height 300ms ease;
}
.site-header.is-scrolled {
  height: 70px;
  background: rgba(251, 244, 233, 0.92);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--line);
}
.brand { width: 126px; text-decoration: none; }
.brand img { width: 100%; }
.desktop-nav { display: flex; align-items: center; gap: clamp(24px, 3vw, 48px); }
.desktop-nav a {
  position: relative;
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 1px;
  background: var(--gold);
  transition: right 200ms ease;
}
.desktop-nav a:hover::after, .desktop-nav a:focus-visible::after { right: 0; }
.header-cta {
  justify-self: end;
  padding: 9px 17px 8px;
  border: 1px solid var(--ink);
  border-radius: 100px;
  text-decoration: none;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease;
}
.header-cta:hover { color: var(--paper); background: var(--ink); }
.menu-button, .mobile-nav { display: none; }

.ambient-particles,
.cursor-magic {
  position: fixed;
  inset: 0;
  z-index: 45;
  overflow: hidden;
  pointer-events: none;
}
.ambient-particles { z-index: 8; }
.ambient-particle {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: var(--particle-size);
  height: var(--particle-size);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(241, 198, 112, 0.95) 0 20%, rgba(213, 109, 87, 0.45) 42%, transparent 72%);
  box-shadow: 0 0 12px rgba(217, 156, 72, 0.38);
  opacity: 0;
  animation: ambientDrift var(--duration) ease-in-out var(--delay) infinite;
}
@keyframes ambientDrift {
  0%, 100% { opacity: 0; transform: translate3d(0, 12px, 0) scale(0.45); }
  35% { opacity: var(--particle-opacity); }
  68% { opacity: 0.16; transform: translate3d(var(--drift), -22px, 0) scale(1); }
}
.cursor-spark {
  position: fixed;
  left: 0;
  top: 0;
  width: var(--spark-size, 5px);
  height: var(--spark-size, 5px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 246, 200, 1) 0 18%, rgba(225, 167, 80, 0.7) 34%, transparent 70%);
  box-shadow: 0 0 8px rgba(215, 148, 60, 0.45);
  transform: translate(-50%, -50%);
  animation: cursorFade 720ms ease-out forwards;
}
@keyframes cursorFade {
  to { opacity: 0; transform: translate(calc(-50% + var(--trail-x)), calc(-50% + var(--trail-y))) scale(0.15); }
}

.hero {
  position: relative;
  min-height: max(720px, 100svh);
  padding: 112px clamp(32px, 5vw, 90px) 70px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(390px, 0.85fr);
  grid-template-areas: "visual copy";
  align-items: center;
  align-content: center;
  gap: clamp(28px, 4vw, 76px);
  isolation: isolate;
  background:
    radial-gradient(circle at 18% 42%, rgba(213, 109, 87, 0.15), transparent 30%),
    radial-gradient(circle at 68% 28%, rgba(58, 155, 154, 0.1), transparent 28%),
    linear-gradient(135deg, #fffaf3 0%, #f7ead9 100%);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 57%;
  top: 7%;
  width: 1px;
  height: 86%;
  background: linear-gradient(transparent, rgba(184, 128, 58, 0.25), transparent);
  box-shadow: 15px 0 30px rgba(60, 45, 30, 0.05);
}
.hero-glow {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(7px);
  will-change: transform, opacity;
}
.hero-glow-one {
  width: 370px;
  height: 370px;
  top: -190px;
  right: 20%;
  background: rgba(119, 95, 170, 0.1);
  animation: atmosphereOne 17s ease-in-out infinite alternate;
}
.hero-glow-two {
  width: 260px;
  height: 260px;
  bottom: -140px;
  left: 38%;
  background: rgba(200, 140, 61, 0.1);
  animation: atmosphereTwo 21s ease-in-out -7s infinite alternate;
}
@keyframes atmosphereOne {
  0% { opacity: 0.26; transform: translate3d(-18px, -9px, 0) scale(0.92); }
  45% { opacity: 0.72; }
  100% { opacity: 0.38; transform: translate3d(26px, 22px, 0) scale(1.08); }
}
@keyframes atmosphereTwo {
  0% { opacity: 0.2; transform: translate3d(20px, 12px, 0) scale(0.88); }
  58% { opacity: 0.64; }
  100% { opacity: 0.3; transform: translate3d(-28px, -18px, 0) scale(1.12); }
}
.star-field span {
  position: absolute;
  width: var(--size);
  height: var(--size);
  top: var(--top);
  left: var(--left);
  border-radius: 50%;
  background: var(--gold);
  opacity: var(--opacity);
  animation: twinkle var(--speed) ease-in-out infinite alternate;
}
@keyframes twinkle { to { opacity: 0.12; transform: scale(0.55); } }

.hero-copy {
  grid-area: copy;
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 620px;
  align-self: center;
}
.eyebrow, .kicker {
  margin: 0 0 20px;
  color: var(--coral);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.eyebrow { display: flex; align-items: center; gap: 10px; }
.eyebrow span { width: 35px; height: 1px; background: currentColor; }
h1, h2, h3, p { text-wrap: pretty; }
h1, h2, h3 { font-family: var(--serif); font-weight: 400; line-height: 1.04; }
h1 {
  position: relative;
  margin: 0;
  font-size: clamp(3.1rem, 4.35vw, 5.55rem);
  letter-spacing: -0.055em;
  animation: titleAura 14s ease-in-out infinite;
}
h1 em {
  color: var(--coral);
  font-weight: 400;
  padding-inline: 0.025em 0.14em;
  margin-inline: -0.025em -0.14em;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  background: linear-gradient(105deg, var(--coral) 0 43%, #e4a27c 47%, #fff4d8 50%, #de9472 53%, var(--coral) 57% 100%);
  background-size: 350% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: inkShimmer 14s cubic-bezier(.42, 0, .32, 1) 1.8s infinite;
}
@keyframes titleAura {
  0%, 62%, 100% { text-shadow: 0 0 0 rgba(225,170,86,0); }
  76% { text-shadow: 0 0 21px rgba(255,235,184,0.13); }
  88% { text-shadow: 0 0 0 rgba(225,170,86,0); }
}
@keyframes inkShimmer {
  0%, 57% { background-position: 100% 50%; }
  82%, 100% { background-position: 0% 50%; }
}
.copy-glint,
.brand-spark {
  position: absolute;
  z-index: 7;
  width: var(--glint-size, 7px);
  height: var(--glint-size, 7px);
  border-radius: 50%;
  background: #fff9db;
  box-shadow: 0 0 6px #fff, 0 0 17px rgba(225, 155, 56, 0.72);
  opacity: 0;
  pointer-events: none;
  animation: artifactBlink var(--blink-duration, 4.7s) ease-in-out var(--blink-delay, 0s) infinite;
}
.copy-glint::before,
.copy-glint::after,
.brand-spark::before,
.brand-spark::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: rgba(255, 250, 220, 0.92);
  transform: translate(-50%, -50%);
}
.copy-glint::before,
.brand-spark::before { width: 1px; height: calc(var(--glint-size, 7px) * 3.4); }
.copy-glint::after,
.brand-spark::after { width: calc(var(--glint-size, 7px) * 3.4); height: 1px; }
@keyframes artifactBlink {
  0%, 66%, 100% { opacity: 0; transform: scale(0.1) rotate(0deg); }
  70% { opacity: 0.25; }
  74% { opacity: 1; transform: scale(1) rotate(22deg); }
  79% { opacity: 0.12; transform: scale(0.42) rotate(38deg); }
  83% { opacity: 0.7; transform: scale(0.75) rotate(48deg); }
  88% { opacity: 0; transform: scale(0.1) rotate(65deg); }
}
.copy-glint-one { left: 13%; top: 11%; --glint-size: 5px; --blink-duration: 6.7s; --blink-delay: -3.1s; }
.copy-glint-two { right: 5%; top: 47%; --glint-size: 6px; --blink-duration: 8.2s; --blink-delay: -6.4s; }
.copy-glint-three { left: 42%; bottom: 3%; --glint-size: 4px; --blink-duration: 5.9s; --blink-delay: -1.7s; }
.hero-intro {
  max-width: 620px;
  margin: 29px 0 16px;
  color: rgba(23, 38, 53, 0.77);
  font-size: clamp(1rem, 1.25vw, 1.2rem);
  line-height: 1.75;
}
.hero-product-line {
  max-width: 640px;
  margin: 0 0 32px;
  padding: 15px 18px;
  border: 1px solid rgba(200, 116, 95, 0.18);
  border-radius: 22px;
  color: rgba(23, 38, 53, 0.68);
  background: rgba(255, 250, 241, 0.52);
  box-shadow: 0 18px 45px rgba(108, 78, 48, 0.06);
  font-size: 0.92rem;
  line-height: 1.65;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  min-height: 54px;
  padding: 13px 23px;
  border: 0;
  border-radius: 3px;
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid rgba(16, 40, 61, 0.32);
  border-radius: 999px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(14px);
  box-shadow: 0 14px 35px rgba(16, 40, 61, 0.1), inset 0 1px 0 rgba(255,255,255,0.72);
}
.button-primary::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -45%;
  bottom: -45%;
  left: -42%;
  width: 28%;
  background: linear-gradient(90deg, transparent, rgba(255, 244, 203, 0.92), transparent);
  filter: blur(2px);
  transform: skewX(-18deg);
  animation: ctaShimmer 9s cubic-bezier(.35, 0, .3, 1) 2.4s infinite;
}
.button-primary:hover,
.button-primary:focus-visible {
  color: #fff;
  border-color: rgba(255,255,255,0.5);
  background: rgba(213, 109, 87, 0.88);
  box-shadow: 0 0 0 5px rgba(213,109,87,0.1), 0 12px 35px rgba(213,109,87,0.32), 0 0 34px rgba(237,199,121,0.34);
}
.button-primary:hover::before,
.button-primary:focus-visible::before { animation-duration: 1.25s; }
.button-primary:active {
  transform: translateY(0) scale(0.975);
  box-shadow: 0 0 0 7px rgba(237,199,121,0.16), 0 0 42px rgba(237,199,121,0.5);
}
.button-label,
.button-arrow { position: relative; z-index: 1; }
.button-arrow { animation: arrowBreathe 1.8s ease-in-out infinite; }
@keyframes ctaShimmer {
  0%, 62% { left: -42%; opacity: 0; }
  66% { opacity: 0.95; }
  82% { left: 118%; opacity: 0.55; }
  83%, 100% { left: 118%; opacity: 0; }
}
@keyframes arrowBreathe { 50% { transform: translateX(5px); } }
.hero-note { margin: 15px 0 0; color: rgba(23, 38, 53, 0.58); font-size: 0.73rem; }

.hero-visual {
  grid-area: visual;
  position: relative;
  z-index: 2;
  justify-self: start;
  align-self: center;
  width: min(100%, 1080px);
  --tilt-x: 0deg;
  --tilt-y: 0deg;
}
.hero-brand-lockup {
  position: relative;
  z-index: 5;
  width: clamp(180px, 16vw, 252px);
  margin: 0 auto 9px;
  text-align: center;
}
.hero-brand-lockup img { width: 100%; }
.brand-spark-symbol { left: 23.9%; top: 7.5%; --glint-size: 6px; --blink-duration: 4.9s; --blink-delay: -1.4s; }
.brand-spark-i { left: 82.4%; top: 29.8%; --glint-size: 5px; --blink-duration: 6.3s; --blink-delay: -4.8s; }
.hero-brand-lockup p {
  margin: -3px 0 0;
  color: rgba(23, 38, 53, 0.66);
  font-family: var(--serif);
  font-size: clamp(0.8rem, 1vw, 1rem);
  font-style: italic;
  letter-spacing: 0.08em;
}
.world-stage {
  position: relative;
  width: 100%;
  perspective: 1200px;
  transform: rotateX(var(--tilt-y)) rotateY(var(--tilt-x));
  transform-style: preserve-3d;
  transition: transform 700ms cubic-bezier(.2,.7,.2,1);
}
.hero-frame {
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 32px 35px rgba(44, 40, 44, 0.12));
  border-radius: 0;
  overflow: visible;
  animation: worldFloat 7s ease-in-out infinite;
}
@keyframes worldFloat {
  0%, 100% { transform: translateY(var(--hero-shift, 0px)) rotate(-0.35deg); }
  50% { transform: translateY(calc(var(--hero-shift, 0px) - 11px)) rotate(0.45deg); }
}
.hero-frame::after {
  content: none;
}
.hero-frame img {
  width: 100%;
  height: auto;
  object-fit: contain;
  transform: none;
}
.hero-world-art { mix-blend-mode: normal; }
.visual-whisper {
  position: relative;
  z-index: 5;
  margin: 8px 4% 0 0;
  font-family: var(--serif);
  font-size: 0.92rem;
  font-style: italic;
  color: rgba(23, 38, 53, 0.62);
  text-align: right;
}
.orbit {
  position: absolute;
  z-index: 3;
  border: 1px solid rgba(200, 140, 61, 0.34);
  border-radius: 50%;
  pointer-events: none;
}
.orbit i {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #f6d99c;
  box-shadow: 0 0 8px #fff5d8, 0 0 22px var(--gold);
}
.orbit-one { width: 78%; height: 52%; top: 8%; right: -4%; animation: orbitOne 20s ease-in-out infinite alternate; }
.orbit-one i { top: 9%; left: 18%; }
.orbit-two { width: 48%; height: 73%; bottom: -3%; left: 3%; animation: orbitTwo 25s ease-in-out infinite alternate; }
.orbit-two i { right: 7%; bottom: 19%; }
.orbit-three { width: 67%; height: 34%; left: 16%; bottom: 6%; border-color: rgba(118, 96, 168, 0.26); animation: orbitThree 17s ease-in-out infinite alternate; }
.orbit-three i { left: 8%; top: 34%; background: #d9c7ff; box-shadow: 0 0 8px #f7efff, 0 0 22px var(--violet); }
@keyframes orbitOne {
  from { transform: rotate(-18deg) translate3d(-4px, 0, 0); }
  to { transform: rotate(5deg) translate3d(12px, -9px, 0); }
}
@keyframes orbitTwo {
  from { transform: rotate(26deg) translate3d(0, 8px, 0); }
  to { transform: rotate(52deg) translate3d(-10px, -5px, 0); }
}
@keyframes orbitThree {
  from { transform: rotate(-5deg) scale(0.96); }
  to { transform: rotate(13deg) scale(1.05); }
}
.world-glint {
  position: absolute;
  z-index: 4;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff8d8;
  box-shadow: 0 0 10px #fff, 0 0 25px var(--gold);
  animation: glintPulse 2.8s ease-in-out infinite;
}
.world-glint::before,
.world-glint::after { content: ""; position: absolute; left: 50%; top: 50%; background: rgba(255,255,255,0.86); transform: translate(-50%, -50%); }
.world-glint::before { width: 1px; height: 28px; }
.world-glint::after { width: 28px; height: 1px; }
.glint-one { left: 13%; top: 29%; }
.glint-two { right: 17%; top: 20%; animation-delay: -1.2s; transform: scale(0.72); }
.glint-three { right: 27%; bottom: 18%; animation-delay: -2s; transform: scale(0.55); }
@keyframes glintPulse { 0%, 100% { opacity: 0.12; } 48% { opacity: 0.95; } }
.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 23px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: rgba(23, 38, 53, 0.55);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transform: translateX(-50%);
}
.scroll-cue i { display: block; width: 1px; height: 24px; background: currentColor; animation: scrollLine 1.7s ease-in-out infinite; transform-origin: top; }
@keyframes scrollLine { 50% { transform: scaleY(0.45); opacity: 0.5; } }

.chapter { position: relative; padding: clamp(95px, 11vw, 180px) clamp(24px, 8vw, 138px); }
.chapter-transition {
  position: absolute;
  z-index: 9;
  top: 0;
  left: 50%;
  width: min(82vw, 1050px);
  height: 80px;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.chapter-transition::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200,140,61,0.52), transparent);
  transform: scaleX(0);
  transition: transform 1.4s cubic-bezier(.2,.7,.2,1);
}
.chapter-transition span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 9px;
  height: 9px;
  border: 1px solid rgba(200,140,61,0.8);
  background: var(--paper);
  transform: translate(-50%, -50%) rotate(45deg) scale(0);
  box-shadow: 0 0 0 8px rgba(200,140,61,0.06), 0 0 24px rgba(200,140,61,0.3);
  transition: transform 900ms cubic-bezier(.2,.8,.2,1) 280ms;
}
.chapter.is-in-view .chapter-transition::before { transform: scaleX(1); }
.chapter.is-in-view .chapter-transition span { transform: translate(-50%, -50%) rotate(45deg) scale(1); }
.chapter-marker {
  position: absolute;
  left: clamp(18px, 3vw, 46px);
  top: 50%;
  color: rgba(23, 38, 53, 0.32);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: translateY(-50%) rotate(180deg);
}
.prologue {
  min-height: 76vh;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.7fr);
  align-items: center;
  gap: clamp(50px, 10vw, 170px);
  background: var(--cream);
}
.prologue::after {
  content: "N";
  position: absolute;
  right: 7%;
  top: 5%;
  color: rgba(200, 140, 61, 0.06);
  font-family: var(--serif);
  font-size: min(40vw, 550px);
  line-height: 1;
  pointer-events: none;
}
.prologue-inner { position: relative; z-index: 1; max-width: 810px; }
.prologue h2, .section-heading h2, .couture h2, .format h2, .faq h2, .launch h2 {
  margin: 0;
  font-size: clamp(2.8rem, 5.1vw, 6.3rem);
  letter-spacing: -0.045em;
}
.prologue-inner > p:not(.prologue-soft-note) {
  max-width: 690px;
  margin: 34px 0 0;
  color: rgba(23, 38, 53, 0.72);
  font-size: 1.05rem;
  line-height: 1.9;
}
.prologue-recognition {
  max-width: 640px;
  margin-top: 30px;
  padding: 24px 28px;
  border: 1px solid rgba(200, 140, 61, 0.18);
  border-radius: 24px;
  color: rgba(23, 38, 53, 0.76);
  background:
    radial-gradient(circle at 12% 0%, rgba(237,199,121,0.18), transparent 40%),
    rgba(255, 250, 243, 0.62);
  box-shadow: 0 22px 55px rgba(23, 38, 53, 0.07);
}
.prologue-recognition strong {
  display: block;
  margin-top: 8px;
  color: var(--coral);
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.75rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.1;
}
.prologue-soft-note {
  max-width: 760px;
  margin: 30px 0 0;
  padding-left: 22px;
  border-left: 1px solid rgba(200, 116, 95, 0.34);
  color: rgba(23, 38, 53, 0.62);
  font-family: var(--serif);
  font-size: clamp(1.08rem, 1.55vw, 1.35rem);
  font-style: italic;
  line-height: 1.75;
}
.prologue blockquote {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 40px 0 40px 38px;
  border-left: 1px solid var(--gold);
  font-family: var(--serif);
  font-size: clamp(1.7rem, 2.8vw, 3.25rem);
  font-style: italic;
  line-height: 1.26;
}

.story-forms {
  position: relative;
  background:
    radial-gradient(circle at 12% 12%, rgba(200,116,95,0.1), transparent 35%),
    radial-gradient(circle at 86% 78%, rgba(58,127,128,0.11), transparent 33%),
    #fbf4e9;
  overflow: hidden;
}
.story-forms::before {
  content: "";
  position: absolute;
  inset: 70px 7vw auto auto;
  width: min(34vw, 430px);
  aspect-ratio: 1;
  border: 1px solid rgba(200, 140, 61, 0.13);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(200, 140, 61, 0.035), 0 0 0 145px rgba(58,127,128,0.025);
  pointer-events: none;
}
.forms-grid {
  position: relative;
  z-index: 1;
  max-width: 1260px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.form-card {
  position: relative;
  min-height: 280px;
  padding: 27px 25px 25px;
  border: 1px solid rgba(200, 140, 61, 0.18);
  border-radius: 24px;
  background: rgba(255,255,255,0.46);
  box-shadow: 0 24px 60px rgba(72, 52, 33, 0.06);
  overflow: hidden;
}
.form-card::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  right: -42px;
  bottom: -46px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--form-accent, var(--gold)), transparent 78%);
}
.form-card-number {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid color-mix(in srgb, var(--form-accent, var(--gold)), transparent 40%);
  border-radius: 50%;
  color: var(--form-accent, var(--gold));
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}
.form-card h3 {
  margin: 45px 0 14px;
  font-size: clamp(1.45rem, 1.9vw, 2.05rem);
  line-height: 1.12;
}
.form-card p {
  position: relative;
  z-index: 2;
  margin: 0;
  color: rgba(23, 38, 53, 0.65);
  font-size: 0.95rem;
  line-height: 1.72;
}
.form-card-number,
.form-card h3 {
  position: relative;
  z-index: 2;
}
.form-card-book { --form-accent: var(--coral); }
.form-card-digital { --form-accent: var(--teal); }
.form-card-video { --form-accent: #5f84b7; }
.form-card-audio { --form-accent: #8d78b7; }
.form-card-complete {
  --form-accent: var(--gold);
  grid-column: span 4;
  min-height: 0;
  display: grid;
  grid-template-columns: auto minmax(220px, 0.42fr) minmax(0, 1fr);
  align-items: center;
  gap: 24px;
  padding-block: 28px;
  background:
    linear-gradient(135deg, rgba(23,38,53,0.96), rgba(32,44,77,0.9)),
    var(--navy);
  border-color: rgba(238, 201, 120, 0.72);
  box-shadow:
    0 24px 60px rgba(72, 52, 33, 0.08),
    0 0 0 2px rgba(238, 201, 120, 0.26),
    0 0 30px rgba(238, 201, 120, 0.28),
    0 0 70px rgba(96, 176, 190, 0.14);
  animation: plenoHeartbeat 6s ease-in-out infinite;
}
.form-card-complete::before {
  content: "";
  position: absolute;
  inset: -2px;
  z-index: 1;
  border-radius: inherit;
  pointer-events: none;
  background: none;
  border: 2px solid rgba(238, 201, 120, 0.82);
  box-shadow:
    inset 0 0 0 1px rgba(255, 246, 221, 0.16),
    inset 0 0 18px rgba(238, 201, 120, 0.08),
    0 0 26px rgba(238, 201, 120, 0.34),
    0 0 52px rgba(96, 176, 190, 0.14);
  opacity: 0.96;
  transform: scale(0.998);
  animation: plenoInnerGleam 7.5s ease-in-out infinite;
}
.form-card-complete::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  width: auto;
  height: auto;
  right: 0;
  bottom: 0;
  border-radius: inherit;
  pointer-events: none;
  background:
    radial-gradient(circle at 5% 14%, rgba(255, 246, 221, 0.95) 0 4px, rgba(238, 201, 120, 0.52) 6px, transparent 13px),
    radial-gradient(circle at 92% 84%, rgba(96, 176, 190, 0.78) 0 4.5px, rgba(238, 201, 120, 0.24) 7px, transparent 14px),
    radial-gradient(circle at 13% 83%, rgba(238, 201, 120, 0.66) 0 2px, rgba(255, 246, 221, 0.2) 4px, transparent 9px),
    radial-gradient(circle at 28% 96%, rgba(255, 246, 221, 0.5) 0 1.8px, rgba(238, 201, 120, 0.16) 3.5px, transparent 8px),
    radial-gradient(circle at 48% 5%, rgba(255, 246, 221, 0.44) 0 1.8px, rgba(238, 201, 120, 0.14) 3.5px, transparent 8px),
    radial-gradient(circle at 70% 96%, rgba(238, 201, 120, 0.46) 0 2px, rgba(96, 176, 190, 0.14) 4px, transparent 9px),
    radial-gradient(circle at 96% 16%, rgba(238, 201, 120, 0.62) 0 2.2px, rgba(255, 246, 221, 0.18) 4px, transparent 9px);
  opacity: 0.72;
  filter: drop-shadow(0 0 7px rgba(238, 201, 120, 0.34)) drop-shadow(0 0 12px rgba(96, 176, 190, 0.14));
  transform: scale(0.992);
  animation: plenoParticles 9s ease-in-out infinite;
}
.form-card-complete .form-card-number {
  color: #fff6dd;
  border-color: rgba(238, 201, 120, 0.62);
  background: rgba(238, 201, 120, 0.11);
  box-shadow: 0 0 22px rgba(238, 201, 120, 0.22);
  animation: plenoStarPulse 4.8s ease-in-out infinite;
}
.form-card-complete h3 {
  margin: 0;
  color: #fff6dd;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.22);
}
.form-card-complete p {
  color: rgba(255, 246, 221, 0.86);
  font-size: 1.02rem;
  line-height: 1.7;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.22);
}
.form-card-complete p strong { color: #fff6dd; }
@keyframes plenoHeartbeat {
  0%, 100% {
    border-color: rgba(238, 201, 120, 0.66);
    box-shadow:
      0 24px 60px rgba(72, 52, 33, 0.08),
      0 0 0 2px rgba(238, 201, 120, 0.22),
      0 0 30px rgba(238, 201, 120, 0.24),
      0 0 70px rgba(96, 176, 190, 0.12);
  }
  46% {
    border-color: rgba(255, 246, 221, 0.92);
    box-shadow:
      0 28px 72px rgba(72, 52, 33, 0.12),
      0 0 0 2px rgba(255, 246, 221, 0.56),
      0 0 52px rgba(238, 201, 120, 0.44),
      0 0 110px rgba(96, 176, 190, 0.2);
  }
}
@keyframes plenoInnerGleam {
  0%, 100% { opacity: 0.72; transform: scale(0.998); }
  52% { opacity: 1; transform: scale(1.006); }
}
@keyframes plenoParticles {
  0%, 100% { opacity: 0.36; transform: scale(0.994); }
  22% { opacity: 0.78; }
  47% { opacity: 0.48; transform: scale(1.004); }
  69% { opacity: 0.82; }
}
@keyframes plenoStarPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 18px rgba(238, 201, 120, 0.18); }
  48% { transform: scale(1.06); box-shadow: 0 0 30px rgba(238, 201, 120, 0.36); }
}
.forms-closing {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 44px auto 0;
  color: var(--coral);
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.3vw, 2.4rem);
  font-style: italic;
  text-align: center;
  line-height: 1.32;
}

.process { background: #f2e4d2; }
.section-heading { max-width: 870px; margin: 0 auto clamp(58px, 8vw, 105px); text-align: center; }
.section-heading > p:last-child { max-width: 670px; margin: 26px auto 0; color: rgba(23, 38, 53, 0.68); }
.process-pages { max-width: 1420px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.process-page {
  position: relative;
  min-height: 410px;
  padding: 30px 28px 28px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 7px 16px 16px 7px;
  background: rgba(255, 250, 243, 0.78);
  box-shadow: 9px 10px 30px rgba(72, 52, 33, 0.08), inset 7px 0 0 rgba(255,255,255,0.5);
  overflow: hidden;
  transition: transform 300ms ease, box-shadow 300ms ease;
}
.process-page::before { content: ""; position: absolute; inset: 0 0 auto; height: 4px; background: var(--page-accent); }
.process-page:hover { transform: translateY(-9px) rotate(-0.4deg); box-shadow: 14px 22px 45px rgba(72, 52, 33, 0.13); }
.page-coral { --page-accent: var(--coral); }
.page-teal { --page-accent: var(--teal); }
.page-gold { --page-accent: var(--gold); }
.page-violet { --page-accent: var(--violet); }
.page-number { color: rgba(23, 38, 53, 0.38); font-size: 0.68rem; font-weight: 800; letter-spacing: 0.13em; }
.page-icon { width: 58px; height: 58px; margin: 42px 0 25px; display: grid; place-items: center; border: 1px solid color-mix(in srgb, var(--page-accent), transparent 55%); border-radius: 50%; color: var(--page-accent); font-size: 1.4rem; }
.process-page h3 { margin: 0 0 18px; font-size: clamp(1.7rem, 2vw, 2.35rem); }
.process-page p { margin: 0; color: rgba(23, 38, 53, 0.72); line-height: 1.7; }
.process-page small { margin-top: auto; padding-top: 28px; color: rgba(23, 38, 53, 0.48); font-family: var(--serif); font-size: 0.84rem; font-style: italic; line-height: 1.5; }

.couture {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(440px, 0.7fr);
  align-items: center;
  gap: clamp(50px, 9vw, 150px);
  background:
    radial-gradient(circle at 8% 15%, rgba(58, 155, 154, 0.09), transparent 27%),
    var(--cream);
}
.couture-copy { max-width: 770px; }
.couture-copy > p:nth-of-type(2) { max-width: 650px; margin: 31px 0 0; color: rgba(23, 38, 53, 0.73); line-height: 1.9; }
.couture-mantra { margin-top: 35px !important; color: var(--coral) !important; font-family: var(--serif); font-size: clamp(1.25rem, 1.7vw, 1.7rem); font-style: italic; line-height: 1.55 !important; }
.mimo-card {
  position: relative;
  max-width: 610px;
  padding: clamp(30px, 4vw, 58px);
  border: 1px solid rgba(200, 140, 61, 0.35);
  background: #f3e5d3;
  box-shadow: var(--shadow);
}
.mimo-card::before, .mimo-card::after { content: ""; position: absolute; width: 42px; height: 42px; border-color: var(--gold); opacity: 0.55; }
.mimo-card::before { inset: 12px auto auto 12px; border-left: 1px solid; border-top: 1px solid; }
.mimo-card::after { inset: auto 12px 12px auto; border-right: 1px solid; border-bottom: 1px solid; }
.mimo-card header { display: flex; align-items: center; gap: 24px; padding-bottom: 27px; border-bottom: 1px solid var(--line); }
.mimo-seal {
  position: relative;
  flex: 0 0 172px;
  width: 172px;
  height: 172px;
  padding: 17px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(238, 201, 120, 0.52);
  border-radius: 50%;
  color: #f8e4a4;
  background:
    radial-gradient(circle at 35% 26%, rgba(255,255,255,0.36), transparent 10%),
    radial-gradient(circle at 50% 50%, rgba(255,250,237,0.16), transparent 36%),
    linear-gradient(145deg, rgba(58,79,116,0.74), rgba(31,50,85,0.62) 58%, rgba(17,32,60,0.68));
  box-shadow:
    inset 0 0 0 8px rgba(255,255,255,0.075),
    inset 0 0 0 13px rgba(238,201,120,0.2),
    inset 14px 16px 30px rgba(255,255,255,0.13),
    inset -16px -22px 34px rgba(0,0,0,0.22),
    0 16px 32px rgba(8, 22, 36, 0.12);
  backdrop-filter: blur(8px);
  font-family: var(--sans);
  text-align: center;
  text-transform: uppercase;
  transform: rotate(-5deg);
  isolation: isolate;
}
.mimo-seal::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(238, 201, 120, 0.42);
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.04);
}
.mimo-seal::after {
  content: "✦  ·  ✦";
  position: absolute;
  left: 50%;
  top: 46%;
  width: 80%;
  transform: translate(-50%, -50%);
  color: rgba(244, 216, 135, 0.66);
  font-size: 0.55rem;
  letter-spacing: 0.55em;
}
.mimo-seal-text {
  position: absolute;
  z-index: 2;
  left: 50%;
  width: 76%;
  transform: translateX(-50%);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  line-height: 1;
}
.mimo-seal-top { top: 23px; }
.mimo-seal-bottom {
  bottom: 22px;
  font-family: var(--serif);
  font-size: 0.84rem;
  font-weight: 500;
  letter-spacing: 0.27em;
}
.mimo-seal-core {
  position: relative;
  z-index: 1;
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(238,201,120,0.3);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.1), rgba(238,201,120,0.04) 62%, transparent 64%);
}
.mimo-seal-core img {
  width: 50px;
  height: auto;
  filter: saturate(0.85) sepia(0.35) brightness(1.08) drop-shadow(0 4px 4px rgba(0,0,0,0.2));
}
.mimo-seal::before {
  border-color: rgba(248, 228, 164, 0.46);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08), 0 0 18px rgba(248,228,164,0.11);
}
.mimo-seal::after {
  content: "";
  inset: -9px;
  left: auto;
  top: auto;
  width: auto;
  transform: none;
  border: 1px solid rgba(248, 228, 164, 0.16);
  border-radius: 50%;
  box-shadow: 0 0 30px rgba(248,228,164,0.09);
}
.mimo-seal-arc {
  position: absolute;
  z-index: 3;
  inset: 0;
  font-size: 0.54rem;
  font-weight: 800;
  letter-spacing: 0;
}
.mimo-seal-arc i {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 1ch;
  height: 1ch;
  color: rgba(255, 236, 177, 0.92);
  font-style: normal;
  line-height: 1;
  text-shadow: 0 1px 2px rgba(0,0,0,0.25);
  transform: rotate(var(--a)) translateY(-57px) rotate(calc(-1 * var(--a)));
  transform-origin: 0 0;
}
.mimo-seal-arc-bottom i {
  color: rgba(255, 236, 177, 0.88);
  font-family: var(--serif);
  font-size: 0.72rem;
  font-weight: 600;
  transform: rotate(var(--a)) translateY(-56px) rotate(calc(-1 * var(--a)));
}
.mimo-seal-stars {
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 46%;
  transform: translate(-50%, -50%);
  color: rgba(255, 236, 177, 0.62);
  font-size: 0.54rem;
  letter-spacing: 0.5em;
}
.mimo-seal-core {
  z-index: 2;
  width: 70px;
  height: 70px;
  border-color: rgba(248,228,164,0.36);
  background:
    radial-gradient(circle at 40% 30%, rgba(255,255,255,0.18), transparent 22%),
    radial-gradient(circle, rgba(12,24,47,0.36), rgba(12,24,47,0.14) 60%, transparent 63%);
}
.mimo-seal-core img {
  width: 52px;
  filter: saturate(0.82) sepia(0.34) brightness(1.12) drop-shadow(0 4px 4px rgba(0,0,0,0.18));
}
.mimo-seal-picture {
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  overflow: visible;
  animation: none;
  transform: none;
}
.mimo-seal-picture::before,
.mimo-seal-picture::after {
  display: none;
}
.mimo-seal-image {
  position: relative;
  z-index: 2;
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 18px 24px rgba(12, 24, 47, 0.12));
}
.seal-orbit {
  position: absolute;
  z-index: 4;
  inset: -15px;
  border-radius: 50%;
  animation: sealOrbit 16s linear infinite;
  pointer-events: none;
}
.seal-orbit i {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 232, 162, 0.98);
  box-shadow:
    0 0 9px rgba(255, 232, 162, 0.95),
    0 0 19px rgba(255, 232, 162, 0.42),
    0 0 30px rgba(255, 232, 162, 0.16);
  transform: rotate(var(--a)) translateY(-96px);
  animation: sealParticlePulse 5.6s ease-in-out infinite;
  animation-delay: var(--d);
}
.seal-orbit i:nth-child(even) {
  background: rgba(144, 184, 255, 0.95);
  box-shadow:
    0 0 9px rgba(144, 184, 255, 0.9),
    0 0 19px rgba(93, 138, 224, 0.42),
    0 0 30px rgba(93, 138, 224, 0.16);
}
@keyframes sealOrbit { to { transform: rotate(360deg); } }
@keyframes sealParticlePulse {
  0%, 100% { opacity: 0.18; filter: blur(0); }
  45% { opacity: 1; filter: blur(0.2px); }
  70% { opacity: 0.34; }
}
.mimo-card header p { margin: 0 0 3px; color: var(--coral); font-size: 0.68rem; font-weight: 800; letter-spacing: 0.15em; text-transform: uppercase; }
.mimo-card h3 { margin: 0; font-size: clamp(1.55rem, 2vw, 2.2rem); }
.mimo-intro { margin: 25px 0 15px; color: rgba(23, 38, 53, 0.66); }
.mimo-list { margin: 0; padding: 0; list-style: none; }
.mimo-list li { display: grid; grid-template-columns: 42px 1fr; gap: 6px; padding: 15px 0; border-bottom: 1px solid var(--line); }
.mimo-list li > span { color: var(--gold); font-size: 0.67rem; font-weight: 800; letter-spacing: 0.1em; }
.mimo-list p { margin: 0; font-size: 0.94rem; }
.mimo-list strong { display: block; font-family: var(--serif); font-size: 1.08rem; font-weight: 600; }
.mimo-closing { margin: 24px 0 0; font-family: var(--serif); font-size: 0.95rem; font-style: italic; text-align: center; }

.stages {
  --stage-color: #91cdb0;
  --stage-bg: #557d6f;
  --stage-bg-deep: #315b54;
  position: relative;
  color: #fff;
  background:
    radial-gradient(circle at 18% 0%, color-mix(in srgb, var(--stage-color), transparent 68%), transparent 44%),
    linear-gradient(135deg, var(--stage-bg), var(--stage-bg-deep));
  transition: background 500ms ease;
  overflow: hidden;
}
.stages::before {
  content: "";
  position: absolute;
  width: 60vw;
  height: 60vw;
  right: -20vw;
  bottom: -38vw;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(255,255,255,0.018), 0 0 0 160px rgba(255,255,255,0.012);
}
.stages[data-active-stage="wonder"] { --stage-color: #a9cfb8; --stage-bg: #536d66; --stage-bg-deep: #344e4a; }
.stages[data-active-stage="adventure"] { --stage-color: #afd1e2; --stage-bg: #506a7a; --stage-bg-deep: #344f61; }
.stages[data-active-stage="legend"] { --stage-color: #c4bce1; --stage-bg: #615f79; --stage-bg-deep: #43445e; }
.universe-backdrop {
  position: absolute;
  z-index: 0;
  top: 46%;
  right: 4%;
  bottom: 7%;
  left: 48%;
  background-image: var(--universe-image);
  background-position: center;
  background-size: cover;
  border-radius: 42% 12% 38% 16%;
  opacity: 0.1;
  filter: saturate(0.72) contrast(0.82);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 8%, rgba(0,0,0,0.8) 43%, transparent 78%);
  mask-image: radial-gradient(ellipse at center, #000 8%, rgba(0,0,0,0.8) 43%, transparent 78%);
  transform: scale(1.035);
  transition: opacity 420ms ease, transform 1.4s cubic-bezier(.2,.7,.2,1);
  pointer-events: none;
}
.universe-backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, color-mix(in srgb, var(--stage-bg-deep), transparent 22%), transparent 52%, color-mix(in srgb, var(--stage-bg-deep), transparent 34%));
}
.universe-backdrop.is-changing { opacity: 0; transform: scale(1.065); }
.stages > :not(.universe-backdrop) { position: relative; z-index: 1; }
.section-heading-light .kicker { color: var(--gold-light); }
.section-heading-light > p:last-child { color: rgba(255,255,255,0.66); }
.stage-tabs { max-width: 1120px; margin: 0 auto 60px; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(255,255,255,0.18); border-bottom: 1px solid rgba(255,255,255,0.18); }
.stage-tab {
  position: relative;
  padding: 25px 30px 27px;
  border: 0;
  border-right: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.46);
  background: transparent;
  text-align: left;
  cursor: pointer;
  transition: color 250ms ease, background 250ms ease;
}
.stage-tab:last-child { border-right: 0; }
.stage-tab span, .stage-tab small { display: block; font-size: 0.65rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; }
.stage-tab strong { display: block; margin: 4px 0 7px; font-family: var(--serif); font-size: clamp(1.7rem, 2.6vw, 2.8rem); font-weight: 400; }
.stage-tab.is-active { color: #fff; background: rgba(255,255,255,0.06); }
.stage-tab.is-active::after { content: ""; position: absolute; left: 25px; right: 25px; bottom: -1px; height: 2px; background: var(--stage-color); }
.stage-panel { position: relative; z-index: 1; max-width: 1200px; min-height: 410px; margin: 0 auto; display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(55px, 10vw, 150px); align-items: center; }
.stage-narrative { transition: opacity 180ms ease, transform 180ms ease; }
.stage-panel.is-changing .stage-narrative, .stage-panel.is-changing .universe-side { opacity: 0; transform: translateY(8px); }
.stage-count { margin: 0 0 28px; color: var(--stage-color); font-size: 0.68rem; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase; }
.stage-narrative h3 { margin: 0 0 25px; font-size: clamp(2.3rem, 4.5vw, 5.4rem); letter-spacing: -0.04em; }
.stage-narrative > p:nth-of-type(2) { color: rgba(255,255,255,0.67); line-height: 1.85; }
.stage-promise { margin-top: 30px; padding-left: 18px; border-left: 1px solid var(--stage-color); font-family: var(--serif); font-style: italic; }
.stage-promise span { display: block; margin-bottom: 5px; color: var(--stage-color); font-family: var(--sans); font-size: 0.62rem; font-style: normal; font-weight: 800; letter-spacing: 0.15em; text-transform: uppercase; }
.stage-promise q::before, .stage-promise q::after { content: ""; }
.universe-side { display: grid; gap: 18px; transition: opacity 180ms ease, transform 180ms ease; }
.universe-list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.universe-card { width: 100%; min-height: 150px; padding: 24px; border: 1px solid rgba(255,255,255,0.2); color: #fff; background: rgba(255,255,255,0.06); backdrop-filter: blur(7px); text-align: left; cursor: pointer; transition: transform 200ms ease, border-color 200ms ease, background 200ms ease, box-shadow 200ms ease; }
.universe-card { animation: universeArrive 580ms cubic-bezier(.2,.8,.2,1) both; animation-delay: calc(var(--card-index) * 80ms); }
@keyframes universeArrive { from { opacity: 0; transform: translateY(18px) rotateX(-7deg); } }
.universe-card:hover,
.universe-card:focus-visible { transform: translateY(-4px); border-color: var(--stage-color); background: rgba(255,255,255,0.12); outline: none; }
.universe-card.is-active { border-color: color-mix(in srgb, var(--stage-color), white 24%); background: rgba(255,255,255,0.15); box-shadow: 0 14px 34px rgba(10,24,38,0.12), inset 0 0 28px color-mix(in srgb, var(--stage-color), transparent 88%); }
.universe-card span { color: var(--stage-color); font-size: 0.64rem; font-weight: 800; letter-spacing: 0.13em; }
.universe-card h4 { margin: 14px 0 6px; font-family: var(--serif); font-size: 1.28rem; font-weight: 400; line-height: 1.2; }
.universe-card p { margin: 0; color: rgba(255,255,255,0.53); font-size: 0.78rem; line-height: 1.5; }
.universe-story {
  position: relative;
  overflow: hidden;
  min-height: 188px;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid color-mix(in srgb, var(--stage-color), transparent 54%);
  color: #fff;
  background:
    radial-gradient(circle at 9% 8%, color-mix(in srgb, var(--stage-color), transparent 72%), transparent 34%),
    linear-gradient(135deg, rgba(255,255,255,0.13), rgba(255,255,255,0.045));
  box-shadow:
    inset 0 0 42px rgba(255,255,255,0.035),
    0 22px 44px rgba(9, 22, 35, 0.13);
  backdrop-filter: blur(10px);
  transition: opacity 260ms ease, transform 260ms ease, border-color 260ms ease;
}
.universe-story::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 24px;
  right: 24px;
  height: 1px;
  background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--stage-color), white 18%), transparent);
  opacity: 0.78;
  transform: scaleX(0.25);
  transform-origin: left;
}
.universe-story::after {
  content: "";
  position: absolute;
  inset: -45%;
  background:
    radial-gradient(circle, rgba(255,255,255,0.64) 0 1px, transparent 2px) 18% 30% / 140px 140px,
    radial-gradient(circle, color-mix(in srgb, var(--stage-color), white 34%) 0 1px, transparent 2px) 68% 66% / 190px 190px;
  opacity: 0;
  pointer-events: none;
}
.universe-story.is-written::before { animation: universeInkLine 1800ms cubic-bezier(.18,.82,.24,1) both; }
.universe-story.is-written::after { animation: universeDust 2600ms ease-out both; }
.universe-story.is-changing { opacity: 0.28; transform: translateY(10px); }
.universe-story-kicker {
  margin: 0 0 10px;
  color: var(--stage-color);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.universe-story h4 {
  margin: 0 0 14px;
  font-family: var(--serif);
  font-size: clamp(1.65rem, 2.8vw, 2.55rem);
  font-weight: 400;
  letter-spacing: -0.025em;
}
.universe-story-text {
  margin: 0;
  max-width: 61ch;
  color: rgba(255,255,255,0.74);
  font-family: var(--serif);
  font-size: clamp(1rem, 1.25vw, 1.16rem);
  font-style: italic;
  line-height: 1.85;
}
.universe-story-text span {
  display: inline-block;
  opacity: 0;
  filter: blur(7px);
  transform: translateY(8px);
}
.universe-story.is-written .universe-story-text span {
  animation: universeWordReveal 1450ms cubic-bezier(.17,.78,.23,1) forwards;
  animation-delay: var(--word-delay);
}
@keyframes universeWordReveal {
  52% { opacity: 1; filter: blur(1.5px); text-shadow: 0 0 14px color-mix(in srgb, var(--stage-color), white 30%); }
  to { opacity: 1; filter: blur(0); transform: translateY(0); text-shadow: 0 0 0 transparent; }
}
@keyframes universeInkLine {
  from { opacity: 0; transform: scaleX(0.05); }
  to { opacity: 0.78; transform: scaleX(1); }
}
@keyframes universeDust {
  0% { opacity: 0; transform: translate3d(-2%, 1%, 0) rotate(0deg); }
  35% { opacity: 0.38; }
  100% { opacity: 0; transform: translate3d(3%, -2%, 0) rotate(9deg); }
}

.format {
  min-height: 91vh;
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  align-items: center;
  gap: clamp(70px, 11vw, 180px);
  background: var(--cream);
}
.format-art { min-height: 580px; display: grid; place-items: center; perspective: 1100px; }
.book-object { position: relative; width: min(390px, 80vw); aspect-ratio: 0.78; transform: rotateY(13deg) rotateX(4deg) rotateZ(-5deg); transform-style: preserve-3d; filter: drop-shadow(35px 40px 32px rgba(18, 33, 45, 0.25)); animation: bookFloat 5s ease-in-out infinite; }
.book-object::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 14% -18% -16%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 43%, rgba(238, 201, 120, 0.24), transparent 30%),
    radial-gradient(circle at 54% 52%, rgba(96, 176, 190, 0.12), transparent 48%);
  filter: blur(18px);
  opacity: 0.62;
  animation: relicHaloBreath 6.5s ease-in-out infinite;
}
@keyframes bookFloat { 50% { transform: rotateY(10deg) rotateX(2deg) rotateZ(-3deg) translateY(-10px); } }
.book-cover { position: absolute; z-index: 2; inset: 0; padding: 55px 40px; display: flex; flex-direction: column; align-items: center; justify-content: center; border-radius: 3px 12px 12px 3px; color: #f8dd9c; background: linear-gradient(135deg, #173651, #0b2034 72%); box-shadow: inset 8px 0 14px rgba(0,0,0,0.28), inset -7px -8px 18px rgba(238,201,120,0.18), inset 0 0 0 2px rgba(238,201,120,0.12), 10px 12px 26px rgba(238,201,120,0.12); text-align: center; overflow: hidden; }
.book-cover::before { content: ""; position: absolute; inset: 25px; border: 1px solid rgba(238,201,120,0.45); }
.book-cover::after { display: none; }
.book-cover img { position: relative; z-index: 1; width: 76px; margin-bottom: 44px; filter: sepia(1) saturate(0.5) brightness(1.55); }
.book-cover span, .book-cover strong { position: relative; z-index: 1; display: block; }
.book-cover span { font-size: 0.67rem; letter-spacing: 0.18em; text-transform: uppercase; }
.book-cover strong { margin-top: 12px; font-family: var(--serif); font-size: 2rem; font-weight: 400; line-height: 1.15; }
.book-pages { position: absolute; z-index: 1; top: 3%; right: -16px; bottom: -8px; left: 10px; border-radius: 0 14px 12px 2px; background: repeating-linear-gradient(90deg, #e7d4b9 0, #fff9ee 3px, #e9d8bf 4px); transform: translateZ(-12px); }
.book-pages::before {
  content: "";
  position: absolute;
  inset: 4% -7px 5% auto;
  width: 36px;
  border-radius: 999px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.66), rgba(238, 201, 120, 0.88), rgba(76, 145, 188, 0.58), rgba(238, 201, 120, 0.48), transparent);
  filter: blur(6px);
  box-shadow:
    0 0 32px rgba(238, 201, 120, 0.45),
    0 0 52px rgba(76, 145, 188, 0.26);
  opacity: 0.9;
  animation: pageEdgeGlow 4.2s ease-in-out infinite;
}
.book-pages::after {
  content: "";
  position: absolute;
  left: 4%;
  right: -8px;
  bottom: -8px;
  height: 34px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.54), rgba(238,201,120,0.72), rgba(76,145,188,0.34), transparent);
  filter: blur(6px);
  opacity: 0.82;
  box-shadow:
    0 0 28px rgba(238, 201, 120, 0.32),
    0 0 44px rgba(76, 145, 188, 0.18);
  animation: pageBottomGlow 5.1s ease-in-out infinite;
}
.relic-aura {
  position: absolute;
  z-index: 4;
  inset: -12% -48% -18% -4%;
  pointer-events: none;
  transform: translateZ(32px);
}
.relic-aura::before {
  content: "";
  position: absolute;
  left: 64%;
  top: 42%;
  width: 44%;
  height: 52%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 20% 52%, rgba(255,255,255,0.42), transparent 18%),
    radial-gradient(circle at 38% 42%, rgba(238,201,120,0.32), transparent 28%),
    radial-gradient(circle at 72% 38%, rgba(96,176,190,0.18), transparent 34%),
    radial-gradient(circle at 60% 76%, rgba(238,201,120,0.18), transparent 34%);
  filter: blur(9px);
  opacity: 0.34;
  transform-origin: 0 50%;
  animation: relicMistBreath 6.2s ease-in-out infinite;
}
.relic-aura::after {
  content: "";
  position: absolute;
  left: 66%;
  top: 54%;
  width: 46%;
  height: 34%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 12% 42%, rgba(255,255,255,0.58), transparent 16%),
    radial-gradient(circle at 30% 48%, rgba(238,201,120,0.42), transparent 24%),
    radial-gradient(circle at 62% 32%, rgba(76,145,188,0.36), transparent 30%),
    linear-gradient(90deg, rgba(238,201,120,0.22), rgba(76,145,188,0.18), transparent 72%);
  filter: blur(7px);
  opacity: 0.38;
  transform-origin: 0 50%;
  animation: relicColorTrail 5.8s ease-in-out infinite;
}
.relic-spark {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: var(--size, 5px);
  height: var(--size, 5px);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.98), var(--spark-core, rgba(238, 201, 120, 0.86)) 42%, var(--spark-edge, rgba(76, 145, 188, 0.35)) 72%, transparent);
  box-shadow:
    0 0 16px var(--spark-glow, rgba(238, 201, 120, 0.62)),
    0 0 30px var(--spark-second-glow, rgba(76, 145, 188, 0.34));
  opacity: 0;
  animation: relicSparkDrift var(--duration, 5.6s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}
.relic-spark:nth-child(1) { --x: 70%; --y: 54%; --size: 7px; --tx: 96px; --ty: -54px; --duration: 6.4s; --delay: -0.3s; --spark-core: rgba(238,201,120,0.96); --spark-edge: rgba(76,145,188,0.48); }
.relic-spark:nth-child(2) { --x: 74%; --y: 43%; --size: 8px; --tx: 126px; --ty: -42px; --duration: 6.8s; --delay: -2.1s; --spark-core: rgba(76,145,188,0.86); --spark-edge: rgba(238,201,120,0.42); --spark-glow: rgba(76,145,188,0.56); }
.relic-spark:nth-child(3) { --x: 72%; --y: 72%; --size: 6px; --tx: 112px; --ty: -12px; --duration: 5.8s; --delay: -1.1s; --spark-core: rgba(216,111,88,0.76); --spark-edge: rgba(238,201,120,0.42); --spark-glow: rgba(216,111,88,0.42); }
.relic-spark:nth-child(4) { --x: 69%; --y: 64%; --size: 6px; --tx: 86px; --ty: 34px; --duration: 7.1s; --delay: -3.4s; --spark-core: rgba(238,201,120,0.92); }
.relic-spark:nth-child(5) { --x: 76%; --y: 58%; --size: 7px; --tx: 148px; --ty: -76px; --duration: 7.4s; --delay: -4.6s; --spark-core: rgba(76,145,188,0.84); --spark-glow: rgba(76,145,188,0.52); }
.relic-spark:nth-child(6) { --x: 68%; --y: 82%; --size: 8px; --tx: 96px; --ty: 50px; --duration: 6.1s; --delay: -2.8s; --spark-core: rgba(238,201,120,0.94); --spark-edge: rgba(255,255,255,0.48); }
.relic-spark:nth-child(7) { --x: 78%; --y: 50%; --size: 7px; --tx: 160px; --ty: -20px; --duration: 6.6s; --delay: -0.9s; --spark-core: rgba(122,154,206,0.86); --spark-glow: rgba(122,154,206,0.48); }
.relic-spark:nth-child(8) { --x: 72%; --y: 88%; --size: 6px; --tx: 126px; --ty: 28px; --duration: 6.9s; --delay: -5.1s; --spark-core: rgba(238,201,120,0.92); }
.relic-spark:nth-child(9) { --x: 75%; --y: 68%; --size: 8px; --tx: 168px; --ty: -52px; --duration: 5.9s; --delay: -3.9s; --spark-core: rgba(76,145,188,0.88); --spark-edge: rgba(238,201,120,0.48); --spark-glow: rgba(76,145,188,0.54); }
.relic-spark:nth-child(10) { --x: 70%; --y: 47%; --size: 7px; --tx: 106px; --ty: -86px; --duration: 7.2s; --delay: -1.7s; --spark-core: rgba(238,201,120,0.94); --spark-edge: rgba(216,111,88,0.38); }
.relic-spark:nth-child(11) { --x: 73%; --y: 77%; --size: 5px; --tx: 136px; --ty: 16px; --duration: 6.2s; --delay: -4.1s; --spark-core: rgba(76,145,188,0.82); --spark-glow: rgba(76,145,188,0.46); }
.relic-spark:nth-child(12) { --x: 77%; --y: 62%; --size: 6px; --tx: 150px; --ty: -34px; --duration: 6.7s; --delay: -2.5s; --spark-core: rgba(238,201,120,0.94); }
.relic-spark:nth-child(13) { --x: 71%; --y: 36%; --size: 5px; --tx: 92px; --ty: -68px; --duration: 7s; --delay: -5.4s; --spark-core: rgba(122,154,206,0.84); --spark-glow: rgba(122,154,206,0.46); }
.relic-spark:nth-child(14) { --x: 79%; --y: 72%; --size: 6px; --tx: 176px; --ty: 4px; --duration: 6.5s; --delay: -3.2s; --spark-core: rgba(216,111,88,0.72); --spark-edge: rgba(238,201,120,0.44); --spark-glow: rgba(216,111,88,0.38); }
.relic-spark:nth-child(15) { --x: 74%; --y: 86%; --size: 7px; --tx: 144px; --ty: 46px; --duration: 7.3s; --delay: -1.4s; --spark-core: rgba(238,201,120,0.96); }
.relic-spark:nth-child(16) { --x: 76%; --y: 40%; --size: 6px; --tx: 162px; --ty: -74px; --duration: 6s; --delay: -4.8s; --spark-core: rgba(76,145,188,0.9); --spark-glow: rgba(76,145,188,0.52); }
@keyframes relicHaloBreath {
  0%, 100% { opacity: 0.45; transform: scale(0.96); }
  50% { opacity: 0.78; transform: scale(1.04); }
}
@keyframes pageEdgeGlow {
  0%, 100% { opacity: 0.58; transform: translateX(0); }
  50% { opacity: 1; transform: translateX(7px); }
}
@keyframes bookCornerGlow {
  0%, 100% { opacity: 0.48; transform: scale(0.92); }
  50% { opacity: 0.88; transform: scale(1.04); }
}
@keyframes pageBottomGlow {
  0%, 100% { opacity: 0.46; transform: translateY(0) scaleX(0.94); }
  50% { opacity: 0.92; transform: translateY(4px) scaleX(1.04); }
}
@keyframes relicSparkDrift {
  0%, 8%, 100% { opacity: 0; transform: translate(0, 0) scale(0.55); }
  20% { opacity: 1; }
  58% { opacity: 0.9; }
  88% { opacity: 0; transform: translate(var(--tx), var(--ty)) scale(1.18); }
}
@keyframes relicMistBreath {
  0%, 100% { opacity: 0.22; transform: scale(0.85) rotate(-4deg); }
  48% { opacity: 0.48; transform: scale(1.08) rotate(3deg); }
}
@keyframes relicColorTrail {
  0%, 100% { opacity: 0.24; transform: scale(0.88) rotate(-5deg); }
  46% { opacity: 0.52; transform: scale(1.12) rotate(4deg); }
}
.format-copy { max-width: 760px; }
.format-copy > p:nth-of-type(2) { margin: 30px 0; max-width: 650px; color: rgba(23,38,53,0.69); line-height: 1.9; }
.format-details { display: flex; flex-wrap: wrap; gap: 8px; }
.format-details span { padding: 8px 13px; border: 1px solid var(--line); border-radius: 100px; color: rgba(23,38,53,0.67); font-size: 0.72rem; }

.launch {
  min-height: 96vh;
  display: grid;
  align-items: center;
  color: #fff;
  background:
    radial-gradient(circle at 14% 25%, rgba(213,109,87,0.25), transparent 28%),
    radial-gradient(circle at 83% 82%, rgba(119,96,168,0.27), transparent 30%),
    linear-gradient(145deg, #173650, #091a2b 70%);
  overflow: hidden;
}
.launch::before { content: ""; position: absolute; width: 680px; height: 680px; right: -330px; top: -330px; border: 1px solid rgba(237,199,121,0.14); border-radius: 50%; box-shadow: 0 0 0 80px rgba(255,255,255,0.015), 0 0 0 160px rgba(255,255,255,0.012); }
.launch-inner { position: relative; z-index: 1; max-width: 1360px; margin: 0 auto; display: grid; grid-template-columns: 1.05fr 0.75fr; align-items: center; gap: clamp(60px, 10vw, 160px); }
.launch-copy { max-width: 760px; }
.launch .kicker { color: var(--gold-light); }
.launch-copy > p:nth-of-type(2) { max-width: 620px; margin: 28px 0 0; color: rgba(255,255,255,0.7); font-size: 1.05rem; }
.cost-note { max-width: 660px; margin-top: 45px; padding: 25px 0 0; display: grid; grid-template-columns: 34px 1fr; gap: 12px; border-top: 1px solid rgba(255,255,255,0.17); }
.cost-note > span { color: var(--gold-light); }
.cost-note strong { display: block; margin-bottom: 6px; color: var(--gold-light); font-family: var(--serif); font-size: 1.22rem; font-weight: 400; }
.cost-note p { margin: 0; color: rgba(255,255,255,0.59); font-size: 0.88rem; line-height: 1.7; }
.waitlist-form { padding: clamp(30px, 4vw, 53px); border: 1px solid rgba(255,255,255,0.2); background: rgba(255,255,255,0.065); backdrop-filter: blur(18px); box-shadow: 0 30px 70px rgba(0,0,0,0.18); }
.waitlist-form .form-label { margin: 0; color: var(--gold-light); font-size: 0.66rem; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; }
.waitlist-form h3 { margin: 6px 0 31px; font-size: clamp(2rem, 3.1vw, 3.2rem); }
.waitlist-form > label:not(.privacy-check) { display: block; margin: 19px 0 7px; color: rgba(255,255,255,0.66); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.11em; text-transform: uppercase; }
.waitlist-form > label:not(.privacy-check) span { margin-left: 6px; color: rgba(255,255,255,0.38); font-weight: 600; letter-spacing: 0.08em; }
.waitlist-form > input:not([type="hidden"]),
.waitlist-form > select {
  width: 100%;
  height: 51px;
  padding: 4px 0;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,0.28);
  border-radius: 0;
  outline: none;
  color: #fff;
  background: transparent;
}
.waitlist-form > select {
  color: rgba(255,255,255,0.88);
  cursor: pointer;
}
.waitlist-form > select option { color: var(--navy); background: #fbf4e9; }
.waitlist-form > input::placeholder { color: rgba(255,255,255,0.32); }
.waitlist-form > input:focus,
.waitlist-form > select:focus { border-bottom-color: var(--gold-light); }
.privacy-check { margin: 24px 0; display: grid; grid-template-columns: 18px 1fr; gap: 10px; align-items: start; color: rgba(255,255,255,0.58); font-size: 0.72rem; line-height: 1.55; cursor: pointer; }
.privacy-check input { width: 16px; height: 16px; margin: 2px 0 0; accent-color: var(--gold); }
.button-light { width: 100%; color: var(--navy); background: var(--gold-light); }
.button-light:hover { background: #fff0c7; }
.button:disabled { opacity: 0.6; cursor: wait; transform: none; }
.privacy-note { margin: 13px 0 0; color: rgba(255,255,255,0.42); font-family: var(--serif); font-size: 0.76rem; font-style: italic; text-align: center; }
.form-status { min-height: 1.4em; margin: 14px 0 0; color: #fff0c7; font-size: 0.82rem; text-align: center; }
.form-status.is-error { color: #ffb8aa; }
.honeypot { position: absolute !important; left: -9999px !important; }

.faq {
  background:
    linear-gradient(180deg, #fbf4e9, #f2e4d2);
}
.faq-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.faq-grid article {
  padding: 30px;
  border: 1px solid rgba(200, 140, 61, 0.18);
  border-radius: 22px;
  background: rgba(255,255,255,0.46);
  box-shadow: 0 20px 52px rgba(72, 52, 33, 0.055);
}
.faq-grid h3 {
  margin: 0 0 14px;
  font-size: clamp(1.25rem, 1.6vw, 1.62rem);
  line-height: 1.22;
}
.faq-grid p {
  margin: 0;
  color: rgba(23, 38, 53, 0.66);
  font-size: 0.94rem;
  line-height: 1.75;
}

.age-design-note {
  padding: 42px clamp(24px, 7vw, 110px);
  background: #071624;
  color: rgba(255,255,255,0.62);
}
.age-design-note-inner {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}
.age-design-note-label {
  margin: 0 0 10px;
  color: var(--gold-light);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.age-design-note p:last-child {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.75;
}

.site-footer { min-height: 150px; padding: 45px clamp(24px, 7vw, 110px); display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; background: #071624; color: rgba(255,255,255,0.5); font-size: 0.7rem; letter-spacing: 0.08em; text-transform: uppercase; }
.site-footer a { width: 110px; filter: brightness(0) invert(1); opacity: 0.8; }
.site-footer p { margin: 0; }
.site-footer p:last-child { justify-self: end; }

[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity 800ms cubic-bezier(.2,.7,.2,1), transform 800ms cubic-bezier(.2,.7,.2,1); }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }
.process-page[data-reveal] { transform: perspective(900px) translateX(-22px) translateY(20px) rotateY(-7deg); transform-origin: left center; }
.process-page[data-reveal].is-visible { transform: perspective(900px) translateX(0) translateY(0) rotateY(0); }
.couture-copy[data-reveal], .format-copy[data-reveal], .launch-copy[data-reveal] { transform: translateX(-34px); }
.couture-copy[data-reveal].is-visible, .format-copy[data-reveal].is-visible, .launch-copy[data-reveal].is-visible { transform: translateX(0); }
.mimo-card[data-reveal], .waitlist-form[data-reveal] { transform: translateX(34px) rotate(0.7deg); }
.mimo-card[data-reveal].is-visible, .waitlist-form[data-reveal].is-visible { transform: translateX(0) rotate(0); }
.section-heading[data-reveal] { transform: translateY(28px) scale(0.97); }
.section-heading[data-reveal].is-visible { transform: translateY(0) scale(1); }
.mimo-seal { animation: sealGlow 4s ease-in-out infinite; }
@keyframes sealGlow {
  50% {
    box-shadow:
      inset 0 0 0 8px rgba(255,255,255,0.08),
      inset 0 0 0 13px rgba(238,201,120,0.22),
      inset 14px 16px 30px rgba(255,255,255,0.14),
      inset -16px -22px 34px rgba(0,0,0,0.2),
      0 0 0 8px rgba(200,140,61,0.045),
      0 18px 36px rgba(8, 22, 36, 0.12),
      0 0 26px rgba(248,228,164,0.11);
    transform: rotate(-2deg);
  }
}
.process-page:nth-child(2) { transition-delay: 90ms; }
.process-page:nth-child(3) { transition-delay: 180ms; }
.process-page:nth-child(4) { transition-delay: 270ms; }

@media (max-width: 1100px) {
  .site-header { grid-template-columns: 1fr auto; }
  .desktop-nav, .header-cta { display: none; }
  .menu-button { justify-self: end; width: 42px; height: 42px; display: grid; place-content: center; gap: 7px; border: 0; border-radius: 50%; background: rgba(255,255,255,0.55); cursor: pointer; }
  .menu-button span { width: 20px; height: 1px; background: var(--ink); transition: transform 200ms ease; }
  .menu-button[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
  .menu-button[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }
  .mobile-nav { position: fixed; z-index: -1; inset: 0; padding: 130px 30px 50px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 25px; color: #fff; background: rgba(9,26,43,0.98); opacity: 0; visibility: hidden; transition: opacity 230ms ease, visibility 230ms ease; }
  .mobile-nav.is-open { opacity: 1; visibility: visible; }
  .mobile-nav a { font-family: var(--serif); font-size: clamp(1.8rem, 5vw, 3rem); text-decoration: none; }
  .site-header:has(.mobile-nav.is-open) .brand { filter: brightness(0) invert(1); z-index: 1; }
  .site-header:has(.mobile-nav.is-open) .menu-button { z-index: 1; background: rgba(255,255,255,0.12); }
  .site-header:has(.mobile-nav.is-open) .menu-button span { background: #fff; }
  .hero { grid-template-columns: minmax(0, 1.06fr) minmax(350px, 0.94fr); padding-inline: 42px; }
  h1 { font-size: clamp(3rem, 6.3vw, 5rem); }
  .forms-grid { grid-template-columns: repeat(2, 1fr); }
  .form-card-complete { grid-column: span 2; }
  .process-pages { grid-template-columns: 1fr 1fr; }
  .faq-grid { grid-template-columns: repeat(2, 1fr); }
  .couture { grid-template-columns: 1fr 0.8fr; padding-inline: 55px; }
  .format { padding-inline: 55px; gap: 65px; }
  .launch { padding-inline: 55px; }
}

@media (max-width: 820px) {
  html { scroll-padding-top: 70px; }
  .site-header { height: 68px; padding: 0 22px; }
  .brand { width: 104px; }
  .hero {
    min-height: auto;
    padding: 120px 24px 80px;
    grid-template-columns: 1fr;
    grid-template-areas: "visual" "copy";
    text-align: center;
  }
  .hero::before { display: none; }
  .hero-copy { margin: 0 auto; }
  .eyebrow { justify-content: center; }
  .hero-intro { margin-inline: auto; }
  .hero-product-line { margin-inline: auto; }
  .hero-visual { width: min(100%, 760px); margin: 0 auto 22px; }
  .hero-brand-lockup { width: min(220px, 46vw); }
  .visual-whisper { position: static; margin-top: 10px; text-align: center; }
  .scroll-cue { display: none; }
  .chapter { padding: 95px 24px; }
  .chapter-marker { display: none; }
  .prologue { min-height: auto; grid-template-columns: 1fr; gap: 50px; }
  .prologue blockquote { max-width: 520px; padding-block: 12px; }
  .section-heading { margin-bottom: 55px; }
  .forms-grid { grid-template-columns: 1fr 1fr; }
  .form-card { min-height: 245px; }
  .form-card-complete {
    grid-template-columns: auto 1fr;
    gap: 18px;
  }
  .form-card-complete p { grid-column: 1 / -1; }
  .process-pages { grid-template-columns: 1fr 1fr; }
  .process-page { min-height: 355px; }
  .couture { grid-template-columns: 1fr; gap: 60px; padding-inline: 24px; }
  .couture-copy { text-align: center; margin: 0 auto; }
  .couture-copy > p:nth-of-type(2) { margin-inline: auto; }
  .mimo-card { margin: 0 auto; }
  .faq-grid { grid-template-columns: 1fr; }
  .stages { overflow: visible; }
  .stages::before {
    right: 0;
    bottom: -42vw;
    width: 78vw;
    height: 78vw;
    transform: translateX(46%);
  }
  .stages > .stage-tabs {
    position: sticky;
    top: 68px;
    z-index: 6;
    margin: 0 auto 34px;
    padding: 12px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 22px;
    background: color-mix(in srgb, var(--stage-bg-deep), transparent 8%);
    backdrop-filter: blur(18px);
    box-shadow: 0 18px 34px rgba(6, 20, 32, 0.18);
  }
  .stage-tabs::before {
    content: "Etapa";
    grid-column: 1 / -1;
    color: rgba(255,255,255,0.58);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
  }
  .stage-tab {
    min-width: 0;
    padding: 8px 10px 9px;
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 12px;
    text-align: center;
    background: rgba(255,255,255,0.055);
  }
  .stage-tab span,
  .stage-tab small { display: none; }
  .stage-tab strong { margin: 0; font-family: var(--sans); font-size: 0.92rem; font-weight: 800; letter-spacing: 0; }
  .stage-tab.is-active { color: var(--ink); background: color-mix(in srgb, var(--stage-color), white 58%); }
  .stage-tab.is-active::after { display: none; }
  .stage-panel { grid-template-columns: 1fr; gap: 45px; }
  .universe-backdrop { top: 54%; right: 1%; bottom: 5%; left: 22%; opacity: 0.08; }
  .stage-narrative { max-width: 650px; }
  .universe-side {
    max-width: 720px;
    gap: 18px;
    overflow: hidden;
  }
  .universe-side::before {
    content: "Universo";
    color: rgba(255,255,255,0.58);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
  }
  .universe-list {
    display: flex;
    grid-template-columns: none;
    gap: 10px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x mandatory;
    scrollbar-color: color-mix(in srgb, var(--stage-color), white 35%) rgba(255,255,255,0.14);
    scrollbar-width: thin;
    padding: 0 2px 12px;
    margin-top: -6px;
  }
  .universe-card {
    flex: 0 0 clamp(205px, 58vw, 280px);
    min-height: 116px;
    padding: 16px 17px;
    border-radius: 15px;
    scroll-snap-align: start;
  }
  .universe-card h4 { margin: 8px 0 4px; font-size: 1.02rem; }
  .universe-card p { font-size: 0.72rem; }
  .format { min-height: auto; grid-template-columns: 1fr; gap: 40px; padding-inline: 24px; }
  .format-art { min-height: 470px; }
  .format-copy { text-align: center; margin: 0 auto; }
  .format-copy > p:nth-of-type(2) { margin-inline: auto; }
  .format-details { justify-content: center; }
  .launch { padding-inline: 24px; }
  .launch-inner { grid-template-columns: 1fr; gap: 55px; }
  .launch-copy { text-align: center; margin: 0 auto; }
  .launch-copy > p:nth-of-type(2) { margin-inline: auto; }
  .cost-note { text-align: left; }
  .waitlist-form { width: min(100%, 570px); margin: 0 auto; }
}

@media (max-width: 560px) {
  body { font-size: 15px; }
  .hero { padding-top: 105px; }
  h1 { font-size: clamp(2.65rem, 13vw, 4.2rem); }
  .hero-intro { line-height: 1.65; }
  .hero-product-line { padding: 14px 16px; font-size: 0.86rem; }
  .button { width: 100%; }
  .hero-note { max-width: 290px; margin-inline: auto; }
  .hero-frame { border-radius: 0; }
  .orbit-one { width: 86%; right: -8%; }
  .orbit-two { left: -1%; }
  .visual-whisper { text-align: center; margin-right: 0; }
  .prologue h2, .section-heading h2, .couture h2, .format h2, .faq h2, .launch h2 { font-size: clamp(2.45rem, 11vw, 3.6rem); }
  .prologue-recognition { padding: 22px 20px; }
  .prologue-soft-note { padding-left: 16px; font-size: 1.05rem; }
  .prologue blockquote { font-size: 1.8rem; }
  .forms-grid { grid-template-columns: 1fr; }
  .form-card,
  .form-card-complete {
    grid-column: auto;
    min-height: 0;
    display: block;
    padding: 25px 22px;
  }
  .form-card h3 { margin-top: 32px; }
  .form-card-complete h3 { margin-top: 25px; }
  .forms-closing { font-size: 1.45rem; }
  .process-pages { grid-template-columns: 1fr; }
  .process-page { min-height: 330px; }
  .process-page:nth-child(n) { transition-delay: 0ms; }
  .page-icon { margin-top: 30px; }
  .mimo-card { padding: 30px 24px; }
  .mimo-card header { align-items: center; gap: 14px; }
  .mimo-seal { flex-basis: 142px; width: 142px; height: 142px; padding: 0; }
  .mimo-seal-arc { font-size: 0.42rem; }
  .mimo-seal-arc i { transform: rotate(var(--a)) translateY(-44px) rotate(calc(-1 * var(--a))); }
  .mimo-seal-arc-bottom i { font-size: 0.54rem; transform: rotate(var(--a)) translateY(-43px) rotate(calc(-1 * var(--a))); }
  .mimo-seal-stars { display: none; }
  .mimo-seal-core { width: 48px; height: 48px; }
  .mimo-seal-core img { width: 37px; }
  .mimo-seal::before { inset: 8px; }
  .mimo-seal::after { inset: -6px; display: block; }
  .seal-orbit { inset: -12px; }
  .seal-orbit i { width: 4px; height: 4px; transform: rotate(var(--a)) translateY(-79px); }
  .stages { padding-inline: 16px; }
  .universe-backdrop { top: 58%; left: 8%; right: 8%; opacity: 0.07; }
  .stage-tabs { margin-inline: -2px; border-radius: 20px; }
  .stage-tab { padding-inline: 6px; }
  .stage-tab strong { font-size: 0.86rem; }
  .stage-panel { min-height: 0; }
  .universe-list { margin-inline: -2px; padding-inline: 0; }
  .universe-card { flex-basis: 235px; min-height: 102px; }
  .universe-side { gap: 12px; }
  .universe-story { min-height: 0; padding: 24px 20px 26px; }
  .universe-story::before { left: 20px; right: 20px; }
  .universe-story h4 { font-size: 1.72rem; }
  .universe-story-text { font-size: 1rem; line-height: 1.78; }
  .format-art { min-height: 390px; }
  .book-object { width: min(300px, 78vw); }
  .book-cover { padding: 35px 30px; }
  .book-cover img { width: 58px; margin-bottom: 30px; }
  .book-cover strong { font-size: 1.5rem; }
  .launch { padding-inline: 20px; }
  .waitlist-form { padding: 30px 22px; }
  .site-footer { padding: 38px 24px; grid-template-columns: 1fr auto; gap: 20px; }
  .site-footer > p:nth-child(2) { display: none; }
}

@media (hover: none), (pointer: coarse) {
  .cursor-magic { display: none; }
  .world-stage { transform: none !important; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
  .ambient-particles, .cursor-magic { display: none; }
  .universe-story-text span { opacity: 1; filter: none; transform: none; animation-delay: 0ms !important; }
}
