/* IchnosTV marketing site — styles.css
   Plain CSS, no framework. Dark, modern, responsive. */

:root {
  --bg: #0b0d12;
  --bg-2: #0f1219;
  --surface: #151925;
  --surface-2: #1b2030;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.16);
  --text: #e8eaf0;
  --muted: #99a2b5;
  --brand: #6d5efc;
  --brand-2: #a855f7;
  --accent: #22d3a6;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 24px 60px -24px rgba(0, 0, 0, 0.7);
  --shadow-sm: 0 8px 24px -12px rgba(0, 0, 0, 0.6);
  --maxw: 1140px;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial,
    sans-serif, "Apple Color Emoji", "Segoe UI Emoji";

  /* poster gradients (fictional shows) */
  --p1: linear-gradient(150deg, #4f46e5, #22d3ee);
  --p2: linear-gradient(150deg, #0f766e, #34d399);
  --p3: linear-gradient(150deg, #7c3aed, #ec4899);
  --p4: linear-gradient(150deg, #1e3a8a, #38bdf8);
  --p5: linear-gradient(150deg, #b45309, #fb7185);
  --p6: linear-gradient(150deg, #065f46, #a3e635);
  --p7: linear-gradient(150deg, #9a3412, #f59e0b);
  --p8: linear-gradient(150deg, #0e7490, #60a5fa);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 22px;
}

.section { padding: 92px 0; }
.section-alt { background: var(--bg-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.section-title {
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
  text-align: center;
}
.section-sub {
  color: var(--muted);
  text-align: center;
  max-width: 620px;
  margin: 0 auto 52px;
  font-size: 1.05rem;
}

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-2);
  background: rgba(168, 85, 247, 0.12);
  border: 1px solid rgba(168, 85, 247, 0.28);
  padding: 6px 12px;
  border-radius: 999px;
}

.grad {
  background: linear-gradient(100deg, var(--brand), var(--brand-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--brand);
  color: #fff;
  padding: 10px 16px;
  border-radius: 0 0 8px 0;
  z-index: 100;
}
.skip-link:focus { left: 0; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11, 13, 18, 0.72);
  backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav {
  display: flex;
  align-items: center;
  gap: 20px;
  height: 66px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: 1.12rem;
}
.brand img { width: 30px; height: 30px; }
.nav-links {
  display: flex;
  gap: 26px;
  margin-left: 14px;
}
.nav-links a {
  color: var(--muted);
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--text); }
.nav-cta { margin-left: auto; display: flex; gap: 10px; }
.nav-toggle {
  display: none;
  margin-left: auto;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  color: var(--text);
  width: 42px; height: 42px;
  border-radius: 10px;
  font-size: 1.2rem;
  cursor: pointer;
}

/* ---------- Store buttons ---------- */
.store-buttons { display: flex; flex-wrap: wrap; gap: 14px; }
.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  background: #000;
  border: 1px solid var(--border-strong);
  color: #fff;
  padding: 10px 18px;
  border-radius: 12px;
  transition: transform 0.15s, border-color 0.15s, background 0.15s;
}
.store-btn:hover { transform: translateY(-2px); border-color: rgba(255,255,255,0.4); }
.store-btn svg { width: 26px; height: 26px; flex: none; }
.store-btn .txt { display: flex; flex-direction: column; line-height: 1.05; text-align: left; }
.store-btn .store-sub { font-size: 0.66rem; color: #cfd3dc; letter-spacing: 0.02em; }
.store-btn .store-name { font-size: 1.02rem; font-weight: 700; }
.store-btn.small { padding: 8px 13px; }
.store-btn.small svg { width: 20px; height: 20px; }
.store-btn.small .store-name { font-size: 0.86rem; }
.store-btn.small .store-sub { font-size: 0.58rem; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: 70px 0 40px;
  background:
    radial-gradient(900px 500px at 80% -10%, rgba(109, 94, 252, 0.22), transparent 60%),
    radial-gradient(700px 500px at 5% 10%, rgba(168, 85, 247, 0.14), transparent 55%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 40px;
  align-items: center;
}
.hero-copy h1 {
  font-size: clamp(2.3rem, 5.2vw, 3.7rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 18px 0 18px;
}
.lead {
  font-size: 1.16rem;
  color: var(--muted);
  max-width: 540px;
  margin: 0 0 26px;
}
.hero-copy .store-buttons { margin-bottom: 22px; }
.hero-points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
}
.hero-points li {
  color: var(--muted);
  font-size: 0.92rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-points li::before {
  content: "";
  width: 16px; height: 16px;
  border-radius: 50%;
  background: rgba(34, 211, 166, 0.15);
  border: 1px solid var(--accent);
  background-image: linear-gradient(var(--accent), var(--accent));
  background-size: 8px 2px, 2px 8px;
  background-position: center;
  background-repeat: no-repeat;
  flex: none;
  box-shadow: inset 0 0 0 6px rgba(34,211,166,0.0);
}

.hero-art {
  position: relative;
  display: flex;
  justify-content: center;
  min-height: 520px;
}
.phone-fan { position: relative; width: 100%; height: 100%; }
.phone-fan .phone {
  position: absolute;
  top: 0;
}
.phone-fan .phone:nth-child(1) { left: 8%; transform: rotate(-7deg) translateY(24px) scale(0.92); z-index: 1; filter: brightness(0.8); }
.phone-fan .phone:nth-child(2) { left: 30%; z-index: 3; }
.phone-fan .phone:nth-child(3) { left: 54%; transform: rotate(7deg) translateY(24px) scale(0.92); z-index: 2; filter: brightness(0.85); }

/* ---------- Cloud strip ---------- */
.cloud-strip {
  margin-top: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 26px;
  color: var(--muted);
  font-size: 0.95rem;
}
.cloud-strip .label { font-weight: 600; color: var(--text); }
.cloud-item { display: inline-flex; align-items: center; gap: 9px; font-weight: 600; }
.cloud-ico {
  width: 30px; height: 30px;
  display: grid; place-items: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
}
.cloud-ico svg { width: 18px; height: 18px; }

/* ---------- Features ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.feature {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 24px;
  transition: transform 0.18s, border-color 0.18s;
}
.feature:hover { transform: translateY(-4px); border-color: var(--border-strong); }
.fico {
  width: 46px; height: 46px;
  border-radius: 12px;
  display: grid; place-items: center;
  background: linear-gradient(150deg, rgba(109,94,252,0.9), rgba(168,85,247,0.9));
  margin-bottom: 16px;
}
.fico svg { width: 24px; height: 24px; stroke: #fff; }
.feature h3 { margin: 0 0 8px; font-size: 1.12rem; letter-spacing: -0.01em; }
.feature p { margin: 0; color: var(--muted); font-size: 0.97rem; }

/* ---------- Screenshots ---------- */
.screens {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  align-items: start;
}
.screen-card { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.screen-cap { text-align: center; }
.screen-cap b { display: block; font-size: 1.02rem; }
.screen-cap span { color: var(--muted); font-size: 0.9rem; }

/* ---------- Phone mockup ---------- */
.phone {
  position: relative;
  width: 232px;
  aspect-ratio: 232 / 476;
  background: #05070c;
  border: 2px solid #2a2f3d;
  border-radius: 34px;
  padding: 9px;
  box-shadow: var(--shadow);
}
.phone-notch {
  position: absolute;
  top: 11px; left: 50%;
  transform: translateX(-50%);
  width: 92px; height: 20px;
  background: #05070c;
  border-radius: 0 0 14px 14px;
  z-index: 5;
}
.screen {
  width: 100%; height: 100%;
  background: var(--bg);
  border-radius: 26px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
}
.sb {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 18px 5px;
  font-size: 0.66rem;
  font-weight: 700;
  color: var(--text);
}
.sb-icons { letter-spacing: 2px; opacity: 0.8; }
.screen-body { flex: 1; overflow: hidden; padding: 4px 12px 8px; }
.tabbar {
  display: flex;
  justify-content: space-around;
  padding: 8px 6px 10px;
  border-top: 1px solid var(--border);
  background: rgba(21, 25, 37, 0.7);
}
.tab {
  font-size: 0.6rem;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  font-weight: 600;
}
.tab .dot { width: 16px; height: 16px; border-radius: 5px; background: currentColor; opacity: 0.55; }
.tab.active { color: var(--brand-2); }
.tab.active .dot { opacity: 1; background: linear-gradient(150deg, var(--brand), var(--brand-2)); }

/* app header inside phone */
.app-head { padding: 4px 2px 8px; }
.app-head h3 { margin: 0; font-size: 1.15rem; letter-spacing: -0.01em; }
.app-head .app-sub { font-size: 0.62rem; color: var(--muted); }

.seg {
  display: flex;
  gap: 5px;
  margin-bottom: 10px;
}
.seg span {
  font-size: 0.56rem;
  color: var(--muted);
  padding: 4px 8px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--border);
  white-space: nowrap;
}
.seg span.on { color: #fff; background: linear-gradient(150deg, var(--brand), var(--brand-2)); border-color: transparent; }

/* poster tile */
.poster {
  border-radius: 8px;
  aspect-ratio: 2 / 3;
  background-color: var(--surface-2);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  font-size: 0;
  color: transparent;
  flex: none;
}
/* Real poster art from TMDB (image CDN needs no API key). Each pN maps to one show. */
.p1 { background-image: url("https://image.tmdb.org/t/p/w342/dmo6TYuuJgaYinXBPjrgG9mB5od.jpg"); } /* The Last of Us */
.p2 { background-image: url("https://image.tmdb.org/t/p/w342/uOOtwVbSr4QDjAGIifLDwpb2Pdl.jpg"); } /* Stranger Things */
.p3 { background-image: url("https://image.tmdb.org/t/p/w342/pPHpeI2X1qEd1CS1SeyrdhZ4qnT.jpg"); } /* Severance */
.p4 { background-image: url("https://image.tmdb.org/t/p/w342/7V0Ebks0GgpKvQ7QbLAIdX5dos4.jpg"); } /* House of the Dragon */
.p5 { background-image: url("https://image.tmdb.org/t/p/w342/eKfVzzEazSIjJMrw9ADa2x8ksLz.jpg"); } /* The Bear */
.p6 { background-image: url("https://image.tmdb.org/t/p/w342/khZqmwHQicTYoS7Flreb9EddFZC.jpg"); } /* Andor */
.p7 { background-image: url("https://image.tmdb.org/t/p/w342/36xXlhEpQqVVPuiZhfoQuaY4OlA.jpg"); } /* Wednesday */
.p8 { background-image: url("https://image.tmdb.org/t/p/w342/c15BtJxCXMrISLVmysdsnZUPQft.jpg"); } /* Fallout */

/* show rows (Shows tab) */
.rowlist { display: flex; flex-direction: column; gap: 9px; }
.show-row { display: flex; gap: 9px; align-items: center; }
.show-row .poster { width: 34px; }
.show-meta { flex: 1; min-width: 0; }
.show-title { font-size: 0.72rem; font-weight: 700; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.show-sub { font-size: 0.6rem; color: var(--muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.bar { height: 4px; border-radius: 3px; background: var(--surface-2); margin-top: 5px; overflow: hidden; }
.bar > span { display: block; height: 100%; background: linear-gradient(90deg, var(--brand), var(--brand-2)); }
.tick {
  width: 24px; height: 24px; flex: none;
  border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(109,94,252,0.16);
  border: 1px solid rgba(109,94,252,0.5);
  color: var(--brand-2);
  font-size: 0.62rem;
}

/* explore */
.searchbar {
  display: flex; align-items: center; gap: 6px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 7px 10px;
  font-size: 0.64rem;
  color: var(--muted);
  margin-bottom: 9px;
}
.chiprow { display: flex; gap: 5px; margin-bottom: 10px; }
.chiprow span {
  font-size: 0.55rem; padding: 3px 8px; border-radius: 999px;
  background: var(--surface); border: 1px solid var(--border); color: var(--muted);
}
.chiprow span.on { color:#fff; background: linear-gradient(150deg,var(--brand),var(--brand-2)); border-color: transparent; }
.poster-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.poster-tile .poster { width: 100%; }
.ptitle { font-size: 0.55rem; color: var(--muted); margin-top: 3px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* show detail */
.detail-hero {
  border-radius: 12px;
  aspect-ratio: 16 / 10;
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  margin-bottom: 9px;
  position: relative;
  overflow: hidden;
  background-color: var(--surface-2);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
/* Wide backdrops (from TMDB) for the show-detail hero banners */
.detail-hero.p1 { background-image: url("https://image.tmdb.org/t/p/w780/acevLdSl5I2MK5RYAm7gwAndt1w.jpg"); } /* The Last of Us */
.detail-hero.p3 { background-image: url("https://image.tmdb.org/t/p/w780/ixgFmf1X59PUZam2qbAfskx2gQr.jpg"); } /* Severance */
.detail-hero::after {
  content: ""; position: absolute; inset: 0; border-radius: 12px;
  background: linear-gradient(to top, rgba(0,0,0,0.55), transparent 60%);
}
.detail-title { font-size: 0.92rem; font-weight: 800; position: relative; z-index: 2; }
.detail-meta { font-size: 0.58rem; color: rgba(255,255,255,0.85); position: relative; z-index: 2; }
.detail-actions { display: flex; gap: 6px; margin-bottom: 9px; }
.btn-primary {
  font-size: 0.6rem; font-weight: 700; color: #fff;
  padding: 6px 12px; border-radius: 8px;
  background: linear-gradient(150deg, var(--brand), var(--brand-2));
}
.btn-ghost {
  font-size: 0.6rem; font-weight: 700; color: var(--text);
  padding: 6px 12px; border-radius: 8px;
  background: var(--surface); border: 1px solid var(--border);
}
.season-tab { font-size: 0.62rem; font-weight: 700; color: var(--muted); margin-bottom: 7px; }
.ep-list { display: flex; flex-direction: column; gap: 6px; margin-bottom: 10px; }
.ep { display: flex; align-items: center; gap: 8px; }
.ep-check {
  width: 18px; height: 18px; flex: none; border-radius: 6px;
  border: 1.5px solid var(--border-strong);
  display: grid; place-items: center;
  font-size: 0.6rem; color: transparent;
}
.ep.checked .ep-check { background: var(--accent); border-color: var(--accent); color: #05221a; }
.ep.checked .ep-title { color: var(--muted); }
.ep-num { font-size: 0.58rem; color: var(--muted); width: 26px; flex: none; }
.ep-title { font-size: 0.64rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cast-row { display: flex; gap: 7px; }
.cast { display: flex; flex-direction: column; align-items: center; gap: 3px; width: 34px; }
.cast-avatar { width: 30px; height: 30px; border-radius: 50%; background-color: var(--surface-2); background-size: cover; background-position: center top; background-repeat: no-repeat; }
/* Real cast photos from TMDB — ca* = The Last of Us, cb* = Severance */
.ca1 { background-image: url("https://image.tmdb.org/t/p/w185/vDbgxc7RYawpB1wK7JDEj62j06H.jpg"); }
.ca2 { background-image: url("https://image.tmdb.org/t/p/w185/oKcMbVn0NJTNzQt0ClKKvVXkm60.jpg"); }
.ca3 { background-image: url("https://image.tmdb.org/t/p/w185/bIPORtYxTJPEUJIThbZrpqf4A11.jpg"); }
.ca4 { background-image: url("https://image.tmdb.org/t/p/w185/4SolFI9dwyPm6BXcb3PDcOYzSEl.jpg"); }
.cb1 { background-image: url("https://image.tmdb.org/t/p/w185/b82C29R6fGiPoqIglQ4lzS6q2YX.jpg"); }
.cb2 { background-image: url("https://image.tmdb.org/t/p/w185/5XIcTMDSyj7hRICQAcnY9U83ujF.jpg"); }
.cb3 { background-image: url("https://image.tmdb.org/t/p/w185/bEA15zMnkcXlRroYjKrFUWiiK7y.jpg"); }
.cb4 { background-image: url("https://image.tmdb.org/t/p/w185/fT3Wv8ef0Vn0daHWAObCp2Bd4Y.jpg"); }
.cast .cname { font-size: 0.45rem; color: var(--muted); text-align: center; line-height: 1.1; }

/* upcoming */
.up-list { display: flex; flex-direction: column; gap: 8px; }
.up-day { font-size: 0.56rem; font-weight: 800; letter-spacing: 0.08em; color: var(--brand-2); margin-top: 4px; }
.up-item { display: flex; gap: 8px; align-items: center; }
.up-item .poster { width: 26px; border-radius: 6px; }
.up-meta { flex: 1; min-width: 0; }
.up-meta .t { font-size: 0.64rem; font-weight: 700; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.up-meta .s { font-size: 0.56rem; color: var(--muted); }

/* ---------- How it works ---------- */
.steps {
  list-style: none;
  counter-reset: step;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 24px;
  position: relative;
}
.step-num {
  width: 40px; height: 40px;
  border-radius: 12px;
  display: grid; place-items: center;
  font-weight: 800;
  background: linear-gradient(150deg, var(--brand), var(--brand-2));
  color: #fff;
  margin-bottom: 14px;
}
.step h3 { margin: 0 0 6px; font-size: 1.08rem; }
.step p { margin: 0; color: var(--muted); font-size: 0.96rem; }

/* ---------- Privacy ---------- */
.privacy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.privacy-copy h2 {
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  letter-spacing: -0.02em;
  margin: 12px 0 16px;
  line-height: 1.12;
}
.privacy-copy p { color: var(--muted); font-size: 1.05rem; }
.privacy-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.pcard {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
}
.pico {
  width: 40px; height: 40px; border-radius: 10px;
  display: grid; place-items: center;
  background: rgba(34, 211, 166, 0.12);
  border: 1px solid rgba(34, 211, 166, 0.35);
  margin-bottom: 12px;
}
.pico svg { width: 22px; height: 22px; stroke: var(--accent); }
.pcard h3 { margin: 0 0 6px; font-size: 1.02rem; }
.pcard p { margin: 0; font-size: 0.9rem; color: var(--muted); }

/* ---------- FAQ ---------- */
.faq { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 4px 20px;
}
.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  padding: 16px 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; color: var(--brand-2); font-size: 1.4rem; font-weight: 400; }
.faq-item[open] summary::after { content: "\2212"; }
.faq-a { color: var(--muted); padding: 0 0 18px; margin: 0; font-size: 0.98rem; }

/* ---------- CTA ---------- */
.cta {
  padding: 84px 0;
  background:
    radial-gradient(700px 400px at 50% 0%, rgba(109, 94, 252, 0.25), transparent 60%),
    var(--bg-2);
  border-top: 1px solid var(--border);
  text-align: center;
}
.cta h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); letter-spacing: -0.02em; margin: 0 0 12px; }
.cta p { color: var(--muted); font-size: 1.1rem; max-width: 560px; margin: 0 auto 28px; }
.cta .store-buttons { justify-content: center; }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--border); padding: 56px 0 34px; background: var(--bg); }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.3fr;
  gap: 30px;
}
.footer-brand .brand { margin-bottom: 12px; }
.footer-brand p { color: var(--muted); font-size: 0.92rem; max-width: 300px; }
.footer-col h4 { font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); margin: 6px 0 14px; }
.footer-col a { display: block; color: var(--muted); font-size: 0.95rem; padding: 5px 0; transition: color 0.15s; }
.footer-col a:hover { color: var(--text); }
.tmdb-attr { font-size: 0.82rem; color: var(--muted); }
.tmdb-attr .tmdb-logo {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 800; letter-spacing: -0.02em; margin-bottom: 8px; color: var(--text);
}
.tmdb-attr .tmdb-logo span {
  background: linear-gradient(90deg, #90cea1, #01b4e4);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.footer-bottom {
  margin-top: 40px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--muted);
  font-size: 0.88rem;
}
.footer-bottom .ichnos-note em { color: var(--text); font-style: normal; font-weight: 600; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .feature-grid, .steps { grid-template-columns: repeat(2, 1fr); }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-art { min-height: 470px; margin-top: 10px; }
  .privacy-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .screens { grid-template-columns: none; grid-auto-flow: column; grid-auto-columns: 78%; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 12px; }
  .screen-card { scroll-snap-align: center; }
}

@media (max-width: 680px) {
  .section { padding: 66px 0; }
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: block; }
  .site-header.open .nav-links {
    display: flex;
    position: absolute;
    top: 66px; left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--bg-2);
    border-bottom: 1px solid var(--border);
    padding: 8px 22px 16px;
    margin: 0;
  }
  .site-header.open .nav-links a { padding: 12px 0; border-bottom: 1px solid var(--border); }
  .feature-grid, .steps, .privacy-cards, .footer-grid { grid-template-columns: 1fr; }
  .screens { grid-auto-columns: 86%; }
  .footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; }
}

/* ---------- Legal / policy pages ---------- */
.page-hero { padding-top: 46px; }
.legal { max-width: 820px; margin: 0 auto; }
.legal h1 { font-size: clamp(2rem, 4vw, 2.7rem); letter-spacing: -0.02em; margin: 0 0 6px; }
.legal .updated { color: var(--muted); margin: 0 0 30px; }
.legal h2 { margin: 34px 0 10px; font-size: 1.25rem; letter-spacing: -0.01em; }
.legal p, .legal li { color: #c7ccd8; }
.legal a { color: var(--brand-2); }
.legal ul { padding-left: 20px; }
.legal .back { display: inline-block; margin-bottom: 22px; color: var(--muted); font-weight: 600; }
.legal .back:hover { color: var(--text); }
