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

html {
  scroll-behavior: smooth;
}

body {
  background: #0d1520;
  color: #fff;
  font-family: system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: 'Poppins', system-ui, sans-serif;
}

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

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

/* ── Nav ────────────────────────────────────────────────────── */
nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(13, 21, 32, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

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

.nav-wordmark {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.nav-wordmark span {
  color: #f59e0b;
  font-weight: 400;
}

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

.btn-ghost {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  font-weight: 500;
  padding: 7px 16px;
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s;
}

.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
}

.btn-primary {
  background: #f59e0b;
  border: none;
  border-radius: 8px;
  color: #0d1520;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 18px;
  cursor: pointer;
  transition: opacity 0.15s;
}

.btn-primary:hover {
  opacity: 0.88;
}

/* ── Hero ───────────────────────────────────────────────────── */
.hero {
  padding: 100px 24px 80px;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(38px, 6vw, 64px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 22px;
}

.hero h1 em {
  font-style: normal;
  color: #f59e0b;
}

.hero p {
  font-size: clamp(16px, 2vw, 19px);
  color: rgba(255, 255, 255, 0.6);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.65;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-hero-primary {
  background: #f59e0b;
  border: none;
  border-radius: 10px;
  color: #0d1520;
  font-size: 16px;
  font-weight: 700;
  padding: 14px 28px;
  cursor: pointer;
  transition: opacity 0.15s, transform 0.15s;
}

.btn-hero-primary:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.btn-hero-secondary {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  font-weight: 500;
  padding: 14px 28px;
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s, transform 0.15s;
}

.btn-hero-secondary:hover {
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
  transform: translateY(-1px);
}

.hero p.hero-note {
  margin-top: 32px;
}

/* ── Section chrome ─────────────────────────────────────────── */
.section {
  padding: 88px 24px;
}

.section-alt {
  background: rgba(255, 255, 255, 0.03);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.section-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245, 158, 11, 0.75);
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.55);
  max-width: 520px;
  line-height: 1.65;
}

.section-header {
  margin-bottom: 56px;
}

/* ── How it works ───────────────────────────────────────────── */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.step {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 32px 28px;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.3);
  font-size: 13px;
  font-weight: 700;
  color: #f59e0b;
  margin-bottom: 20px;
}

.step h3 {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}

.step p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.65;
}

/* ── Comparison table ───────────────────────────────────────── */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}

.compare-table thead th {
  padding: 14px 20px;
  text-align: left;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.compare-table thead th:not(:first-child) {
  text-align: center;
}

.compare-table thead th.col-plus {
  color: #f59e0b;
}

.compare-table tbody td {
  padding: 14px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.75);
}

.compare-table tbody td:not(:first-child) {
  text-align: center;
}

.compare-table tbody tr:last-child td {
  border-bottom: none;
}

.compare-table tbody tr:hover td {
  background: rgba(255, 255, 255, 0.025);
}

.check {
  color: #6ee7b7;
  font-size: 17px;
}

.dash {
  color: rgba(255, 255, 255, 0.2);
  font-size: 17px;
}

.col-plus-val {
  background: rgba(245, 158, 11, 0.04);
}

/* ── Proxy callout ──────────────────────────────────────────── */
.proxy-callout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.proxy-illustration {
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0.85;
}

.proxy-badge {
  display: inline-block;
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.25);
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #f59e0b;
  padding: 4px 10px;
  margin-bottom: 20px;
}

/* ── Pricing ────────────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 780px;
  margin: 0 auto;
}

.pricing-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 36px 32px;
}

.pricing-card.featured {
  background: rgba(245, 158, 11, 0.05);
  border-color: rgba(245, 158, 11, 0.4);
}

.pricing-plan {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 18px;
}

.pricing-card.featured .pricing-plan {
  color: #f59e0b;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 6px;
}

.pricing-amount {
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
}

.pricing-currency {
  font-size: 22px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  align-self: flex-start;
  margin-top: 8px;
}

.pricing-period {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
  margin-left: 4px;
}

.pricing-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 28px;
  line-height: 1.55;
}

.pricing-features {
  list-style: none;
  margin-bottom: 32px;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  padding: 6px 0;
}

.pricing-features li .feat-check {
  color: #6ee7b7;
  flex-shrink: 0;
  margin-top: 1px;
}

.btn-plan-free {
  display: block;
  width: 100%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  font-weight: 600;
  padding: 12px;
  cursor: pointer;
  text-align: center;
  transition: background 0.15s;
}

.btn-plan-free:hover {
  background: rgba(255, 255, 255, 0.13);
}

.btn-plan-plus {
  display: block;
  width: 100%;
  background: #f59e0b;
  border: none;
  border-radius: 10px;
  color: #0d1520;
  font-size: 15px;
  font-weight: 700;
  padding: 13px;
  cursor: pointer;
  text-align: center;
  transition: opacity 0.15s, transform 0.15s;
}

.btn-plan-plus:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

/* ── Footer ─────────────────────────────────────────────────── */
footer {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 40px 24px;
}

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

.footer-wordmark {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.footer-copy {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.3);
}

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

.footer-links a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
  transition: color 0.15s;
}

.footer-links a:hover {
  color: rgba(255, 255, 255, 0.7);
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 720px) {
  .steps {
    grid-template-columns: 1fr;
    gap: 16px;
  }

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

  .proxy-callout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .proxy-illustration {
    order: -1;
  }

  .hero {
    padding: 64px 24px 56px;
  }

  .hero-note {
    padding-inline: 24px;
  }

  .hero-note span {
    display: block;
  }

  .hero-note .hero-note-sep {
    display: none;
  }

  .section {
    padding: 64px 24px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

