:root {
  --bg: #0D1B2A;
  --card: #1B263B;
  --panel: #142235;
  --accent: #00B4D8;
  --accent-dk: #0090AD;
  --text: #E0E0E0;
  --heading: #FFFFFF;
  --muted: #8A9BB0;
  --border: #2A3A50;
  --ok: #64D6A3;
  --warn: #F3C969;
  --radius: 8px;
  --transition: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Exo 2', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--accent-dk);
}

.container {
  width: 100%;
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero {
  padding: 68px 0 44px;
}

.eyebrow {
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.4px;
  margin-bottom: 14px;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  color: var(--heading);
  line-height: 1.18;
  margin: 0;
}

h1 {
  font-size: clamp(34px, 6vw, 56px);
  max-width: 850px;
}

h2 {
  font-size: clamp(24px, 4vw, 34px);
  margin-bottom: 14px;
}

h3 {
  font-size: 19px;
  margin-bottom: 8px;
}

p {
  margin: 0;
}

.lede {
  color: var(--muted);
  font-size: 18px;
  margin-top: 20px;
  max-width: 760px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-size: 15px;
  font-weight: 700;
  justify-content: center;
  min-height: 44px;
  padding: 11px 24px;
}

.button-primary {
  background: var(--accent);
  color: var(--bg);
}

.button-primary:hover {
  background: var(--accent-dk);
  color: var(--bg);
}

.button-secondary {
  border: 1px solid var(--border);
  color: var(--heading);
}

.section {
  padding: 34px 0;
}

.section-alt {
  background: var(--panel);
  border-bottom: 1px solid var(--border);
  border-top: 1px solid var(--border);
}

.grid {
  display: grid;
  gap: 18px;
}

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

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

@media (min-width: 760px) {
  .grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}

.card p,
.card li {
  color: var(--muted);
}

.answer-box {
  background: rgba(0, 180, 216, 0.08);
  border: 1px solid rgba(0, 180, 216, 0.28);
  border-radius: var(--radius);
  margin-top: 24px;
  max-width: 900px;
  padding: 20px;
}

.answer-box strong {
  color: var(--heading);
}

.list {
  color: var(--muted);
  margin: 14px 0 0;
  padding-left: 20px;
}

.list li {
  margin-bottom: 8px;
}

.feature-list {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
}

.feature-list li {
  border-top: 1px solid var(--border);
  color: var(--text);
  padding: 12px 0;
}

.feature-list li:first-child {
  border-top: 0;
  padding-top: 0;
}

.table-wrap {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-top: 18px;
  overflow-x: auto;
}

table {
  border-collapse: collapse;
  min-width: 720px;
  width: 100%;
}

th,
td {
  border-bottom: 1px solid var(--border);
  padding: 13px 15px;
  text-align: left;
  vertical-align: top;
}

th {
  background: rgba(255, 255, 255, 0.04);
  color: var(--heading);
  font-size: 13px;
  text-transform: uppercase;
}

td {
  color: var(--muted);
  font-size: 14px;
}

tr:last-child td {
  border-bottom: 0;
}

.yes {
  color: var(--ok);
  font-weight: 700;
}

.limited {
  color: var(--warn);
  font-weight: 700;
}

.no {
  color: var(--muted);
  font-weight: 700;
}

.price {
  color: var(--heading);
  font-size: 40px;
  font-weight: 800;
  line-height: 1;
}

.price-note {
  color: var(--muted);
  margin-top: 8px;
}

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

.faq-item:first-child {
  border-top: 0;
  padding-top: 0;
}

.faq-item p {
  color: var(--muted);
}

.fine-print {
  color: var(--muted);
  font-size: 13px;
  margin-top: 16px;
}

.source-list {
  color: var(--muted);
  font-size: 13px;
  margin-top: 18px;
  padding-left: 20px;
}

.source-list li {
  margin-bottom: 6px;
}

.media-row {
  align-items: center;
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr;
}

.media-row img {
  filter: drop-shadow(0 20px 36px rgba(0, 0, 0, 0.38));
  margin: 0 auto;
  max-width: 320px;
  width: 100%;
}

@media (min-width: 840px) {
  .media-row {
    grid-template-columns: minmax(0, 1fr) 340px;
  }
}
