/* ── News ──────────────────────────────────────────────────── */
.news-section { padding: 48px 0 0; }
.news-card {
  background: linear-gradient(135deg, #12253E 0%, #1A3050 100%);
  border: 1px solid rgba(200,168,75,.3);
  border-radius: 20px;
  padding: 32px 36px;
  position: relative;
  overflow: hidden;
}
.news-card::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--gold);
  border-radius: 4px 0 0 4px;
}
.news-badge {
  font-size: 11px; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px;
}
.news-body {
  display: flex; align-items: flex-start; gap: 24px;
}
.news-icon-wrap {
  flex-shrink: 0;
  width: 56px; height: 56px;
  background: rgba(200,168,75,.1);
  border: 1px solid rgba(200,168,75,.2);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
}
.news-play-icon { width: 28px; height: 28px; }
.news-content h3 {
  font-family: var(--serif); font-size: 22px;
  font-weight: 600; color: var(--text);
  margin-bottom: 8px; line-height: 1.3;
}
.news-content p {
  font-size: 14px; color: var(--muted);
  line-height: 1.75; margin-bottom: 20px;
}
.news-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold);
  color: var(--navy);
  font-size: 14px; font-weight: 700;
  padding: 11px 20px; border-radius: 10px;
  text-decoration: none;
  transition: background .2s, transform .15s;
}
.news-cta:hover { background: #D4B45A; transform: translateY(-1px); }
@media (max-width: 600px) {
  .news-body { flex-direction: column; gap: 16px; }
  .news-card { padding: 24px 20px; }
}

/* ── Reset & base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:      #0A1626;
  --navy-mid:  #16253C;
  --navy-lite: #1E3050;
  --gold:      #C8A84B;
  --gold-dim:  #8A6F2E;
  --text:      #E8DCC8;
  --muted:     #8FA8C8;
  --border:    rgba(200,168,75,.18);
  --radius:    16px;
  --serif:     'Cormorant Garamond', Georgia, serif;
  --sans:      -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--navy);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

/* ── Utility ──────────────────────────────────────────────── */
.container { max-width: 1080px; margin: 0 auto; padding: 0 24px; }
.serif { font-family: var(--serif); }
.gold  { color: var(--gold); }

/* ── Nav ──────────────────────────────────────────────────── */
nav {
  position: sticky; top: 0; z-index: 100;
  backdrop-filter: blur(12px);
  background: rgba(10,22,38,.85);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.nav-brand {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--serif); font-size: 22px; color: var(--text);
  text-decoration: none;
}
.nav-brand svg { width: 32px; height: 32px; }
.nav-links { display: flex; gap: 28px; }
.nav-links a {
  font-size: 14px; color: var(--muted); letter-spacing: .5px;
  transition: color .2s;
}
.nav-links a:hover { color: var(--gold); text-decoration: none; }

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  min-height: 92vh;
  display: flex; align-items: center;
  background: radial-gradient(ellipse 70% 60% at 50% 30%, #16253C 0%, var(--navy) 100%);
  padding: 80px 0 60px;
  text-align: center;
}
.hero-inner { width: 100%; }

.hero-tau {
  margin: 0 auto 32px;
  width: 110px; height: 110px;
  background: var(--navy-mid);
  border: 1.5px solid var(--border);
  border-radius: 26px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 40px rgba(200,168,75,.12);
}
.hero-tau svg { width: 72px; height: 72px; }

.hero-badge {
  display: inline-block;
  background: rgba(200,168,75,.12);
  border: 1px solid rgba(200,168,75,.35);
  border-radius: 100px;
  padding: 6px 18px;
  font-size: 12px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px;
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(44px, 8vw, 80px);
  font-weight: 600; line-height: 1.1;
  color: var(--text); margin-bottom: 20px;
}
.hero h1 span { color: var(--gold); }

.hero-sub {
  font-size: clamp(16px, 2.5vw, 20px);
  color: var(--muted); max-width: 520px;
  margin: 0 auto 48px; line-height: 1.7;
}

/* ── Store badges ─────────────────────────────────────────── */
.store-badges {
  display: flex; gap: 16px; justify-content: center;
  flex-wrap: wrap; margin-bottom: 16px;
}
.badge {
  display: flex; align-items: center; gap: 12px;
  background: var(--navy-mid);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 12px 24px;
  transition: border-color .2s, box-shadow .2s;
  cursor: default;
}
.badge.soon { opacity: .55; }
.badge:not(.soon) { cursor: pointer; }
.badge:not(.soon):hover {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,168,75,.1);
}
.badge svg { width: 28px; height: 28px; flex-shrink: 0; }
.badge-text { text-align: left; }
.badge-text small {
  display: block; font-size: 10px; letter-spacing: 1px;
  text-transform: uppercase; color: var(--muted);
}
.badge-text strong {
  display: block; font-size: 17px; color: var(--text);
  font-weight: 600; line-height: 1.2;
}
.store-note { font-size: 13px; color: var(--muted); }

/* ── Lit bar ──────────────────────────────────────────────── */
.lit-bar {
  height: 4px;
  background: linear-gradient(90deg,
    #186420 0%, #7D287D 25%, #C8A84B 50%, #C62D25 75%, #F485BA 100%);
  margin: 64px 0 0;
}

/* ── Features ─────────────────────────────────────────────── */
.features { padding: 96px 0; }
.section-label {
  font-size: 11px; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 600; line-height: 1.15;
  color: var(--text); margin-bottom: 56px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.feature-card {
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color .2s;
}
.feature-card:hover { border-color: rgba(200,168,75,.4); }
.feature-icon {
  width: 44px; height: 44px;
  background: rgba(200,168,75,.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  font-size: 22px;
}
.feature-card h3 {
  font-family: var(--serif); font-size: 20px;
  font-weight: 600; color: var(--text); margin-bottom: 8px;
}
.feature-card p { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* ── Screenshots ──────────────────────────────────────────── */
.screenshots { padding: 0 0 96px; overflow: hidden; }
.screenshots-title { text-align: center; margin-bottom: 48px; }
.screenshots-row {
  display: flex; gap: 20px;
  justify-content: center; flex-wrap: wrap;
}
.screenshot-frame {
  width: 220px; border-radius: 28px;
  overflow: hidden;
  border: 1.5px solid var(--border);
  box-shadow: 0 24px 64px rgba(0,0,0,.5);
  flex-shrink: 0;
}
.screenshot-frame img { width: 100%; display: block; }
.screenshot-frame:nth-child(2) { margin-top: 32px; }
.screenshot-frame:nth-child(3) { margin-top: 16px; }

/* ── Footer ───────────────────────────────────────────────── */
footer {
  border-top: 1px solid var(--border);
  padding: 40px 0;
}
.footer-inner {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
}
.footer-brand {
  font-family: var(--serif); font-size: 18px; color: var(--muted);
}
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: 13px; color: var(--muted); }
.footer-links a:hover { color: var(--gold); }
.footer-copy { font-size: 12px; color: rgba(143,168,200,.5); width: 100%; }

/* ── Privacy page ─────────────────────────────────────────── */
.privacy-hero {
  padding: 80px 0 48px;
  border-bottom: 1px solid var(--border);
}
.privacy-hero h1 {
  font-family: var(--serif); font-size: clamp(36px, 6vw, 56px);
  font-weight: 600; color: var(--text); margin-bottom: 12px;
}
.privacy-hero p { color: var(--muted); font-size: 15px; }

.privacy-body { padding: 64px 0 96px; }
.privacy-body article {
  max-width: 740px;
}
.privacy-body h2 {
  font-family: var(--serif); font-size: 26px; font-weight: 600;
  color: var(--gold); margin: 48px 0 16px;
}
.privacy-body h2:first-child { margin-top: 0; }
.privacy-body h3 {
  font-size: 16px; font-weight: 600;
  color: var(--text); margin: 24px 0 8px;
}
.privacy-body p { color: var(--muted); margin-bottom: 14px; line-height: 1.75; }
.privacy-body ul {
  color: var(--muted); padding-left: 20px;
  margin-bottom: 14px; line-height: 1.75;
}
.privacy-body li { margin-bottom: 6px; }
.privacy-body strong { color: var(--text); }
.privacy-body a { color: var(--gold); }
.privacy-table {
  width: 100%; border-collapse: collapse; margin-bottom: 24px;
  font-size: 14px;
}
.privacy-table th {
  text-align: left; padding: 10px 14px;
  background: var(--navy-mid); color: var(--text);
  font-weight: 600; border-bottom: 1px solid var(--border);
}
.privacy-table td {
  padding: 10px 14px; color: var(--muted);
  border-bottom: 1px solid rgba(255,255,255,.05);
  vertical-align: top;
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 600px) {
  .nav-links { display: none; }
  .footer-inner { flex-direction: column; text-align: center; }
  .screenshot-frame:nth-child(2),
  .screenshot-frame:nth-child(3) { margin-top: 0; }
}
