@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300..900;1,9..144,300..900&family=JetBrains+Mono:wght@400;500;700&family=DM+Sans:ital,opsz,wght@0,9..40,300..700;1,9..40,300..700&display=swap');

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  --bg:          #07080a;
  --bg-2:        #0d0e12;
  --bg-3:        #131519;
  --border:      #1c1e26;
  --border-2:    #252830;
  --text:        #dde0ef;
  --text-2:      #7d8099;
  --text-3:      #4a4d60;
  --accent:      #aeff4e;
  --accent-dim:  rgba(174, 255, 78, 0.08);
  --accent-mid:  rgba(174, 255, 78, 0.15);
  --red:         #ff5454;
  --red-dim:     rgba(255, 84, 84, 0.08);

  --font-display: 'Fraunces', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
  --font-mono:    'JetBrains Mono', 'Courier New', monospace;

  --max-w:         1100px;
  --section-pad:   96px;
  --radius:        6px;
  --radius-lg:     10px;
}

/* ============================================================
   RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; }
code { font-family: var(--font-mono); }

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7, 8, 10, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  gap: 32px;
}
.nav-logo {
  font-family: var(--font-mono);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  white-space: nowrap;
}
.nav-logo .logo-accent { color: var(--accent); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  font-size: 14px;
  color: var(--text-2);
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--text); }

.nav-cta {
  font-size: 13px;
  font-weight: 700;
  padding: 8px 18px;
  background: var(--accent);
  color: #07080a;
  border: none;
  border-radius: var(--radius);
  letter-spacing: -0.01em;
  transition: opacity 0.15s, transform 0.15s;
  white-space: nowrap;
  display: inline-block;
}
.nav-cta:hover { opacity: 0.85; transform: translateY(-1px); }

/* ============================================================
   SECTION BASE
   ============================================================ */
section { padding: var(--section-pad) 0; }

.section-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--text);
  margin-bottom: 20px;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding: 72px 0 96px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -300px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 700px;
  background: radial-gradient(ellipse at 50% 40%, rgba(174, 255, 78, 0.05) 0%, transparent 65%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 56px;
  align-items: start;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
  border: 1px solid var(--border-2);
  background: var(--bg-3);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 32px;
}
.hero-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.3; transform: scale(0.85); }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(38px, 5.5vw, 64px);
  font-weight: 700;
  line-height: 1.03;
  letter-spacing: -0.035em;
  color: var(--text);
  margin-bottom: 24px;
}
.hero h1 .price-yes { color: var(--accent); }
.hero h1 .price-no {
  color: var(--text-3);
  text-decoration: line-through;
  text-decoration-color: var(--red);
  text-decoration-thickness: 2px;
}
.hero-sub {
  font-size: 18px;
  color: var(--text-2);
  line-height: 1.6;
  max-width: 500px;
  margin-bottom: 14px;
}
.hero-support {
  font-size: 15px;
  color: var(--text-3);
  line-height: 1.65;
  max-width: 480px;
}

/* ============================================================
   WAITLIST FORM CARD
   ============================================================ */
.form-card {
  background: var(--bg-2);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: sticky;
  top: 76px;
}
.form-card-eyebrow {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 8px;
}
.form-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.2;
}
.form-card > p {
  font-size: 14px;
  color: var(--text-2);
  margin-bottom: 24px;
  line-height: 1.5;
}

.form-field { margin-bottom: 10px; }
.form-field input {
  width: 100%;
  background: var(--bg-3);
  border: 1px solid var(--border-2);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
  padding: 11px 14px;
  border-radius: var(--radius);
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.form-field input::placeholder { color: var(--text-3); }
.form-field input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-dim);
}

.cf-turnstile { margin-bottom: 10px; }

.form-submit {
  width: 100%;
  background: var(--accent);
  color: #07080a;
  border: none;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  padding: 13px 20px;
  border-radius: var(--radius);
  letter-spacing: -0.01em;
  transition: opacity 0.15s, transform 0.15s;
}
.form-submit:hover { opacity: 0.85; transform: translateY(-1px); }
.form-submit:disabled { opacity: 0.45; transform: none; cursor: default; }

.form-note {
  font-size: 12px;
  color: var(--text-3);
  text-align: center;
  margin-top: 12px;
}
.form-success {
  display: none;
  text-align: center;
  padding: 16px 0 8px;
}
.form-success .success-mark {
  font-family: var(--font-mono);
  font-size: 28px;
  color: var(--accent);
  display: block;
  margin-bottom: 10px;
}
.form-success .success-title {
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}
.form-success .success-sub {
  font-size: 14px;
  color: var(--text-2);
}

/* ============================================================
   PROBLEM SECTION
   ============================================================ */
.problem {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.problem-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.problem-text > p {
  color: var(--text-2);
  margin-bottom: 16px;
}
.problem-text strong { color: var(--text); }
.problem-stat {
  font-family: var(--font-mono);
  font-size: 20px;
  font-weight: 700;
  color: var(--red);
}
.problem-stat-good {
  font-family: var(--font-mono);
  font-size: 20px;
  font-weight: 700;
  color: var(--accent);
}

/* Terminal card */
.terminal {
  background: var(--bg);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  font-family: var(--font-mono);
  font-size: 13px;
  line-height: 1.9;
}
.terminal-bar {
  background: var(--bg-3);
  border-bottom: 1px solid var(--border);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 7px;
}
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot-r { background: #ff5f57; }
.dot-y { background: #febc2e; }
.dot-g { background: #28c840; }
.terminal-bar-title {
  margin-left: 8px;
  font-size: 11px;
  color: var(--text-3);
  letter-spacing: 0.04em;
}
.terminal-body { padding: 20px 22px; }
.tl { display: block; }
.t-cmd  { color: var(--accent); }
.t-dim  { color: var(--text-3); }
.t-val  { color: var(--text); }
.t-red  { color: var(--red); font-weight: 700; }
.t-grn  { color: var(--accent); font-weight: 700; }
.t-sep  {
  display: block;
  border-top: 1px solid var(--border);
  margin: 10px 0;
}

/* ============================================================
   COST TABLE — BYOK SAVINGS
   ============================================================ */
.table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--border-2);
  border-radius: var(--radius-lg);
}
table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
thead th {
  background: var(--bg-3);
  padding: 13px 20px;
  text-align: left;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-3);
  border-bottom: 1px solid var(--border-2);
  white-space: nowrap;
}
tbody td {
  padding: 13px 20px;
  border-bottom: 1px solid var(--border);
  color: var(--text-2);
  vertical-align: middle;
}
tbody tr:last-child td { border-bottom: none; }
tbody tr:hover td { background: rgba(255,255,255,0.012); }

.td-mono { font-family: var(--font-mono); font-size: 13px; }
.td-label { color: var(--text); font-weight: 500; }
.td-bad { color: var(--red); font-family: var(--font-mono); font-size: 13px; font-weight: 600; }
.td-good { color: var(--accent); font-family: var(--font-mono); font-size: 13px; font-weight: 700; }

.table-note {
  font-size: 13px;
  color: var(--text-3);
  margin-top: 16px;
  font-style: italic;
  line-height: 1.5;
}

/* ============================================================
   COMPETITOR COMPARISON TABLE
   ============================================================ */
.compare-table thead th.col-us {
  color: var(--accent);
  background: rgba(174,255,78,0.06);
}
.compare-table td.col-us {
  background: rgba(174,255,78,0.025);
}
.compare-table thead th:not(:first-child),
.compare-table tbody td:not(:first-child) { text-align: center; }
.td-row-head { font-weight: 500; color: var(--text); font-size: 14px; }
.td-check { color: var(--accent); font-size: 15px; font-weight: 700; }
.td-cross { color: var(--text-3); font-size: 15px; }
.td-sub { font-size: 11px; color: var(--text-3); display: block; margin-top: 2px; font-family: var(--font-body); font-weight: 400; }
.td-sub-good { color: var(--text-2); }

/* ============================================================
   FEATURES
   ============================================================ */
.features-intro { margin-bottom: 48px; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  border: 1px solid var(--border-2);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.feature-card {
  background: var(--bg-2);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  transition: background 0.2s;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 0;
  background: var(--accent);
  transition: height 0.35s ease;
}
.feature-card:hover { background: var(--bg-3); }
.feature-card:hover::before { height: 100%; }

.feature-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid var(--accent-mid);
  padding: 3px 9px;
  border-radius: 3px;
  margin-bottom: 20px;
}
.feature-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.2;
}
.feature-card p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.7;
}
.feature-card p code {
  font-size: 12px;
  color: var(--text-3);
  background: var(--bg-3);
  padding: 1px 5px;
  border-radius: 3px;
}

/* ============================================================
   PRICING
   ============================================================ */
.pricing-section { background: var(--bg-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.pricing-intro { text-align: center; margin-bottom: 48px; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.pricing-card {
  background: var(--bg);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.pricing-card.featured {
  border-color: var(--accent);
  background: linear-gradient(150deg, rgba(174,255,78,0.04) 0%, var(--bg) 55%);
}
.pricing-badge {
  position: absolute;
  top: -12px;
  left: 22px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--accent);
  color: #07080a;
  padding: 3px 10px;
  border-radius: 100px;
}
.pricing-tier {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 8px;
}
.pricing-price {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--text);
  line-height: 1;
  margin-bottom: 4px;
  display: flex;
  align-items: flex-start;
  gap: 2px;
}
.pricing-price sup {
  font-size: 22px;
  font-weight: 500;
  margin-top: 10px;
  color: var(--text-2);
}
.pricing-price-unit {
  font-size: 16px;
  font-weight: 400;
  font-family: var(--font-body);
  color: var(--text-2);
  letter-spacing: 0;
  align-self: flex-end;
  margin-bottom: 6px;
}
.pricing-desc {
  font-size: 14px;
  color: var(--text-2);
  margin: 14px 0 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--border);
  line-height: 1.5;
  flex-shrink: 0;
}
.pricing-features {
  list-style: none;
  margin-bottom: 28px;
  flex: 1;
}
.pricing-features li {
  font-size: 14px;
  color: var(--text-2);
  padding: 5px 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.45;
}
.pricing-features li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
  font-size: 12px;
  flex-shrink: 0;
  margin-top: 2px;
}
.pricing-cta {
  display: block;
  width: 100%;
  text-align: center;
  padding: 12px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: -0.01em;
  transition: all 0.15s;
  margin-top: auto;
}
.btn-secondary {
  border: 1px solid var(--border-2);
  color: var(--text-2);
  background: transparent;
}
.btn-secondary:hover { border-color: var(--text-3); color: var(--text); }
.btn-primary {
  background: var(--accent);
  color: #07080a;
  border: none;
}
.btn-primary:hover { opacity: 0.85; }

.pricing-footnote {
  font-size: 13px;
  color: var(--text-3);
  margin-top: 28px;
  text-align: center;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-list {
  margin-top: 48px;
  border: 1px solid var(--border-2);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
details { border-bottom: 1px solid var(--border-2); }
details:last-child { border-bottom: none; }

summary {
  padding: 20px 24px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: background 0.15s;
  user-select: none;
}
summary::-webkit-details-marker { display: none; }
summary::after {
  content: '+';
  font-size: 20px;
  font-weight: 300;
  color: var(--text-3);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
details[open] > summary { background: rgba(255,255,255,0.018); }
details[open] > summary::after { transform: rotate(45deg); }

.faq-body {
  padding: 0 24px 20px;
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.7;
}

/* ============================================================
   FOOTER CTA
   ============================================================ */
.footer-cta {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  text-align: center;
}
.footer-cta .section-headline { font-size: clamp(32px, 4.5vw, 52px); }
.footer-cta-sub {
  color: var(--text-2);
  font-size: 17px;
  max-width: 440px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.footer-form {
  max-width: 440px;
  margin: 0 auto;
}
.footer-form input {
  width: 100%;
  background: var(--bg-3);
  border: 1px solid var(--border-2);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  padding: 13px 18px;
  border-radius: var(--radius);
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
  margin-bottom: 10px;
  display: block;
}
.footer-form input::placeholder { color: var(--text-3); }
.footer-form input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-dim);
}
.footer-form .cf-turnstile { margin-bottom: 10px; }
.footer-form button {
  width: 100%;
  background: var(--accent);
  color: #07080a;
  border: none;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: var(--radius);
  letter-spacing: -0.01em;
  transition: opacity 0.15s, transform 0.15s;
}
.footer-form button:hover { opacity: 0.85; transform: translateY(-1px); }
.footer-form button:disabled { opacity: 0.45; transform: none; cursor: default; }

.footer-cta-note {
  font-size: 13px;
  color: var(--text-3);
  margin-top: 16px;
}
.footer-cta .form-success { margin: 0 auto; max-width: 360px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  border-top: 1px solid var(--border);
  padding: 32px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-logo {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  color: var(--text-3);
}
.footer-logo .logo-accent { color: var(--accent); }
.footer-copy { font-size: 13px; color: var(--text-3); }

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 920px) {
  :root { --section-pad: 64px; }

  .hero-inner { grid-template-columns: 1fr; gap: 44px; }
  .form-card { position: static; }

  .problem-inner { grid-template-columns: 1fr; gap: 40px; }

  .features-grid { grid-template-columns: 1fr; }

  .pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; }

  .nav-links { display: none; }
}

@media (max-width: 640px) {
  :root { --section-pad: 52px; }

  .hero h1 { font-size: 36px; }

  .table-scroll {
    border-radius: 0;
    border-left: none;
    border-right: none;
    margin: 0 -28px;
  }

  .footer-inner { flex-direction: column; gap: 10px; text-align: center; }
}
