:root {
  --blue: #1E5FFF;
  --blue-dark: #1346BF;
  --blue-deep: #0A2E80;
  --blue-light: #4378FF;
  --blue-pale: #EAF0FF;
  --blue-tint: #F5F8FF;
  --red: #E53935;
  --text: #1f2937;
  --text-on-blue: #ffffff;
  --muted: #6b7280;
  --bg: #ffffff;
  --rule: #dbe3f5;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

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

/* ----- Header ----- */
.header {
  background: var(--blue);
  color: white;
  padding: 18px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 0 rgba(255,255,255,0.08);
}
.header-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-decoration: none;
  color: white;
}
.brand .go { color: white; font-weight: 800; }
.nav { display: flex; gap: 24px; }
.nav a {
  color: white;
  text-decoration: none;
  font-size: 14px;
  opacity: 0.9;
}
.nav a:hover { opacity: 1; color: white; text-decoration: none; }

/* ----- Hero ----- */
.hero {
  background: linear-gradient(180deg, var(--blue) 0%, var(--blue-light) 100%);
  color: white;
  padding: 80px 24px 100px;
  text-align: center;
}
.hero h1 {
  font-size: clamp(36px, 5.5vw, 60px);
  line-height: 1.05;
  margin: 0 0 16px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: white;
}
.hero h1 .go { color: white; font-weight: 900; }
.hero .slogan {
  font-size: clamp(18px, 2.2vw, 22px);
  color: rgba(255,255,255,0.95);
  margin: 0 auto 40px;
  max-width: 740px;
  font-weight: 400;
}
.badges {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 8px;
}
.badges a img {
  height: 56px;
  display: block;
}

/* ----- Sections ----- */
.section {
  padding: 80px 24px;
  background: var(--bg);
}
.section.alt { background: var(--blue-tint); }
.container {
  max-width: 1080px;
  margin: 0 auto;
}
.section h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  color: var(--blue-deep);
  margin: 0 0 16px;
  text-align: center;
  letter-spacing: -0.01em;
}
.section .lead {
  font-size: 18px;
  color: var(--muted);
  text-align: center;
  margin: 0 auto 48px;
  max-width: 640px;
}

/* ----- Feature pillars ----- */
.pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 32px;
}
.pillar {
  background: white;
  border: 1px solid var(--rule);
  border-radius: 16px;
  padding: 32px 24px;
  box-shadow: 0 1px 4px rgba(30, 95, 255, 0.05);
}
.pillar .icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--blue);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 20px;
}
.pillar .icon.red { background: var(--red); }
.pillar h3 {
  font-size: 20px;
  color: var(--blue-deep);
  margin: 0 0 8px;
}
.pillar p {
  font-size: 15px;
  color: var(--muted);
  margin: 0;
}

/* ----- Verified callout ----- */
.verified {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-light) 100%);
  color: white;
  padding: 64px 24px;
  text-align: center;
  border-radius: 24px;
  margin: 0 0 32px;
  box-shadow: 0 8px 32px rgba(30, 95, 255, 0.15);
}
.verified h2 { color: white; }
.verified .lead { color: rgba(255,255,255,0.95); }

/* ----- Tier table ----- */
.tiers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-top: 32px;
}
.tier {
  background: white;
  border: 1px solid var(--rule);
  border-radius: 14px;
  padding: 24px 20px;
  text-align: center;
  transition: border-color 0.2s, transform 0.2s;
}
.tier:hover { border-color: var(--blue); transform: translateY(-2px); }
.tier .name { font-weight: 700; color: var(--blue-deep); font-size: 16px; }
.tier .price { font-size: 24px; color: var(--blue); font-weight: 700; margin: 8px 0; }
.tier .desc { font-size: 13px; color: var(--muted); }

/* ----- Footer ----- */
.footer {
  background: var(--blue);
  color: rgba(255,255,255,0.92);
  padding: 56px 24px 32px;
  font-size: 14px;
}
.footer-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}
.footer .brand { color: white; }
.footer .brand .go { color: white; }
.footer-col h4 {
  color: white;
  font-size: 14px;
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
}
.footer-col a {
  display: block;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  padding: 4px 0;
}
.footer-col a:hover { color: white; text-decoration: underline; }
.footer-bottom {
  max-width: 1080px;
  margin: 32px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.7);
  font-size: 13px;
  text-align: center;
}

/* ----- Legal pages (privacy / terms / delete account) ----- */
.legal-main {
  max-width: 820px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}
.legal-main h1 {
  font-size: 36px;
  color: var(--blue-deep);
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}
.legal-main h2 {
  font-size: 22px;
  color: var(--blue-deep);
  margin: 40px 0 12px;
}
.legal-main h3 {
  font-size: 17px;
  color: var(--blue-deep);
  margin: 24px 0 8px;
}
.legal-main p, .legal-main li { font-size: 16px; }
.legal-main ul, .legal-main ol { padding-left: 24px; }
.legal-main table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0 24px;
  font-size: 15px;
}
.legal-main th, .legal-main td {
  border: 1px solid var(--rule);
  padding: 10px 12px;
  text-align: left;
  vertical-align: top;
}
.legal-main th { background: var(--blue-pale); color: var(--blue-deep); font-weight: 600; }
.meta {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 32px;
}
hr { border: none; border-top: 1px solid var(--rule); margin: 40px 0; }
