/* Palette lifted from the app so the site and the product read as one thing. */
:root {
  --bg: #070A12;
  --surface: #0F131C;
  --border: rgba(255,255,255,0.10);
  --text: #F5F5F4;
  --muted: #A5A9B3;
  --dim: #6E7480;
  --accent: #8CDAF8;
  --accent-strong: #2D88F5;
}
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font: 17px/1.65 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
.wrap { max-width: 980px; margin: 0 auto; padding: 0 24px; }
.narrow { max-width: 660px; }

/* Hero */
header { padding: 96px 0 24px; text-align: center; }
.icon { width: 104px; height: 104px; border-radius: 22.37%; display: inline-block; }
h1 { font-size: clamp(40px, 7vw, 60px); letter-spacing: -0.03em; margin: 28px 0 10px; font-weight: 600; }
.lede { color: var(--muted); font-size: clamp(18px, 2.6vw, 21px); margin: 0 auto; max-width: 30ch; }

/* Thesis */
.thesis { padding: 56px 0 24px; }
.thesis p { color: var(--muted); font-size: 18px; }
.thesis strong { color: var(--text); font-weight: 600; }

/* Feature rows */
.feature-row {
  display: grid; grid-template-columns: 1fr 300px;
  gap: 56px; align-items: center; padding: 64px 0;
  border-top: 1px solid var(--border);
}
.feature-row:nth-child(even) .copy { order: 2; }
.feature-row:nth-child(even) .shot { order: 1; }
.kicker {
  font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--accent); margin: 0 0 10px; font-weight: 600;
}
.feature-row h2 { font-size: clamp(24px, 3.4vw, 31px); letter-spacing: -0.02em; margin: 0 0 14px; font-weight: 600; }
.feature-row p { color: var(--muted); margin: 0 0 12px; }
.feature-row .note { color: var(--dim); font-size: 15px; }
.shot img {
  width: 100%; height: auto; display: block;
  border-radius: 26px; border: 1px solid var(--border);
}
@media (max-width: 800px) {
  .feature-row { grid-template-columns: 1fr; gap: 32px; padding: 48px 0; }
  .feature-row:nth-child(even) .copy,
  .feature-row:nth-child(even) .shot { order: unset; }
  .shot { max-width: 300px; margin: 0 auto; }
}

/* Closing card */
.card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 16px; padding: 26px 28px; margin: 56px 0 0;
}
.card h2 { margin: 0 0 8px; font-size: 21px; font-weight: 600; }
.card p { color: var(--muted); margin: 0 0 8px; }
.card p:last-child { margin-bottom: 0; }

a { color: var(--accent); text-decoration: none; border-bottom: 1px solid rgba(140,218,248,0.3); }
a:hover { border-bottom-color: var(--accent); }

footer {
  margin-top: 72px; padding: 32px 0 72px;
  border-top: 1px solid var(--border);
  color: var(--dim); font-size: 14px;
}
footer a { color: var(--muted); }
footer p { margin: 8px 0; }
.tmdb { height: 26px; display: block; margin-bottom: 14px; }

/* Policy pages */
.doc { padding: 72px 0 24px; }
.doc h1 { font-size: 36px; text-align: left; margin-bottom: 6px; }
.doc h2 { font-size: 19px; margin: 38px 0 10px; font-weight: 600; }
.doc p, .doc li { color: var(--muted); }
.doc strong { color: var(--text); font-weight: 600; }
.doc ul { padding-left: 20px; }
.doc li { margin: 6px 0; }
.date { color: var(--dim); font-size: 14px; }
.callout {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 12px; padding: 16px 20px; margin: 22px 0;
}
.callout p { margin: 0; color: var(--text); font-weight: 600; }
