/* ACOST redesign v3 — premium SaaS-techy pass
   Brand: client's own tokens (navy / teal accent / pink primary)
   Type: Clash Display (display) + Switzer (body) + Spline Sans Mono (micro-labels) */

:root {
  --bg: #080d16;              /* client token: hsl(220 45% 6%) */
  --surface: #0e1420;
  --surface-2: #141b29;
  --line: rgba(148, 170, 220, 0.13);
  --line-strong: rgba(148, 170, 220, 0.24);
  --text: #f7f4f0;            /* client token: warm foreground */
  --muted: #98a1b3;
  --accent: #ef4d87;          /* accent unified to pink (cyan dropped) */
  --primary: #ef4d87;         /* client token: pink primary (CTA color) */
  --primary-ink: #14040b;
  --radius: 14px;
  --font-display: "Clash Display", "Archivo", sans-serif;
  --font-body: "Switzer", "Hanken Grotesk", system-ui, sans-serif;
  --font-mono: "Spline Sans Mono", ui-monospace, monospace;
  --ease: cubic-bezier(0.25, 1, 0.5, 1);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--primary); color: #fff; }

img, video { max-width: 100%; display: block; }

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

section { scroll-margin-top: 84px; }

/* engineered-surface dot grid, sits behind everything */
.bg-grid {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(148, 170, 220, 0.10) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(to bottom, transparent, black 12%, black 88%, transparent);
  -webkit-mask-image: linear-gradient(to bottom, transparent, black 12%, black 88%, transparent);
}

main, .footer { position: relative; z-index: 1; }

/* ---------- type ---------- */

.hero-h1, .h2, .statement-h {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

h3 { font-family: var(--font-display); font-weight: 500; letter-spacing: -0.01em; }

.eyebrow, .eyebrow-sm {
  font-family: var(--font-mono);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}

.eyebrow-sm { font-size: 11.5px; margin-bottom: 10px; }

.section-rule {
  display: block;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, var(--accent), rgba(239, 77, 135, 0.05));
  transform-origin: left center;
  margin-bottom: 26px;
  opacity: 0.55;
}

.h2 {
  font-size: clamp(34px, 4.4vw, 54px);
  margin-bottom: 52px;
}

.dot { color: var(--accent); }

/* ---------- nav ---------- */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid transparent;
  transition: background 0.3s var(--ease), backdrop-filter 0.3s var(--ease), border-color 0.3s var(--ease);
}

.nav.scrolled {
  background: rgba(8, 13, 22, 0.7);
  backdrop-filter: blur(16px) saturate(1.3);
  -webkit-backdrop-filter: blur(16px) saturate(1.3);
  border-bottom-color: var(--line);
}

.nav-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.wordmark {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.nav-links { display: flex; gap: 28px; }

.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.25s var(--ease);
}

.nav-links a:hover, .nav-links a:focus-visible { color: var(--text); }

/* ---------- buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-body);
  font-size: 15.5px;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 14px 26px;
  border-radius: 10px;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
  cursor: pointer;
  border: 1px solid transparent;
}

.btn:hover { transform: translateY(-1px); }
.btn:active { transform: scale(0.98); }

.btn-light {
  background: var(--primary);
  color: var(--primary-ink);
  box-shadow: 0 4px 24px rgba(239, 77, 135, 0.25);
}
.btn-light:hover {
  background: #ff639a;
  box-shadow: 0 6px 32px rgba(239, 77, 135, 0.38);
}

.btn-ghost {
  background: rgba(20, 27, 41, 0.6);
  color: var(--text);
  border-color: var(--line-strong);
}
.btn-ghost:hover { background: var(--surface-2); border-color: rgba(239, 77, 135, 0.45); }

.btn-sm { padding: 9px 18px; font-size: 14.5px; border-radius: 9px; }

.btn-full { width: 100%; justify-content: center; margin-top: auto; }

/* ---------- hero ---------- */

.hero { position: relative; }

.hero-top {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 150px 32px 130px;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.2s var(--ease);
}

.hero-top.video-ready .hero-video { opacity: 1; }

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(8, 13, 22, 0.9), rgba(8, 13, 22, 0.55) 35%, rgba(8, 13, 22, 0.55) 65%, var(--bg)),
    radial-gradient(80% 60% at 50% 45%, rgba(8, 13, 22, 0.1), rgba(8, 13, 22, 0.72));
}

.hero-inner { position: relative; z-index: 1; max-width: 1000px; }

.hero-h1 {
  font-size: clamp(44px, 6.6vw, 104px);
  line-height: 0.98;
  margin-bottom: 28px;
}

.hero-h1 .line { display: block; overflow: hidden; }
.hero-h1 .line span { display: block; padding-bottom: 0.08em; margin-bottom: -0.08em; }

.hero-sub {
  font-size: clamp(17px, 1.6vw, 20px);
  color: rgba(247, 244, 240, 0.82);
  margin-bottom: 34px;
}

.hero-ctas {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 38px;
}

.trust {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.trust-item { display: inline-flex; align-items: center; gap: 8px; }
.trust-item svg { color: var(--accent); flex-shrink: 0; }
.sep { color: var(--muted); }

/* film strip (Work section) */

.hero-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 44px;
}

.film-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
  aspect-ratio: 9 / 16;
  cursor: pointer;
  transition: box-shadow 0.4s var(--ease), border-color 0.4s var(--ease), transform 0.4s var(--ease);
}

.film-card:hover {
  border-color: rgba(239, 77, 135, 0.4);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), 0 0 24px rgba(239, 77, 135, 0.08);
  transform: translateY(-4px);
}

.film-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.film-card figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px 16px 14px;
  background: linear-gradient(to top, rgba(5, 9, 15, 0.9), transparent);
  font-size: 14.5px;
  font-weight: 600;
}

.film-watch {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}

.film-card:hover .film-watch,
.film-card.playing .film-watch { opacity: 1; transform: translateY(0); }

.featured-row {
  display: grid;
  grid-template-columns: 2.667fr 1fr;   /* keeps the wide 3:2 and tall 9:16 films at equal height */
  gap: 16px;
  margin-top: 44px;
  margin-bottom: 16px;
}

.featured-row .film-card { margin: 0; }

.film-wide { aspect-ratio: 3 / 2; }
.film-tall { aspect-ratio: 9 / 16; }

.film-meta { display: flex; flex-direction: column; gap: 3px; text-align: left; }

.film-featured .film-name { font-size: 17px; }

.film-sub {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.film-featured figcaption { padding: 60px 22px 20px; }

.strip-note {
  margin-top: 16px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--muted);
  text-align: center;
}

/* ---------- sections ---------- */

.section {
  max-width: 1240px;
  margin: 0 auto;
  padding: 120px 32px 100px;
}

/* services rows */

.service-rows { border-top: 1px solid var(--line); }

.service-row {
  display: grid;
  grid-template-columns: 80px 1fr 1.2fr;
  gap: 32px;
  align-items: baseline;
  padding: 44px 0;
  border-bottom: 1px solid var(--line);
  transition: background 0.3s var(--ease);
}

.service-row:hover { background: linear-gradient(to right, rgba(239, 77, 135, 0.025), transparent 60%); }

.service-num {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--accent);
}

.service-row h3 { font-size: clamp(22px, 2.4vw, 30px); }

.service-row p { color: var(--muted); max-width: 60ch; }

/* steps */

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.step {
  position: relative;
  background: linear-gradient(180deg, rgba(239, 77, 135, 0.04), transparent 40%), var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}

.step:hover { border-color: var(--line-strong); transform: translateY(-3px); }

.step-num {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--accent);
  display: block;
  margin-bottom: 44px;
}

.step h3 { font-size: 20px; margin-bottom: 12px; }

.step p { color: var(--muted); font-size: 16px; }

/* comparison */

.compare {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.compare-head, .compare-row {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr 1.2fr;
  gap: 16px;
  padding: 18px 28px;
  align-items: center;
}

.compare-head {
  background: var(--surface-2);
  border-bottom: 1px solid var(--line);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.04em;
}

.compare-other { font-family: var(--font-mono); color: var(--muted); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; }

.compare-row { border-bottom: 1px solid var(--line); font-size: 16px; }
.compare-row:last-child { border-bottom: none; }

.compare-row span:first-child {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.compare-row .win { font-weight: 500; color: var(--text); }
.compare-row .win::before { content: "✓ "; color: var(--accent); }

.compare-row span:last-child { color: var(--muted); }

/* ---------- statement (scroll-scrubbed cinematic) ---------- */

.statement {
  position: relative;
  height: 260vh;
  text-align: center;
}

.statement-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 32px;
}

.statement-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.8s var(--ease);
}

.statement.video-ready .statement-video { opacity: 1; }
.statement.no-video .statement-video { display: none; }

.statement-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
}

.statement-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, var(--bg), rgba(8, 13, 22, 0.35) 28%, rgba(8, 13, 22, 0.35) 72%, var(--bg)),
    radial-gradient(70% 70% at 50% 55%, rgba(8, 13, 22, 0.15), rgba(8, 13, 22, 0.6));
  z-index: 1;
}

.statement-bg {
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(42% 55% at 30% 60%, rgba(239, 77, 135, 0.3), transparent 70%),
    radial-gradient(38% 48% at 72% 38%, rgba(32, 143, 223, 0.2), transparent 70%),
    radial-gradient(26% 36% at 58% 78%, rgba(239, 77, 135, 0.15), transparent 70%),
    #050910;
  filter: blur(40px) saturate(1.15);
}

.statement-sticky::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
  pointer-events: none;
}

.statement-inner { position: relative; z-index: 3; max-width: 800px; margin: 0 auto; }

.statement-h { font-size: clamp(42px, 5.6vw, 74px); margin-bottom: 20px; }

.statement-p {
  font-size: clamp(17px, 1.7vw, 20px);
  color: rgba(247, 244, 240, 0.85);
  margin-bottom: 36px;
}

/* ---------- pricing ---------- */

.tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 16px;
  align-items: stretch;
}

.tier {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.tier:hover { border-color: var(--line-strong); transform: translateY(-3px); }

.tier-popular {
  border-color: rgba(239, 77, 135, 0.45);
  background:
    linear-gradient(180deg, rgba(239, 77, 135, 0.06), transparent 45%),
    var(--surface);
  box-shadow: 0 0 40px rgba(239, 77, 135, 0.07);
}

.tier-popular:hover { border-color: rgba(239, 77, 135, 0.7); }

.tier-badge {
  position: absolute;
  top: -12px;
  left: 28px;
  background: var(--primary);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 999px;
}

.tier h3 { font-size: 20px; margin-bottom: 14px; }

.tier-price {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.tier-price span { font-family: var(--font-mono); font-size: 12.5px; font-weight: 400; color: var(--muted); letter-spacing: 0.04em; }

.tier-desc { color: var(--muted); font-size: 15.5px; margin-bottom: 22px; }

.tier ul { list-style: none; margin-bottom: 28px; }

.tier li {
  position: relative;
  padding: 7px 0 7px 26px;
  font-size: 15.5px;
}

.tier li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 13px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center / contain no-repeat;
}

/* dev card */

.dev-card {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 40px;
  align-items: center;
  background:
    linear-gradient(120deg, rgba(239, 77, 135, 0.05), transparent 50%),
    var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 38px 36px;
  margin-bottom: 52px;
}

.dev-card h3 { font-size: clamp(22px, 2.2vw, 28px); margin-bottom: 12px; }

.dev-card p { color: var(--muted); font-size: 15.5px; }

.dev-cta { text-align: right; }

.dev-price {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: var(--text);
}

/* add-ons */

.addons { margin-bottom: 40px; }

.addons-h { font-size: 18px; margin-bottom: 18px; }

.addons-list {
  list-style: none;
  columns: 2;
  column-gap: 48px;
}

.addons-list li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15.5px;
  break-inside: avoid;
}

.addons-list li span:last-child { font-family: var(--font-mono); font-size: 14px; font-weight: 500; }

/* policy */

.policy {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  padding: 0 24px;
}

.policy summary {
  font-weight: 600;
  font-size: 15px;
  padding: 18px 0;
  cursor: pointer;
  list-style: none;
}

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

.policy summary::after { content: "+"; float: right; color: var(--accent); font-size: 18px; }
.policy[open] summary::after { content: "-"; }

.policy ul { list-style: none; padding-bottom: 20px; }

.policy li {
  padding: 6px 0;
  color: var(--muted);
  font-size: 15px;
}

/* ---------- contact ---------- */

.contact { text-align: center; padding-bottom: 130px; }

.contact .h2 { margin-bottom: 18px; }

.contact-p { color: var(--muted); margin-bottom: 34px; }

.contact-email {
  margin-top: 30px;
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.06em;
  color: var(--muted);
}

.contact-form {
  max-width: 620px;
  margin: 42px auto 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.field {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 15.5px;
  color: var(--text);
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease);
}

.field::placeholder { color: var(--muted); }
.field:focus { outline: none; border-color: var(--accent); background: var(--surface-2); }

textarea.field { resize: vertical; min-height: 132px; line-height: 1.5; }

.contact-form .btn-full { margin-top: 6px; }

.form-status {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.04em;
  min-height: 18px;
  text-align: center;
}
.form-status.ok { color: var(--accent); }
.form-status.error { color: #ff8095; }

.contact-alt { margin-top: 28px; color: var(--muted); font-size: 15px; }
.contact-alt a { color: var(--text); border-bottom: 1px solid var(--line-strong); transition: color 0.25s var(--ease); }
.contact-alt a:hover { color: var(--accent); }

/* ---------- footer ---------- */

.footer { border-top: 1px solid var(--line); background: rgba(8, 13, 22, 0.8); }

.footer-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 34px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-links { display: flex; gap: 22px; }

.footer-links a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.25s var(--ease);
}

.footer-links a:hover { color: var(--text); }

.footer-right { display: flex; flex-direction: column; align-items: flex-end; gap: 6px; }

.footer-email {
  font-family: var(--font-mono);
  font-size: 13.5px;
  letter-spacing: 0.04em;
  color: var(--text);
  transition: color 0.25s var(--ease);
}
.footer-email:hover { color: var(--accent); }

.footer-legal { font-family: var(--font-mono); font-size: 12.5px; letter-spacing: 0.04em; color: var(--muted); }
.footer-legal a { transition: color 0.25s var(--ease); }
.footer-legal a:hover { color: var(--accent); }

.footer-copy { font-family: var(--font-mono); font-size: 12.5px; letter-spacing: 0.06em; color: var(--muted); }

/* ---------- reveal base states (GSAP animates these) ---------- */

.reveal { opacity: 0; transform: translateY(18px); }

.no-js .reveal, .reduced .reveal { opacity: 1; transform: none; }

.hero-h1 .line span { transform: translateY(112%); }

.no-js .hero-h1 .line span, .reduced .hero-h1 .line span { transform: none; }

/* sr-only (hidden body SEO block) */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

/* ---------- responsive ---------- */

.desk-only { display: inline; }

@media (max-width: 1024px) {
  .hero-strip { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; }
  .tiers { grid-template-columns: 1fr; }
  .service-row { grid-template-columns: 48px 1fr; }
  .service-row p { grid-column: 2; }
  .dev-card { grid-template-columns: 1fr; }
  .dev-cta { text-align: left; }
}

@media (max-width: 680px) {
  body { font-size: 16px; }
  .nav-links { display: none; }
  .hero-h1 { font-size: clamp(30px, 9.8vw, 40px); line-height: 1.06; margin-bottom: 30px; }
  .hero-h1 .line { white-space: nowrap; }
  .hero-sub-more { display: none; }
  .hero-inner .eyebrow { margin-bottom: 22px; }
  .hero-sub { margin-bottom: 36px; font-size: 14px; }
  .trust { display: none; }
  .sep { display: none; }
  .hero-top { padding: 75px 14px 38px; min-height: 100vh; }
  .hero-ctas { flex-direction: row; flex-wrap: nowrap; justify-content: center; align-items: stretch; gap: 10px; width: 100%; max-width: 340px; margin-left: auto; margin-right: auto; margin-bottom: 0; }
  .hero-ctas .btn { flex: 1 1 0; width: auto; justify-content: center; padding: 13px 10px; font-size: 14px; white-space: nowrap; }
  .section { padding: 84px 20px 70px; }
  .statement { height: 100vh; }
  .statement-sticky { padding: 0 20px; }
  .statement-video { display: none; }
  .statement-poster { display: block; }
  .hero-strip { grid-template-columns: 1fr 1fr; gap: 10px; }
  .featured-row { grid-template-columns: 1fr; gap: 14px; }
  .film-tall { max-width: 320px; width: 100%; justify-self: center; }
  .desk-only { display: none; }
  .compare-head, .compare-row { grid-template-columns: 1fr; gap: 4px; padding: 14px 18px; }
  .compare-head span:first-child { display: none; }
  .compare-other { display: none; }
  .compare-row span:last-child { font-size: 13.5px; }
  .compare-row span:last-child::before { content: "vs "; }
  .addons-list { columns: 1; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-right { align-items: center; }
  .field-row { grid-template-columns: 1fr; }
}

/* ---------- legal pages (/terms, /privacy) ---------- */

.legal {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
  padding: 40px 32px 110px;
}

.legal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 24px;
  margin-bottom: 52px;
  border-bottom: 1px solid var(--line);
}

.legal-back {
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.06em;
  color: var(--muted);
  transition: color 0.25s var(--ease);
}
.legal-back:hover { color: var(--accent); }

.legal-eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.legal h1 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  font-size: clamp(34px, 5vw, 52px);
  line-height: 1.05;
  margin-bottom: 10px;
}

.legal-updated { color: var(--muted); font-size: 14px; margin-bottom: 56px; }

.legal-section { margin-bottom: 40px; }

.legal-section h2 {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.legal-section p, .legal-section li { color: rgba(247, 244, 240, 0.85); line-height: 1.7; }
.legal-section p + p { margin-top: 12px; }
.legal-section ul { list-style: disc; padding-left: 22px; margin-top: 6px; }
.legal-section li { margin-bottom: 8px; }
.legal-section strong { color: var(--text); font-weight: 600; }
.legal-note { color: var(--muted); font-style: italic; margin-top: 8px; }

.legal-section a, .legal-foot a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.25s var(--ease);
}
.legal-section a:hover, .legal-foot a:hover { color: #ff639a; }

.legal-foot {
  margin-top: 72px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--muted);
}

@media (max-width: 680px) {
  .legal { padding: 32px 22px 90px; }
  .legal-updated { margin-bottom: 44px; }
}
