/* ---------- Self-hosted fonts (no third-party requests) ---------- */
@font-face {
  font-family: "Fraunces";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("fonts/fraunces.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("fonts/inter.woff2") format("woff2");
}

/* =====================================================================
   debriq product site
   Design language: "Claude" — warm ivory canvas, clay/coral accent,
   editorial serif display, generous whitespace, calm motion.
   The product itself is shown in its native dark cinematic theme;
   the contrast between warm marketing and dark app is the signature.
   ===================================================================== */

/* ---------- Design tokens ---------- */
:root {
  /* Warm canvas */
  --paper:        #F6F3EB;   /* page background (ivory) */
  --paper-2:      #F1ECE0;   /* alternating band */
  --raised:       #FDFBF6;   /* cards / surfaces on paper */

  /* Ink (warm near-black) */
  --ink:          #201E1A;
  --ink-2:        #5C5547;   /* body text */
  --ink-3:        #8A8275;   /* muted / captions */

  /* Clay / coral — the signature accent */
  --clay:         #D97757;
  --clay-deep:    #BE5538;   /* hover / text-on-light */
  --clay-tint:    #F2E2D8;   /* soft chip / wash */

  /* Lines & washes */
  --line:         #E6DECE;
  --line-soft:    #EEE7DA;

  /* Product (native dark app) palette */
  --app-bg:       #181513;
  --app-card:     #231F1B;
  --app-card-2:   #2A2521;
  --app-accent:   #D97757;   /* clay — matches the rebranded app */
  --app-on:       #F3EFEA;
  --app-on-soft:  #B7AE9F;

  /* Shape & shadow */
  --r-sm: 10px;
  --r:    16px;
  --r-lg: 24px;
  --r-xl: 30px;
  --shadow:    0 1px 2px rgba(40,28,18,.05), 0 18px 44px -22px rgba(40,28,18,.30);
  --shadow-lg: 0 2px 4px rgba(40,28,18,.06), 0 40px 80px -34px rgba(40,28,18,.42);

  /* Type */
  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans:  "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --mono:  ui-monospace, "SF Mono", "JetBrains Mono", "Roboto Mono", monospace;

  --wrap: 1140px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3 { margin: 0; }
em { font-style: italic; }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: 24px; }

/* ---------- Typography ---------- */
.display {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.display em { color: var(--clay-deep); font-weight: 500; }

.h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.9rem, 3.6vw, 2.85rem);
  line-height: 1.1;
  letter-spacing: -0.018em;
}
.h2--center { text-align: center; }

.eyebrow {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--clay-deep);
  margin: 0 0 1rem;
}
.eyebrow--center { text-align: center; }

.lede {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: var(--ink-2);
  max-width: 34ch;
}
.body { font-size: 1.06rem; color: var(--ink-2); }
.body--center { text-align: center; margin-inline: auto; max-width: 56ch; }

.mono-inline {
  font-family: var(--mono);
  font-size: .86em;
  background: var(--clay-tint);
  color: var(--clay-deep);
  padding: .12em .4em;
  border-radius: 6px;
  white-space: nowrap;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5em;
  font-family: var(--sans);
  font-size: .98rem;
  font-weight: 600;
  padding: .72em 1.35em;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, background .2s ease, border-color .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn--lg { font-size: 1.04rem; padding: .92em 1.7em; }
.btn--primary {
  background: var(--clay);
  color: #fff;
  box-shadow: 0 10px 24px -12px rgba(190,85,56,.7);
}
.btn--primary:hover { background: var(--clay-deep); transform: translateY(-1px); }
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn--ghost:hover { border-color: var(--ink-3); background: rgba(0,0,0,.02); }

/* ---------- Brand ---------- */
.brand { display: inline-flex; align-items: center; gap: .55rem; font-weight: 700; }
.brand__mark {
  width: 30px; height: 30px;
  display: grid; place-items: center;
  border-radius: 9px;
  background: linear-gradient(150deg, var(--clay), var(--clay-deep));
  color: #fff;
  box-shadow: 0 6px 16px -8px rgba(190,85,56,.8);
}
.brand__name {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.32rem;
  letter-spacing: -.01em;
  color: var(--ink);
}

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--paper) 82%, transparent);
  backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, background .25s ease;
}
.nav.is-stuck { border-color: var(--line); }
.nav__inner { display: flex; align-items: center; gap: 1.5rem; height: 72px; }
.nav__links { display: flex; gap: 1.9rem; margin-left: 1rem; }
.nav__links a { font-size: .96rem; font-weight: 500; color: var(--ink-2); transition: color .2s; }
.nav__links a:hover { color: var(--ink); }
.nav__actions { margin-left: auto; display: flex; align-items: center; gap: .7rem; }
.nav__signin { padding: .6em 1.1em; }
.nav__toggle {
  display: none; margin-left: auto;
  flex-direction: column; gap: 5px;
  width: 42px; height: 42px;
  align-items: center; justify-content: center;
  background: transparent; border: 1px solid var(--line); border-radius: 12px; cursor: pointer;
}
.nav__toggle span { width: 18px; height: 2px; background: var(--ink); border-radius: 2px; transition: .2s; }
.nav__mobile { display: none; flex-direction: column; gap: .25rem; padding: .5rem 24px 1.25rem; border-bottom: 1px solid var(--line); }
.nav__mobile a { padding: .7rem 0; font-weight: 500; color: var(--ink-2); border-bottom: 1px solid var(--line-soft); }
.nav__mobile .btn { margin-top: .8rem; }

/* ---------- Hero ---------- */
.hero { padding: clamp(3rem, 7vw, 6rem) 0 clamp(3.5rem, 7vw, 6rem); overflow: hidden; }
.hero__inner {
  display: grid;
  grid-template-columns: 1.02fr 1.1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.hero__copy { max-width: 30rem; }
.hero .lede { margin-top: 1.4rem; max-width: 42ch; }
.hero__cta { display: flex; gap: .8rem; margin-top: 2rem; flex-wrap: wrap; }
.hero__note { margin-top: 1.4rem; font-size: .9rem; color: var(--ink-3); }
.hero__avail { display: inline-flex; align-items: center; gap: .55rem; font-size: .82rem; font-weight: 600; color: var(--clay-deep); background: var(--clay-tint); padding: .4rem .9rem .4rem .8rem; border-radius: 999px; margin: 0 0 1.4rem; }
.hero__avail::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: #4f9d57; box-shadow: 0 0 0 3px rgba(79,157,87,.18); }

/* ---------- Frames (device chrome) ---------- */
.hero__visual { position: relative; }
.frame {
  background: #0d0d0d;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.frame--desktop { border-radius: var(--r-lg); }
.frame--soft { box-shadow: var(--shadow); border-radius: var(--r-lg); }
.frame__bar {
  display: flex; gap: 7px; align-items: center;
  height: 38px; padding-inline: 16px;
  background: #181818;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.frame__bar .dot { width: 11px; height: 11px; border-radius: 50%; background: #3a3a3a; }
.frame__bar .dot:nth-child(1){ background:#E5484D33; box-shadow: inset 0 0 0 1px #E5484D66; }
.frame__bar .dot:nth-child(2){ background:#F5A62333; box-shadow: inset 0 0 0 1px #F5A62366; }
.frame__bar .dot:nth-child(3){ background:#6DB33F33; box-shadow: inset 0 0 0 1px #6DB33F66; }

.frame--phone {
  position: absolute;
  right: -10px; bottom: -34px;
  width: 215px;
  border-radius: var(--r-xl);
  border: 6px solid #0a0a0a;
  box-shadow: var(--shadow-lg);
}

/* ---------- App surfaces (native dark theme) ---------- */
.app { background: var(--app-bg); color: var(--app-on); padding: 18px; }
.app--tight { padding: 16px; }
.app__topbar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.app__title { font-family: var(--serif); font-weight: 600; font-size: 1.15rem; }
.app__icons { display: flex; gap: 12px; color: var(--app-on-soft); }

/* Poster grid */
.poster-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.poster-grid--6 { grid-template-columns: repeat(3, 1fr); }
.poster-grid--4 { grid-template-columns: repeat(4, 1fr); gap: 8px; }
.poster-grid--2 { grid-template-columns: repeat(2, 1fr); gap: 8px; }
.poster-grid--tv { grid-template-columns: repeat(3, 1fr); gap: 10px; }

.poster {
  position: relative;
  aspect-ratio: 2 / 3;
  border-radius: 9px;
  background: var(--app-card-2);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.04);
  overflow: hidden;
}
/* faux cover art via layered gradients */
.poster::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(120% 80% at 30% 12%, rgba(255,255,255,.16), transparent 60%),
    linear-gradient(160deg, var(--g1, #3a3550), var(--g2, #1b1b2a));
}
.poster:nth-child(1){ --g1:#5b4a7a; --g2:#241d33; }
.poster:nth-child(2){ --g1:#7a3f48; --g2:#2c1a1e; }
.poster:nth-child(3){ --g1:#3f5d7a; --g2:#172533; }
.poster:nth-child(4){ --g1:#6d6a3a; --g2:#2a2917; }
.poster:nth-child(5){ --g1:#3f7a5e; --g2:#16291f; }
.poster:nth-child(6){ --g1:#6a3f7a; --g2:#251732; }
.poster:nth-child(7){ --g1:#7a5a3f; --g2:#2c2017; }
.poster:nth-child(8){ --g1:#3a4a7a; --g2:#171d33; }

.poster__badge, .poster__rating {
  position: absolute; z-index: 2;
  font-size: .62rem; font-weight: 700; letter-spacing: .03em;
  padding: 3px 6px; border-radius: 6px;
  background: rgba(0,0,0,.66); color: #fff;
  backdrop-filter: blur(2px);
}
.poster__badge--ep { top: 6px; right: 6px; }
.poster__rating { bottom: 6px; left: 6px; color: #ffd479; }
.poster__bar {
  position: absolute; z-index: 2; left: 0; right: 0; bottom: 0;
  height: 4px; background: rgba(255,255,255,.16);
}
.poster__bar i { display: block; height: 100%; width: var(--w, 40%); background: var(--app-accent); }
.poster--focus { outline: 3px solid var(--app-accent); outline-offset: 2px; transform: scale(1.04); }

/* Phone continue-watching list */
.app--phone { padding: 14px; }
.phone__row { display: flex; gap: 10px; padding: 8px; border-radius: 12px; background: var(--app-card); margin-bottom: 8px; }
.phone__poster { width: 42px; flex: none; aspect-ratio: 2/3; border-radius: 6px; background: linear-gradient(160deg,#5b4a7a,#241d33); }
.phone__poster--b { background: linear-gradient(160deg,#7a5a3f,#2c2017); }
.phone__meta { display: flex; flex-direction: column; gap: 3px; min-width: 0; flex: 1; position: relative; padding-bottom: 8px; }
.phone__eyebrow { font-size: .54rem; font-weight: 700; letter-spacing: .06em; color: var(--app-accent); }
.phone__name { font-size: .82rem; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.phone__sub { font-size: .68rem; color: var(--app-on-soft); }
.phone__bar { position: absolute; bottom: 0; border-radius: 2px; }

/* Detail / series screen */
.app--detail { padding: 0; }
.detail__hero {
  position: relative; padding: 26px 20px 18px;
  display: flex; flex-direction: column; gap: 5px;
  background: linear-gradient(180deg, #3a2a22, #1d1714);
}
.detail__hero::before { content:""; position:absolute; inset:0; background: radial-gradient(90% 120% at 80% -10%, rgba(217,119,87,.45), transparent 60%); }
.detail__badge { position: relative; font-size: .6rem; font-weight: 700; letter-spacing: .08em; color: #f2c8b4; }
.detail__title { position: relative; font-family: var(--serif); font-weight: 600; font-size: 1.6rem; }
.detail__meta { position: relative; font-size: .76rem; color: var(--app-on-soft); }
.detail__seasons { display: flex; gap: 8px; padding: 14px 20px 6px; }
.seg { font-size: .72rem; font-weight: 600; padding: 5px 12px; border-radius: 999px; background: var(--app-card); color: var(--app-on-soft); }
.seg--on { background: rgba(217,119,87,.18); color: #f2c8b4; box-shadow: inset 0 0 0 1px rgba(217,119,87,.5); }
.detail__ep { display: flex; align-items: center; gap: 12px; padding: 12px 20px; }
.detail__ep--muted { opacity: .55; }
.ep__no { width: 26px; height: 26px; flex: none; display: grid; place-items: center; border-radius: 7px; background: var(--app-card-2); font-size: .8rem; font-weight: 700; }
.ep__body { flex: 1; display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.ep__title { font-size: .86rem; font-weight: 500; }
.ep__body .poster__bar { position: static; border-radius: 2px; }
.ep__resume { font-size: .68rem; color: var(--app-accent); font-weight: 600; white-space: nowrap; }
.detail__ep--muted .ep__resume { color: var(--app-on-soft); }

/* Auth / device-code screen */
.app--auth { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 30px 24px 34px; gap: 8px; }
.auth__logo { color: var(--app-accent); }
.auth__name { font-family: var(--serif); font-weight: 600; font-size: 1.3rem; margin-bottom: 12px; }
.auth__step { font-size: .9rem; font-weight: 600; margin-bottom: 6px; }
.auth__hint { font-size: .78rem; color: var(--app-on-soft); }
.auth__url { font-family: var(--mono); font-size: .82rem; color: #f2c8b4; background: var(--app-card-2); padding: 7px 14px; border-radius: 8px; margin: 2px 0 6px; }
.auth__code {
  font-family: var(--mono); font-weight: 700; font-size: 1.5rem; letter-spacing: .16em;
  background: rgba(217,119,87,.18); color: #f4d2c2;
  padding: 12px 24px; border-radius: 12px; margin: 4px 0 12px;
  box-shadow: inset 0 0 0 1px rgba(217,119,87,.4);
}
.auth__wait { display: inline-flex; align-items: center; gap: 8px; font-size: .76rem; color: var(--app-on-soft); }
.spinner { width: 12px; height: 12px; border-radius: 50%; border: 2px solid var(--app-on-soft); border-top-color: transparent; animation: spin 1s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- Providers ---------- */
.providers { padding: clamp(2.5rem, 5vw, 4rem) 0; border-top: 1px solid var(--line-soft); }
.providers__label { text-align: center; color: var(--ink-3); font-size: .92rem; margin: 0 0 1.6rem; }
.providers__list { display: flex; flex-wrap: wrap; gap: .8rem; justify-content: center; }
.chip {
  display: inline-flex; align-items: center; gap: .6rem;
  font-weight: 600; font-size: 1rem;
  padding: .6rem 1.15rem; border-radius: 999px;
  background: var(--raised); border: 1px solid var(--line); color: var(--ink);
}
.chip__dot { width: 11px; height: 11px; border-radius: 50%; background: var(--c, var(--clay)); }

/* ---------- Editorial statement ---------- */
.statement { padding: clamp(3.5rem, 8vw, 7rem) 0; }
.statement__inner { max-width: 880px; margin-inline: auto; }
.statement__text {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.5rem, 3.2vw, 2.3rem);
  line-height: 1.32;
  letter-spacing: -.01em;
  color: var(--ink);
  text-align: center;
}
.statement__text strong { color: var(--clay-deep); font-weight: 600; }
.statement__text .mono-inline { font-size: .62em; vertical-align: middle; }

/* ---------- Features (alternating) ---------- */
.features { padding: clamp(1rem, 2vw, 2rem) 0 clamp(2rem, 4vw, 3rem); }
.feature {
  display: grid;
  grid-template-columns: 1fr 1.06fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  padding: clamp(2.5rem, 6vw, 5rem) 24px;
}
.feature--reverse .feature__copy { order: 2; }
.feature--reverse .feature__visual { order: 1; }
.feature__copy { max-width: 30rem; }
.feature .h2 { margin-bottom: 1.1rem; }
.feature .body { margin-bottom: 1.5rem; }

.ticks { display: flex; flex-direction: column; gap: .7rem; }
.ticks li { position: relative; padding-left: 1.9rem; color: var(--ink-2); font-size: 1rem; }
.ticks li::before {
  content: ""; position: absolute; left: 0; top: .15em;
  width: 1.2rem; height: 1.2rem; border-radius: 50%;
  background: var(--clay-tint) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23BE5538' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / 12px no-repeat;
}

/* ---------- Secondary card grid ---------- */
.grid-features { padding: clamp(3rem, 6vw, 5rem) 0; background: var(--paper-2); border-block: 1px solid var(--line-soft); }
.grid-features__head { text-align: center; margin-bottom: 2.6rem; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
.card {
  background: var(--raised);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 1.7rem 1.6rem;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--clay); }
.card__icon {
  display: inline-grid; place-items: center;
  width: 46px; height: 46px; border-radius: 13px;
  background: var(--clay-tint); color: var(--clay-deep);
  margin-bottom: 1.1rem;
}
.card__title { font-family: var(--serif); font-weight: 600; font-size: 1.22rem; margin-bottom: .5rem; }
.card__text { font-size: .98rem; color: var(--ink-2); margin: 0; }

/* ---------- Devices ---------- */
.devices { padding: clamp(3.5rem, 7vw, 6rem) 0; }
.devices__head { max-width: 640px; margin: 0 auto 3.5rem; }
.devices__head .body { margin-top: 1rem; }
.devices__row {
  display: flex; align-items: flex-end; justify-content: center;
  gap: clamp(1rem, 3vw, 2.5rem); flex-wrap: wrap;
}
.dev { display: flex; flex-direction: column; align-items: center; }
.dev__label { margin-top: 1rem; font-size: .82rem; color: var(--ink-3); font-weight: 500; letter-spacing: .02em; }
.dev__avail { font-size: .66rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; padding: 4px 11px; border-radius: 999px; margin-bottom: 1rem; }
.dev__avail--now { background: var(--clay-tint); color: var(--clay-deep); }
.dev__avail--soon { background: #EBE5D7; color: var(--ink-3); }
.dev.is-soon .dev__screen { opacity: .5; filter: saturate(.65); }
.dev__screen { background: var(--app-bg); overflow: hidden; }

.dev--tv .dev__screen { width: 320px; aspect-ratio: 16/10; border-radius: 12px; border: 7px solid #0a0a0a; padding: 12px; box-shadow: var(--shadow-lg); }
.dev--tv .dev__stand { position: relative; width: 14px; height: 16px; background: #141414; margin-top: -1px; }
.dev--tv .dev__stand::after { content:""; position: absolute; left: 50%; bottom: 0; transform: translateX(-50%); width: 120px; height: 6px; background:#0a0a0a; border-radius: 6px; }

.dev--phone { z-index: 2; }
.dev--phone .dev__screen { width: 168px; aspect-ratio: 9/19; border-radius: 26px; border: 7px solid #0a0a0a; padding: 14px 10px 0; box-shadow: var(--shadow-lg); position: relative; }
.dev__tabbar { position: absolute; left: 0; right: 0; bottom: 0; height: 30px; background: var(--app-card); display: flex; align-items: center; justify-content: center; gap: 26px; }
.dev__tabbar span { width: 16px; height: 4px; border-radius: 3px; background: #3a3a3a; }
.dev__tabbar span.on { background: var(--app-accent); }

.dev--laptop .dev__screen { width: 300px; aspect-ratio: 16/10; border-radius: 12px 12px 0 0; border: 8px solid #0a0a0a; border-bottom: none; padding: 12px; box-shadow: var(--shadow-lg); }
.dev--laptop .dev__base { width: 360px; max-width: 92vw; height: 12px; background: linear-gradient(#1a1a1a,#0a0a0a); border-radius: 0 0 12px 12px; }

/* ---------- How it works ---------- */
.how { padding: clamp(3.5rem, 7vw, 6rem) 0; background: var(--paper-2); border-block: 1px solid var(--line-soft); }
.how__head { margin-bottom: 3rem; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; counter-reset: step; }
.step {
  background: var(--raised); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 2rem 1.7rem;
}
.step__no {
  display: inline-grid; place-items: center;
  width: 44px; height: 44px; border-radius: 50%;
  font-family: var(--serif); font-weight: 600; font-size: 1.25rem;
  background: var(--clay); color: #fff; margin-bottom: 1.2rem;
}
.step__title { font-family: var(--serif); font-weight: 600; font-size: 1.3rem; margin-bottom: .5rem; }
.step__text { color: var(--ink-2); margin: 0; }

/* ---------- Privacy band ---------- */
.privacy { padding: clamp(3.5rem, 7vw, 6rem) 0; }
.privacy__inner {
  max-width: 760px; margin-inline: auto; text-align: center;
  background: var(--ink); color: var(--paper);
  border-radius: var(--r-xl); padding: clamp(2.5rem, 5vw, 3.6rem);
  box-shadow: var(--shadow-lg);
}
.privacy__title { color: #fff; margin-bottom: 1rem; }
.privacy__text { color: #D8CFC0; max-width: 54ch; margin-inline: auto; }

/* ---------- FAQ ---------- */
.faq { padding: clamp(3.5rem, 7vw, 6rem) 0; }
.faq__head { margin-bottom: 2rem; }
.faq__list { max-width: 760px; }
.qa { border-bottom: 1px solid var(--line); }
.qa summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.3rem 0;
  font-family: var(--serif); font-weight: 500; font-size: 1.2rem; color: var(--ink);
}
.qa summary::-webkit-details-marker { display: none; }
.qa summary::after {
  content: "+"; font-family: var(--sans); font-weight: 400; font-size: 1.5rem;
  color: var(--clay-deep); transition: transform .2s ease; line-height: 1;
}
.qa[open] summary::after { transform: rotate(45deg); }
.qa p { margin: 0 0 1.3rem; color: var(--ink-2); max-width: 62ch; }

/* ---------- Final CTA ---------- */
.cta { padding: clamp(4rem, 8vw, 7rem) 0; text-align: center; }
.cta__inner { max-width: 720px; margin-inline: auto; }
.cta__title { margin-bottom: 1.2rem; }
.cta__lede { margin: 0 auto 2.2rem; max-width: 46ch; }
.cta__buttons { display: flex; gap: .8rem; justify-content: center; flex-wrap: wrap; }
.cta__platforms { margin-top: 1.6rem; font-size: .82rem; color: var(--ink-3); letter-spacing: .02em; }

/* ---------- Footer ---------- */
.footer { background: var(--paper-2); border-top: 1px solid var(--line); padding: 3rem 0 2.5rem; }
.footer__inner { display: flex; justify-content: space-between; gap: 2rem; flex-wrap: wrap; align-items: flex-start; }
.footer__tag { margin: .8rem 0 0; color: var(--ink-3); font-size: .92rem; max-width: 28ch; }
.footer__links { display: flex; gap: 1.6rem; flex-wrap: wrap; }
.footer__links a { color: var(--ink-2); font-size: .95rem; font-weight: 500; }
.footer__links a:hover { color: var(--clay-deep); }
.footer__fine { margin-top: 2.5rem; padding-top: 1.6rem; border-top: 1px solid var(--line); }
.footer__fine p { margin: .2rem 0; font-size: .8rem; color: var(--ink-3); }

/* ---------- Scroll reveal ---------- */
[data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
[data-reveal].is-in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 940px) {
  .nav__links, .nav__signin { display: none; }
  .nav__toggle { display: flex; }
  .nav__actions { margin-left: auto; }
  .nav__actions .btn--primary { display: none; }
  .nav.is-open .nav__mobile { display: flex; }

  .hero__inner { grid-template-columns: 1fr; }
  .hero__copy { max-width: 38rem; }
  .hero .lede { max-width: 52ch; }
  .hero__visual { margin-top: 1rem; }
  .frame--phone { width: 170px; right: 4px; bottom: -24px; }

  .feature, .feature--reverse .feature__copy, .feature--reverse .feature__visual { grid-template-columns: 1fr; order: initial; }
  .feature { grid-template-columns: 1fr; }
  .feature__copy { max-width: 40rem; }

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

@media (max-width: 560px) {
  .wrap { padding-inline: 18px; }
  .cards { grid-template-columns: 1fr; }
  .hero__cta .btn, .cta__buttons .btn { flex: 1 1 100%; }
  .frame--phone { display: none; }
  .providers__list { gap: .6rem; }
  .chip { font-size: .92rem; padding: .5rem 1rem; }
  .dev--tv .dev__screen { width: 260px; }
  .dev--laptop .dev__screen { width: 240px; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  .spinner { animation: none; }
}
