:root {
  color-scheme: dark;
  --night: #07101f;
  --night-2: #0d1d35;
  --panel: #0c182b;
  --panel-soft: #13243d;
  --ivory: #f7ebdd;
  --muted: #aab6ca;
  --blue: #5c7bab;
  --coral: #f24e6a;
  --coral-deep: #9f2944;
  --amber: #ffb35b;
  --line: rgba(159, 181, 218, 0.23);
  --page: min(1180px, calc(100% - 40px));
  --pixel-shadow: 8px 8px 0 #020713;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--night);
  color: var(--ivory);
}

body::before {
  content: "";
  width: 100%;
  height: 100%;
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px),
    radial-gradient(circle at 72% 18%, rgba(51, 87, 148, .22), transparent 30rem),
    var(--night);
  background-size: 32px 32px, 32px 32px, auto, auto;
}

a { color: inherit; }

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--ivory);
  color: var(--night);
  transform: translateY(-160%);
}

.skip-link:focus { transform: translateY(0); }

.site-header {
  width: var(--page);
  height: 104px;
  display: grid;
  grid-template-columns: 130px 1fr auto;
  gap: 30px;
  align-items: center;
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 20;
  translate: -50% 0;
  border-bottom: 1px solid var(--line);
}

.brand { width: 112px; display: block; }
.brand img { width: 100%; height: auto; display: block; }

nav {
  display: flex;
  justify-content: center;
  gap: clamp(22px, 4vw, 50px);
}

nav a {
  color: #c8d0df;
  font: 700 .76rem/1 ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
}

nav a:hover { color: var(--ivory); }

.header-cta {
  padding: 14px 16px;
  border: 1px solid var(--coral);
  color: var(--ivory);
  font: 800 .72rem/1 ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: .06em;
  text-decoration: none;
  box-shadow: 4px 4px 0 var(--coral-deep);
}

.header-cta:hover { background: var(--coral); }

.hero {
  width: var(--page);
  min-height: 100svh;
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: clamp(32px, 5vw, 70px);
  align-items: center;
  position: relative;
  margin: auto;
  padding: 154px 0 96px;
}

.hero::before,
.hero::after {
  content: "";
  width: 4px;
  height: 4px;
  position: absolute;
  border-radius: 0;
  background: var(--ivory);
  box-shadow: 84px 30px 0 var(--coral), 180px -20px 0 rgba(247,235,221,.5), 320px 46px 0 var(--ivory), 540px -2px 0 rgba(247,235,221,.7), 760px 48px 0 var(--coral);
  opacity: .55;
}

.hero::before { top: 142px; right: 26%; }
.hero::after { right: 8%; bottom: 118px; transform: rotate(180deg); }

.hero-glow {
  width: 680px;
  height: 680px;
  position: absolute;
  top: 10%;
  right: -18%;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(51, 82, 139, .25), rgba(7, 16, 31, 0) 68%);
}

.hero-copy { position: relative; z-index: 3; }

.kicker {
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 0 0 25px;
  color: var(--coral);
  font: 900 .7rem/1.5 ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: .16em;
}

.kicker span { width: 26px; height: 2px; background: var(--coral); }

h1 {
  max-width: 570px;
  margin: 0;
  font: 850 clamp(3rem, 4.7vw, 5.1rem)/.94 ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: -.075em;
  text-wrap: balance;
}

.hero-lead {
  max-width: 610px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.6vw, 1.25rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
  border: 1px solid var(--line);
  font: 900 .74rem/1 ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: .04em;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover { transform: translate(-2px, -2px); }
.button--primary { border-color: #ff788d; background: var(--coral); box-shadow: 6px 6px 0 var(--coral-deep); }
.button--primary:hover { box-shadow: 8px 8px 0 var(--coral-deep); }
.button--ghost { background: rgba(13,29,53,.6); }
.button--ghost:hover { background: var(--night-2); }

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin: 34px 0 0;
  padding: 0;
  color: #c5ccda;
  font-size: .84rem;
  list-style: none;
}

.hero-trust li { display: flex; gap: 8px; align-items: center; }
.hero-trust span { color: var(--coral); }

.hero-visual { position: relative; z-index: 2; padding: 42px 20px; }

.quest-window {
  overflow: hidden;
  position: relative;
  border: 1px solid #5d7194;
  background: var(--panel);
  box-shadow: 16px 16px 0 #020713, 0 38px 90px rgba(0,0,0,.42);
  transform: rotate(1.2deg);
}

.quest-window::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 60%, rgba(4,10,20,.75));
}

.quest-window__top {
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  border-bottom: 1px solid #3e567d;
  color: #c9d3e6;
  font: 800 .65rem/1 ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: .08em;
}

.window-hearts { color: var(--coral); letter-spacing: .18em; }

.quest-window img { width: 100%; aspect-ratio: 3 / 2; display: block; object-fit: cover; }

.quest-dialogue {
  width: calc(100% - 52px);
  position: absolute;
  left: 26px;
  bottom: 24px;
  z-index: 2;
  padding: 18px 20px;
  border: 2px solid var(--ivory);
  background: rgba(8, 17, 31, .9);
  box-shadow: 5px 5px 0 rgba(4,9,19,.9);
  text-align: center;
}

.quest-dialogue span {
  display: block;
  margin-bottom: 9px;
  color: var(--coral);
  font: 900 .64rem/1 ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: .12em;
}

.quest-dialogue strong {
  font: 800 clamp(.9rem, 1.7vw, 1.2rem)/1.35 ui-monospace, SFMono-Regular, Menlo, monospace;
}

.hero-note {
  min-width: 112px;
  position: absolute;
  z-index: 4;
  padding: 11px 13px;
  border: 1px solid #61769a;
  background: #0d1d35;
  box-shadow: 5px 5px 0 #020713;
  transform: rotate(-2deg);
}

.hero-note span { color: var(--coral); font: 900 .62rem/1 ui-monospace, monospace; }
.hero-note p { margin: 4px 0 0; font: 900 .62rem/1 ui-monospace, monospace; letter-spacing: .06em; }
.hero-note--photo { top: 14px; left: 0; }
.hero-note--story { right: -12px; top: 40%; transform: rotate(2deg); }
.hero-note--quest { left: 4%; bottom: 4px; transform: rotate(1deg); }

.scroll-cue {
  display: flex;
  gap: 12px;
  align-items: center;
  position: absolute;
  bottom: 28px;
  left: 0;
  color: #7e8da7;
  font: 800 .63rem/1 ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: .13em;
  text-decoration: none;
}

.scroll-cue i { color: var(--coral); font-style: normal; font-size: 1rem; animation: bob 1.6s ease-in-out infinite; }

.site-header {
  transition: width 180ms ease, height 180ms ease, background 180ms ease, padding 180ms ease;
}

.site-header.is-scrolled {
  width: min(100% - 24px, 1240px);
  height: 76px;
  position: fixed;
  top: 12px;
  padding-inline: 18px;
  border: 1px solid var(--line);
  background: rgba(7, 16, 31, .9);
  backdrop-filter: blur(18px);
  box-shadow: 0 16px 50px rgba(0,0,0,.32);
}

.site-header.is-scrolled .brand { width: 82px; }

.section {
  width: var(--page);
  margin-inline: auto;
  padding: clamp(90px, 11vw, 150px) 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
  gap: clamp(40px, 8vw, 110px);
  align-items: end;
  margin-bottom: 58px;
}

.section-heading--compact { grid-template-columns: 1fr; }

.section-heading h2,
.transformation h2,
.delivery h2,
.universes h2,
.trust h2,
.faq h2,
.final-cta h2 {
  margin: 0;
  font: 850 clamp(2.45rem, 5vw, 5rem)/.98 ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: -.065em;
  text-wrap: balance;
}

.section-heading > p {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.experiences {
  width: 100%;
  padding-inline: max(20px, calc((100% - 1180px) / 2));
  background:
    radial-gradient(circle at 4% 20%, rgba(242, 78, 106, .08), transparent 30rem),
    linear-gradient(180deg, #0b1729, #08111f);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.experience-card {
  overflow: hidden;
  border: 1px solid #334b72;
  background: linear-gradient(145deg, rgba(18,36,61,.92), rgba(8,17,31,.98));
  box-shadow: 10px 10px 0 #030915;
  transition: transform 180ms ease, border-color 180ms ease;
}

.experience-card:hover { transform: translateY(-6px); border-color: #6682ae; }

.experience-media { height: 270px; overflow: hidden; position: relative; border-bottom: 1px solid #334b72; }
.experience-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 54%, rgba(5,12,24,.78)); }
.experience-media img { width: 100%; height: 100%; display: block; object-fit: cover; transition: transform 600ms ease; }
.experience-card:hover .experience-media img { transform: scale(1.035); }

.availability,
.card-number {
  position: absolute;
  z-index: 2;
  top: 18px;
  padding: 9px 10px;
  border: 1px solid rgba(247,235,221,.3);
  background: rgba(7,16,31,.78);
  backdrop-filter: blur(8px);
  font: 900 .62rem/1 ui-monospace, monospace;
  letter-spacing: .08em;
}

.availability { left: 18px; }
.availability i { width: 7px; height: 7px; display: inline-block; margin-right: 7px; background: var(--coral); box-shadow: 0 0 0 3px rgba(242,78,106,.18); }
.card-number { right: 18px; color: var(--muted); }

.experience-body { padding: clamp(26px, 4vw, 42px); }
.experience-type { margin: 0 0 12px; color: var(--coral); font: 900 .68rem/1 ui-monospace, monospace; letter-spacing: .14em; }
.experience-body h3 { margin: 0; font: 850 clamp(2rem, 3.2vw, 3.25rem)/1 ui-monospace, monospace; letter-spacing: -.05em; }
.experience-body > p:not(.experience-type) { min-height: 108px; margin: 20px 0 0; color: var(--muted); line-height: 1.65; }

.price { display: flex; gap: 9px; align-items: end; margin-top: 18px; }
.price span { padding-bottom: 5px; color: var(--muted); font: 900 .58rem/1 ui-monospace, monospace; letter-spacing: .1em; }
.price strong { color: var(--ivory); font: 900 1.8rem/1 ui-monospace, monospace; letter-spacing: -.07em; }

.feature-list { display: grid; gap: 11px; margin: 26px 0 0; padding: 0; list-style: none; }
.feature-list li { position: relative; padding-left: 22px; color: #d7dce6; font-size: .92rem; }
.feature-list li::before { content: "♥"; position: absolute; left: 0; color: var(--coral); font-size: .76rem; }

.edition-row { min-height: 72px; display: grid; grid-template-columns: 1fr; gap: 10px; margin-top: 26px; }
.edition-row span { padding: 13px; border: 1px solid var(--line); background: rgba(5,12,24,.5); color: var(--muted); font-size: .76rem; line-height: 1.45; }
.edition-row b { display: block; margin-bottom: 5px; color: var(--ivory); font: 900 .62rem/1 ui-monospace, monospace; }

.card-actions { display: flex; align-items: center; gap: 24px; margin-top: 32px; }
.text-link { color: #dce2ec; font: 900 .7rem/1 ui-monospace, monospace; letter-spacing: .05em; text-decoration: none; }
.text-link span { color: var(--coral); }

.experience-card--future {
  display: flex;
  flex-direction: column;
  border-style: dashed;
  background: linear-gradient(150deg, rgba(18,36,61,.56), rgba(7,16,31,.92));
}

.future-card-art {
  min-height: 270px;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px dashed #334b72;
  background:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px),
    radial-gradient(circle, rgba(242,78,106,.16), transparent 10rem);
  background-size: 22px 22px, 22px 22px, auto;
}

.future-card-art img { width: 104px; filter: saturate(.75); opacity: .78; }
.future-card-art > span { position: absolute; right: calc(50% - 77px); bottom: calc(50% - 66px); color: var(--coral); font: 900 2rem/1 ui-monospace, monospace; }
.future-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 24px 0 0; padding: 0; list-style: none; }
.future-tags li { padding: 8px 9px; border: 1px solid var(--line); color: #bfc8d8; font: 800 .6rem/1 ui-monospace, monospace; text-transform: uppercase; }

.transformation {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: clamp(42px, 8vw, 100px);
  align-items: center;
  position: relative;
}

.transformation-copy > p:not(.kicker) { margin: 26px 0 0; color: var(--muted); font-size: 1.04rem; line-height: 1.75; }
.mini-stats { display: grid; gap: 12px; margin-top: 36px; }
.mini-stats span { display: flex; gap: 14px; align-items: center; padding-bottom: 12px; border-bottom: 1px solid var(--line); color: #d4dae6; font-size: .86rem; }
.mini-stats b { color: var(--coral); font: 900 .65rem/1 ui-monospace, monospace; }

.comparison {
  --position: 48%;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  position: relative;
  border: 1px solid #536d98;
  background: var(--panel);
  box-shadow: 13px 13px 0 #020713;
}

.comparison-image { width: 100%; height: 100%; display: block; position: absolute; inset: 0; object-fit: cover; }
.comparison-before { width: 100%; height: 100%; overflow: hidden; position: absolute; inset: 0; z-index: 2; clip-path: inset(0 calc(100% - var(--position)) 0 0); }
.comparison-before .comparison-image { width: 100%; }
.comparison-divider { width: 2px; height: 100%; position: absolute; top: 0; left: var(--position); z-index: 4; translate: -50% 0; background: var(--ivory); pointer-events: none; }
.comparison-divider span { width: 44px; height: 44px; display: grid; place-items: center; position: absolute; top: 50%; left: 50%; translate: -50% -50%; border: 2px solid var(--ivory); background: var(--coral); box-shadow: 4px 4px 0 #761e33; font-weight: 900; }
.comparison-label { position: absolute; top: 16px; z-index: 5; padding: 9px 10px; border: 1px solid rgba(247,235,221,.35); background: rgba(7,16,31,.78); font: 900 .6rem/1 ui-monospace, monospace; letter-spacing: .06em; pointer-events: none; }
.comparison-label--before { left: 16px; }
.comparison-label--after { right: 16px; }
.comparison-range { width: 100%; height: 100%; position: absolute; inset: 0; z-index: 6; opacity: 0; cursor: ew-resize; appearance: none; }
.fiction-note { grid-column: 2; margin: -65px 0 0; color: #71809a; font-size: .72rem; }

.process { padding-top: 96px; border-top: 1px solid var(--line); }
.process .section-heading { margin-bottom: 38px; }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin: 58px 0 0; padding: 0; list-style: none; }
.process-grid li { min-height: 430px; overflow: hidden; position: relative; padding: 18px 18px 26px; border: 1px solid var(--line); background: linear-gradient(160deg, rgba(19,36,61,.88), rgba(8,17,31,.65)); box-shadow: 7px 7px 0 #020713; }
.process-grid li:last-child { border-right: 1px solid var(--line); }
.process-grid li:nth-child(even) { transform: translateY(18px); }
.step-number { color: var(--coral); font: 900 .66rem/1 ui-monospace, monospace; letter-spacing: .1em; }
.step-visual { height: 175px; overflow: hidden; position: relative; margin: 18px -18px 0; border-block: 1px solid var(--line); background: var(--night); }
.step-visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 44%, rgba(4,9,18,.75)); }
.step-visual img { width: 100%; height: 100%; display: block; object-fit: cover; transition: transform 500ms ease; }
.process-grid li:hover .step-visual img { transform: scale(1.05); }
.step-visual b { position: absolute; left: 12px; bottom: 11px; z-index: 2; padding: 7px 8px; border: 1px solid rgba(247,235,221,.35); background: rgba(7,16,31,.8); color: var(--coral); font: 900 .54rem/1 ui-monospace, monospace; letter-spacing: .08em; }
.process-grid h3 { margin: 24px 0 12px; font: 850 1.18rem/1.2 ui-monospace, monospace; }
.process-grid p { margin: 0; color: var(--muted); font-size: .9rem; line-height: 1.6; }

.delivery {
  width: 100%;
  padding-inline: max(20px, calc((100% - 1180px) / 2));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, #0d1d35, #0a1628);
}

.delivery-intro { max-width: 790px; margin-bottom: 58px; }
.delivery-intro > p:last-child { margin: 22px 0 0; color: var(--muted); font-size: 1.08rem; }
.delivery-grid { display: grid; grid-template-columns: 1.15fr .85fr .85fr; gap: 14px; }
.delivery-card { min-height: 270px; overflow: hidden; position: relative; padding: 0; border: 1px solid var(--line); background: rgba(7,16,31,.8); }
.delivery-card--large { grid-row: span 2; min-height: 554px; display: grid; grid-template-rows: 1fr auto; background: #08111f; }
.delivery-card--accent { grid-column: 2 / 4; display: grid; grid-template-columns: .72fr 1fr; border-color: rgba(242,78,106,.42); }
.delivery-art { height: 148px; overflow: hidden; position: relative; border-bottom: 1px solid var(--line); }
.delivery-art::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(4,9,18,.7)); }
.delivery-art img { width: 100%; height: 100%; display: block; object-fit: cover; transition: transform 550ms ease; }
.delivery-card:hover .delivery-art img { transform: scale(1.045); }
.delivery-card--large .delivery-art { height: auto; min-height: 300px; }
.delivery-card--accent .delivery-art { height: 100%; min-height: 270px; border-right: 1px solid var(--line); border-bottom: 0; }
.delivery-card-copy { padding: 24px 26px 28px; }
.pixel-icon { width: 52px; height: 52px; display: grid; place-items: center; color: var(--coral); border: 1px solid #405b84; background: var(--night-2); box-shadow: 5px 5px 0 #020713; font: 900 1.15rem/1 ui-monospace, monospace; }
.delivery-card h3 { margin: 28px 0 11px; font: 850 1.22rem/1.2 ui-monospace, monospace; }
.delivery-card p { margin: 0; color: var(--muted); line-height: 1.65; }
.delivery-card:not(.delivery-card--large) h3 { margin-top: 0; }
.delivery-time { display: block; margin-bottom: 18px; color: var(--ivory); font: 900 3.7rem/.8 ui-monospace, monospace; letter-spacing: -.1em; }
.delivery-time span { color: var(--coral); font-size: 1.2rem; letter-spacing: 0; }
.delivery-card--accent h3 { margin: 0 0 10px; }

.universe-panel {
  overflow: hidden;
  position: relative;
  padding: clamp(34px, 6vw, 72px);
  border: 1px solid #405981;
  background:
    radial-gradient(circle at 86% 16%, rgba(242,78,106,.18) 0 2px, transparent 3px),
    radial-gradient(circle at 74% 30%, rgba(247,235,221,.8) 0 1px, transparent 2px),
    radial-gradient(circle at 94% 66%, rgba(255,179,91,.7) 0 1px, transparent 2px),
    radial-gradient(ellipse at 85% 50%, rgba(55,76,150,.24), transparent 35%),
    linear-gradient(145deg, #0c1930, #080f20);
  box-shadow: 12px 12px 0 #020713;
}

.universe-copy { max-width: 900px; }
.universe-copy > p:last-child { max-width: 780px; margin: 25px 0 0; color: var(--muted); font-size: 1.04rem; line-height: 1.72; }
.universe-copy strong { color: var(--ivory); }
.universe-options { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 28px; }
.universe-option { min-height: 430px; overflow: hidden; position: relative; border: 1px solid #395277; background: rgba(7,16,31,.86); box-shadow: 7px 7px 0 #020713; }
.universe-art { height: 260px; overflow: hidden; position: relative; border-bottom: 1px solid #395277; }
.universe-art::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(4,9,18,.78)); }
.universe-art img { width: 100%; height: 100%; display: block; object-fit: cover; transition: transform 600ms ease; }
.universe-option:hover .universe-art img { transform: scale(1.04); }
.universe-option > div:last-child { padding: 25px 28px 30px; }
.universe-option span { color: var(--coral); font: 900 .62rem/1 ui-monospace, monospace; letter-spacing: .1em; }
.universe-option h3 { margin: 16px 0 11px; font: 850 1.55rem/1 ui-monospace, monospace; }
.universe-option p { margin: 0; color: var(--muted); font-size: .9rem; line-height: 1.6; }
.universe-option--galaxy { border-color: rgba(242,78,106,.5); }
.universe-option--fantasy { border-color: rgba(255,179,91,.44); }
.universe-option--mystery { border-color: rgba(92,123,171,.7); }
.universe-price { margin: 25px 0 0; color: var(--muted); font-size: .9rem; text-align: right; }
.universe-price strong { color: var(--ivory); }
.future-line { display: grid; grid-template-columns: auto auto 1fr auto 1.2fr; gap: 18px; align-items: center; margin-top: 44px; }
.future-line span { color: var(--coral); font: 900 .62rem/1 ui-monospace, monospace; letter-spacing: .1em; }
.future-line strong { font-size: .92rem; }
.future-line i { height: 1px; background: var(--line); }
.future-line p { margin: 0; color: var(--muted); font-size: .86rem; }

.trust { padding-top: 30px; }
.trust-panel { display: grid; grid-template-columns: 1fr .85fr; gap: 90px; padding: clamp(36px, 6vw, 70px); border: 1px solid var(--line); background: #0b1729; }
.trust-copy > p { margin: 0; color: var(--muted); font-size: 1.05rem; line-height: 1.75; }
.trust-copy ul { display: grid; gap: 15px; margin: 32px 0 0; padding: 0; list-style: none; }
.trust-copy li { padding: 14px 0; border-top: 1px solid var(--line); color: #d9dee8; }
.trust-copy li span { margin-right: 14px; color: var(--coral); font: 900 .65rem/1 ui-monospace, monospace; }

.faq { display: grid; grid-template-columns: .65fr 1.35fr; gap: 90px; }
.faq-list details { border-top: 1px solid var(--line); }
.faq-list details:last-child { border-bottom: 1px solid var(--line); }
.faq-list summary { min-height: 76px; display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 18px 0; cursor: pointer; color: #e3e6ed; font-weight: 750; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { color: var(--coral); font: 400 1.45rem/1 ui-monospace, monospace; transition: rotate 180ms ease; }
.faq-list details[open] summary span { rotate: 45deg; }
.faq-list details p { max-width: 670px; margin: -2px 0 24px; color: var(--muted); line-height: 1.7; }

.final-cta {
  min-height: 690px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 90px 20px;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% 40%, rgba(242,78,106,.17), transparent 22rem),
    linear-gradient(180deg, #0b1729, #07101f);
  text-align: center;
}

.final-cta::before { content: ""; position: absolute; inset: 26px; border: 1px solid rgba(159,181,218,.12); pointer-events: none; }
.final-heart { width: 82px; margin-bottom: 34px; }
.final-heart img { width: 100%; display: block; }
.final-cta .kicker { justify-content: center; }
.final-cta h1,
.final-cta h2 { max-width: 900px; font-size: clamp(2.8rem, 6vw, 6.2rem); }
.final-cta > p:not(.kicker) { max-width: 690px; margin: 26px auto 0; color: var(--muted); font-size: 1.08rem; line-height: 1.7; }
.final-cta .hero-actions { justify-content: center; }
.button--large { min-height: 64px; margin-top: 36px; padding-inline: 28px; }
.final-cta small { margin-top: 22px; color: #77869f; }

footer {
  width: var(--page);
  min-height: 160px;
  display: grid;
  grid-template-columns: 130px 1fr auto;
  gap: 32px;
  align-items: center;
  margin: auto;
  color: #7f8ca2;
  font-size: .78rem;
}

.footer-brand { width: 105px; }
.footer-brand img { width: 100%; display: block; }
footer p { margin: 0; }
footer div { display: flex; gap: 24px; align-items: center; }
footer a { color: #b9c2d2; text-decoration: none; }

.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity 650ms ease, transform 650ms ease; }
.js .reveal.is-visible { opacity: 1; transform: none; }

@keyframes bob { 50% { transform: translateY(5px); } }

@media (max-width: 940px) {
  .site-header { grid-template-columns: 100px 1fr; }
  nav { display: none; }
  .header-cta { justify-self: end; }
  .hero { grid-template-columns: 1fr; padding-top: 150px; }
  .hero-copy { max-width: 760px; }
  .hero-visual { width: min(760px, 100%); margin: 0 auto; }
  .scroll-cue { display: none; }
  .section-heading,
  .transformation,
  .universe-panel,
  .trust-panel,
  .faq { grid-template-columns: 1fr; }
  .experience-grid { grid-template-columns: 1fr; }
  .transformation-copy { max-width: 720px; }
  .fiction-note { grid-column: 1; margin: -20px 0 0; }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .process-grid li,
  .process-grid li:nth-child(even) { border: 1px solid var(--line); transform: none; }
  .delivery-grid { grid-template-columns: 1fr 1fr; }
  .delivery-card--large { grid-row: auto; min-height: 300px; }
  .delivery-card--accent { grid-column: 1 / -1; }
  .future-line { grid-template-columns: auto 1fr; }
  .future-line i { display: none; }
  .trust-panel,
  .faq { gap: 50px; }
  footer { grid-template-columns: 100px 1fr; }
  footer div { grid-column: 1 / -1; justify-content: space-between; padding-bottom: 30px; }
}

@media (max-width: 620px) {
  :root { --page: min(1180px, calc(100% - 28px)); }
  .site-header { width: calc(100% - 28px); height: 88px; grid-template-columns: 88px 1fr; gap: 14px; }
  .brand { width: 88px; }
  .header-cta { min-width: 76px; justify-self: end; padding: 12px; font-size: 0; text-align: center; }
  .header-cta::after { content: "CREAR"; font: 900 .62rem/1 ui-monospace, SFMono-Regular, Menlo, monospace; letter-spacing: .06em; }
  .hero { min-height: auto; padding: 124px 0 80px; gap: 34px; }
  h1 { max-width: 100%; font-size: clamp(2.2rem, 9vw, 2.7rem); letter-spacing: -.07em; text-wrap: wrap; }
  .hero-lead { margin-top: 22px; }
  .hero-actions { display: grid; }
  .button { width: 100%; }
  .hero-trust { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 10px; }
  .hero-trust li:last-child { grid-column: 1 / -1; }
  .hero-visual { padding: 24px 7px 36px; }
  .quest-window { box-shadow: 8px 8px 0 #020713; transform: none; }
  .quest-window__top { height: 38px; padding-inline: 10px; font-size: .56rem; }
  .quest-dialogue { width: calc(100% - 28px); left: 14px; bottom: 12px; padding: 13px 10px; }
  .hero-note { display: none; }
  .section { padding-block: 82px; }
  .section-heading { gap: 24px; margin-bottom: 38px; }
  .section-heading h2,
  .transformation h2,
  .delivery h2,
  .universes h2,
  .trust h2,
  .faq h2 { font-size: clamp(2.2rem, 11vw, 3.5rem); }
  .experience-media { height: 250px; }
  .experience-body > p:not(.experience-type) { min-height: auto; }
  .edition-row { grid-template-columns: 1fr; }
  .card-actions { align-items: stretch; flex-direction: column; }
  .card-actions .button { width: 100%; }
  .text-link { text-align: center; }
  .comparison-label { top: 9px; padding: 7px; font-size: .5rem; }
  .comparison-label--before { left: 9px; }
  .comparison-label--after { right: 9px; }
  .comparison-divider span { width: 36px; height: 36px; }
  .process-grid,
  .delivery-grid { grid-template-columns: 1fr; }
  .delivery-card--accent { grid-column: auto; grid-template-columns: 1fr; }
  .delivery-card--accent .delivery-art { height: 190px; min-height: 190px; border-right: 0; border-bottom: 1px solid var(--line); }
  .delivery-time { font-size: 3.5rem; }
  .universe-panel { padding: 28px 20px; gap: 40px; }
  .universe-options { grid-template-columns: 1fr; }
  .universe-option { min-height: 390px; }
  .universe-art { height: 230px; }
  .universe-price { text-align: left; line-height: 1.6; }
  .future-line { grid-template-columns: 1fr; }
  .future-line span:not(:first-child) { margin-top: 16px; }
  .trust-panel { padding: 30px 22px; }
  .final-cta { min-height: 620px; }
  .button--large { font-size: .64rem; }
  footer { grid-template-columns: 1fr; padding: 38px 0; text-align: center; }
  .footer-brand { margin: auto; }
  footer div { grid-column: auto; flex-wrap: wrap; justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
