:root {
  color-scheme: dark;
  --ink: #150f1a;
  --ink-soft: #1e1526;
  --panel: #281b30;
  --panel-raised: #35233b;
  --text: #fff8fc;
  --muted: #cbbfcd;
  --quiet: #9d8fa3;
  --line: rgba(255, 255, 255, 0.12);
  --pink: #ff9fb3;
  --pink-bright: #ffb1c0;
  --gold: #ffe47a;
  --coral: #e86e62;
  --plum: #2e1728;
  --shadow: 0 28px 90px rgba(4, 2, 7, 0.42);
  --radius: 24px;
  --max: 1180px;
  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;
  background:
    radial-gradient(circle at 76% -10%, rgba(232, 110, 98, 0.18), transparent 34rem),
    radial-gradient(circle at 10% 35%, rgba(114, 54, 110, 0.18), transparent 28rem),
    var(--ink);
  color: var(--text);
  line-height: 1.6;
}

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

.skip-link {
  position: fixed;
  z-index: 50;
  top: 12px;
  left: 16px;
  transform: translateY(-160%);
  padding: 10px 14px;
  border-radius: 12px;
  background: var(--gold);
  color: #1e1219;
  font-weight: 800;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 24px;
  align-items: center;
  min-height: 76px;
  padding: 0 max(22px, calc((100vw - var(--max)) / 2));
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(21, 15, 26, 0.82);
  backdrop-filter: blur(20px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  width: max-content;
  color: var(--text);
  font-size: 1.08rem;
  font-weight: 850;
  letter-spacing: -0.02em;
  text-decoration: none;
}
.brand img { width: 36px; height: 36px; border-radius: 10px; box-shadow: 0 8px 24px rgba(232, 110, 98, 0.2); }

.top-nav, .footer-nav { display: flex; flex-wrap: wrap; gap: 8px 18px; }
.top-nav a, .footer-nav a { color: var(--muted); font-weight: 650; text-decoration: none; }
.top-nav a:hover, .top-nav a:focus-visible, .footer-nav a:hover, .footer-nav a:focus-visible { color: var(--pink-bright); }

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 19px;
  border: 1px solid rgba(255, 159, 179, 0.5);
  border-radius: 999px;
  background: var(--pink);
  color: #1c1119;
  font-weight: 850;
  text-decoration: none;
  box-shadow: 0 14px 32px rgba(232, 110, 98, 0.16);
}
.button:hover, .button:focus-visible { background: var(--pink-bright); transform: translateY(-1px); }
.button.secondary { background: transparent; color: var(--text); box-shadow: none; }
.button.secondary:hover, .button.secondary:focus-visible { background: rgba(255, 159, 179, 0.1); }
.button.small { min-height: 42px; padding: 9px 16px; }

main { min-height: 70vh; }
.hero, .section, .legal-shell { width: min(var(--max), calc(100% - 44px)); margin-inline: auto; }
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(330px, 0.8fr);
  gap: clamp(40px, 7vw, 96px);
  align-items: center;
  min-height: min(790px, calc(100svh - 76px));
  padding: 72px 0 78px;
}
.eyebrow {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h1, h2 { font-family: Georgia, "Times New Roman", serif; font-weight: 600; }
h1 { max-width: 760px; margin-bottom: 22px; font-size: clamp(3.4rem, 7.6vw, 7.1rem); line-height: 0.92; letter-spacing: -0.055em; }
h2 { margin-bottom: 18px; font-size: clamp(2.35rem, 5vw, 4.7rem); line-height: 1; letter-spacing: -0.035em; }
h3 { margin-bottom: 8px; font-size: 1.18rem; }
.hero h1 em { color: var(--pink-bright); font-weight: inherit; }
.lede { max-width: 660px; color: var(--muted); font-size: clamp(1.08rem, 2vw, 1.35rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 31px 0 17px; }
.availability { color: var(--quiet); font-size: 0.93rem; }

.hero-art { position: relative; min-height: 590px; }
.path-glow {
  position: absolute;
  inset: 13% 3% 8%;
  border-radius: 52% 48% 46% 54%;
  background: radial-gradient(circle, rgba(255, 228, 122, 0.2), rgba(232, 110, 98, 0.1) 38%, transparent 69%);
  filter: blur(8px);
}
.cover-stack { position: relative; width: min(100%, 470px); height: 570px; margin: 0 auto; }
.cover-card {
  position: absolute;
  overflow: hidden;
  width: 51%;
  aspect-ratio: 2 / 3;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  background: var(--panel);
  box-shadow: var(--shadow);
}
.cover-card img { width: 100%; height: 100%; object-fit: cover; }
.cover-card:nth-child(1) { z-index: 3; top: 4%; left: 25%; transform: rotate(-1deg); }
.cover-card:nth-child(2) { z-index: 2; top: 18%; left: 2%; transform: rotate(-10deg); opacity: 0.82; }
.cover-card:nth-child(3) { z-index: 1; top: 17%; right: 1%; transform: rotate(10deg); opacity: 0.78; }
.brand-orbit {
  position: absolute;
  z-index: 5;
  right: 5%;
  bottom: 4%;
  width: 104px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 28px;
  background: rgba(30, 21, 38, 0.9);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.4);
}
.brand-orbit img { border-radius: 19px; }

.section { padding: 100px 0; }
.section-heading { max-width: 760px; margin-bottom: 44px; }
.section-heading p { color: var(--muted); font-size: 1.12rem; }
.story-grid, .feature-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.story-card, .feature-card, .callout, .legal-card {
  border: 1px solid var(--line);
  background: linear-gradient(150deg, rgba(53, 35, 59, 0.96), rgba(34, 23, 42, 0.96));
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.2);
}
.story-card { overflow: hidden; border-radius: var(--radius); }
.story-card img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: center 20%; }
.story-copy { padding: 22px; }
.story-copy p { margin-bottom: 0; color: var(--muted); }
.story-tag { display: inline-block; margin-bottom: 8px; color: var(--gold); font-size: 0.78rem; font-weight: 850; letter-spacing: 0.1em; text-transform: uppercase; }
.feature-card { min-height: 230px; padding: 28px; border-radius: var(--radius); }
.feature-number { color: var(--pink); font-family: Georgia, serif; font-size: 2.5rem; }
.feature-card p { color: var(--muted); }
.callout { display: grid; grid-template-columns: 1fr auto; gap: 30px; align-items: center; padding: clamp(30px, 5vw, 58px); border-radius: 34px; }
.callout h2 { max-width: 720px; margin-bottom: 11px; }
.callout p { max-width: 690px; margin-bottom: 0; color: var(--muted); }

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: end;
  width: min(var(--max), calc(100% - 44px));
  margin: 72px auto 0;
  padding: 34px 0 44px;
  border-top: 1px solid var(--line);
}
.site-footer p { margin: 10px 0 0; color: var(--quiet); }
.footer-nav { justify-content: flex-end; max-width: 580px; }

.legal-shell { max-width: 820px; padding: 80px 0 20px; }
.legal-shell h1 { max-width: 820px; font-size: clamp(3rem, 7vw, 5.6rem); }
.legal-meta { margin-bottom: 28px; color: var(--quiet); }
.legal-card { margin-bottom: 42px; padding: 25px; border-radius: 20px; color: var(--muted); }
.legal-card p:last-child { margin-bottom: 0; }
.legal-shell h2 { margin: 42px 0 15px; font-family: inherit; font-size: 1.45rem; font-weight: 800; letter-spacing: -0.02em; }
.legal-shell p, .legal-shell li { color: var(--muted); }
.legal-shell strong { color: var(--text); }
.legal-shell a { color: var(--pink-bright); }
.legal-shell ul, .legal-shell ol { padding-left: 1.35rem; }
.legal-shell li + li { margin-top: 9px; }

@media (max-width: 880px) {
  .site-header { grid-template-columns: 1fr auto; }
  .top-nav { display: none; }
  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 58px; }
  .hero-copy { text-align: center; }
  .hero-copy .lede { margin-inline: auto; }
  .hero-actions { justify-content: center; }
  .hero-art { min-height: 520px; }
  .cover-stack { height: 510px; }
  .story-grid, .feature-grid { grid-template-columns: 1fr; }
  .story-card { display: grid; grid-template-columns: minmax(130px, 0.7fr) 1fr; }
  .story-card img { height: 100%; aspect-ratio: auto; }
  .callout { grid-template-columns: 1fr; }
  .site-footer { grid-template-columns: 1fr; align-items: start; }
  .footer-nav { justify-content: flex-start; }
}

@media (max-width: 560px) {
  .site-header { min-height: 68px; padding-inline: 16px; }
  .brand img { width: 32px; height: 32px; }
  .button.small { padding-inline: 13px; }
  .hero, .section, .legal-shell, .site-footer { width: min(100% - 32px, var(--max)); }
  h1 { font-size: clamp(3.15rem, 16vw, 4.8rem); }
  .hero-art { min-height: 430px; }
  .cover-stack { height: 430px; }
  .cover-card { width: 55%; border-radius: 18px; }
  .brand-orbit { width: 80px; border-radius: 22px; }
  .story-card { grid-template-columns: 112px 1fr; }
  .story-copy { padding: 17px; }
  .story-copy p { font-size: 0.93rem; }
  .section { padding: 76px 0; }
}

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

