/* Snitchy - gold on navy */
:root {
  --navy: #081028;
  --navy-elevated: #0E1A30;
  --card: #162038;
  --card-hover: #1E2A48;
  --gold: #D8A028;
  --gold-light: #E8B84A;
  --gold-pale: #F0C860;
  --on-gold: #1A1304;
  --text: #F4F6FB;
  --text-muted: #A7B0C4;
  --border: rgba(216, 160, 40, 0.18);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: var(--navy);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
}

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

a { color: var(--gold-light); }

/* Header */
.site-header {
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.brand-mark { height: 36px; width: auto; }
.brand-name {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
}

/* Hero */
.hero {
  text-align: center;
  padding: 64px 0 56px;
  background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(216, 160, 40, 0.12), transparent);
}
.hero-logo {
  width: 240px;
  margin: 0 auto 32px;
}
.hero h1 {
  font-size: 2.1rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.025em;
}
.hero h1 .accent { color: var(--gold); }
.hero-lead {
  max-width: 540px;
  margin: 20px auto 32px;
  color: var(--text-muted);
  font-size: 1.05rem;
}
.hero-lead strong { color: var(--text); }

/* Buttons */
.btn {
  display: inline-block;
  font-weight: 700;
  font-size: 0.98rem;
  text-decoration: none;
  padding: 13px 26px;
  border-radius: 12px;
  transition: transform 0.12s ease, background 0.15s ease;
}
.btn:active { transform: scale(0.98); }
.btn-primary {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--on-gold);
}
.btn-primary:hover { background: linear-gradient(135deg, var(--gold-pale), var(--gold-light)); }
.btn-outline {
  background: transparent;
  color: var(--gold-light);
  border: 1.5px solid var(--border);
}
.btn-outline:hover { background: var(--card-hover); border-color: var(--gold); }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }

/* Setup */
.setup { padding: 56px 0 72px; }
.section-title {
  text-align: center;
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  margin: 8px 0 40px;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.step {
  display: flex;
  gap: 18px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
}
.step-num {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 800;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--on-gold);
}
.step-body { flex: 1; }
.step-device {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gold);
  margin-bottom: 4px;
}
.step-body h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.step-body p { color: var(--text-muted); }
.step-body p strong { color: var(--text); }
.step-body .btn { margin-top: 14px; }
.step-hint {
  font-size: 0.85rem;
  margin-top: 8px;
}

/* Download CTA */
.download-cta {
  text-align: center;
  margin-top: 48px;
  padding: 44px 28px;
  background: var(--navy-elevated);
  border: 1px solid var(--border);
  border-radius: 20px;
}
.download-cta h2 {
  font-size: 1.5rem;
  font-weight: 800;
}
.download-cta > p {
  color: var(--text-muted);
  margin: 8px 0 24px;
}
.cta-note {
  max-width: 480px;
  margin: 22px auto 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 36px 0;
  text-align: center;
}
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 14px;
}
.footer-brand .brand-mark { height: 26px; width: auto; }
.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 22px;
  margin-bottom: 14px;
}
.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.92rem;
}
.footer-links a:hover { color: var(--gold-light); }
.footer-copy {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* Legal pages */
.legal-page { padding: 48px 0 72px; }
.legal-page h1 {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.legal-page .effective-date {
  color: var(--text-muted);
  margin: 6px 0 28px;
  font-size: 0.9rem;
}
.legal-page h2 {
  font-size: 1.3rem;
  font-weight: 700;
  margin: 32px 0 10px;
  color: var(--gold-light);
}
.legal-page h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 20px 0 8px;
}
.legal-page p { margin-bottom: 12px; color: var(--text-muted); }
.legal-page ul { margin: 0 0 12px 22px; color: var(--text-muted); }
.legal-page li { margin-bottom: 6px; }
.legal-page strong { color: var(--text); }

/* Responsive */
@media (max-width: 560px) {
  .hero { padding: 44px 0 40px; }
  .hero-logo { width: 190px; }
  .hero h1 { font-size: 1.7rem; }
  .step { padding: 20px; gap: 14px; }
  .step-num { width: 38px; height: 38px; font-size: 1.1rem; }
}
