/* ── PARA Website Styles ─────────────────────────────────
   Design tokens from frontend/constants/Colors.ts:
   background: #000000   surface: #1C1C1E   surfaceSelected: #2C2C2E
   border: #3A3A3C       blue: #0A84FF      green: #30D158
   textPrimary: #FFFFFF  textSecondary: #888888  textTertiary: #666666
   ────────────────────────────────────────────────────── */

/* ── Reset & Base ────────────────────────────────────────── */
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.7;
  color: #FFFFFF;
  background: #000000;
}
a { color: #FFFFFF; text-decoration: none; }

/* ── Nav ─────────────────────────────────────────────────── */
.site-nav {
  max-width: 960px;
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-nav .logo {
  font-size: 20px;
  font-weight: 700;
  color: #FFFFFF;
}
.site-nav .nav-links {
  display: flex;
  gap: 24px;
}
.site-nav .nav-links a {
  color: #888888;
  font-size: 14px;
  transition: color .15s;
}
.site-nav .nav-links a:hover { color: #FFFFFF; }

/* ── Hero ────────────────────────────────────────────────── */
.hero {
  max-width: 960px;
  margin: 0 auto;
  padding: 80px 24px 64px;
  text-align: center;
}
.hero h1 {
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
  color: #FFFFFF;
}
.hero .tagline {
  font-size: 20px;
  color: #888888;
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.5;
}
.hero .cta-group {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-block;
  padding: 14px 32px;
  background: #0A84FF;
  color: #FFFFFF;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  transition: background .15s;
}
.btn-primary:hover { background: #3399FF; color: #FFFFFF; }
.btn-secondary {
  display: inline-block;
  padding: 14px 32px;
  background: #1C1C1E;
  color: #FFFFFF;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  border: 1px solid #3A3A3C;
  transition: background .15s;
}
.btn-secondary:hover { background: #2C2C2E; }

/* ── Phone Mockup ────────────────────────────────────────── */
.phone-mockup {
  max-width: 300px;
  margin: 56px auto 0;
  background: #1C1C1E;
  border-radius: 32px;
  padding: 48px 24px;
  text-align: center;
  color: #666666;
  font-size: 14px;
  border: 2px solid #3A3A3C;
  aspect-ratio: 9/16;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── Section (shared) ────────────────────────────────────── */
.section {
  max-width: 960px;
  margin: 0 auto;
  padding: 80px 24px;
}
.section-title {
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 12px;
  color: #FFFFFF;
}
.section-sub {
  font-size: 16px;
  color: #888888;
  text-align: center;
  margin-bottom: 56px;
}

/* ── How It Works ────────────────────────────────────────── */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.step {
  text-align: center;
}
.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #0A84FF;
  color: #FFFFFF;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
}
.step h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #FFFFFF;
}
.step p {
  font-size: 15px;
  color: #888888;
  line-height: 1.6;
}

/* ── Features ────────────────────────────────────────────── */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.feature-card {
  background: #1C1C1E;
  border: 1px solid #3A3A3C;
  border-radius: 16px;
  padding: 32px 24px;
}
.feature-icon {
  font-size: 28px;
  margin-bottom: 16px;
  color: #0A84FF;
}
.feature-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #FFFFFF;
}
.feature-card p {
  font-size: 15px;
  color: #888888;
  line-height: 1.6;
}

/* ── CTA Banner ──────────────────────────────────────────── */
.cta-banner {
  text-align: center;
  padding: 80px 24px;
  background: #1C1C1E;
}
.cta-banner h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #FFFFFF;
}
.cta-banner p {
  font-size: 16px;
  color: #888888;
  margin-bottom: 32px;
}

/* ── Footer ──────────────────────────────────────────────── */
.site-footer {
  max-width: 960px;
  margin: 0 auto;
  padding: 32px 24px;
  border-top: 1px solid #3A3A3C;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.site-footer .copyright {
  color: #666666;
  font-size: 13px;
}
.site-footer .footer-links {
  display: flex;
  gap: 24px;
}
.site-footer .footer-links a {
  color: #666666;
  font-size: 13px;
  transition: color .15s;
}
.site-footer .footer-links a:hover { color: #FFFFFF; }

/* ── Content Pages (Privacy, Terms, Delete Account) ─────── */
.container {
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}
h1 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #FFFFFF;
}
h2 {
  font-size: 22px;
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 12px;
  color: #FFFFFF;
}
h3 {
  font-size: 18px;
  font-weight: 600;
  margin-top: 28px;
  margin-bottom: 8px;
  color: #FFFFFF;
}
p {
  margin-bottom: 16px;
  color: #888888;
}
.subtitle {
  color: #666666;
  font-size: 14px;
  margin-bottom: 32px;
}
ul, ol {
  margin-bottom: 16px;
  padding-left: 24px;
}
li { margin-bottom: 6px; color: #888888; }
strong { font-weight: 600; color: #FFFFFF; }
a { color: #0A84FF; }
a:hover { color: #3399FF; }
table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 16px;
}
th, td {
  text-align: left;
  padding: 10px 12px;
  border-bottom: 1px solid #3A3A3C;
  font-size: 14px;
  color: #888888;
}
th {
  font-weight: 600;
  background: #1C1C1E;
  color: #FFFFFF;
}

/* ── Override link colors in nav/footer (white, not blue) ── */
.site-nav a,
.site-nav .logo,
.site-footer .footer-links a { color: #888888; }
.site-nav .logo { color: #FFFFFF; }
.site-nav a:hover,
.site-footer .footer-links a:hover { color: #FFFFFF; }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 640px) {
  .hero { padding: 48px 20px 40px; }
  .hero h1 { font-size: 32px; }
  .hero .tagline { font-size: 17px; }
  .steps { grid-template-columns: 1fr; gap: 32px; }
  .features { grid-template-columns: 1fr; }
  .site-footer {
    flex-direction: column;
    text-align: center;
  }
}
