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

:root {
  --bg:      #07111e;
  --bg2:     #0d1f35;
  --bg3:     #112540;
  --border:  #1e3048;
  --teal:    #14b8a6;
  --teal-dk: #0d9488;
  --text:    #e2e8f0;
  --muted:   #94a3b8;
  --faint:   #64748b;
}

html { scroll-behavior: smooth; }

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

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

/* ── Nav ──────────────────────────────────────────── */

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 32px;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: rgba(7, 17, 30, 0.92);
  backdrop-filter: blur(12px);
  z-index: 100;
}

.nav-logo {
  font-size: 18px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.3px;
}

.nav-logo span { color: var(--teal); }

.nav-links { display: flex; gap: 28px; }

.nav-links a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.15s;
}

.nav-links a:hover { color: var(--text); }

/* ── Hero ─────────────────────────────────────────── */

.hero {
  text-align: center;
  padding: 96px 24px 80px;
  max-width: 760px;
  margin: 0 auto;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--teal);
  background: rgba(20, 184, 166, 0.1);
  border: 1px solid rgba(20, 184, 166, 0.25);
  border-radius: 20px;
  padding: 4px 14px;
  margin-bottom: 28px;
}

.hero h1 {
  font-size: clamp(36px, 6vw, 60px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
  color: var(--text);
  margin-bottom: 20px;
}

.hero h1 span { color: var(--teal); }

.hero p {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.65;
}

.hero-cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.15s;
  cursor: pointer;
}

.btn-primary {
  background: var(--teal);
  color: #07111e;
}

.btn-primary:hover {
  background: var(--teal-dk);
  color: #07111e;
}

.btn-ghost {
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--border);
}

.btn-ghost:hover {
  border-color: var(--teal);
  color: var(--teal);
}

/* ── Features ─────────────────────────────────────── */

.features {
  padding: 64px 24px 80px;
  max-width: 1060px;
  margin: 0 auto;
}

.section-label {
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 48px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.feature-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 24px;
  transition: border-color 0.2s;
}

.feature-card:hover { border-color: var(--teal); }

.feature-dot {
  width: 10px;
  height: 10px;
  background: var(--teal);
  border-radius: 50%;
  margin-bottom: 18px;
}

.feature-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

/* ── Privacy Callout ──────────────────────────────── */

.privacy-callout {
  margin: 0 24px 80px;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-left: 3px solid var(--teal);
  border-radius: 14px;
  padding: 36px 40px;
}

.privacy-callout h2 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.privacy-callout p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 680px;
}

/* ── Footer ───────────────────────────────────────── */

footer {
  border-top: 1px solid var(--border);
  padding: 40px 32px;
}

.footer-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-logo {
  font-size: 15px;
  font-weight: 800;
  color: var(--faint);
}

.footer-logo span { color: var(--teal); }

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-size: 13px;
  color: var(--faint);
}

.footer-links a:hover { color: var(--muted); }

.footer-copy {
  font-size: 12px;
  color: var(--faint);
  width: 100%;
}

/* ── Legal Pages ──────────────────────────────────── */

.legal-wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 56px 24px 80px;
}

.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 36px;
  transition: color 0.15s;
}

.legal-back:hover { color: var(--text); }

.legal-wrap h1 {
  font-size: 32px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 6px;
  letter-spacing: -0.5px;
}

.legal-date {
  font-size: 13px;
  color: var(--faint);
  margin-bottom: 40px;
  display: block;
}

.legal-intro {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 40px;
}

.legal-section {
  margin-bottom: 32px;
}

.legal-section h2 {
  font-size: 15px;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 10px;
}

.legal-section p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 10px;
}

.legal-section ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.legal-section ul li {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  padding-left: 16px;
  position: relative;
}

.legal-section ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--faint);
}

.legal-section strong {
  font-weight: 600;
  color: var(--text);
}

/* ── Responsive ───────────────────────────────────── */

@media (max-width: 600px) {
  nav { padding: 16px 20px; }
  .nav-links { gap: 18px; }
  .hero { padding: 64px 20px 56px; }
  .privacy-callout { padding: 28px 24px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-copy { margin-top: 4px; }
}
