/* =========================================================
   Balladly — landing page
   Senior YC-tier proportions: tight spacing, clear type
   hierarchy (Playfair display + Inter sans), warm cream
   dominant with dark punctuation.
   ========================================================= */

:root {
  /* Cream / warm light tones */
  --bg-page: #FAF6EE;
  --bg-warm: #F5EDE8;
  --bg-card: #FFFFFF;

  /* Ink — warm dark */
  --ink: #1A1216;
  --ink-soft: #2D1F23;
  --ink-deep: #0A0A0F;

  /* Text scale */
  --text-primary: #1A1216;
  --text-body: #2D1F23;
  --text-muted: #6B5E62;
  --text-faint: #A89A9E;
  --text-on-dark: #FAF6EE;
  --text-on-dark-muted: rgba(250, 246, 238, 0.74);
  --text-on-dark-faint: rgba(250, 246, 238, 0.50);

  /* Amber / gold (primary brand accent) */
  --amber: #C49465;
  --amber-warm: #D4A574;
  --amber-light: #E0B88A;
  --amber-deep: #A87545;
  --amber-tint: rgba(196, 148, 101, 0.10);
  --amber-glow: rgba(196, 148, 101, 0.28);

  /* iOS blue (secondary accent) */
  --blue: #007AFF;
  --blue-deep: #0066D4;
  --blue-tint: rgba(0, 122, 255, 0.10);

  /* Borders */
  --border: #E8DED8;
  --border-soft: #F0E6DC;
  --border-strong: #D4C5BB;
  --border-on-dark: rgba(250, 246, 238, 0.12);

  /* Fonts */
  --font-display: "Playfair Display", "Times New Roman", Georgia, serif;
  --font-text: "Inter", -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;

  --maxw: 1180px;
  --pad-x: clamp(20px, 5vw, 56px);
  --section-py: clamp(64px, 8vw, 104px);

  --radius: 16px;
  --radius-sm: 10px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg-page);
  color: var(--text-primary);
  font-family: var(--font-text);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body { overflow-x: hidden; }

a { color: inherit; text-decoration: none; }
a:focus-visible {
  outline: 2px solid var(--amber-deep);
  outline-offset: 3px;
  border-radius: 4px;
}

img, svg { display: block; max-width: 100%; height: auto; }

::selection { background: var(--amber); color: var(--text-on-dark); }

.skip-link {
  position: absolute; left: -9999px; top: 0;
}
.skip-link:focus {
  left: 12px; top: 12px;
  background: var(--amber); color: var(--text-on-dark);
  padding: 8px 12px; border-radius: 6px; z-index: 1000;
  font-weight: 600;
}

/* === NAV === */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 246, 238, 0.82);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid var(--border-soft);
}
.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 14px var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.wordmark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  letter-spacing: -0.015em;
  color: var(--text-primary);
}
.nav-links { display: flex; gap: 28px; }
.nav-link {
  font-family: var(--font-text);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color .15s ease;
}
.nav-link:hover { color: var(--text-primary); }

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-text);
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  padding: 13px 22px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease,
              background .2s ease, color .15s ease, border-color .15s ease;
  white-space: nowrap;
  text-decoration: none;
}
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--ink);
  color: var(--text-on-dark);
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px -10px rgba(26, 18, 22, 0.32);
}
.btn-large {
  padding: 16px 28px;
  font-size: 16px;
  font-weight: 700;
}

.btn-link {
  font-family: var(--font-text);
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 13px 8px;
  transition: color .15s ease, gap .2s ease;
}
.btn-link:hover {
  color: var(--amber-deep);
  gap: 10px;
}

.btn-nav {
  padding: 8px 14px;
  font-size: 13px;
  background: var(--ink);
  color: var(--text-on-dark);
}
.btn-nav:hover {
  background: var(--ink-soft);
  transform: translateY(-1px);
}

.btn-cta-light {
  background: var(--bg-card);
  color: var(--ink);
  font-weight: 700;
}
.btn-cta-light:hover {
  background: var(--amber-light);
  transform: translateY(-1px);
  box-shadow: 0 16px 36px -10px rgba(0, 0, 0, 0.32);
}

/* === HERO === */
.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(48px, 6vw, 72px) var(--pad-x) clamp(56px, 7vw, 88px);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 40% at 25% 20%, rgba(196, 148, 101, 0.18), transparent 60%),
    radial-gradient(ellipse 60% 50% at 90% 90%, rgba(244, 168, 138, 0.18), transparent 65%),
    radial-gradient(ellipse 40% 50% at 75% 10%, rgba(232, 197, 168, 0.18), transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 920px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
  padding: 6px 14px 6px 12px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--text-body);
  font-family: var(--font-text);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.eyebrow-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 0 var(--blue);
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(0, 122, 255, 0.5); }
  70%  { box-shadow: 0 0 0 8px transparent; }
  100% { box-shadow: 0 0 0 0 transparent; }
}

.hero-headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(40px, 6.4vw, 76px);
  line-height: 1.04;
  letter-spacing: -0.025em;
  margin: 0 0 20px;
  color: var(--text-primary);
  max-width: 800px;
}
.hero-headline em {
  font-style: italic;
  font-weight: 500;
  color: var(--amber-deep);
}

.hero-sub {
  font-family: var(--font-text);
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.55;
  color: var(--text-muted);
  margin: 0 auto 32px;
  max-width: 580px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px 16px;
  margin-bottom: 44px;
}

/* === HERO PHONE — compact, in-viewport === */
.hero-phone-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.hero-phone-wrap::before {
  content: "";
  position: absolute;
  inset: 8% -10% -10%;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(196, 148, 101, 0.32), transparent 60%),
    radial-gradient(ellipse at 70% 80%, rgba(244, 168, 138, 0.28), transparent 65%);
  filter: blur(50px);
  z-index: 0;
}
.phone {
  position: relative;
  z-index: 1;
  width: min(260px, 70vw);
  aspect-ratio: 9 / 19.5;
  background: #0a0a0a;
  border-radius: 38px;
  padding: 8px;
  box-shadow:
    0 40px 80px -28px rgba(26, 18, 22, 0.55),
    0 0 0 6px #1a1a1a,
    inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  transition: transform .5s cubic-bezier(.2,.7,.3,1);
}
.phone-tilt { transform: rotate(-2deg); }
.phone-tilt:hover { transform: rotate(-1deg) translateY(-4px); }
.phone-notch {
  position: absolute;
  top: 14px; left: 50%;
  transform: translateX(-50%);
  width: 92px; height: 22px;
  background: #000;
  border-radius: 999px;
  z-index: 3;
}
.phone-screen {
  width: 100%;
  height: 100%;
  background: #000;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
}

/* App splash inside phone (dark — shows the app) */
.splash {
  position: relative;
  width: 100%;
  height: 100%;
  background: #000;
  display: flex;
  flex-direction: column;
  font-family: var(--font-text);
}
.splash-status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 22px 0;
  font-size: 9px;
  color: #FFF;
  font-weight: 600;
  z-index: 3;
}
.splash-status-right { display: flex; gap: 3px; font-size: 8px; }
.splash-text { position: relative; z-index: 3; text-align: center; padding: 24px 12px 0; }
.splash-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  color: #FFF;
  margin: 0 0 6px;
  letter-spacing: -0.02em;
}
.splash-tagline {
  font-size: 9px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  line-height: 1.4;
}
.splash-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 40%;
  opacity: 0.78;
  z-index: 1;
}
.splash::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.35) 30%, rgba(0,0,0,0.15) 50%,
    rgba(0,0,0,0.55) 78%, rgba(0,0,0,0.92) 100%);
  z-index: 2;
  pointer-events: none;
}
.splash-cta { position: absolute; bottom: 14px; left: 12px; right: 12px; z-index: 3; text-align: center; }
.splash-apple-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 100%;
  background: #000;
  color: #FFF;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 8px 10px;
  font-family: var(--font-text);
  font-size: 10px;
  font-weight: 600;
  cursor: default;
  margin-bottom: 8px;
}
.splash-link { font-size: 9px; color: #4DA3FF; margin: 0 0 6px; font-weight: 500; }
.splash-foot { font-size: 7.5px; color: rgba(255, 255, 255, 0.5); margin: 0; line-height: 1.4; }
.splash-foot span { color: rgba(255, 255, 255, 0.7); text-decoration: underline; }

/* === SECTION === */
.section {
  padding: var(--section-py) var(--pad-x);
  background: var(--bg-page);
  position: relative;
}
.section-vibes {
  background:
    radial-gradient(ellipse 80% 70% at 50% 0%, rgba(212, 165, 116, 0.18), transparent 65%),
    var(--ink);
  color: var(--text-on-dark);
}
.section-vibes .section-headline { color: var(--text-on-dark); }

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.container-narrow {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.section-eyebrow {
  font-family: var(--font-text);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber-deep);
  margin: 0 0 14px;
}
.section-eyebrow-light { color: var(--amber-light); }

.section-headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
  color: var(--text-primary);
}
.section-headline em {
  font-style: italic;
  font-weight: 500;
  color: var(--amber-deep);
}
.section-vibes .section-headline em { color: var(--amber-light); }

.section-sub {
  font-family: var(--font-text);
  font-size: 16px;
  line-height: 1.55;
  color: var(--text-muted);
  margin: 0 auto;
  max-width: 560px;
}
.section-vibes .section-sub { color: var(--text-on-dark-muted); }

/* === STEPS === */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 0 0 32px;
  padding: 0;
  list-style: none;
}
.step {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.step:hover {
  transform: translateY(-2px);
  border-color: var(--amber);
  box-shadow: 0 14px 28px -16px var(--amber-glow);
}
.step-num {
  font-family: var(--font-text);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--amber-deep);
}
.step h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  margin: 0;
  letter-spacing: -0.012em;
  line-height: 1.2;
  color: var(--text-primary);
}
.step p {
  margin: 0;
  font-family: var(--font-text);
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-muted);
}

/* === GENRE PILLS — tonal cohesion === */
.genre-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  max-width: 760px;
  margin: 0 auto;
}
.genre-pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: 999px;
  font-family: var(--font-text);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: -0.005em;
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text-body);
  transition: border-color .15s ease, color .15s ease, background .15s ease, transform .15s ease;
}
.genre-pill:hover {
  border-color: var(--amber);
  color: var(--amber-deep);
  background: var(--amber-tint);
  transform: translateY(-1px);
}

/* === VIBES (DARK section — verbatim casual quotes) === */
.vibe-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 920px;
  margin: 0 auto;
}
.vibe {
  position: relative;
  border-radius: var(--radius);
  padding: 24px 26px;
  background: rgba(250, 246, 238, 0.04);
  border: 1px solid var(--border-on-dark);
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}
.vibe::before {
  content: "";
  position: absolute;
  top: 24px; left: 0;
  width: 3px; height: calc(100% - 48px);
  background: var(--amber);
  border-radius: 0 2px 2px 0;
}
.vibe:hover {
  transform: translateY(-2px);
  border-color: var(--amber);
  background: rgba(212, 165, 116, 0.06);
}
.vibe-trigger {
  font-family: var(--font-text);
  font-weight: 600;
  font-size: 17px;
  margin: 0 0 8px;
  color: var(--text-on-dark);
  letter-spacing: -0.01em;
  line-height: 1.4;
}
.vibe-line {
  margin: 0;
  font-family: var(--font-text);
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--text-on-dark-muted);
}

/* === PRICING === */
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 960px;
  margin: 0 auto 40px;
  align-items: stretch;
}
.price-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.price-card:hover {
  border-color: var(--border-strong);
  box-shadow: 0 16px 32px -20px rgba(26, 18, 22, 0.16);
}
.price-card-feature {
  background: var(--bg-card);
  border-color: var(--amber);
  border-width: 2px;
  box-shadow: 0 28px 56px -24px var(--amber-glow);
}
.price-card-feature:hover {
  box-shadow: 0 32px 64px -24px var(--amber-glow);
}
.price-flag {
  position: absolute;
  top: -12px;
  left: 24px;
  font-family: var(--font-text);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--amber);
  color: var(--text-on-dark);
  padding: 5px 12px;
  border-radius: 999px;
  box-shadow: 0 6px 14px -2px var(--amber-glow);
}
.price-card-head {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.price-tag {
  font-family: var(--font-text);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0;
  color: var(--amber-deep);
}
.price-amount {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 44px;
  line-height: 1;
  letter-spacing: -0.025em;
  margin: 8px 0 4px;
  color: var(--text-primary);
}
.price-detail {
  font-family: var(--font-text);
  font-size: 13.5px;
  margin: 0;
  font-weight: 500;
  color: var(--text-muted);
}
.price-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-family: var(--font-text);
  font-size: 14px;
  line-height: 1.45;
  color: var(--text-body);
}
.price-list li {
  padding-left: 22px;
  position: relative;
}
.price-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--amber-deep);
  font-weight: 700;
}

.pricing-cta-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.pricing-fineprint {
  font-family: var(--font-text);
  font-size: 12.5px;
  color: var(--text-faint);
  margin: 0;
  max-width: 580px;
  text-align: center;
  line-height: 1.55;
}

/* === FINAL CTA — DARK warm-amber === */
.section-cta {
  position: relative;
  background:
    radial-gradient(ellipse 80% 100% at 50% 0%, rgba(224, 184, 138, 0.18), transparent 60%),
    radial-gradient(ellipse 60% 80% at 50% 100%, rgba(244, 168, 138, 0.14), transparent 65%),
    linear-gradient(180deg, #1A1216 0%, #0A0A0F 100%);
  padding-top: clamp(72px, 9vw, 112px);
  padding-bottom: clamp(72px, 9vw, 112px);
  overflow: hidden;
  color: var(--text-on-dark);
}
.cta-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 720px; height: 440px;
  background: radial-gradient(circle, var(--amber-warm) 0%, transparent 65%);
  filter: blur(120px);
  opacity: 0.20;
  pointer-events: none;
}
.cta-headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 0 0 16px;
  color: var(--text-on-dark);
}
.cta-headline em {
  font-style: italic;
  color: var(--amber-light);
  font-weight: 500;
}
.cta-sub {
  font-family: var(--font-text);
  font-size: 16px;
  color: var(--text-on-dark-muted);
  margin: 0 0 32px;
}

/* === FOOTER (richer, YC-style) === */
.footer {
  background: var(--ink);
  color: var(--text-on-dark);
  padding: clamp(48px, 6vw, 72px) var(--pad-x) 0;
}
.footer-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border-on-dark);
}
.footer-brand { display: flex; flex-direction: column; gap: 12px; }
.wordmark-foot { color: var(--text-on-dark); font-size: 22px; }
.footer-tagline {
  font-family: var(--font-text);
  font-size: 13.5px;
  color: var(--text-on-dark-muted);
  margin: 0;
  max-width: 280px;
  line-height: 1.5;
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col-title {
  font-family: var(--font-text);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-on-dark-faint);
  margin: 0 0 6px;
}
.footer-col a {
  font-family: var(--font-text);
  font-size: 13.5px;
  color: var(--text-on-dark-muted);
  transition: color .15s ease;
}
.footer-col a:hover { color: var(--amber-light); }

.footer-bottom {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 22px 0 28px;
}
.footer-bottom p {
  font-family: var(--font-text);
  font-size: 12px;
  color: var(--text-on-dark-faint);
  margin: 0;
  text-align: center;
}

/* === LEGAL PAGES === */
.legal {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(48px, 7vw, 88px) var(--pad-x);
  background: var(--bg-page);
}
.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
  font-family: var(--font-text);
  font-size: 14px;
  margin-bottom: 32px;
  transition: color .15s ease;
}
.legal-back:hover { color: var(--amber-deep); }
.legal h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(32px, 4.5vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
  color: var(--text-primary);
}
.legal-meta {
  font-family: var(--font-text);
  font-size: 13px;
  color: var(--text-muted);
  margin: 0 0 40px;
}
.legal h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.012em;
  margin: 36px 0 12px;
  color: var(--text-primary);
}
.legal h3 {
  font-family: var(--font-text);
  font-weight: 600;
  font-size: 15.5px;
  margin: 20px 0 8px;
  color: var(--text-primary);
}
.legal p,
.legal li {
  font-family: var(--font-text);
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-body);
  margin: 0 0 12px;
}
.legal ul, .legal ol { padding-left: 22px; margin: 0 0 16px; }
.legal li { margin-bottom: 6px; }
.legal strong { color: var(--text-primary); font-weight: 600; }
.legal a {
  color: var(--amber-deep);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}
.legal a:hover { color: var(--amber); }
.legal-callout {
  background: var(--bg-warm);
  border-left: 3px solid var(--amber);
  padding: 16px 22px;
  margin: 22px 0 28px;
  border-radius: 0 8px 8px 0;
}
.legal-callout p { margin: 0; font-size: 14.5px; color: var(--text-body); }
.legal-toc {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 16px;
  margin: 0 0 36px;
  padding: 16px 22px;
  background: var(--bg-warm);
  border: 1px solid var(--border);
  border-radius: 12px;
  font-family: var(--font-text);
  font-size: 13px;
}
.legal-toc a { color: var(--text-muted); text-decoration: none; }
.legal-toc a:hover { color: var(--amber-deep); }
.legal-foot-nav {
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  font-family: var(--font-text);
  font-size: 14px;
}
.legal-foot-nav a { color: var(--text-muted); text-decoration: none; }
.legal-foot-nav a:hover { color: var(--amber-deep); }

/* === RESPONSIVE === */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .vibe-grid { grid-template-columns: 1fr; gap: 12px; }
  .price-grid { grid-template-columns: 1fr; gap: 14px; max-width: 480px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-cols { grid-template-columns: repeat(3, 1fr); gap: 24px; }
}

@media (max-width: 560px) {
  .hero-headline { font-size: clamp(36px, 9vw, 48px); }
  .hero-cta { flex-direction: column; align-items: stretch; gap: 10px; }
  .btn-primary, .btn-link { width: 100%; }
  .nav-inner { padding: 12px var(--pad-x); }
  .btn-nav { padding: 7px 12px; font-size: 12px; }
  .steps { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr 1fr; gap: 24px; }
  .price-amount { font-size: 38px; }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  .step:hover,
  .vibe:hover,
  .price-card:hover,
  .genre-pill:hover,
  .btn:hover { transform: none; }
  .eyebrow-dot { animation: none !important; }
  * { transition: none !important; }
}
