:root {
  --landing-paper: #fdf9f5;
  --landing-paper-strong: #fffdf9;
  --landing-ink: #1a1a2e;
  --landing-ink-soft: #49495f;
  --landing-muted: #746d72;
  --landing-border: rgba(26, 26, 46, 0.1);
  --landing-rose: #8b2d4f;
  --landing-rose-deep: #6d203d;
  --landing-rose-soft: #f5d9df;
  --landing-gold: #c9a96e;
  --landing-gold-soft: #f3ead6;
  --landing-night: #181729;
  --landing-night-soft: #25233a;
  --landing-shadow: 0 28px 80px rgba(26, 26, 46, 0.12);
  --landing-shadow-soft: 0 18px 48px rgba(26, 26, 46, 0.08);
  --landing-shell: min(1180px, calc(100vw - 40px));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.landing-body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at top left, rgba(245, 217, 223, 0.75), transparent 34%),
    linear-gradient(180deg, #fffdfb 0%, var(--landing-paper) 40%, #fffaf6 100%);
  color: var(--landing-ink);
  font-family: "Inter", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.landing-shell {
  width: var(--landing-shell);
  margin: 0 auto;
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(253, 249, 245, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow: 0 10px 40px rgba(26, 26, 46, 0.04);
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  gap: 20px;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.brand-mark__pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: linear-gradient(140deg, var(--landing-rose), #ba6180);
  color: #fff;
  font-weight: 800;
  letter-spacing: -0.04em;
  box-shadow: 0 14px 28px rgba(139, 45, 79, 0.25);
}

.brand-mark__text {
  display: flex;
  align-items: baseline;
  gap: 5px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--landing-ink);
}

.brand-mark__lead {
  color: var(--landing-rose);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--landing-ink-soft);
  font-size: 0.92rem;
}

.nav-links a {
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--landing-rose), var(--landing-gold));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
  cursor: pointer;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--landing-rose), #a44567);
  box-shadow: 0 18px 34px rgba(139, 45, 79, 0.24);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  box-shadow: 0 22px 38px rgba(139, 45, 79, 0.3);
}

.btn-secondary {
  color: var(--landing-rose);
  background: rgba(255, 255, 255, 0.65);
  border-color: rgba(139, 45, 79, 0.18);
}

.btn-secondary:hover,
.btn-secondary:focus-visible,
.btn-ghost:hover,
.btn-ghost:focus-visible {
  background: rgba(139, 45, 79, 0.08);
  border-color: rgba(139, 45, 79, 0.22);
}

.btn-ghost {
  min-height: 46px;
  padding-inline: 18px;
  color: var(--landing-ink);
  background: rgba(255, 255, 255, 0.55);
  border-color: rgba(26, 26, 46, 0.08);
}

.btn-gold {
  color: var(--landing-night);
  background: linear-gradient(135deg, #e5c98d, var(--landing-gold));
  box-shadow: 0 18px 34px rgba(201, 169, 110, 0.26);
}

.btn-gold:hover,
.btn-gold:focus-visible {
  box-shadow: 0 22px 40px rgba(201, 169, 110, 0.32);
}

.btn-light-outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.05);
}

.btn-light-outline:hover,
.btn-light-outline:focus-visible {
  background: rgba(255, 255, 255, 0.1);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border-radius: 16px;
  border: 1px solid rgba(26, 26, 46, 0.08);
  background: rgba(255, 255, 255, 0.72);
  color: var(--landing-ink);
  cursor: pointer;
}

.nav-toggle__line {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  border-radius: 999px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__line:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__line:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__line:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-panel {
  display: none;
  max-height: 0;
  overflow: hidden;
  transition: max-height 220ms ease;
}

body.nav-open .mobile-panel {
  max-height: 360px;
}

.mobile-panel__inner {
  display: grid;
  gap: 14px;
  padding: 0 0 24px;
}

.mobile-panel__inner a:not(.btn) {
  color: var(--landing-ink-soft);
  padding: 4px 0;
}

.hero-section {
  position: relative;
  overflow: clip;
  padding: 68px 0 54px;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(400px, 520px);
  gap: 60px;
  align-items: center;
}

.hero-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(6px);
  pointer-events: none;
}

.hero-orb--rose {
  inset: 76px auto auto -120px;
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(245, 217, 223, 0.8), transparent 70%);
}

.hero-orb--gold {
  inset: 160px 3vw auto auto;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(243, 234, 214, 0.85), transparent 72%);
}

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

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 24px;
  color: var(--landing-rose);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.section-kicker__line {
  width: 44px;
  height: 1px;
  background: currentColor;
}

.hero-title,
.intro-copy h2,
.section-heading h2,
.split-copy h2,
.final-cta h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  letter-spacing: -0.04em;
}

.hero-title {
  max-width: 10.5ch;
  margin-bottom: 40px;
  font-size: clamp(3.25rem, 8vw, 6.1rem);
  line-height: 0.96;
}

.hero-title span,
.intro-copy h2 span,
.section-heading h2 span,
.split-copy h2 span,
.final-cta h2 span {
  color: var(--landing-rose);
}

.hero-lead,
.hero-sublead,
.intro-copy p,
.feature-card p,
.step-card p,
.split-copy p,
.final-cta p,
.faq-item p,
.footer-copy,
.story-screen__body p,
.chapter-card p,
.presence-card__bubble {
  color: var(--landing-ink-soft);
  line-height: 1.8;
}

.hero-lead,
.hero-sublead {
  max-width: 620px;
  margin: 0;
  font-size: 1.05rem;
}

.hero-sublead {
  margin-top: 14px;
  color: var(--landing-muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.hero-actions--center {
  justify-content: center;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
  color: var(--landing-muted);
  font-size: 0.9rem;
}

.hero-proof li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.hero-proof li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--landing-rose), var(--landing-gold));
}

.hero-stage {
  position: relative;
  z-index: 1;
}

.hero-stage__frame {
  position: relative;
  min-height: 650px;
  padding: 44px;
  border-radius: 36px;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.92), rgba(251, 243, 239, 0.78)),
    linear-gradient(135deg, rgba(139, 45, 79, 0.15), rgba(201, 169, 110, 0.12));
  border: 1px solid rgba(255, 255, 255, 0.78);
  box-shadow: var(--landing-shadow);
  overflow: hidden;
}

.hero-stage__frame::before {
  content: "";
  position: absolute;
  inset: auto auto -120px -100px;
  width: 260px;
  height: 260px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(139, 45, 79, 0.18), transparent 70%);
}

.hero-stage__frame::after {
  content: "";
  position: absolute;
  inset: 28px 28px auto auto;
  width: 170px;
  height: 170px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(201, 169, 110, 0.22), transparent 70%);
}

.hero-stage__wash {
  position: absolute;
  inset: 60px 60px auto auto;
  width: 280px;
  height: 400px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(26, 26, 46, 0.08), rgba(26, 26, 46, 0)),
    radial-gradient(circle at top, rgba(139, 45, 79, 0.35), rgba(26, 26, 46, 0.18) 48%, rgba(26, 26, 46, 0.86) 100%);
  box-shadow: inset 0 0 80px rgba(255, 255, 255, 0.12);
}

.story-screen,
.presence-card,
.chapter-card {
  position: absolute;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow: var(--landing-shadow-soft);
}

.story-screen {
  inset: auto auto 42px 32px;
  width: min(100%, 380px);
  padding: 18px 18px 22px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.96), rgba(255, 249, 245, 0.92));
}

.story-screen__chrome {
  display: flex;
  gap: 8px;
}

.story-screen__chrome span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(26, 26, 46, 0.12);
}

.story-screen__body {
  padding: 22px 8px 2px;
}

.story-screen__body .story-screen__eyebrow,
.intro-copy .section-label,
.section-heading .section-label,
.split-copy .section-label,
.final-cta .section-label,
.genre-showcase__card--front .genre-showcase__label,
.chapter-card > span {
  margin: 0 0 12px;
  color: var(--landing-gold);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.story-screen__body h2,
.feature-card h3,
.step-card h3,
.genre-showcase__card--front h3,
.faq-item summary {
  margin: 0;
  color: var(--landing-ink);
}

.story-screen__body h2,
.feature-card h3,
.step-card h3,
.genre-showcase__card--front h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.45rem;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.story-screen__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.story-screen__tags span,
.genre-cloud span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(139, 45, 79, 0.08);
  color: var(--landing-rose);
  font-size: 0.82rem;
  font-weight: 600;
}

.presence-card {
  inset: 44px 28px auto auto;
  width: min(100%, 280px);
  padding: 18px;
}

.presence-card__avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--landing-rose), var(--landing-gold));
  color: #fff;
  font-weight: 700;
}

.presence-card__meta {
  position: absolute;
  inset: 20px auto auto 74px;
}

.presence-card__meta p {
  margin: 0;
  font-weight: 700;
}

.presence-card__meta span {
  color: var(--landing-muted);
  font-size: 0.78rem;
}

.presence-card__bubble {
  margin-top: 56px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(248, 243, 237, 0.9);
  font-size: 0.92rem;
  font-style: italic;
}

.chapter-card {
  inset: auto 38px 152px auto;
  width: min(100%, 240px);
  padding: 22px;
}

.chapter-card strong {
  display: block;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.12rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.chapter-card__meter,
.genre-showcase__meter div {
  height: 8px;
  margin-top: 18px;
  border-radius: 999px;
  background: rgba(26, 26, 46, 0.08);
  overflow: hidden;
}

.chapter-card__meter div,
.genre-showcase__meter i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--landing-rose), var(--landing-gold));
}

.chapter-card__meter div {
  width: 64%;
}

.intro-section {
  padding: 44px 0 18px;
}

.intro-copy {
  max-width: 760px;
  text-align: center;
}

.intro-copy h2,
.section-heading h2,
.split-copy h2,
.final-cta h2 {
  font-size: clamp(2.25rem, 4.4vw, 4rem);
  line-height: 1.05;
}

.intro-copy p:last-child {
  margin: 24px auto 0;
  max-width: 680px;
  font-size: 1.02rem;
}

.section-block {
  padding: 104px 0;
}

.section-block--warm {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.46)),
    radial-gradient(circle at top left, rgba(243, 234, 214, 0.6), transparent 28%);
}

.section-block--split {
  padding-top: 94px;
}

.section-block--dark {
  position: relative;
  background:
    radial-gradient(circle at top left, rgba(201, 169, 110, 0.16), transparent 28%),
    radial-gradient(circle at bottom right, rgba(139, 45, 79, 0.24), transparent 36%),
    linear-gradient(135deg, #181729 0%, #211f36 100%);
  overflow: clip;
}

.section-block--dark::before {
  content: "";
  position: absolute;
  inset: auto auto -100px -80px;
  width: 240px;
  height: 240px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(201, 169, 110, 0.28), transparent 72%);
}

.section-block--faq {
  padding-top: 96px;
  padding-bottom: 120px;
}

.section-heading,
.faq-shell .section-heading {
  max-width: 650px;
  margin: 0 auto 46px;
  text-align: center;
}

.section-label {
  margin-bottom: 18px;
}

.section-label--light {
  color: rgba(201, 169, 110, 0.9);
}

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

.feature-card,
.step-card,
.faq-item,
.genre-showcase__card--front {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 28px;
  box-shadow: var(--landing-shadow-soft);
}

.feature-card {
  padding: 30px 28px;
  backdrop-filter: blur(12px);
}

.feature-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 22px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(139, 45, 79, 0.12), rgba(201, 169, 110, 0.12));
  color: var(--landing-rose);
}

.feature-card__icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-card p,
.step-card p,
.split-copy p,
.final-cta p,
.faq-item p {
  margin: 16px 0 0;
  font-size: 0.95rem;
}

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

.steps-grid::before {
  content: "";
  position: absolute;
  inset: 54px 18% auto;
  height: 1px;
  background: linear-gradient(90deg, rgba(139, 45, 79, 0.08), rgba(201, 169, 110, 0.36), rgba(139, 45, 79, 0.08));
}

.step-card {
  position: relative;
  padding: 34px 28px 30px;
  text-align: center;
}

.step-card__number {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 88px;
  height: 88px;
  margin-bottom: 22px;
  border-radius: 50%;
  background: linear-gradient(180deg, #fff, rgba(243, 234, 214, 0.82));
  border: 1px solid rgba(201, 169, 110, 0.28);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--landing-rose);
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 470px);
  gap: 50px;
  align-items: center;
}

.split-copy p {
  max-width: 530px;
}

.genre-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.split-visual {
  position: relative;
}

.genre-showcase {
  position: relative;
  min-height: 420px;
}

.genre-showcase__card {
  position: absolute;
  inset: 0;
  border-radius: 30px;
}

.genre-showcase__card--back {
  inset: 40px 46px 0 0;
  background: linear-gradient(135deg, rgba(139, 45, 79, 0.18), rgba(201, 169, 110, 0.16));
  transform: rotate(-9deg);
}

.genre-showcase__card--middle {
  inset: 20px 22px 18px 24px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(251, 243, 237, 0.92));
  box-shadow: var(--landing-shadow-soft);
  transform: rotate(5deg);
}

.genre-showcase__card--front {
  inset: 52px 0 0 52px;
  padding: 30px;
}

.genre-showcase__card--front h3 {
  font-size: 1.7rem;
  line-height: 1.1;
}

.genre-showcase__meter {
  margin-top: 26px;
}

.genre-showcase__meter span {
  display: block;
  margin-bottom: 10px;
  color: var(--landing-muted);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.genre-showcase__meter i {
  width: 72%;
}

.final-cta {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
  padding: 52px 54px;
  text-align: center;
  color: #fff;
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.02));
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.16);
}

.final-cta::before {
  content: "";
  position: absolute;
  inset: 18px 18px auto auto;
  width: 120px;
  height: 120px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(201, 169, 110, 0.22), transparent 72%);
}

.final-cta p {
  max-width: 620px;
  margin: 22px auto 0;
  color: rgba(255, 255, 255, 0.72);
}

.faq-shell {
  max-width: 900px;
}

.faq-list {
  display: grid;
  gap: 16px;
}

.faq-item {
  padding: 0 28px;
  overflow: hidden;
}

.faq-item summary {
  position: relative;
  padding: 25px 44px 25px 0;
  list-style: none;
  cursor: pointer;
  font-size: 1.02rem;
  font-weight: 600;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::before,
.faq-item summary::after {
  content: "";
  position: absolute;
  right: 4px;
  top: 50%;
  width: 16px;
  height: 2px;
  background: var(--landing-rose);
  border-radius: 999px;
  transition: transform 180ms ease;
}

.faq-item summary::after {
  transform: rotate(90deg);
}

.faq-item[open] summary::after {
  transform: rotate(0deg);
}

.faq-item p {
  margin: 0;
  padding: 0 0 24px;
}

.site-footer {
  padding: 40px 0 50px;
  background: var(--landing-night);
  color: rgba(255, 255, 255, 0.7);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) auto auto;
  gap: 34px;
  align-items: end;
}

.brand-mark--footer .brand-mark__pill {
  box-shadow: none;
}

.brand-mark--footer .brand-mark__text {
  color: #fff;
}

.footer-copy {
  max-width: 420px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.92rem;
}

.footer-links {
  display: grid;
  gap: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--landing-gold);
}

.footer-meta {
  display: grid;
  justify-items: end;
  gap: 16px;
}

.footer-meta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.85rem;
}

.language-switcher {
  display: inline-flex;
  padding: 4px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
}

.language-switcher button {
  min-width: 46px;
  padding: 8px 12px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(255, 255, 255, 0.65);
  cursor: pointer;
}

.language-switcher button.is-active {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .hero-grid,
  .split-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    max-width: 640px;
    margin: 0 auto;
  }

  .feature-grid,
  .steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .steps-grid::before {
    display: none;
  }

  .footer-meta {
    justify-items: start;
  }
}

@media (max-width: 820px) {
  .landing-shell {
    width: min(calc(100vw - 28px), 100%);
  }

  .nav-links,
  .nav-actions .btn-ghost {
    display: none;
  }

  .nav-toggle,
  .mobile-panel {
    display: block;
  }

  .hero-section {
    padding-top: 36px;
  }

  .hero-stage__frame {
    min-height: 600px;
    padding: 24px;
  }

  .story-screen {
    inset: auto 20px 24px;
    width: auto;
  }

  .presence-card {
    top: 24px;
    right: 16px;
    width: min(100%, 250px);
  }

  .chapter-card {
    right: 20px;
    bottom: 180px;
  }

  .feature-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .section-block,
  .section-block--faq {
    padding: 78px 0;
  }

  .final-cta {
    padding: 40px 24px;
  }
}

@media (max-width: 640px) {
  .nav-row {
    min-height: 74px;
  }

  .brand-mark__text {
    font-size: 1.18rem;
  }

  .hero-title {
    font-size: clamp(2.6rem, 14vw, 4rem);
  }

  .hero-lead,
  .hero-sublead,
  .intro-copy p:last-child,
  .split-copy p,
  .final-cta p {
    font-size: 0.98rem;
  }

  .hero-stage__frame {
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-height: auto;
    padding: 20px;
    border-radius: 28px;
  }

  .hero-stage__frame::before,
  .hero-stage__frame::after,
  .hero-stage__wash {
    display: none;
  }

  .story-screen,
  .presence-card,
  .chapter-card {
    position: relative;
    inset: auto;
    width: 100%;
    max-width: none;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
  }

  .presence-card__meta {
    position: static;
    margin: 10px 0 0;
  }

  .presence-card__bubble {
    margin-top: 16px;
  }

  .story-screen {
    order: 1;
  }

  .presence-card {
    order: 2;
  }

  .chapter-card {
    order: 3;
  }

  .hero-actions,
  .hero-actions--center {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .feature-card,
  .step-card,
  .genre-showcase__card--front,
  .faq-item {
    border-radius: 24px;
  }

  .genre-showcase {
    min-height: 360px;
  }

  .genre-showcase__card--front {
    inset: 36px 0 0 18px;
    padding: 24px;
  }

  .footer-grid {
    gap: 24px;
  }

  .footer-links {
    grid-template-columns: repeat(2, minmax(0, auto));
    column-gap: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0s !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
