/* Nova brand stylesheet — Netflix-inspired palette per app design tokens. */
:root {
  --bg:        #0a0a0a;
  --panel:     #141414;
  --line:      #262626;
  --text:      #f5f5f5;
  --muted:     #8a8a8a;
  --red:       #e50914;
  --red-dark:  #b00710;
  --max-width: 1080px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font: 16px/1.6 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

/* ---------- Header ---------- */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 18px 28px;
  border-bottom: 1px solid var(--line);
}
.brand {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--red);
}
.primary-nav a {
  margin-left: 22px;
  font-size: 14px;
  color: var(--muted);
}
.primary-nav a:hover { color: var(--text); }

/* ---------- Hero ---------- */
.hero {
  padding: 80px 28px 60px;
  text-align: center;
  background:
    radial-gradient(ellipse at top, rgba(229, 9, 20, 0.18), transparent 60%),
    var(--bg);
}
.hero-inner { max-width: 800px; margin: 0 auto; }
.hero h1 {
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1.1;
  margin: 0 0 24px;
  font-weight: 800;
  letter-spacing: -1.5px;
}
.hero .accent { color: var(--red); }
.hero .lead {
  font-size: 18px;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto 32px;
}

.cta-row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.cta {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 15px;
  transition: background 0.15s, transform 0.15s;
}
.cta.primary {
  background: var(--red);
  color: #fff;
}
.cta.primary:hover {
  background: var(--red-dark);
  color: #fff;
}
.cta.secondary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
}
.cta.secondary:hover { background: rgba(255, 255, 255, 0.16); color: var(--text); }

/* ---------- Features grid ---------- */
.features {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 60px 28px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.feature {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
}
.feature h3 {
  margin: 0 0 8px;
  font-size: 17px;
  color: var(--text);
}
.feature p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

/* ---------- Download + Support sections ---------- */
.download, .support {
  max-width: 720px;
  margin: 0 auto;
  padding: 60px 28px;
  text-align: center;
}
.download h2, .support h2 {
  font-size: 28px;
  margin: 0 0 12px;
}
.download p, .support p {
  color: var(--muted);
  margin: 0 0 20px;
}
.download .note { font-size: 13px; opacity: 0.7; }

/* ---------- Document pages (privacy, terms) ---------- */
.doc {
  max-width: 760px;
  margin: 0 auto;
  padding: 60px 28px 80px;
}
.doc h1 {
  font-size: 36px;
  margin: 0 0 8px;
}
.doc .effective {
  color: var(--muted);
  margin: 0 0 32px;
  font-size: 14px;
}
.doc h2 {
  margin: 36px 0 12px;
  font-size: 20px;
  color: var(--text);
}
.doc h3 {
  margin: 24px 0 8px;
  font-size: 16px;
  color: var(--text);
}
.doc p, .doc li {
  color: #d4d4d4;
}
.doc ul {
  padding-left: 22px;
}
.doc a {
  color: var(--red);
}

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--line);
  margin-top: 40px;
  padding: 32px 28px;
}
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--muted);
  font-size: 14px;
}
.footer-nav a {
  color: var(--muted);
  margin-left: 18px;
}
.footer-nav a:hover { color: var(--red); }

@media (max-width: 600px) {
  .site-header { flex-direction: column; gap: 12px; }
  .primary-nav a { margin: 0 10px; }
  .footer-inner { flex-direction: column; }
  .footer-nav a { margin: 0 10px; }
}
