:root {
  --bg: #080a12;
  --bg-soft: #0d1120;
  --panel: #10172a;
  --panel-2: #131d34;
  --line: #2a3658;
  --text: #f6f8ff;
  --muted: #a8b5d6;
  --accent: #5ce3c4;
  --accent-strong: #2de0b8;
  --btn-main: #5ce3c4;
  --btn-main-hover: #7df0d6;
  --btn-main-text: #061018;
  --btn-alt: #1a2644;
  --btn-alt-hover: #23315a;
  --radius: 18px;
  --shadow: 0 18px 48px rgba(2, 8, 20, 0.5);
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  margin: 0;
}

body {
  min-height: 100dvh;
  font-family: "Segoe UI Variable", "Avenir Next", "Helvetica Neue", sans-serif;
  color: var(--text);
  background: radial-gradient(circle at 15% 0%, #1a2450 0%, transparent 45%),
    radial-gradient(circle at 85% 10%, #123349 0%, transparent 40%),
    linear-gradient(160deg, var(--bg), var(--bg-soft));
}

.landing-root {
  width: 100%;
}

.page-wrap {
  width: min(100%, 960px);
  margin: 0 auto;
  padding: 18px 14px 36px;
}

.section {
  margin-top: 12px;
}

.hero {
  padding: 24px 18px;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 2px);
  background: linear-gradient(155deg, rgba(16, 23, 42, 0.95), rgba(10, 14, 28, 0.95));
  box-shadow: var(--shadow);
}

.kicker {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  font-weight: 700;
}

.headline {
  margin: 0;
  font-size: clamp(1.65rem, 7vw, 2.4rem);
  line-height: 1.08;
}

.subheadline {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.45;
}

.hero-proof {
  margin: 14px 0 0;
  color: #c9d4ef;
  font-size: 0.9rem;
}

.cta-row {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  width: 100%;
  border-radius: 13px;
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: transform 0.2s ease, filter 0.2s ease, background-color 0.2s ease;
}

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

.btn-primary {
  background: var(--btn-main);
  color: var(--btn-main-text);
}

.btn-secondary {
  background: var(--btn-alt);
  color: var(--text);
  border: 1px solid #2f416e;
}

.btn-wide {
  width: 100%;
}

.panel {
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(19, 29, 52, 0.8), rgba(11, 18, 34, 0.8));
}

.section-title {
  margin: 0;
  font-size: 1.18rem;
  line-height: 1.25;
}

.section-copy {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.45;
}

.feature-list {
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.feature-item {
  padding: 11px 12px;
  border: 1px solid #26345b;
  border-radius: 12px;
  background: rgba(18, 29, 55, 0.7);
  color: #e2e9fb;
  font-size: 0.94rem;
}

.pill-row {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pill {
  border: 1px solid #2f426f;
  border-radius: 999px;
  padding: 8px 11px;
  background: rgba(17, 28, 52, 0.8);
  color: #d8e0f7;
  font-size: 0.86rem;
}

.option-grid,
.objection-grid {
  margin-top: 14px;
  display: grid;
  gap: 10px;
}

.option-card,
.objection-card {
  border: 1px solid #27365c;
  border-radius: 14px;
  background: rgba(17, 27, 50, 0.75);
  padding: 14px;
}

.option-title,
.objection-q {
  margin: 0;
  font-size: 1rem;
}

.option-note,
.objection-a {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.4;
}

.option-card .btn {
  margin-top: 12px;
}

.final-cta {
  margin-top: 14px;
  padding: 20px 18px;
  border-radius: var(--radius);
  border: 1px solid #385e86;
  background: linear-gradient(155deg, rgba(19, 41, 61, 0.95), rgba(14, 24, 46, 0.95));
}

.final-cta .btn {
  margin-top: 12px;
}

@media (min-width: 780px) {
  .page-wrap {
    padding: 26px 18px 42px;
  }

  .hero {
    padding: 34px 30px;
  }

  .cta-row {
    grid-template-columns: 1fr 1fr;
  }

  .feature-list {
    grid-template-columns: 1fr 1fr;
  }

  .option-grid,
  .objection-grid {
    grid-template-columns: 1fr 1fr;
  }
}
