/* Verbally website styles.
   Shared by index.html (M6 launch landing), privacy.html, terms.html.
   Dark theme on the brand surface system; Inter is loaded only on the
   landing (.lp) via Google Fonts, legal pages stay on the system stack. */

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

:root {
  /* Surfaces */
  --surface-1: #1a1a2e;   /* page ground */
  --surface-2: #16162a;   /* cards + alternating bands */
  --surface-3: #13131f;   /* footer / deepest */

  /* Text */
  --text-primary: #ffffff;
  --text-body: #e0e0e0;
  --text-muted: #6b6b8a;

  /* Accent — Verbally Purple */
  --accent: #574aad;
  --accent-hover: #483d94;
  --accent-tint: #c9c4ec;

  /* Lines */
  --border: #2d2d4a;
  --hairline: rgba(255, 255, 255, 0.08);

  /* Radius */
  --radius-card: 16px;
  --radius-shot: 14px;
  --radius-pill: 999px;

  /* Type */
  --font-system: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Shadow (brand overlay spec) */
  --shadow-shot: 0 8px 32px rgba(0, 0, 0, 0.4);

  /* Refined-depth color refresh — depth tone is Brand Navy (a logo color),
     used for grounds/glows ONLY, never on an interactive element */
  --navy: #061551;
  --band-bottom: #0e1026;        /* charcoal drifted toward navy (band gradient floor) */
  --surface-tint: #1b1733;       /* purple-tinted "moment" surface (deep aubergine) */
  --surface-tint-floor: #15122a; /* darker aubergine for the moment-surface gradient floor */

  --accent-violet: #6a5cc2;      /* lighter violet gradient stop, dark enough for AA white text */
  --cta-gradient: linear-gradient(135deg, var(--accent) 0%, var(--accent-violet) 100%);

  /* Honey Gold — secondary DECORATIVE/REWARD accent (brand book --accent-2).
     Namespaced --gold here to avoid colliding with the violet CTA stop above.
     Never an action color: purple owns every CTA/link/toggle. */
  --gold: #f3b04c;
  --gold-hover: #e09a2e;         /* reserved; not used yet */
  --gold-subtle: rgba(243, 176, 76, 0.13);
  --gold-border: rgba(243, 176, 76, 0.32);

  --glow-hero: color-mix(in srgb, var(--accent) 16%, transparent);
  --glow-shot: color-mix(in srgb, var(--accent) 45%, transparent);
  --glow-navy: color-mix(in srgb, var(--navy) 55%, transparent);
}

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  font-family: var(--font-system);
  background: var(--surface-1);
  color: var(--text-body);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Inter only on the marketing landing; legal pages stay system-font + request-free */
body.lp { font-family: 'Inter', var(--font-system); }

a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-hover); text-decoration: underline; }

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

h1, h2, h3 { color: var(--text-primary); line-height: 1.2; }

/* ===== Shared type accents ===== */
.eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 16px;
}

/* The coined product term — the hero focal phrase. Gold = the single sanctioned
   hero-focal-term exception to "gold marks rewards" (per brand book). */
.ws { color: var(--gold); font-weight: 600; }

/* ===== CTA ===== */
.cta {
  display: inline-block;
  padding: 14px 28px;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  font-family: inherit;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1;
}
.cta-live {
  background: var(--cta-gradient);
  color: #fff;
  cursor: pointer;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);   /* AA insurance over the light gradient stop */
  box-shadow: 0 6px 20px -8px color-mix(in srgb, var(--accent) 60%, transparent);
}
.cta-live:hover {
  background: linear-gradient(135deg, var(--accent-hover) 0%, var(--accent) 100%);
  text-decoration: none;
}
/* Pre-launch disabled state (swapped for .cta-live at CWS publish) */
.cta-soon {
  background: linear-gradient(135deg,
    color-mix(in srgb, var(--accent) 24%, transparent) 0%,
    color-mix(in srgb, var(--accent-violet) 16%, transparent) 100%);
  border-color: var(--accent);
  color: var(--accent-tint);
  cursor: default;
  box-shadow: 0 0 26px -10px color-mix(in srgb, var(--accent) 55%, transparent);
}

/* ===================================================================
   LANDING (index.html — body.lp)
   =================================================================== */

/* --- Nav --- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--surface-1) 92%, transparent);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav-logo img { height: 32px; width: auto; }
.nav-links {
  margin-left: auto;
  display: flex;
  gap: 24px;
}
.nav-links a {
  color: var(--text-body);
  font-size: 0.95rem;
  font-weight: 500;
}
.nav-links a:hover { color: var(--text-primary); text-decoration: none; }
.nav-cta { padding: 9px 18px; font-size: 0.9rem; }

/* --- Section rhythm --- */
.hero, .how, .who, .faq, .band {
  padding: 96px 24px;
}
/* Bands drift charcoal -> navy for depth down the scroll (landing only) */
.lp .band { background: linear-gradient(180deg, var(--surface-2) 0%, var(--band-bottom) 100%); }
#how, #features, #pricing, #faq { scroll-margin-top: 80px; }

/* Section headings center by default on the landing (new sections inherit this) */
.lp main section > .eyebrow,
.lp main section > h2 { text-align: center; }

/* --- Hero (v2: left-aligned split — copy left, slideshow right) --- */
.hero {
  max-width: 1180px;
  margin: 0 auto;
  text-align: left;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
  padding-top: 72px;
  padding-bottom: 72px;
}
.hero .eyebrow { margin-bottom: 20px; }
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  max-width: 16ch;
  margin: 0 0 24px;
}
.hero-define {
  font-size: 1.25rem;
  color: var(--text-body);
  max-width: 48ch;
  margin: 0 0 16px;
}
.hero-support {
  font-size: 1.0625rem;
  color: var(--text-muted);
  max-width: 46ch;
  margin: 0 0 28px;
}
.price {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 24px;
}
/* Gold "reward signal" on the trial offer only; the price stays white. */
.price-trial { color: var(--gold); font-weight: 700; }
.note {
  font-size: 0.9rem;
  color: var(--text-muted);
  max-width: 460px;
  margin: 16px 0 0;
}

/* --- Interactive hero demo (docs/specs/hero-interactive-demo.md) --- */
/* The caption is a viewport-fixed floating overlay (below), so it stays in view
   while scrolling and never affects hero layout (zero reflow). */
.demo-foreign { color: var(--text-primary); font-weight: 500; }
.demo-foreign:not([hidden]) { animation: demoFade 0.18s ease; }
@keyframes demoFade { from { opacity: 0.35; } to { opacity: 1; } }

/* Reading highlight — reused verbatim from the extension's captions.css so the
   demo looks like the real product. Outline (not border) keeps layout stable. */
.demo-chunk {
  border-radius: 4px;
  outline: 2px solid transparent;
  outline-offset: 4px;
  transition: background-color 0.15s ease, outline-color 0.15s ease;
}
.demo-chunk.demo-highlight {
  background-color: rgba(87, 74, 173, 0.12);
  outline-color: rgba(87, 74, 173, 0.4);
}

.demo-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin: 0 0 14px;
}
.demo-play {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  border-radius: var(--radius-pill);
  background: var(--cta-gradient);
  color: #fff;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1;
  padding: 11px 20px;
  cursor: pointer;
  box-shadow: 0 6px 20px -8px color-mix(in srgb, var(--accent) 60%, transparent);
  transition: background 0.15s ease;
}
.demo-play:hover { background: linear-gradient(135deg, var(--accent-hover) 0%, var(--accent) 100%); }
.demo-play-glyph { font-size: 0.85rem; line-height: 1; }
.demo-lang-label { font-size: 0.85rem; color: var(--text-muted); }
.demo-lang {
  background-color: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text-body);
  font-family: inherit;
  font-size: 0.9rem;
  padding: 7px 28px 7px 10px;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='5'%3E%3Cpath d='M0 0l4 5 4-5z' fill='%236b6b8a'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
}
.demo-lang:focus { outline: none; border-color: var(--accent); }
.demo-lang:disabled { opacity: 0.6; cursor: default; }

/* Floating caption overlay — the extension's real caption-bar look, viewport-fixed
   at the lower-center so it stays in view on scroll. Out of flow = zero reflow. */
.demo-overlay {
  position: fixed;
  left: 50%;
  bottom: 10vh;
  transform: translateX(-50%);
  width: 92%;
  max-width: 520px;
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 14px 24px;
  background: rgba(15, 15, 30, 0.92);
  color: #fff;
  border: 1px solid var(--hairline);
  border-radius: var(--radius-card);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  z-index: 1000;
  animation: demoOverlayIn 0.15s ease;
}
.demo-overlay[hidden] { display: none; }
@keyframes demoOverlayIn {
  from { opacity: 0; transform: translateX(-50%) translateY(4px); }
  to { opacity: 1; transform: translateX(-50%) translateY(0); }
}
.demo-caption-text { margin: 0; font-size: 1.125rem; line-height: 1.5; text-align: center; }
.demo-note { margin: 8px 0 0; font-size: 0.78rem; color: rgba(255, 255, 255, 0.65); text-align: center; }
.demo-payoff { margin: 0; font-size: 1rem; line-height: 1.45; text-align: center; }
.demo-replay {
  align-self: center;
  margin-top: 10px;
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  font-size: 0.85rem;
  color: var(--accent-tint);
  cursor: pointer;
  transition: color 0.15s ease;
}
.demo-replay:hover { color: #fff; }

@media (max-width: 900px) {
  .demo-overlay { width: calc(100% - 24px); max-width: none; }
}
@media (prefers-reduced-motion: reduce) {
  .demo-foreign:not([hidden]), .demo-overlay { animation: none; }
  .demo-chunk { transition: none; }
}

/* --- Hero media slideshow --- */
/* Navy ambient behind the media (carried over from the old proof shot; ties to
   the screenshots' navy padding). Scoped to its own stacking context. */
.hero-media { position: relative; isolation: isolate; }
.hero-media::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -12% -10%;
  background: radial-gradient(ellipse at 50% 45%, var(--glow-navy) 0%, transparent 72%);
  pointer-events: none;
}
.slideshow { position: relative; }
.slideshow .slides {
  position: relative;
  aspect-ratio: 16 / 10;      /* matches the 1280x800 shots; a future video fills the same box */
  border: 1px solid var(--hairline);
  border-radius: var(--radius-shot);
  /* "lit" purple glow — DELIBERATE, SCOPED exception to the brand's black-shadow
     rule, marketing hero media ONLY (moved here from the old proof shot). */
  box-shadow: var(--shadow-shot), 0 0 100px -24px var(--glow-shot);
  overflow: hidden;
  background: var(--surface-2);
}
.slideshow .slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}
.slideshow .slide.is-active { opacity: 1; pointer-events: auto; }
.slideshow .slide img,
.slideshow .slide video { width: 100%; height: 100%; object-fit: cover; display: block; }
.slideshow-caption { margin-top: 16px; font-size: 0.9rem; color: var(--text-muted); text-align: center; }
/* Dots appear only once JS enhances the slideshow (progressive enhancement) */
.slideshow-dots { display: none; justify-content: center; gap: 8px; margin-top: 12px; }
.slideshow.js-enabled .slideshow-dots { display: flex; }
.slideshow .dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border-radius: var(--radius-pill);
  border: 1px solid var(--accent);
  background: transparent;
  cursor: pointer;
  transition: background 0.15s ease;
}
.slideshow .dot.is-active { background: var(--accent); }

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; gap: 32px; padding-top: 48px; }
  .hero h1 { max-width: 20ch; }
}
@media (prefers-reduced-motion: reduce) {
  .slideshow .slide { transition: none; }
}

/* --- Screenshot frame (one treatment for every shot) --- */
.shot img {
  width: 100%;
  border: 1px solid var(--hairline);
  border-radius: var(--radius-shot);
  box-shadow: var(--shadow-shot);
}

/* --- Why it works --- */
.why .lede, .who .lede {
  font-size: 1.0625rem;
  color: var(--text-body);
  max-width: 720px;
  margin: 24px auto 0;
}
.why h2 { max-width: 760px; margin: 0 auto; }

/* Why it works — header on top, then prose + convergence diagram side by side */
.why { padding-top: 76px; padding-bottom: 76px; }
.why-grid { max-width: 940px; margin: 44px auto 0; display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.why-text { display: flex; flex-direction: column; gap: 16px; }
.why-text .lede { max-width: none; margin: 0; text-align: left; }

/* Dual-coding convergence — vertical: two senses (top) stream down into the outcome.
   Purple stays the only action color; the connectors and the filled outcome glow are
   emphasis on a non-interactive diagram, never a CTA (no CTA gradient). */
.dual-coding { display: flex; flex-direction: column; align-items: center; gap: 6px; width: 100%; max-width: 340px; margin: 0 auto; }
.dc-inputs { display: flex; flex-direction: row; gap: 56px; }
.dc-node { display: flex; flex-direction: column; align-items: center; gap: 8px; width: 120px; text-align: center; }
.dc-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 64px; height: 64px;
  border-radius: var(--radius-pill);
  background: var(--surface-2);
  border: 1px solid color-mix(in srgb, var(--accent) 38%, var(--border));
  color: var(--accent);
}
.dc-icon svg { width: 28px; height: 28px; }
.dc-label { font-size: 1rem; font-weight: 600; color: var(--text-primary); }
.dc-sub { font-size: 0.75rem; line-height: 1.3; color: var(--text-muted); max-width: 120px; }
/* converging connectors: faint static base + a brighter spark per stream, both synced */
.dc-merge { width: 296px; }
.dc-merge svg { width: 100%; height: 88px; display: block; overflow: visible; }
.dc-flow-base { stroke: color-mix(in srgb, var(--accent) 42%, transparent); stroke-width: 2; }
.dc-flow-pulse {
  stroke: var(--accent-tint); stroke-width: 2.5; stroke-linecap: round;
  stroke-dasharray: 8 92; stroke-dashoffset: 100;
  animation: dcFlow 2.4s linear infinite;
}
@keyframes dcFlow { to { stroke-dashoffset: 0; } }
.dc-outcome { width: auto; }
.dc-outcome .dc-icon {
  width: 84px; height: 84px;
  /* The payoff is the one gold "reward" moment — two purple senses converge into it.
     Near-black icon (not white) for AAA contrast on gold. */
  background: var(--gold); border-color: transparent; color: #10101c;
  animation: dcPulse 3.2s ease-in-out infinite;
}
.dc-outcome .dc-icon svg { width: 38px; height: 38px; }
.dc-outcome .dc-label { font-size: 1.05rem; color: var(--gold); }
@keyframes dcPulse {
  0%, 100% { box-shadow: 0 0 28px -10px color-mix(in srgb, var(--gold) 65%, transparent); }
  50%      { box-shadow: 0 0 42px -6px color-mix(in srgb, var(--gold) 88%, transparent); }
}
@media (max-width: 760px) {
  .why-grid { grid-template-columns: 1fr; gap: 28px; max-width: 420px; }
  .dual-coding { order: -1; }
  .why-text .lede { text-align: center; }
}
@media (prefers-reduced-motion: reduce) {
  .dc-flow-pulse { animation: none; opacity: 0; }
  .dc-outcome .dc-icon { animation: none; }
}

/* --- How it works --- */
.steps {
  list-style: none;
  max-width: 1000px;
  margin: 48px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.steps li { text-align: center; }
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-pill);
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  margin-bottom: 16px;
}
.steps h3 { font-size: 1.1rem; margin-bottom: 6px; }
.steps p { color: var(--text-muted); }
.how-note { text-align: center; color: var(--text-muted); font-size: 0.9rem; margin-top: 28px; }

/* --- Features (zigzag) --- (.features carries .band, which sets section padding) */
.feature-row {
  max-width: 1040px;
  margin: 56px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.feature-row:nth-of-type(even) .shot { order: 2; }
.feature-text h3 { font-size: 1.4rem; margin-bottom: 12px; }
.feature-text p { color: var(--text-body); font-size: 1.0625rem; }

/* --- Who it's for --- */
.who-list {
  list-style: none;
  max-width: 720px;
  margin: 28px auto 0;
  display: grid;
  gap: 14px;
}
.who-list li {
  position: relative;
  padding-left: 28px;
  color: var(--text-body);
}
.who-list li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 0.6em;
  width: 8px;
  height: 8px;
  border-radius: var(--radius-pill);
  background: var(--accent);
}

/* --- About (the maker) --- */
#about { scroll-margin-top: 80px; }
.about .lede { text-align: center; }
.about-more { text-align: center; margin-top: 22px; }

/* --- Pricing --- */
.price-card {
  max-width: 420px;
  margin: 40px auto 0;
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 32px;
  text-align: center;
}
/* Gold trial badge — the card's single "reward" accent (sits over the purple-tinted moment surface). */
.trial-badge {
  display: inline-block;
  margin-bottom: 16px;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  background: var(--gold-subtle);
  border: 1px solid var(--gold-border);
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.price-amount { font-size: 1.1rem; color: var(--text-muted); }
.price-amount strong { font-size: 2.6rem; color: var(--text-primary); font-weight: 700; }
.price-sub { color: var(--text-body); margin-top: 4px; }
.price-reassure { color: var(--text-muted); font-size: 0.9rem; margin-top: 8px; }
.included {
  list-style: none;
  text-align: left;
  margin: 24px 0;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: grid;
  gap: 12px;
}
.included li {
  position: relative;
  padding-left: 28px;
  color: var(--text-body);
}
.included li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}
.price-card .cta { width: 100%; }

/* --- FAQ (native <details> accordion) --- */
.faq-list { max-width: 720px; margin: 40px auto 0; display: grid; gap: 12px; }
.faq-item {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.15s ease;
}
.faq-item:hover { border-color: var(--accent); }
.faq-item[open] { border-color: var(--accent); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--text-primary);
}
.faq-item summary::-webkit-details-marker { display: none; }
/* Chevron drawn from two borders; rotates from down (45deg) to up (-135deg) on open */
.faq-item summary::after {
  content: "";
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(45deg);
  transition: transform 0.2s ease;
  margin-top: -4px;
}
.faq-item[open] summary::after { transform: rotate(-135deg); margin-top: 3px; }
.faq-answer { padding: 0 22px 20px; color: var(--text-body); }
.faq-item[open] .faq-answer { animation: faqFade 0.2s ease; }
@keyframes faqFade {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .faq-item summary::after { transition: none; }
  .faq-item[open] .faq-answer { animation: none; }
}

/* --- Closing CTA band --- */
.closing { text-align: center; }
.closing h2 { margin-bottom: 28px; }

/* ===================================================================
   COLOR REFRESH — "Refined depth" (landing only, body.lp)
   Energy from purple's tonal range + light + navy as a depth tone.
   Purple stays the only ACTION color; navy is surface/structure only.
   =================================================================== */

/* Hero radial glow behind the headline (subtle; does not touch text contrast) */
.lp .hero { position: relative; isolation: isolate; }
.lp .hero > * { position: relative; z-index: 1; }
.lp .hero::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: -8%;
  left: 50%;
  transform: translateX(-50%);
  width: min(760px, 92vw);   /* vw-capped so the glow can't cause mobile overflow */
  height: 520px;
  background: radial-gradient(ellipse at center, var(--glow-hero) 0%, transparent 70%);
  pointer-events: none;
}

/* Purple-tinted "moment" surfaces — the eye lands on the thesis and the price.
   body.lp .why (0,2,1) beats .lp .band (0,2,0) regardless of source order. */
body.lp .why {
  background:
    radial-gradient(ellipse at 50% 0%, color-mix(in srgb, var(--accent) 10%, transparent) 0%, transparent 60%),
    linear-gradient(180deg, var(--surface-tint) 0%, var(--surface-tint-floor) 100%);
}
.lp .price-card {
  background: linear-gradient(160deg, var(--surface-tint) 0%, var(--surface-tint-floor) 100%);
  border-color: color-mix(in srgb, var(--accent) 38%, var(--border));
  box-shadow: 0 0 48px -18px color-mix(in srgb, var(--accent) 55%, transparent);
}

/* ===================================================================
   LEGAL PAGES (privacy.html, terms.html) — .legal
   =================================================================== */
.legal {
  flex: 1;
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 24px 24px;
}
.legal-home { display: inline-block; margin-bottom: 32px; }
.legal-home img { width: 132px; }
.legal h1 {
  font-size: 1.9rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.effective {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 28px;
}
.legal p { margin-bottom: 16px; }
.legal strong { color: var(--text-primary); font-weight: 600; }
.legal ul { margin: 0 0 16px; padding-left: 22px; }
.legal li { margin-bottom: 10px; }

/* ===================================================================
   FOOTER (all pages)
   =================================================================== */
footer {
  background: var(--surface-3);
  border-top: 1px solid var(--border);
  padding: 28px 24px;
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.footer-mark { display: inline-block; margin: 0 auto 12px; }
footer a { color: var(--text-muted); }
footer a:hover { color: var(--text-primary); }

/* ===================================================================
   RESPONSIVE
   =================================================================== */
@media (max-width: 760px) {
  .nav-links { display: none; }
  .nav-inner { gap: 16px; }
  .nav-cta { margin-left: auto; }

  .hero, .how, .who, .faq, .band { padding: 64px 20px; }
  .hero { padding-top: 56px; }

  .steps { grid-template-columns: 1fr; gap: 28px; }

  .feature-row { grid-template-columns: 1fr; gap: 20px; margin-top: 40px; }
  .feature-row:nth-of-type(even) .shot { order: 0; }

  .price-card { max-width: 100%; }
}
