﻿:root {
  --bg: #04050a;
  --bg-soft: #080c16;
  --panel: #0b1222;
  --panel-2: #0f1b34;
  --border: #1a2f4f;
  --primary: #00ff9d;
  --primary-soft: #7dffd0;
  --cyan: #00d9ff;
  --pink: #ff4db8;
  --text: #e9f4ff;
  --muted: #91a9c9;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(1000px 520px at 10% -10%, rgba(0, 255, 157, 0.14), transparent 50%),
    radial-gradient(900px 460px at 100% 0%, rgba(0, 217, 255, 0.12), transparent 50%),
    radial-gradient(900px 520px at 60% 120%, rgba(255, 77, 184, 0.1), transparent 52%),
    var(--bg);
  font-family: "Share Tech Mono", monospace;
  line-height: 1.55;
}

.page {
  width: min(1120px, 92vw);
  margin: 0 auto;
  padding: 24px 0 60px;
}

.section {
  background: linear-gradient(160deg, rgba(11, 18, 34, 0.95), rgba(8, 14, 28, 0.95));
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px;
  margin-bottom: 18px;
  box-shadow: inset 0 0 0 1px rgba(0, 217, 255, 0.06), 0 18px 36px rgba(0, 0, 0, 0.4);
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  font-family: "Orbitron", sans-serif;
  font-size: 32px;
  letter-spacing: 0.04em;
  color: var(--primary);
  text-shadow: 0 0 22px rgba(0, 255, 157, 0.42);
}

.brand-sub {
  color: var(--cyan);
  font-size: 12px;
  letter-spacing: 0.12em;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 54px 32px;
}

.hero-glow {
  position: absolute;
  inset: -25% auto auto -8%;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 255, 157, 0.18), transparent 62%);
  filter: blur(4px);
}

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

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

h1,
h2,
h3 {
  margin-top: 0;
  font-family: "Orbitron", sans-serif;
}

h1 {
  font-size: clamp(28px, 4.5vw, 48px);
  line-height: 1.15;
  margin-bottom: 12px;
}

h2 {
  font-size: clamp(22px, 2.7vw, 32px);
}

h3 {
  font-size: 22px;
}

.lead,
.muted,
.plan-card ul,
.audience-card ul,
.desc,
.price-sub,
.trial {
  color: var(--muted);
}

.hero-actions {
  margin-top: 24px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 11px;
  border: 1px solid transparent;
  padding: 11px 16px;
  font-weight: 700;
  transition: 0.2s ease;
}

.btn-primary {
  background: linear-gradient(90deg, var(--primary), var(--cyan));
  color: #03131f;
  box-shadow: 0 0 22px rgba(0, 255, 157, 0.35);
}

.btn-primary:hover {
  transform: translateY(-1px);
  filter: brightness(1.04);
}

.btn-secondary {
  color: var(--text);
  border-color: #2a476d;
  background: rgba(7, 14, 26, 0.7);
}

.btn-secondary:hover {
  border-color: var(--cyan);
  box-shadow: 0 0 16px rgba(0, 217, 255, 0.25);
}

.btn-large {
  width: 100%;
  max-width: 420px;
  padding: 15px;
  font-size: 18px;
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.plan-card,
.audience-card,
blockquote {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(13, 23, 44, 0.8), rgba(8, 14, 26, 0.86));
}

.plan-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
}

.plan-highlight {
  border-color: rgba(0, 255, 157, 0.45);
  box-shadow: 0 0 0 1px rgba(0, 255, 157, 0.2), 0 0 24px rgba(0, 255, 157, 0.22);
}

.badge {
  position: absolute;
  margin-top: -30px;
  margin-left: 8px;
  display: inline-block;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--primary);
  color: #03131f;
  font-family: "Orbitron", sans-serif;
}

.price {
  margin: 0;
  font-size: 28px;
  color: var(--primary-soft);
}

.list-title {
  margin: 4px 0 0;
  font-weight: 700;
}

.plan-card ul,
.audience-card ul {
  margin: 0;
  padding-left: 18px;
}

.plan-card .btn {
  margin-top: auto;
}

.table-wrap {
  overflow-x: auto;
}

table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
  border: 1px solid var(--border);
}

th,
td {
  padding: 11px 14px;
  border-bottom: 1px solid var(--border);
}

th {
  color: var(--cyan);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.08em;
  background: rgba(0, 217, 255, 0.05);
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.audience-card {
  padding: 18px;
}

.final-cta {
  text-align: center;
  padding: 46px 24px;
}

.final-cta .lead {
  max-width: 720px;
  margin: 0 auto 14px;
}

@media (max-width: 980px) {
  .topbar {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }

  .plan-grid,
  .audience-grid {
    grid-template-columns: 1fr;
  }

  .hero,
  .section {
    padding: 22px;
  }
}
