@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@400;500;600;700&family=Barlow+Condensed:wght@600;700&display=swap');

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

:root {
  --bg: #0a0c0f;
  --bg2: #0d0f12;
  --bg3: #0e1620;
  --border: #1e2229;
  --border2: #2e3440;
  --accent: #3b9eff;
  --accent-dark: #0a1929;
  --text: #e8eaed;
  --text2: #8a909a;
  --text3: #6b7280;
  --text4: #565c68;
  --muted: #3a4050;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Barlow', sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

a { color: inherit; text-decoration: none; }

/* NAV */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 48px;
  border-bottom: 0.5px solid var(--border);
  position: sticky;
  top: 0;
  background: rgba(10,12,15,0.95);
  backdrop-filter: blur(8px);
  z-index: 100;
}

.nav-logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #fff;
}
.nav-logo span { color: var(--accent); }

.nav-links { display: flex; gap: 28px; }
.nav-links a { font-size: 13px; color: var(--text2); transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--accent); }

.nav-cta {
  background: var(--accent);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  font-family: 'Barlow', sans-serif;
  transition: opacity 0.2s;
}
.nav-cta:hover { opacity: 0.85; }

/* BUTTONS */
.btn-primary {
  background: var(--accent);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 13px 28px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  font-family: 'Barlow', sans-serif;
  display: inline-block;
  text-align: center;
  transition: opacity 0.2s;
}
.btn-primary:hover { opacity: 0.85; }

.btn-secondary {
  background: transparent;
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
  padding: 13px 28px;
  border-radius: 4px;
  border: 0.5px solid var(--border2);
  cursor: pointer;
  font-family: 'Barlow', sans-serif;
  display: inline-block;
  text-align: center;
  transition: border-color 0.2s;
}
.btn-secondary:hover { border-color: var(--accent); }

/* SECTION LABELS */
.eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 40px;
}

/* FOOTER */
footer {
  padding: 28px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 0.5px solid var(--border);
}

.footer-logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #2e3440;
  letter-spacing: 1px;
}
.footer-logo span { color: #1e3a5f; }

.footer-links { display: flex; gap: 20px; }
.footer-links a { font-size: 12px; color: #2e3440; transition: color 0.2s; }
.footer-links a:hover { color: var(--accent); }

.footer-copy { font-size: 11px; color: #2a2f38; }

/* PLAN CARDS */
.plans { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; }

.plan {
  padding: 36px 30px;
  background: var(--bg2);
  display: flex;
  flex-direction: column;
}

.plan.featured {
  background: var(--bg3);
  border: 0.5px solid var(--accent);
}

.plan-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dark);
  padding: 4px 10px;
  border-radius: 2px;
  margin-bottom: 18px;
}

.plan-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.plan-price {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin: 18px 0 6px;
}
.plan-price span { font-size: 16px; font-weight: 400; color: var(--text4); }

.plan-desc { font-size: 13px; color: var(--text4); margin-bottom: 24px; line-height: 1.6; }

.plan-divider { height: 0.5px; background: #1a1f28; margin-bottom: 24px; }

.plan-features { list-style: none; margin: 0 0 32px; flex: 1; }
.plan-features li {
  font-size: 13px;
  color: var(--text2);
  padding: 8px 0;
  border-bottom: 0.5px solid #1a1f28;
  display: flex;
  align-items: center;
  gap: 10px;
}
.plan-features li::before {
  content: '';
  width: 4px;
  height: 4px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}
.plan-features li.muted { color: var(--muted); }
.plan-features li.muted::before { background: #2a2f38; }

.plan-btn {
  width: 100%;
  padding: 13px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  border: 0.5px solid var(--border2);
  background: transparent;
  color: var(--text);
  font-family: 'Barlow', sans-serif;
  margin-top: auto;
  transition: all 0.2s;
  display: block;
  text-align: center;
}
.plan-btn:hover { border-color: var(--accent); color: var(--accent); }
.plan.featured .plan-btn {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.plan.featured .plan-btn:hover { opacity: 0.85; }

/* CTA STRIP */
.cta-strip {
  padding: 60px 48px;
  background: var(--bg2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 0.5px solid var(--border);
  border-bottom: 0.5px solid var(--border);
  gap: 40px;
}
.cta-strip h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 34px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.cta-strip p { font-size: 14px; color: var(--text3); max-width: 460px; line-height: 1.6; }
.cta-btns { display: flex; gap: 12px; flex-shrink: 0; }

/* RESPONSIVE */
@media (max-width: 768px) {
  nav { padding: 14px 20px; }
  .nav-links { display: none; }
  .plans { grid-template-columns: 1fr; }
  .cta-strip { flex-direction: column; text-align: center; }
  .cta-btns { flex-direction: column; width: 100%; }
  footer { flex-direction: column; gap: 12px; text-align: center; }
}
