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

:root {
  --cyan: #22d3ee;
  --cyan-dim: #0e7490;
  --indigo: #6366f1;
  --green: #34d399;
  --bg: #05070e;
  --surface: #0b0f1a;
  --surface-2: #111726;
  --border: rgba(255,255,255,0.07);
  --border-strong: rgba(255,255,255,0.14);
  --text: #f1f5f9;
  --text-muted: #94a3b8;
  --text-dim: #64748b;
  --radius: 16px;
  --mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.gradient-text {
  background: linear-gradient(120deg, var(--cyan), var(--indigo));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 0;
  background: rgba(5, 7, 14, 0.82);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
}

.logo-icon { display: flex; align-items: center; }

.logo-text {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav-links a:hover { color: var(--text); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  border-radius: 10px;
  font-family: inherit;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-nav {
  padding: 9px 18px;
  font-size: 0.875rem;
  color: #04121a;
  background: linear-gradient(135deg, var(--cyan), var(--indigo));
}

.btn-nav:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(34, 211, 238, 0.25);
}

.btn-primary {
  padding: 14px 28px;
  font-size: 1rem;
  color: #04121a;
  background: linear-gradient(135deg, var(--cyan), var(--indigo));
  box-shadow: 0 0 30px rgba(34, 211, 238, 0.2);
}

.btn-primary:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(34, 211, 238, 0.35);
}

.btn-primary:disabled { cursor: default; opacity: 0.9; }

.btn-ghost {
  padding: 13px 26px;
  font-size: 0.95rem;
  color: var(--text);
  background: transparent;
  border: 1px solid var(--border-strong);
}

.btn-ghost:hover { background: rgba(255,255,255,0.04); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: var(--text);
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.nav.open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav.open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero ── */
.hero {
  position: relative;
  padding: 180px 0 100px;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.4;
}

.orb-1 {
  width: 620px; height: 620px;
  top: -220px; left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(34,211,238,0.35), transparent 65%);
}

.orb-2 {
  width: 420px; height: 420px;
  bottom: -120px; right: -80px;
  background: radial-gradient(circle, rgba(99,102,241,0.35), transparent 65%);
}

.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.028) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 55% at 50% 20%, #000 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 55% at 50% 20%, #000 40%, transparent 100%);
}

.hero .container { position: relative; z-index: 1; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  margin-bottom: 26px;
  border: 1px solid rgba(34,211,238,0.3);
  border-radius: 999px;
  background: rgba(34,211,238,0.08);
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.badge .pulse {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(34,211,238,0.5); }
  50% { opacity: 0.6; box-shadow: 0 0 0 6px rgba(34,211,238,0); }
}

.hero-headline {
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.035em;
  margin-bottom: 22px;
}

.hero-sub {
  max-width: 640px;
  margin: 0 auto 34px;
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--text-muted);
}

/* ── Waitlist form ── */
.waitlist-form {
  display: flex;
  gap: 10px;
  max-width: 520px;
  margin: 0 auto 14px;
}

.email-input {
  flex: 1;
  padding: 14px 18px;
  border-radius: 10px;
  border: 1px solid var(--border-strong);
  background: var(--surface);
  color: var(--text);
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.email-input::placeholder { color: var(--text-dim); }

.email-input:focus {
  outline: none;
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(34,211,238,0.12);
}

.form-note {
  font-size: 0.85rem;
  color: var(--text-dim);
}

.form-note strong { color: var(--text-muted); font-weight: 600; }

/* ── Tunnel preview ── */
.tunnel-preview {
  max-width: 860px;
  margin: 64px auto 0;
  text-align: left;
}

.tunnel-window {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  box-shadow: 0 30px 80px rgba(0,0,0,0.55);
  overflow: hidden;
}

.tunnel-toolbar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.02);
}

.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot-red { background: #ef4444; }
.dot-yellow { background: #f59e0b; }
.dot-green { background: #22c55e; }

.tunnel-title {
  margin-left: 8px;
  font-size: 0.8rem;
  color: var(--text-dim);
  font-weight: 500;
}

.tunnel-body { padding: 26px; }

.tunnel-flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 12px;
}

.flow-node {
  padding: 16px 12px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(255,255,255,0.02);
  text-align: center;
}

.flow-node .node-label {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-dim);
  margin-bottom: 6px;
}

.flow-node .node-value {
  font-size: 0.9rem;
  font-weight: 600;
}

.flow-node.edge {
  border-color: rgba(34,211,238,0.35);
  background: rgba(34,211,238,0.06);
}

.flow-link {
  position: relative;
  height: 2px;
  background: linear-gradient(90deg, rgba(34,211,238,0.15), rgba(34,211,238,0.55), rgba(34,211,238,0.15));
  border-radius: 2px;
}

.flow-link::after {
  content: '';
  position: absolute;
  top: -3px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 12px var(--cyan);
  animation: travel 2.6s linear infinite;
}

.flow-link.reverse::after { animation-direction: reverse; animation-delay: 1.3s; }

@keyframes travel {
  from { left: 0; opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  to { left: 100%; opacity: 0; }
}

.tunnel-address {
  margin-top: 24px;
  padding: 16px 18px;
  border: 1px dashed rgba(34,211,238,0.35);
  border-radius: 12px;
  background: rgba(34,211,238,0.04);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.tunnel-address .addr {
  font-family: var(--mono);
  font-size: 1rem;
  color: var(--cyan);
  word-break: break-all;
}

.tunnel-address .addr-note {
  font-size: 0.82rem;
  color: var(--text-dim);
}

/* ── Sections ── */
section { position: relative; }

.section {
  padding: 96px 0;
  border-top: 1px solid var(--border);
}

.section-head {
  max-width: 660px;
  margin: 0 auto 56px;
  text-align: center;
}

.eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 14px;
}

.section-sub {
  color: var(--text-muted);
  font-size: 1.02rem;
}

/* ── Card grids ── */
.grid {
  display: grid;
  gap: 20px;
}

.grid.three { grid-template-columns: repeat(3, 1fr); }
.grid.two { grid-template-columns: repeat(2, 1fr); }

.card {
  padding: 26px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.card:hover {
  border-color: var(--border-strong);
  transform: translateY(-3px);
}

.card-icon {
  width: 42px; height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border-radius: 11px;
  background: rgba(34,211,238,0.1);
  border: 1px solid rgba(34,211,238,0.2);
}

.card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin-bottom: 8px;
}

.card p {
  color: var(--text-muted);
  font-size: 0.93rem;
}

.card .tag {
  display: inline-block;
  margin-top: 14px;
  padding: 3px 9px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.tag.free { background: rgba(52,211,153,0.12); color: var(--green); border: 1px solid rgba(52,211,153,0.25); }
.tag.paid { background: rgba(99,102,241,0.12); color: #a5b4fc; border: 1px solid rgba(99,102,241,0.25); }
.tag.later { background: rgba(148,163,184,0.1); color: var(--text-dim); border: 1px solid rgba(148,163,184,0.2); }

/* ── Steps ── */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  counter-reset: step;
}

.step {
  position: relative;
  padding: 28px 26px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
}

.step::before {
  counter-increment: step;
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  margin-bottom: 16px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--cyan), var(--indigo));
  color: #04121a;
  font-weight: 800;
  font-size: 0.95rem;
}

.step h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.step p { color: var(--text-muted); font-size: 0.93rem; }

.step code {
  display: inline-block;
  margin-top: 12px;
  padding: 6px 10px;
  border-radius: 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  font-family: var(--mono);
  font-size: 0.8rem;
  color: var(--cyan);
}

/* ── Straight talk band ── */
.straight-talk {
  padding: 40px;
  border: 1px solid rgba(34,211,238,0.22);
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(34,211,238,0.06), rgba(99,102,241,0.06));
}

.straight-talk h3 {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.straight-talk p {
  color: var(--text-muted);
  max-width: 720px;
}

.straight-talk p + p { margin-top: 12px; }

/* ── Games ── */
.game-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.game-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface);
  font-size: 0.9rem;
  font-weight: 500;
}

.game-chip .status {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green);
}

.game-chip.planned { color: var(--text-dim); }
.game-chip.planned .status { background: var(--text-dim); }

/* ── Pricing ── */
.notice {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  max-width: 760px;
  margin: 0 auto 48px;
  padding: 16px 20px;
  border: 1px solid rgba(245,158,11,0.28);
  border-radius: 12px;
  background: rgba(245,158,11,0.07);
  color: #fcd34d;
  font-size: 0.9rem;
}

.notice strong { color: #fde68a; }

.price-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  align-items: stretch;
}

.price-card {
  display: flex;
  flex-direction: column;
  padding: 28px 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
}

.price-card.featured {
  border-color: rgba(34,211,238,0.4);
  background: linear-gradient(180deg, rgba(34,211,238,0.07), var(--surface));
  box-shadow: 0 0 40px rgba(34,211,238,0.08);
}

.price-card .plan-name {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}

.price-card .plan-price {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.price-card .plan-period {
  font-size: 0.85rem;
  color: var(--text-dim);
  margin-bottom: 18px;
}

.price-card ul {
  list-style: none;
  margin-bottom: 24px;
  flex: 1;
}

.price-card li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.price-card li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 12px; height: 7px;
  border-left: 2px solid var(--cyan);
  border-bottom: 2px solid var(--cyan);
  transform: rotate(-45deg);
}

.price-card .btn { width: 100%; }

/* ── FAQ ── */
.faq-list { max-width: 780px; margin: 0 auto; }

.faq-item {
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}

.faq-item h3 {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin-bottom: 10px;
}

.faq-item p { color: var(--text-muted); font-size: 0.95rem; }
.faq-item p + p { margin-top: 10px; }
.faq-item code {
  font-family: var(--mono);
  font-size: 0.85rem;
  color: var(--cyan);
}

/* ── Legal pages ── */
.legal {
  max-width: 760px;
  margin: 0 auto;
}

.legal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--text-dim);
}

.legal h2 {
  margin: 44px 0 14px;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.legal h2:first-of-type { margin-top: 0; }

.legal h3 {
  margin: 28px 0 10px;
  font-size: 1.02rem;
  font-weight: 600;
}

.legal p {
  margin-bottom: 14px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.legal ul {
  margin: 0 0 16px 0;
  padding-left: 0;
  list-style: none;
}

.legal li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 9px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.legal li::before {
  content: '';
  position: absolute;
  left: 4px; top: 10px;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--cyan);
}

.legal strong { color: var(--text); font-weight: 600; }

.legal a {
  color: var(--cyan);
  text-decoration: none;
  border-bottom: 1px solid rgba(34,211,238,0.3);
}

.legal a:hover { border-bottom-color: var(--cyan); }

.legal code {
  font-family: var(--mono);
  font-size: 0.87rem;
  color: var(--cyan);
}

/* Pre-launch callout at the top of each legal page */
.legal-notice {
  margin-bottom: 40px;
  padding: 18px 22px;
  border: 1px solid rgba(34,211,238,0.22);
  border-radius: 12px;
  background: rgba(34,211,238,0.05);
  font-size: 0.92rem;
  color: var(--text-muted);
}

.legal-notice strong { color: var(--text); }

/* ── CTA ── */
.cta-card {
  padding: 56px 40px;
  text-align: center;
  border: 1px solid rgba(34,211,238,0.22);
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(34,211,238,0.08), rgba(99,102,241,0.08));
}

.cta-card h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}

.cta-card p {
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto 28px;
}

/* ── Footer ── */
.footer {
  padding: 56px 0 40px;
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s ease;
}

.footer-links a:hover { color: var(--text); }

.footer-note {
  margin-top: 28px;
  font-size: 0.82rem;
  color: var(--text-dim);
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .price-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 24px 20px;
    background: rgba(5, 7, 14, 0.97);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(20px);
  }

  .nav.open .nav-links { display: flex; }

  .nav-links a {
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.95rem;
  }

  .nav-toggle { display: flex; }

  .hero { padding: 140px 0 72px; }

  .grid.three, .grid.two, .steps { grid-template-columns: 1fr; }

  .tunnel-flow {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .flow-link {
    width: 2px;
    height: 26px;
    margin: 0 auto;
    background: linear-gradient(180deg, rgba(34,211,238,0.15), rgba(34,211,238,0.55), rgba(34,211,238,0.15));
  }

  .flow-link::after { display: none; }

  .straight-talk, .cta-card { padding: 32px 24px; }
}

@media (max-width: 560px) {
  .waitlist-form { flex-direction: column; }
  .price-grid { grid-template-columns: 1fr; }
  .section { padding: 72px 0; }
}
