:root {
  --bg: #f7fbff;
  --bg-2: #eef6ff;
  --panel: rgba(255, 255, 255, 0.86);
  --panel-2: rgba(235, 246, 255, 0.94);
  --line: rgba(24, 76, 148, 0.16);
  --text: #071426;
  --muted: #526173;
  --blue: #2458ff;
  --blue-2: #0b83ff;
  --teal: #16a4d8;
  --red: #2458ff;
  --gold: #51a7ff;
  --max: 1200px;
  --section-pad: clamp(4rem, 10vw, 7rem);
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background:
    radial-gradient(circle at 20% 0%, rgba(36, 88, 255, 0.12), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, var(--bg) 42%, #ffffff 100%);
  color: var(--text);
  font-family:
    Inter,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  line-height: 1.6;
}
a {
  color: inherit;
  text-decoration: none;
}
img,
video {
  display: block;
  max-width: 100%;
}
button,
input,
select,
textarea {
  font: inherit;
}
.container {
  margin: 0 auto;
  max-width: var(--max);
  padding: 0 24px;
  width: 100%;
}
.section {
  padding: var(--section-pad) 0;
  position: relative;
}
.eyebrow,
.section-kicker {
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  margin: 0 0 1rem;
  text-transform: uppercase;
}
h1,
h2 {
  font-family: "Bebas Neue", Impact, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.9;
  margin: 0 0 1.25rem;
  text-wrap: balance;
  text-transform: uppercase;
}
h1 {
  font-size: clamp(4.3rem, 10vw, 9rem);
  max-width: 980px;
}
h2 {
  font-size: clamp(3rem, 7vw, 6rem);
}
h3 {
  font-size: 1.35rem;
  line-height: 1.2;
  margin: 0 0 0.75rem;
}
p {
  margin-top: 0;
}
.gradient-text {
  background: linear-gradient(90deg, var(--blue), var(--blue-2), var(--teal));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.btn {
  align-items: center;
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  border: 0;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  font-weight: 900;
  justify-content: center;
  min-height: 54px;
  padding: 0 1.4rem;
}
.btn:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}
.btn-sm {
  min-height: 44px;
  padding: 0 1rem;
}
.btn-ghost {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(36, 88, 255, 0.28);
  color: var(--blue);
}

.site-header {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
  left: 0;
  position: sticky;
  right: 0;
  top: 0;
  z-index: 50;
}
.header-inner {
  align-items: center;
  display: flex;
  gap: 1.5rem;
  min-height: 76px;
}
.brand {
  align-items: center;
  display: inline-flex;
  gap: 0.8rem;
  min-width: 210px;
}
.brand-word {
  font-size: 1.05rem;
  font-weight: 900;
  text-transform: uppercase;
}
.brand-word span {
  color: var(--blue);
}
.main-nav {
  align-items: center;
  display: flex;
  flex: 1;
  gap: 1.1rem;
  justify-content: center;
}
.main-nav a,
.site-footer nav a {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}
.main-nav a:hover,
.site-footer nav a:hover {
  color: var(--blue);
}
.nav-toggle {
  background: transparent;
  border: 0;
  cursor: pointer;
  display: none;
  height: 44px;
  width: 44px;
}
.nav-toggle span {
  background: var(--text);
  display: block;
  height: 2px;
  margin: 6px auto;
  width: 24px;
}
.mobile-nav-overlay {
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--line);
  display: none;
  left: 0;
  padding: 1rem 1.5rem 2rem;
  position: fixed;
  right: 0;
  top: 76px;
  z-index: 49;
}
.mobile-nav-overlay.open {
  display: block;
}
.mobile-nav {
  display: grid;
  gap: 0.9rem;
}
.mobile-nav a {
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-weight: 800;
  padding: 0.8rem 0;
}

.hero {
  background: #f4f9ff;
  min-height: calc(100vh - 76px);
  overflow: hidden;
  position: relative;
}
.hero-video {
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  width: 100%;
}
.hero-overlay {
  background:
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.97),
      rgba(246, 251, 255, 0.88) 46%,
      rgba(246, 251, 255, 0.42)
    ),
    linear-gradient(180deg, rgba(255, 255, 255, 0.3), rgba(225, 240, 255, 0.52));
  inset: 0;
  position: absolute;
}
.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: calc(100vh - 76px);
  padding-bottom: 4rem;
  padding-top: 4rem;
  position: relative;
  z-index: 1;
}
.hero-sub {
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  max-width: 760px;
}
.hero-callout {
  color: #18263a;
  max-width: 760px;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.4rem;
}

.funnel-overview {
  background: #ffffff;
}
.suite-overview {
  background: #ffffff;
}
.suite-grid {
  align-items: start;
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}
.suite-copy {
  max-width: 620px;
}
.suite-copy p {
  color: var(--muted);
  font-size: 1.08rem;
}
.suite-stack {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.suite-stack .glass-card {
  min-height: 210px;
}
.suite-stack span {
  color: var(--blue);
  display: block;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 3rem;
  line-height: 1;
  margin-bottom: 1rem;
}
.funnel-grid {
  align-items: stretch;
  display: grid;
  gap: 1.25rem;
  grid-template-columns: minmax(0, 1.02fr) minmax(380px, 0.98fr);
}
.funnel-grid > *,
.suite-grid > *,
.trial-grid > *,
.wallet-grid > *,
.answer-grid > *,
.intel-grid > *,
.final-cta-inner > * {
  min-width: 0;
}
.vsl-panel {
  display: grid;
  gap: 1.6rem;
  min-width: 0;
  padding: 1rem;
}
.video-frame {
  align-items: end;
  aspect-ratio: 16 / 9;
  background:
    linear-gradient(135deg, rgba(7, 20, 38, 0.82), rgba(36, 88, 255, 0.28)),
    url("https://images.unsplash.com/photo-1450101499163-c8848c66ca85?auto=format&fit=crop&w=1400&q=80")
      center/cover;
  color: #fff;
  display: grid;
  gap: 1rem;
  grid-template-columns: auto 1fr;
  min-width: 0;
  padding: clamp(1.2rem, 3vw, 2rem);
}
.video-frame strong {
  display: block;
  font-size: 1.35rem;
  line-height: 1.1;
}
.video-frame span {
  color: rgba(255, 255, 255, 0.78);
  display: block;
  line-height: 1.45;
  margin-top: 0.25rem;
}
.play-button {
  align-self: end;
  background: #fff;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  height: 58px;
  position: relative;
  width: 58px;
}
.play-button::after {
  border-bottom: 11px solid transparent;
  border-left: 17px solid var(--blue);
  border-top: 11px solid transparent;
  content: "";
  left: 23px;
  position: absolute;
  top: 18px;
}
.handoff-copy {
  padding: 0.4rem 1rem 0.8rem;
}
.handoff-copy h2 {
  font-size: clamp(2.8rem, 5vw, 5rem);
}
.handoff-copy p {
  color: var(--muted);
  font-size: 1.05rem;
}
.availability-panel {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.panel-topline {
  align-items: start;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
}
.panel-label {
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  margin: 0 0 0.35rem;
  text-transform: uppercase;
}
.live-dot {
  align-items: center;
  color: #087a52;
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 900;
  gap: 0.45rem;
  white-space: nowrap;
}
.live-dot::before {
  background: #16c784;
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(22, 199, 132, 0.12);
  content: "";
  height: 8px;
  width: 8px;
}
.county-search {
  font-size: 0.78rem;
  text-transform: uppercase;
}
.availability-summary {
  display: grid;
  gap: 0.6rem;
  grid-template-columns: repeat(4, 1fr);
}
.summary-chip {
  background: #f7fbff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.75rem;
}
.summary-chip strong {
  display: block;
  font-size: 1.35rem;
  line-height: 1;
}
.summary-chip span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}
.county-list {
  border: 1px solid var(--line);
  border-radius: 8px;
  min-width: 0;
  max-height: 450px;
  overflow: auto;
}
.county-row {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 0.8rem;
  grid-template-columns: minmax(0, 1.1fr) 92px 76px 80px;
  min-height: 66px;
  padding: 0.8rem 1rem;
}
.county-row:last-child {
  border-bottom: 0;
}
.county-row strong {
  display: block;
  line-height: 1.1;
}
.county-row small {
  color: var(--muted);
  display: block;
  font-weight: 700;
  margin-top: 0.25rem;
}
.status-badge {
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 900;
  padding: 0.35rem 0.6rem;
  text-align: center;
}
.status-available {
  background: #e6f8ef;
  color: #067345;
}
.status-active {
  background: #e6f8ef;
  color: #067345;
}
.status-opening {
  background: #fff7df;
  color: #936409;
}
.status-buildout {
  background: #eaf1ff;
  color: #1c4bb8;
}
.status-limited {
  background: #fff7df;
  color: #936409;
}
.status-locked {
  background: #eaf1ff;
  color: #1c4bb8;
}
.status-waitlist {
  background: #fff0f0;
  color: #a03737;
}
.county-row button {
  background: #fff;
  border: 1px solid rgba(36, 88, 255, 0.24);
  border-radius: 6px;
  color: var(--blue);
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 900;
  min-height: 38px;
}

.trial-section {
  background: linear-gradient(180deg, #f7fbff, #ffffff);
}
.trial-grid {
  align-items: start;
  display: grid;
  gap: 2rem;
  grid-template-columns: 0.8fr 1.2fr;
}
.handoff-flow {
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
}
.handoff-flow article {
  background: #fff;
  border-right: 1px solid var(--line);
  padding: clamp(1.2rem, 3vw, 2rem);
}
.handoff-flow article:last-child {
  border-right: 0;
}
.handoff-flow span {
  color: var(--blue);
  display: block;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 3rem;
  line-height: 1;
  margin-bottom: 1rem;
}
.handoff-flow p,
.wallet-copy p,
.urgency-grid p {
  color: var(--muted);
}

.wallet-section {
  background: #ffffff;
}
.wallet-grid {
  align-items: center;
  display: grid;
  gap: 2rem;
  grid-template-columns: 0.9fr 1.1fr;
}
.wallet-rules {
  display: grid;
  gap: 0.7rem;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 1.5rem;
}
.wallet-rules span {
  background: #f7fbff;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #18385f;
  font-weight: 900;
  padding: 0.85rem 1rem;
}
.wallet-demo {
  display: grid;
  gap: 1rem;
}
.wallet-row {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr 1fr;
}
.balance-card {
  background: linear-gradient(135deg, #071426, #123d8a);
  border-radius: 8px;
  color: #fff;
  padding: 1.5rem;
}
.balance-card span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}
.balance-card strong {
  display: block;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  line-height: 0.95;
  margin: 0.5rem 0;
}
.balance-card p {
  color: rgba(255, 255, 255, 0.78);
  margin: 0;
}
.deduction-feed {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}
.deduction-feed div {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  padding: 0.9rem 1rem;
}
.deduction-feed div:last-child {
  border-bottom: 0;
}
.deduction-feed span {
  color: var(--muted);
  font-weight: 800;
}
.deduction-feed strong {
  color: #18385f;
}

.urgency-section {
  background: linear-gradient(135deg, #071426, #123d8a);
  color: #fff;
}
.urgency-grid {
  align-items: center;
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr auto;
}
.urgency-grid h2 {
  font-size: clamp(3rem, 6vw, 5.8rem);
}
.urgency-grid p {
  color: rgba(255, 255, 255, 0.76);
  max-width: 760px;
}
.urgency-grid .btn {
  background: #fff;
  color: var(--blue);
}

.answer-block {
  background: #fff;
  color: #08111f;
}
.answer-grid {
  display: grid;
  gap: 3rem;
  grid-template-columns: 0.9fr 1.1fr;
}
.answer-grid p {
  color: #364153;
  font-size: 1.08rem;
}
.answer-grid a {
  color: var(--blue);
  font-weight: 900;
}

.credibility-bar {
  background: linear-gradient(180deg, #f4f9ff, #ffffff);
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
}
.stats-grid {
  align-items: stretch;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 1.5rem;
}
.stat-block {
  text-align: center;
}
.stat-number,
.stat-prefix,
.stat-suffix {
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(3.2rem, 7vw, 5.8rem);
  line-height: 1;
}
.stat-label {
  color: var(--muted);
  font-weight: 900;
  margin: 0;
  text-transform: uppercase;
}
.stat-divider {
  background: var(--line);
  min-height: 100%;
  width: 1px;
}
.authority-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  justify-content: center;
  margin-top: 3rem;
}
.authority-strip span {
  background: #fff;
  border: 1px solid rgba(36, 88, 255, 0.18);
  color: #34506f;
  font-weight: 900;
  padding: 0.7rem 1rem;
  text-transform: uppercase;
}

.section-head {
  margin-bottom: 2.5rem;
  max-width: 820px;
}
.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-head p {
  color: var(--muted);
}
.faq-grid,
.gear-cards,
.capability-grid,
.proof-grid,
.process-grid {
  display: grid;
  gap: 1rem;
}
.faq-grid {
  grid-template-columns: repeat(3, 1fr);
}
.glass-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(30, 88, 160, 0.12);
  min-width: 0;
  padding: clamp(1.4rem, 3vw, 2rem);
}
.glass-card p,
.process-card p {
  color: var(--muted);
}

.section-problem {
  background: linear-gradient(180deg, #f8fbff, #edf6ff);
}
.problem-content {
  max-width: 850px;
}
.gradient-line {
  background: linear-gradient(90deg, var(--blue), var(--blue-2), var(--teal));
  height: 4px;
  margin: 1.5rem 0 2rem;
  max-width: 420px;
}
.problem-content p {
  color: var(--muted);
  font-size: 1.1rem;
}
.problem-pivot {
  color: #10213a !important;
  font-weight: 900;
}
.section-lead-magnet {
  padding-top: 0;
}
.lead-magnet-card {
  align-items: center;
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr auto;
}
.lead-magnet-card h3 {
  font-size: clamp(1.8rem, 4vw, 3rem);
}

.section-intelligence {
  background:
    radial-gradient(circle at 20% 0%, rgba(36, 88, 255, 0.16), transparent 36%),
    #ffffff;
  overflow: hidden;
}
.section-glow {
  background: rgba(36, 132, 255, 0.16);
  filter: blur(70px);
  height: 260px;
  position: absolute;
  right: 8%;
  top: 10%;
  width: 260px;
}
.section-glow-red {
  background: rgba(36, 88, 255, 0.14);
  left: 4%;
  right: auto;
}
.intel-grid {
  align-items: center;
  display: grid;
  gap: 4rem;
  grid-template-columns: 1fr 0.85fr;
  position: relative;
  z-index: 1;
}
.intel-text p {
  color: var(--muted);
  font-size: 1.08rem;
}
.intel-callout {
  border-left: 4px solid var(--blue);
  margin-top: 1.5rem;
  padding-left: 1.2rem;
}
.intel-callout p {
  color: #10213a;
}
.intel-steps {
  display: grid;
}
.intel-step {
  align-items: center;
  background: var(--panel);
  border: 1px solid var(--line);
  display: grid;
  gap: 1rem;
  grid-template-columns: 76px 1fr;
  padding: 1.2rem;
}
.step-num {
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 3rem;
  line-height: 1;
}
.intel-step p {
  color: var(--muted);
  margin: 0;
}
.intel-connector {
  background: var(--line);
  height: 28px;
  margin-left: 38px;
  width: 1px;
}

.section-gear {
  background: #f7fbff;
  color: #08111f;
}
.section-gear .section-head p,
.section-gear .glass-card p,
.fit-card li {
  color: #465266;
}
.gear-cards {
  grid-template-columns: repeat(4, 1fr);
}
.section-gear .glass-card {
  background: #ffffff;
  border-color: rgba(36, 88, 255, 0.14);
  box-shadow: 0 18px 45px rgba(30, 88, 160, 0.09);
}
.gear-icon {
  align-items: center;
  background: var(--blue);
  color: #fff;
  display: inline-flex;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 2.2rem;
  height: 56px;
  justify-content: center;
  margin-bottom: 1.5rem;
  width: 56px;
}
.fit-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr 1fr;
  margin-top: 1rem;
}
.fit-card {
  border-radius: 8px;
  padding: 2rem;
}
.fit-yes {
  background: #e9f5ff;
}
.fit-no {
  background: #f5f9ff;
}
.fit-card li {
  margin-bottom: 0.7rem;
}

.section-capabilities {
  background: linear-gradient(180deg, #ffffff, #eef6ff);
}
.capability-grid,
.proof-grid {
  grid-template-columns: repeat(4, 1fr);
}
.proof-grid {
  grid-template-columns: repeat(4, 1fr);
}
.proof-grid a {
  color: var(--blue);
  font-weight: 900;
}
.section-sales-edge {
  background: #ffffff;
}
.sales-edge-content {
  max-width: 880px;
}
.sales-edge-content p {
  color: var(--muted);
  font-size: 1.1rem;
}
.philosophy-quote {
  border-left: 4px solid var(--blue);
  margin: 2rem 0 0;
  padding-left: 1.5rem;
}
.philosophy-quote p {
  color: #10213a;
  font-size: 1.35rem;
  font-weight: 900;
}
.philosophy-quote cite {
  color: var(--muted);
  font-style: normal;
}
.section-experience {
  background: #f4f9ff;
}
.process-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}
.process-num {
  display: block;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 4rem;
  line-height: 1;
  margin-bottom: 1rem;
}

.section-final-cta {
  background:
    radial-gradient(
      circle at 78% 20%,
      rgba(36, 88, 255, 0.16),
      transparent 34%
    ),
    #ffffff;
  overflow: hidden;
}
.final-cta-inner {
  display: grid;
  gap: 3rem;
  grid-template-columns: 0.8fr 1.2fr;
  position: relative;
  z-index: 1;
}
.cta-footnote {
  color: var(--muted);
}
.lead-form {
  display: grid;
  gap: 1rem;
}
.form-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
}
label {
  color: #10213a;
  display: grid;
  font-size: 0.86rem;
  font-weight: 900;
  gap: 0.45rem;
}
input,
select,
textarea {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: #10213a;
  min-height: 50px;
  outline: 0;
  padding: 0.85rem;
  width: 100%;
}
option {
  color: #08111f;
}
textarea {
  resize: vertical;
}
input:focus,
select:focus,
textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(36, 88, 255, 0.14);
}
.consent-row {
  align-items: start;
  display: flex;
  gap: 0.75rem;
}
.consent-row input {
  flex: 0 0 auto;
  height: 18px;
  min-height: 18px;
  margin-top: 2px;
  width: 18px;
}
.form-status {
  color: var(--muted);
  font-weight: 800;
  margin: 0;
  min-height: 24px;
}
.form-status.success {
  color: #52d1a3;
}
.form-status.error {
  color: #ff8f88;
}

.site-footer {
  background: #f7fbff;
  border-top: 1px solid var(--line);
  padding: 2.5rem 0;
}
.footer-inner {
  align-items: center;
  display: flex;
  gap: 2rem;
  justify-content: space-between;
}
.footer-copy {
  color: var(--muted);
  margin: 1rem 0 0;
}
.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: flex-end;
}

@media (max-width: 1050px) {
  .main-nav,
  .btn-header {
    display: none;
  }
  .nav-toggle {
    display: block;
    margin-left: auto;
  }
  .answer-grid,
  .intel-grid,
  .final-cta-inner,
  .suite-grid,
  .lead-magnet-card,
  .funnel-grid,
  .trial-grid,
  .wallet-grid,
  .urgency-grid {
    grid-template-columns: 1fr;
  }
  .gear-cards,
  .capability-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-divider {
    display: none;
  }
}

@media (max-width: 720px) {
  .container {
    padding: 0 18px;
  }
  h1 {
    font-size: clamp(4rem, 18vw, 5.8rem);
  }
  h2 {
    font-size: clamp(3rem, 14vw, 4.4rem);
  }
  .hero-cta .btn,
  .btn-lead-magnet {
    width: 100%;
  }
  .faq-grid,
  .suite-stack,
  .gear-cards,
  .fit-grid,
  .capability-grid,
  .proof-grid,
  .process-grid-3,
  .form-grid {
    grid-template-columns: 1fr;
  }
  .availability-summary,
  .handoff-flow,
  .wallet-rules,
  .wallet-row {
    grid-template-columns: 1fr;
  }
  .handoff-flow article {
    border-bottom: 1px solid var(--line);
    border-right: 0;
  }
  .handoff-flow article:last-child {
    border-bottom: 0;
  }
  .county-row {
    grid-template-columns: 1fr;
  }
  .county-row button {
    width: 100%;
  }
  .intel-step {
    grid-template-columns: 58px 1fr;
  }
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
  .site-footer nav {
    justify-content: flex-start;
  }
}
