/* ===========================
   SWIFT — swiftrocket.org
   =========================== */

:root {
  --dark: #050a1a;
  --dark2: #0a1628;
  --blue: #1a4fa8;
  --blue-light: #2d6ef0;
  --accent: #e8460a;
  --accent2: #ff6b35;
  --white: #ffffff;
  --gray: #8a9bbf;
  --light-bg: #f4f6fc;
  --card-bg: #0d1f3c;
  --border: rgba(255,255,255,0.08);
  --font: 'Inter', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--dark);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ---- NAV ---- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(5, 10, 26, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  text-decoration: none;
  letter-spacing: -0.5px;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 32px;
  align-items: center;
}
.nav-links a {
  color: var(--gray);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }
.nav-cta {
  background: var(--blue-light);
  color: var(--white) !important;
  padding: 8px 18px;
  border-radius: 6px;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: #1a5fd8 !important; }

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: radial-gradient(ellipse at 20% 50%, rgba(26,79,168,0.3) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 20%, rgba(232,70,10,0.15) 0%, transparent 50%),
              var(--dark);
  padding: 100px 24px 60px;
  overflow: hidden;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 2;
}
.hero-badge {
  display: inline-block;
  background: rgba(26,79,168,0.3);
  border: 1px solid rgba(45,110,240,0.4);
  color: #7eb3ff;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
  letter-spacing: 0.3px;
}
.hero-title {
  font-size: clamp(42px, 7vw, 80px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 24px;
  max-width: 700px;
}
.accent { color: var(--accent2); }
.hero-sub {
  font-size: 18px;
  color: var(--gray);
  max-width: 560px;
  margin-bottom: 40px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
}
.btn-primary {
  background: var(--blue-light);
  color: var(--white);
}
.btn-primary:hover { background: #1a5fd8; transform: translateY(-1px); }
.btn-outline {
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  background: transparent;
}
.btn-outline:hover { border-color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.05); }

/* ---- TAGLINE BAR ---- */
.tagline-bar {
  background: var(--accent);
  text-align: center;
  padding: 14px;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 4px;
  text-transform: uppercase;
}
.tagline-bar .dot { margin: 0 12px; opacity: 0.6; }

/* ---- SECTIONS ---- */
.section { padding: 96px 24px; }
.section-dark {
  background: var(--dark2);
}
.section-quote {
  background: linear-gradient(135deg, rgba(26,79,168,0.2) 0%, rgba(232,70,10,0.1) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.container {
  max-width: 1100px;
  margin: 0 auto;
}
.center { text-align: center; }

.label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent2);
  margin-bottom: 16px;
}
.label-light { color: #7eb3ff; }

h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 20px;
}
.section-intro {
  font-size: 17px;
  color: var(--gray);
  max-width: 640px;
  margin-bottom: 56px;
  line-height: 1.7;
}
.center .section-intro { margin-left: auto; margin-right: auto; }

/* ---- TWO COL ---- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.col-text p {
  color: var(--gray);
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.8;
}
.col-stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.stat-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px 28px;
}
.stat-num {
  font-size: 36px;
  font-weight: 800;
  color: var(--accent2);
  letter-spacing: -1px;
}
.stat-label {
  font-size: 14px;
  color: var(--gray);
  margin-top: 4px;
}

/* ---- CARDS ---- */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 28px;
  transition: border-color 0.2s, transform 0.2s;
}
.card:hover { border-color: rgba(45,110,240,0.4); transform: translateY(-4px); }
.card-icon { font-size: 32px; margin-bottom: 16px; }
.card h3 { font-size: 18px; font-weight: 700; margin-bottom: 12px; }
.card p { font-size: 14px; color: var(--gray); line-height: 1.7; }

/* ---- PROGRAM LIST ---- */
.program-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.program-item {
  display: flex;
  gap: 32px;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}
.program-item:first-child { border-top: 1px solid var(--border); }
.program-num {
  font-size: 48px;
  font-weight: 800;
  color: rgba(255,255,255,0.08);
  line-height: 1;
  min-width: 64px;
}
.program-body h3 { font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.program-body p { color: var(--gray); font-size: 15px; line-height: 1.7; }

/* ---- QUOTE ---- */
blockquote {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
blockquote p {
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 600;
  line-height: 1.5;
  font-style: italic;
  margin-bottom: 24px;
  color: var(--white);
}
blockquote cite {
  font-size: 15px;
  color: var(--accent2);
  font-style: normal;
  font-weight: 600;
}

/* ---- FOOTER ---- */
.footer {
  background: #020712;
  border-top: 1px solid var(--border);
  padding: 40px 24px;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-logo { font-size: 20px; font-weight: 800; }
.footer-text { font-size: 13px; color: var(--gray); text-align: center; line-height: 1.6; }
.footer-tagline { font-size: 14px; font-weight: 700; letter-spacing: 2px; color: var(--accent2); }

/* ---- STARS (canvas) ---- */
.hero-stars {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
canvas#stars {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .cards { grid-template-columns: 1fr; }
  .hero-title { letter-spacing: -1px; }
  .footer-inner { flex-direction: column; text-align: center; }
  .program-item { flex-direction: column; gap: 8px; }
  .program-num { font-size: 28px; }
}
