:root {
  --ink: var(--cs-text, #edf4fb);
  --muted: var(--cs-muted, #9aaabd);
  --bg: var(--cs-bg, #07111f);
  --panel: var(--cs-surface, #0d1828);
  --card: rgba(16, 29, 47, 0.94);
  --card-strong: rgba(19, 35, 58, 0.98);
  --border: var(--cs-border, rgba(154, 170, 189, 0.16));
  --border-strong: var(--cs-border-strong, rgba(167, 139, 250, 0.28));
  --primary: var(--cs-primary, #a78bfa);
  --primary-deep: var(--cs-primary-deep, #6d28d9);
  --primary-soft: var(--cs-primary-soft, #c4b5fd);
  --accent: var(--cs-accent, #d6b46a);
  --signal: var(--cs-signal, #5eead4);
  --success: var(--cs-success, #86efac);
  --shadow: var(--cs-shadow, 0 24px 70px rgba(0, 0, 0, 0.34));
  --glow: var(--cs-glow, 0 18px 42px rgba(109, 40, 217, 0.22));
  --radius: var(--cs-radius, 14px);
  --radius-lg: var(--cs-radius-lg, 18px);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--cs-font-body);
  color: var(--ink);
  background:
    linear-gradient(115deg, rgba(94, 234, 212, 0.06), transparent 36%),
    linear-gradient(245deg, rgba(214, 180, 106, 0.06), transparent 32%),
    linear-gradient(180deg, var(--cs-bg) 0%, var(--cs-bg-2) 48%, var(--cs-bg-3) 100%);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.32), transparent 72%);
  opacity: 0.18;
}

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

a:hover {
  text-decoration: underline;
}

img {
  max-width: 100%;
}

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(16px);
  background: var(--cs-topbar-bg);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 13px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.logo {
  width: 44px;
  height: 44px;
  display: block;
  border-radius: 14px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
  flex: 0 0 auto;
}

.brand-logo {
  width: 132px;
  height: auto;
  display: block;
  border-radius: 18px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.24);
  flex: 0 0 auto;
}

.brand-title {
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0;
}

.brand-sub {
  font-size: 12px;
  color: rgba(237, 244, 251, 0.66);
  white-space: nowrap;
}

.nav {
  display: none;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: rgba(237, 244, 251, 0.72);
}

.nav a {
  border-radius: 999px;
  padding: 8px 11px;
  transition: background 0.12s ease, color 0.12s ease;
}

.nav a.active {
  color: #ffffff;
  background: rgba(167, 139, 250, 0.13);
}

.nav a:hover {
  text-decoration: none;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
}

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

.switcher {
  display: none;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.16);
}

.switcher a {
  border-radius: 999px;
  padding: 8px 12px;
  color: rgba(237, 244, 251, 0.74);
  font-size: 12px;
  font-weight: 750;
}

.switcher a:hover {
  color: #ffffff;
  text-decoration: none;
}

.switcher a.active {
  background: rgba(167, 139, 250, 0.18);
  color: #ffffff;
}

@media (min-width: 940px) {
  .nav {
    display: flex;
  }
}

@media (min-width: 760px) {
  .switcher {
    display: inline-flex;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 11px 16px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.08s ease, box-shadow 0.12s ease, background 0.12s ease;
}

.btn:hover {
  text-decoration: none;
}

.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  background: linear-gradient(180deg, #a78bfa 0%, #7c3aed 100%);
  color: #07111f;
  box-shadow: var(--glow);
  border-color: rgba(255, 255, 255, 0.12);
}

.btn-primary:hover {
  box-shadow: 0 18px 36px rgba(94, 234, 212, 0.18), 0 14px 30px rgba(109, 40, 217, 0.24);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.02);
  color: var(--ink);
  border-color: rgba(166, 187, 212, 0.16);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.05);
}

.btn-light {
  background: #ffffff;
  color: #08111d;
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-light:hover {
  background: rgba(255, 255, 255, 0.92);
}

.hero,
.page-hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 44px;
}

.page-hero::after {
  content: "";
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 0;
  height: 1px;
  max-width: var(--max);
  margin: 0 auto;
  background: linear-gradient(90deg, transparent, rgba(94, 234, 212, 0.28), rgba(167, 139, 250, 0.24), transparent);
}

.hero-grid,
.split-grid,
.two-col {
  display: grid;
  gap: 26px;
}

.hero-grid {
  position: relative;
  padding: 34px;
  border-radius: 30px;
  border: 1px solid rgba(166, 187, 212, 0.11);
  background:
    linear-gradient(135deg, rgba(17, 31, 51, 0.72), rgba(8, 18, 31, 0.62) 54%, rgba(12, 33, 42, 0.58)),
    var(--cs-firm-gradient);
  overflow: hidden;
  box-shadow: 0 26px 56px rgba(0, 0, 0, 0.28);
}

.hero-grid::after {
  content: "";
  position: absolute;
  inset: 0;
  width: auto;
  height: auto;
  border-radius: 0;
  background:
    linear-gradient(90deg, rgba(94, 234, 212, 0.08), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 46%);
  pointer-events: none;
}

@media (min-width: 960px) {
  .hero-grid {
    grid-template-columns: 1.08fr 0.92fr;
    align-items: center;
    gap: 34px;
  }

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

  .two-col {
    grid-template-columns: 1.08fr 0.92fr;
    align-items: start;
  }
}

.eyebrow,
.pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 11px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.eyebrow {
  color: rgba(232, 238, 247, 0.82);
  background: rgba(167, 139, 250, 0.08);
  border: 1px solid rgba(167, 139, 250, 0.18);
}

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

.pill {
  background: rgba(167, 139, 250, 0.08);
  border: 1px solid rgba(167, 139, 250, 0.18);
  color: rgba(232, 238, 247, 0.82);
}

h1,
h2,
h3,
h4 {
  font-family: var(--cs-font-display);
  letter-spacing: 0;
}

h1 {
  margin: 16px 0 10px;
  font-size: 42px;
  line-height: 1.04;
}

h2 {
  margin: 12px 0 0;
  font-size: 30px;
  line-height: 1.1;
}

h3 {
  margin: 0;
  font-size: 18px;
}

@media (min-width: 960px) {
  h1 {
    font-size: 54px;
  }
}

.lead {
  margin: 0;
  max-width: 760px;
  color: rgba(232, 238, 247, 0.84);
  font-size: 17px;
  line-height: 1.72;
}

.page-intro {
  width: 100%;
  max-width: 760px;
}

.section {
  padding: 56px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.018);
}

.section.alt {
  background: rgba(255, 255, 255, 0.028);
}

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

.desc,
.muted {
  color: rgba(232, 238, 247, 0.72);
}

.desc {
  margin: 12px auto 0;
  font-size: 15px;
  line-height: 1.68;
}

.muted {
  font-size: 13px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.grid-2,
.grid-3,
.grid-4,
.coverage-grid,
.package-grid {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

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

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

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

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

.card,
.panel,
.faq-item,
.cta-bar,
.package-card,
.table-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--card);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.card,
.panel,
.package-card,
.table-card {
  padding: 22px;
  position: relative;
  overflow: hidden;
  transition: transform 0.14s ease, border-color 0.14s ease, box-shadow 0.14s ease, background 0.14s ease;
}

.card::before,
.panel::before,
.package-card::before,
.table-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(167, 139, 250, 0.34), transparent);
}

.card:hover,
.panel:hover,
.package-card:hover,
.table-card:hover {
  transform: translateY(-2px);
  border-color: rgba(94, 234, 212, 0.22);
  box-shadow: 0 22px 46px rgba(0, 0, 0, 0.26);
}

.card p,
.panel p,
.package-card p,
.table-card p {
  margin: 10px 0 0;
  color: rgba(232, 238, 247, 0.76);
  font-size: 14px;
}

.panel {
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015)),
    var(--card-strong);
}

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

.panel-list li,
.feature-list li,
.link-list li {
  position: relative;
  padding-left: 18px;
  margin-top: 10px;
  color: rgba(232, 238, 247, 0.8);
}

.panel-list li::before,
.feature-list li::before,
.link-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(241, 197, 106, 0.12);
}

.stat-grid {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

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

.stat {
  padding: 16px;
  border-radius: 18px;
  border: 1px solid rgba(166, 187, 212, 0.12);
  background: rgba(255, 255, 255, 0.025);
}

.stat strong {
  display: block;
  font-size: 15px;
}

.stat span {
  display: block;
  margin-top: 5px;
  color: rgba(232, 238, 247, 0.72);
  font-size: 13px;
}

.coverage-card {
  padding: 18px;
  border-radius: 20px;
  border: 1px solid rgba(166, 187, 212, 0.1);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.015));
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.18);
}

.coverage-card h3 {
  font-size: 16px;
}

.coverage-card p {
  margin: 10px 0 0;
  color: rgba(232, 238, 247, 0.74);
  font-size: 13px;
}

.section-note {
  margin-top: 18px;
}

.package-card {
  position: relative;
}

.package-card.featured {
  border-color: rgba(94, 234, 212, 0.28);
  box-shadow: 0 24px 54px rgba(94, 234, 212, 0.12), 0 20px 46px rgba(109, 40, 217, 0.18);
}

.package-label {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(167, 139, 250, 0.12);
  color: #ddd6fe;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.package-subtitle {
  margin-top: 8px;
  color: rgba(232, 238, 247, 0.78);
  font-size: 14px;
}

.price-line {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.price-amount {
  display: block;
  color: #ffffff;
  font-family: var(--cs-font-display);
  font-size: 28px;
  font-weight: 900;
  line-height: 1.05;
}

.price-period {
  display: block;
  margin-top: 5px;
  color: rgba(232, 238, 247, 0.68);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.subscription-meta {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

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

.subscription-meta div {
  padding: 14px;
  border: 1px solid rgba(166, 187, 212, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
}

.subscription-meta strong {
  display: block;
  color: #ffffff;
  font-size: 13px;
}

.subscription-meta span {
  display: block;
  margin-top: 5px;
  color: rgba(232, 238, 247, 0.7);
  font-size: 12px;
}

.quote-note {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(232, 238, 247, 0.68);
  font-size: 12px;
}

.cta-bar,
.callout {
  margin-top: 28px;
  padding: 24px;
  background: linear-gradient(135deg, rgba(196, 181, 253, 0.98), rgba(94, 234, 212, 0.94));
  color: #07111f;
  box-shadow: var(--glow);
}

.cta-bar p,
.callout p {
  margin: 8px 0 0;
  color: rgba(7, 17, 31, 0.78);
}

.cta-bar .btn-secondary,
.callout .btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.22);
  color: #edf4fb;
}

@media (min-width: 900px) {
  .cta-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
  }
}

.faq-list {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.faq-item {
  overflow: hidden;
  background: rgba(13, 24, 42, 0.9);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 22px;
  font-weight: 800;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  margin: 0;
  padding: 0 22px 20px;
  color: rgba(232, 238, 247, 0.76);
  font-size: 14px;
}

.comparison-grid {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.form-shell {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

@media (min-width: 980px) {
  .form-shell {
    grid-template-columns: 0.88fr 1.12fr;
    align-items: start;
  }
}

.form-card {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015)),
    var(--card-strong);
  box-shadow: var(--shadow);
}

.assessment-form {
  display: grid;
  gap: 18px;
}

.form-grid {
  display: grid;
  gap: 14px;
}

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

.field {
  display: grid;
  gap: 8px;
}

.field-full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 13px;
  font-weight: 700;
  color: rgba(232, 238, 247, 0.9);
}

.optional {
  color: rgba(232, 238, 247, 0.52);
  font-weight: 600;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid rgba(166, 187, 212, 0.18);
  border-radius: 14px;
  background: rgba(8, 18, 31, 0.9);
  color: var(--ink);
  font: inherit;
  line-height: 1.45;
  transition: border-color 0.12s ease, box-shadow 0.12s ease, background 0.12s ease;
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(232, 238, 247, 0.42);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: rgba(167, 139, 250, 0.5);
  box-shadow: 0 0 0 4px rgba(47, 100, 151, 0.16);
  background: rgba(10, 22, 36, 0.96);
}

.field textarea {
  min-height: 148px;
  resize: vertical;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.microcopy,
.thank-you-helper {
  margin: 0;
  font-size: 13px;
  color: rgba(232, 238, 247, 0.68);
}

.form-status {
  min-height: 24px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(232, 238, 247, 0.74);
}

.form-status.pending {
  color: #d7e8fa;
}

.form-status.error {
  color: #ffd1c5;
}

.form-status.success {
  color: #c9f7df;
}

.fallback-card {
  padding: 18px;
  border: 1px solid rgba(201, 170, 105, 0.2);
  border-radius: 18px;
  background: rgba(201, 170, 105, 0.08);
}

.fallback-card p {
  margin: 10px 0 0;
}

.deliverables-grid {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

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

.deliverable-card {
  padding: 18px;
  border: 1px solid rgba(166, 187, 212, 0.16);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015)),
    rgba(13, 24, 42, 0.9);
  min-height: 168px;
  transition: transform 0.14s ease, border-color 0.14s ease, box-shadow 0.14s ease;
}

.deliverable-card:hover {
  transform: translateY(-2px);
  border-color: rgba(94, 234, 212, 0.2);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.22);
}

.deliverable-card strong {
  display: block;
  margin-bottom: 8px;
  color: #ffffff;
  font-size: 14px;
}

.deliverable-card p {
  margin: 0;
  color: rgba(232, 238, 247, 0.72);
  font-size: 13px;
}

.report-preview {
  margin-top: 26px;
  padding: 22px;
  border: 1px solid rgba(167, 139, 250, 0.2);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(167, 139, 250, 0.1), rgba(214, 180, 106, 0.05)),
    rgba(8, 18, 31, 0.88);
  box-shadow: var(--shadow);
}

.report-header {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: flex-start;
  justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(166, 187, 212, 0.14);
}

.report-title {
  margin: 0;
  font-size: 18px;
  font-weight: 900;
}

.report-meta {
  color: rgba(232, 238, 247, 0.6);
  font-size: 12px;
  font-weight: 700;
}

.scorecard-grid {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

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

.score-card {
  padding: 16px;
  border: 1px solid rgba(166, 187, 212, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.035);
}

.score-card span {
  display: block;
  color: rgba(232, 238, 247, 0.62);
  font-size: 12px;
  font-weight: 800;
}

.score-card strong {
  display: block;
  margin-top: 6px;
  color: #ffffff;
  font-size: 26px;
  line-height: 1;
}

.score-card em {
  display: block;
  margin-top: 6px;
  color: rgba(232, 238, 247, 0.68);
  font-style: normal;
  font-size: 12px;
}

.matrix-wrap {
  overflow-x: auto;
  margin-top: 18px;
  border: 1px solid rgba(166, 187, 212, 0.14);
  border-radius: 16px;
}

.matrix-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  background: rgba(8, 18, 31, 0.72);
}

.matrix-table th,
.matrix-table td {
  padding: 13px 14px;
  border-bottom: 1px solid rgba(166, 187, 212, 0.12);
  color: rgba(232, 238, 247, 0.76);
  font-size: 13px;
  text-align: left;
  vertical-align: top;
}

.matrix-table th {
  color: #ffffff;
  background: rgba(167, 139, 250, 0.1);
  font-size: 12px;
  text-transform: uppercase;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 5px 9px;
  font-size: 11px;
  font-weight: 900;
}

.status-gap {
  color: #ffe2da;
  background: rgba(255, 118, 94, 0.12);
  border: 1px solid rgba(255, 118, 94, 0.24);
}

.status-partial {
  color: #fff0c2;
  background: rgba(214, 180, 106, 0.12);
  border: 1px solid rgba(214, 180, 106, 0.24);
}

.status-ready {
  color: #cef7df;
  background: rgba(95, 214, 148, 0.12);
  border: 1px solid rgba(95, 214, 148, 0.24);
}

.roadmap {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

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

.roadmap-step {
  padding: 18px;
  border: 1px solid rgba(166, 187, 212, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.035);
}

.roadmap-step span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
}

.roadmap-step h3 {
  margin: 6px 0 8px;
}

.stance-grid {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

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

.stance-card {
  padding: 20px;
  border: 1px solid rgba(166, 187, 212, 0.16);
  border-radius: 18px;
  background: rgba(13, 24, 42, 0.92);
}

.stance-card.warning {
  border-color: rgba(214, 180, 106, 0.26);
  background: linear-gradient(180deg, rgba(214, 180, 106, 0.1), rgba(94, 234, 212, 0.035));
}

.page-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.page-links a {
  border: 1px solid rgba(166, 187, 212, 0.16);
  border-radius: 999px;
  padding: 9px 12px;
  color: rgba(232, 238, 247, 0.78);
  font-size: 12px;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.03);
}

.page-links a:hover {
  color: #ffffff;
  text-decoration: none;
  background: rgba(167, 139, 250, 0.1);
}

.lead-summary {
  margin-top: 16px;
  padding: 14px 16px;
  border: 1px solid rgba(167, 139, 250, 0.24);
  border-radius: 14px;
  background: rgba(167, 139, 250, 0.08);
  color: rgba(232, 238, 247, 0.84);
  font-size: 13px;
  font-weight: 700;
}

.thank-you-note {
  margin-top: 22px;
}

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

.kicker {
  color: #d4e4f4;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.footer {
  padding: 28px 0 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.024);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

@media (min-width: 900px) {
  .footer-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: rgba(232, 238, 247, 0.78);
  font-size: 13px;
  font-weight: 700;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo {
  width: 144px;
  height: auto;
  display: block;
  border-radius: 18px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
  flex: 0 0 auto;
}

.footer-note {
  margin-top: 12px;
  color: rgba(232, 238, 247, 0.6);
  font-size: 12px;
}

.inline-link {
  color: #b8d6ff;
}

.anchor-offset {
  scroll-margin-top: 96px;
}

@media (max-width: 720px) {
  .container {
    max-width: 100vw;
    overflow-x: clip;
  }

  .topbar-inner,
  .top-actions {
    align-items: flex-start;
  }

  .topbar-inner {
    flex-direction: column;
  }

  .top-actions {
    align-self: stretch;
    width: auto;
    flex-wrap: wrap;
  }

  .top-actions .btn {
    flex: 1 1 100%;
    width: 100%;
    min-width: 0;
    text-align: center;
    white-space: normal;
  }

  h1 {
    font-size: 36px;
    line-height: 1.1;
    overflow-wrap: anywhere;
  }

  h2 {
    font-size: 26px;
    overflow-wrap: anywhere;
  }

  .lead {
    max-width: 100%;
    font-size: 15px;
  }

  .page-intro,
  .section-head,
  .card,
  .package-card,
  .cta-bar {
    max-width: 100%;
    min-width: 0;
  }

  .brand-logo {
    width: 116px;
  }

  .footer-logo {
    width: 128px;
  }
}
