:root {
  --cream: #f3e8dd;
  --cream-soft: #f8efe7;
  --blue: #1677f2;
  --orange: #ff8a00;
  --yellow: #ffb020;
  --coral: #ff5538;
  --red: #f52f38;
  --purple: #b985ff;
  --lime: #28b447;
  --black: #050505;
  --white: #ffffff;
  --ink-soft: rgba(5, 5, 5, 0.72);
  --line: rgba(5, 5, 5, 0.18);
  --radius-xl: 52px;
  --radius-lg: 34px;
  --shadow: 0 22px 50px rgba(5, 5, 5, 0.14);
  --side-width: 204px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 20px;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--cream);
  color: var(--black);
  font-family: Inter, "Space Grotesk", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.45;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-160%);
  border: 2px solid var(--black);
  border-radius: 999px;
  background: var(--white);
  padding: 10px 16px;
  font-weight: 900;
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.sidebar {
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 100;
  display: flex;
  width: var(--side-width);
  height: 100dvh;
  flex-direction: column;
  gap: 10px;
  overflow-y: auto;
  padding: 24px 20px 16px;
  background: var(--cream);
}

.brand {
  margin-bottom: 8px;
}

.brand-mark,
.footer-brand {
  display: inline-block;
  font-size: clamp(34px, 3vw, 48px);
  font-weight: 1000;
  letter-spacing: 0;
  line-height: 0.9;
}

.brand-mark span,
.footer-brand span {
  color: var(--coral);
}

.brand p {
  max-width: 130px;
  margin: 5px 0 0;
  font-size: 10px;
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
}

.menu-toggle {
  display: none;
}

.side-nav {
  display: grid;
  gap: 10px;
}

.nav-card {
  position: relative;
  display: grid;
  min-height: 88px;
  align-content: space-between;
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: 10px;
  padding: 14px;
  color: var(--black);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.nav-card:hover,
.nav-card:focus-visible,
.nav-card.active {
  border-color: var(--black);
  box-shadow: 0 8px 0 var(--black);
  transform: translateY(-3px);
}

.nav-card span,
.nav-card strong {
  position: relative;
  z-index: 2;
}

.nav-card span {
  font-size: 13px;
  font-weight: 1000;
}

.nav-card strong {
  max-width: 110px;
  font-size: 16px;
  font-weight: 1000;
  line-height: 1.05;
}

.nav-card i {
  position: absolute;
  top: 12px;
  right: 12px;
  font-style: normal;
  font-size: 22px;
  font-weight: 1000;
  line-height: 1;
}

.nav-blue {
  background: var(--blue);
}

.nav-orange {
  background: var(--yellow);
}

.nav-coral {
  background: var(--coral);
}

.nav-green {
  background: #02a542;
}

.nav-purple {
  background: var(--purple);
}

.nav-black {
  background: var(--black);
  color: var(--white);
}

.sidebar-cta {
  display: grid;
  min-height: 52px;
  place-items: center;
  border: 2px solid var(--black);
  border-radius: 10px;
  background: var(--purple);
  font-weight: 1000;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.sidebar-cta:hover,
.sidebar-cta:focus-visible {
  box-shadow: 0 8px 0 var(--black);
  transform: translateY(-3px);
}

.sidebar-actions {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 8px;
  margin-top: auto;
}

.sidebar-actions a,
.sidebar-actions button {
  display: grid;
  min-height: 42px;
  place-items: center;
  border: 2px solid var(--black);
  border-radius: 10px;
  background: var(--black);
  color: var(--white);
  font-size: 13px;
  font-weight: 1000;
  cursor: pointer;
}

.sidebar-actions button {
  background: var(--white);
  color: var(--black);
}

.site-main {
  width: calc(100% - var(--side-width));
  margin-left: var(--side-width);
  padding: 14px 8px 0 0;
}

.section-block {
  scroll-margin-top: 24px;
}

.mega-card,
.feature-card,
.price-card,
.review-card,
.faq-item,
.article-shell {
  border: 2px solid transparent;
  border-radius: var(--radius-xl);
}

.hero {
  display: grid;
  grid-template-columns: minmax(500px, 0.98fr) minmax(520px, 1.02fr);
  gap: 28px;
  min-height: 632px;
}

.hero-copy {
  position: relative;
  display: flex;
  min-height: 632px;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: clamp(28px, 3.2vw, 44px);
  background: var(--yellow);
}

.pill-row,
.hero-cta,
.mini-stats,
.city-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.pill-row {
  margin-bottom: 22px;
}

.pill-row span,
.card-pill,
.section-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 38px;
  border: 2px solid var(--black);
  border-radius: 999px;
  padding: 8px 18px;
  background: rgba(255, 255, 255, 0.32);
  font-size: 14px;
  font-weight: 900;
}

.hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(44px, 5.2vw, 82px);
  font-weight: 1000;
  letter-spacing: 0;
  line-height: 0.88;
}

.hero-copy > p {
  max-width: 720px;
  margin: 22px 0 0;
  font-size: clamp(18px, 1.5vw, 22px);
  font-weight: 650;
  line-height: 1.18;
}

.btn {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--black);
  border-radius: 999px;
  padding: 13px 23px;
  font-size: 16px;
  font-weight: 1000;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:hover,
.btn:focus-visible {
  box-shadow: 0 8px 0 var(--black);
  transform: translateY(-3px);
}

.btn-dark {
  background: var(--black);
  color: var(--white);
}

.btn-light {
  background: var(--white);
  color: var(--black);
}

.hero-cta {
  margin-top: 24px;
}

.mini-stats {
  margin-top: 24px;
}

.mini-stats span {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  background: var(--white);
  padding: 8px 14px;
  font-weight: 900;
}

.mini-stats strong {
  font-size: 18px;
}

.phone-badge {
  position: absolute;
  display: none;
  right: 24px;
  bottom: 22px;
  width: min(174px, 24%);
  transform: rotate(7deg);
}

.phone-screen {
  border: 10px solid var(--black);
  border-radius: 34px;
  background: var(--black);
  box-shadow: 0 18px 0 rgba(5, 5, 5, 0.18);
}

.phone-screen img {
  aspect-ratio: 3 / 4;
  border-radius: 22px;
  object-fit: cover;
}

.phone-screen span {
  display: block;
  color: var(--white);
  padding: 8px 10px 2px;
  font-size: 12px;
  font-weight: 1000;
  text-align: center;
}

.hero-map {
  position: relative;
  min-height: 632px;
  overflow: hidden;
  background: var(--orange);
}

.ai-map-grid {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 73% 31%, rgba(255, 255, 255, 0.28) 0 9%, transparent 10%),
    radial-gradient(circle at 18% 72%, rgba(255, 231, 38, 0.42) 0 7%, transparent 8%),
    repeating-linear-gradient(28deg, transparent 0 43px, rgba(255, 85, 56, 0.52) 45px 49px, transparent 51px 98px),
    repeating-linear-gradient(99deg, transparent 0 58px, rgba(255, 85, 56, 0.42) 59px 64px, transparent 66px 128px),
    linear-gradient(135deg, #ffb020, #ff8a00 60%, #ffb020);
}

.ai-map-grid::before,
.ai-map-grid::after {
  position: absolute;
  content: "";
  width: 84%;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 85, 56, 0.64);
}

.ai-map-grid::before {
  top: 33%;
  left: -12%;
  transform: rotate(22deg);
}

.ai-map-grid::after {
  right: -7%;
  bottom: 22%;
  transform: rotate(-17deg);
}

.route {
  position: absolute;
  height: 7px;
  border-radius: 999px;
  background: rgba(255, 231, 38, 0.78);
  box-shadow: 0 0 0 2px rgba(255, 85, 56, 0.28);
}

.route-a {
  top: 18%;
  left: 10%;
  width: 46%;
  transform: rotate(-8deg);
}

.route-b {
  right: 4%;
  bottom: 35%;
  width: 52%;
  transform: rotate(14deg);
}

.route-c {
  bottom: 12%;
  left: 12%;
  width: 38%;
  transform: rotate(-22deg);
}

.pin,
.node {
  position: absolute;
  display: grid;
  place-items: center;
  border: 2px solid var(--black);
}

.pin {
  width: 42px;
  height: 42px;
  border-radius: 15px 15px 15px 4px;
  background: var(--blue);
  color: var(--white);
  font-size: 12px;
  font-weight: 1000;
  transform: rotate(-45deg);
}

.pin::before {
  content: attr(class);
}

.pin {
  font-size: 0;
}

.pin::after {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--white);
  transform: rotate(45deg);
}

.pin-a {
  top: 12%;
  left: 23%;
}

.pin-b {
  top: 30%;
  right: 19%;
}

.pin-c {
  bottom: 21%;
  left: 31%;
}

.pin-d {
  right: 11%;
  bottom: 12%;
}

.hub-marker {
  position: absolute;
  top: 43%;
  left: 47%;
  display: grid;
  justify-items: center;
  gap: 12px;
  transform: translate(-50%, -50%);
}

.hub-marker b {
  border-radius: 999px;
  background: var(--coral);
  padding: 14px 24px;
  box-shadow: 0 10px 0 rgba(5, 5, 5, 0.16);
  font-size: clamp(18px, 1.8vw, 26px);
  font-weight: 1000;
  white-space: nowrap;
}

.hub-marker i {
  width: 38px;
  height: 38px;
  border: 3px solid var(--black);
  border-radius: 10px 10px 10px 0;
  background: var(--black);
  transform: rotate(-45deg);
}

.node {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: var(--white);
  box-shadow: 0 0 0 10px rgba(22, 119, 242, 0.2);
}

.node-a {
  top: 10%;
  right: 35%;
}

.node-b {
  top: 62%;
  right: 26%;
}

.node-c {
  bottom: 18%;
  left: 14%;
}

.node-d {
  top: 27%;
  left: 11%;
}

.map-caption {
  position: absolute;
  right: 30px;
  bottom: 30px;
  left: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
}

.map-caption span,
.map-caption strong {
  border: 2px solid var(--black);
  border-radius: 999px;
  background: var(--white);
  padding: 10px 16px;
  font-weight: 1000;
}

.ticker-wrap {
  width: 100%;
  margin: 30px 0;
  overflow: hidden;
  border-radius: 999px;
  background: var(--red);
  color: var(--yellow);
}

.ticker-track {
  display: flex;
  width: max-content;
  min-height: 54px;
  align-items: center;
  gap: 42px;
  padding-inline: 24px;
  animation: marquee 27s linear infinite;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 1000;
  white-space: nowrap;
}

.ticker-track i {
  color: var(--white);
  font-style: normal;
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

.features,
.guide,
.pricing,
.coverage,
.reviews,
.article-block,
.faq {
  padding-block: 0 30px;
}

.section-kicker {
  margin-bottom: 18px;
  background: var(--white);
}

.section-head {
  display: grid;
  max-width: 980px;
  margin-bottom: 24px;
}

.section-head h2,
.guide-copy h2,
.coverage-copy h2,
.article-shell h2 {
  margin: 0;
  font-size: clamp(36px, 5vw, 76px);
  font-weight: 1000;
  letter-spacing: 0;
  line-height: 0.94;
}

.section-head p,
.guide-copy p,
.coverage-copy p {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: 19px;
  font-weight: 650;
}

.feature-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1.08fr) minmax(280px, 1fr) minmax(280px, 1fr);
  grid-auto-rows: minmax(240px, auto);
  gap: 28px;
}

.feature-card {
  position: relative;
  overflow: hidden;
  min-height: 290px;
  padding: 38px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.feature-card:hover,
.price-card:hover,
.review-card:hover,
.faq-item:hover {
  border-color: var(--black);
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.feature-main {
  grid-row: span 2;
  min-height: 620px;
  background: var(--coral);
}

.feature-main h2 {
  max-width: 720px;
  margin: 220px 0 18px;
  font-size: clamp(42px, 5vw, 86px);
  font-weight: 1000;
  letter-spacing: 0;
  line-height: 0.9;
}

.feature-main p {
  max-width: 650px;
  margin: 0;
  font-size: 21px;
  font-weight: 700;
  line-height: 1.18;
}

.avatar-stack {
  position: absolute;
  top: 92px;
  right: 15%;
  display: grid;
  width: 210px;
  height: 190px;
  place-items: center;
}

.avatar-stack span {
  position: absolute;
  width: 116px;
  height: 116px;
  border: 8px solid var(--white);
  border-radius: 40px;
  background:
    radial-gradient(circle at 50% 33%, var(--white) 0 16px, transparent 17px),
    radial-gradient(circle at 50% 79%, var(--blue) 0 44px, transparent 45px),
    var(--lime);
  box-shadow: 13px 13px 0 var(--black);
}

.avatar-stack span:nth-child(1) {
  transform: translate(-52px, 10px) rotate(-15deg);
}

.avatar-stack span:nth-child(2) {
  background:
    radial-gradient(circle at 50% 33%, var(--white) 0 16px, transparent 17px),
    radial-gradient(circle at 50% 79%, var(--coral) 0 44px, transparent 45px),
    var(--purple);
  transform: translate(4px, -34px) rotate(9deg);
}

.avatar-stack span:nth-child(3) {
  background:
    radial-gradient(circle at 50% 33%, var(--white) 0 16px, transparent 17px),
    radial-gradient(circle at 50% 79%, var(--orange) 0 44px, transparent 45px),
    var(--blue);
  transform: translate(54px, 38px) rotate(18deg);
}

.image-card {
  padding: 0;
  background: var(--black);
}

.image-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.image-card.tall {
  min-height: 620px;
}

.feature-list-card {
  background: var(--orange);
}

.workflow-card {
  background: var(--purple);
}

.feature-list-card h3,
.workflow-card h3 {
  margin: 18px 0 18px;
  font-size: clamp(32px, 3vw, 48px);
  font-weight: 1000;
  line-height: 0.95;
}

.line-list,
.step-list {
  display: grid;
}

.line-list li,
.step-list li {
  border-top: 2px solid rgba(5, 5, 5, 0.62);
  padding: 11px 0;
  font-size: 18px;
  font-weight: 800;
}

.line-list li:last-child,
.step-list li:last-child {
  border-bottom: 2px solid rgba(5, 5, 5, 0.62);
}

.step-list span {
  display: inline-flex;
  width: 42px;
  height: 32px;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
  border-radius: 999px;
  background: var(--black);
  color: var(--white);
  font-size: 13px;
}

.wide {
  grid-column: span 2;
}

.guide {
  display: grid;
  grid-template-columns: minmax(360px, 1.18fr) minmax(300px, 0.82fr);
  gap: 28px;
}

.guide-copy {
  min-height: 520px;
  padding: clamp(32px, 4vw, 54px);
  background: var(--blue);
  color: var(--white);
}

.guide-copy .section-kicker {
  color: var(--black);
}

.guide-copy p {
  color: rgba(255, 255, 255, 0.9);
}

.safe-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.safe-grid div {
  min-height: 126px;
  border: 2px solid var(--white);
  border-radius: 28px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.16);
}

.safe-grid strong {
  display: block;
  margin-bottom: 14px;
  font-size: 18px;
}

.safe-grid span {
  font-size: 16px;
  font-weight: 750;
}

.guide-image {
  min-height: 520px;
  overflow: hidden;
}

.guide-image img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.price-card {
  display: flex;
  min-height: 340px;
  flex-direction: column;
  padding: 34px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.price-card span {
  font-weight: 1000;
  text-transform: uppercase;
}

.price-card h3 {
  margin: 22px 0 8px;
  font-size: clamp(48px, 6vw, 88px);
  font-weight: 1000;
  line-height: 0.9;
}

.price-card p {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
}

.price-card a {
  display: inline-flex;
  width: fit-content;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  border: 2px solid var(--black);
  border-radius: 999px;
  background: var(--white);
  padding: 10px 18px;
  font-weight: 1000;
}

.price-blue {
  background: var(--blue);
  color: var(--white);
}

.price-orange {
  background: var(--yellow);
}

.price-purple {
  background: var(--purple);
}

.coverage {
  display: grid;
  grid-template-columns: minmax(360px, 1.1fr) minmax(320px, 0.9fr);
  gap: 28px;
}

.coverage-map,
.coverage-copy {
  min-height: 480px;
  overflow: hidden;
}

.coverage-map {
  background: var(--orange);
}

.mini-map {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 480px;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.1) 1px, transparent 1px),
    linear-gradient(rgba(5, 5, 5, 0.1) 1px, transparent 1px),
    radial-gradient(circle at 65% 32%, rgba(255, 255, 255, 0.38) 0 8%, transparent 9%),
    radial-gradient(circle at 25% 70%, rgba(185, 133, 255, 0.42) 0 10%, transparent 11%),
    linear-gradient(135deg, var(--orange), var(--coral));
  background-size: 70px 70px, 70px 70px, auto, auto, auto;
}

.mini-map::before,
.mini-map::after {
  position: absolute;
  content: "";
  border-radius: 999px;
  background: var(--black);
}

.mini-map::before {
  top: 45%;
  left: 8%;
  width: 86%;
  height: 8px;
  transform: rotate(10deg);
}

.mini-map::after {
  top: 12%;
  left: 48%;
  width: 8px;
  height: 76%;
  transform: rotate(18deg);
}

.map-pin {
  position: absolute;
  z-index: 2;
  display: grid;
  min-width: 54px;
  min-height: 36px;
  place-items: center;
  border: 2px solid var(--black);
  border-radius: 999px;
  background: var(--white);
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 1000;
  box-shadow: 7px 7px 0 var(--black);
}

.p1 {
  top: 12%;
  left: 12%;
}

.p2 {
  top: 28%;
  left: 42%;
}

.p3 {
  top: 48%;
  left: 21%;
}

.p4 {
  right: 18%;
  bottom: 31%;
}

.p5 {
  right: 9%;
  bottom: 13%;
}

.p6 {
  top: 18%;
  right: 18%;
}

.p7 {
  bottom: 17%;
  left: 42%;
}

.coverage-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(32px, 4vw, 52px);
  background: var(--lime);
}

.city-tags {
  margin-top: 28px;
}

.city-tags span {
  border: 2px solid var(--black);
  border-radius: 999px;
  background: var(--white);
  padding: 10px 15px;
  font-weight: 1000;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.review-card {
  min-height: 230px;
  padding: 28px;
  background: var(--white);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.review-card:nth-child(2n) {
  background: var(--cream-soft);
}

.review-card:nth-child(3n) {
  background: var(--purple);
}

.stars {
  display: block;
  margin-bottom: 24px;
  color: var(--orange);
  font-size: 22px;
  letter-spacing: 0;
}

.review-card p {
  margin: 0 0 24px;
  font-size: 21px;
  font-weight: 850;
  line-height: 1.12;
}

.review-card strong {
  font-weight: 1000;
}

.article-block {
  padding-inline: 0;
}

.article-shell {
  max-width: 1180px;
  margin-inline: auto;
  padding: clamp(28px, 5vw, 64px);
  background: var(--white);
}

.article-shell header {
  margin-bottom: 30px;
}

.article-shell p {
  margin: 0 0 22px;
  color: rgba(5, 5, 5, 0.78);
  font-size: clamp(17px, 1.35vw, 20px);
  font-weight: 590;
  line-height: 1.72;
}

.article-shell h3 {
  margin: 34px 0 14px;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 1000;
  line-height: 1.02;
}

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

.faq-item {
  overflow: hidden;
  background: var(--white);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.faq-item button {
  position: relative;
  display: flex;
  width: 100%;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  border: 0;
  background: transparent;
  padding: 20px 74px 20px 28px;
  font-size: clamp(18px, 2vw, 25px);
  font-weight: 1000;
  line-height: 1.12;
  text-align: left;
  cursor: pointer;
}

.faq-item button::after {
  position: absolute;
  top: 50%;
  right: 28px;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 2px solid var(--black);
  border-radius: 50%;
  background: var(--yellow);
  content: "+";
  font-size: 24px;
  line-height: 1;
  transform: translateY(-50%);
}

.faq-item button[aria-expanded="true"]::after {
  content: "-";
  background: var(--coral);
}

.faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 260ms ease;
}

.faq-panel p {
  margin: 0;
  border-top: 2px solid var(--line);
  padding: 0 28px 24px;
  color: var(--ink-soft);
  font-size: 18px;
  font-weight: 650;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(250px, 0.9fr) minmax(220px, 0.55fr);
  gap: 28px;
  width: calc(100% - var(--side-width));
  margin-left: var(--side-width);
  padding: 40px 28px 34px;
  background: var(--black);
  color: var(--white);
}

.site-footer p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-weight: 650;
}

.site-footer nav {
  display: grid;
  align-content: start;
  gap: 10px;
}

.site-footer nav a {
  width: fit-content;
  border-bottom: 2px solid rgba(255, 255, 255, 0.4);
  font-weight: 900;
}

.footer-disclaimer {
  grid-column: 1 / -1;
  max-width: 1100px;
}

.site-footer small {
  grid-column: 1 / -1;
  color: rgba(255, 255, 255, 0.58);
  font-weight: 700;
}

.reveal {
  opacity: 1;
  transform: translateY(0);
}

.js-enabled .reveal {
  opacity: 1;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.js-enabled .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1180px) {
  :root {
    --side-width: 188px;
    --radius-xl: 42px;
  }

  .sidebar {
    padding-inline: 14px;
  }

  .hero,
  .guide,
  .coverage {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .hero-map {
    min-height: 560px;
  }

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

  .feature-main {
    grid-column: 1 / -1;
  }

  .wide {
    grid-column: auto;
  }
}

@media (max-width: 900px) {
  html {
    scroll-padding-top: 88px;
  }

  body.menu-open {
    overflow: hidden;
  }

  .sidebar {
    right: 0;
    bottom: auto;
    width: 100%;
    height: 74px;
    flex-direction: row;
    align-items: center;
    gap: 14px;
    overflow: visible;
    border-bottom: 2px solid var(--black);
    padding: 10px 14px;
  }

  .brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
  }

  .brand-mark {
    font-size: 30px;
  }

  .brand p {
    display: none;
  }

  .menu-toggle {
    position: relative;
    z-index: 110;
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    margin-left: auto;
    border: 2px solid var(--black);
    border-radius: 12px;
    background: var(--yellow);
    cursor: pointer;
  }

  .menu-toggle span {
    position: absolute;
    width: 22px;
    height: 3px;
    border-radius: 999px;
    background: var(--black);
    transition: transform 180ms ease;
  }

  .menu-toggle span:first-child {
    transform: translateY(-5px);
  }

  .menu-toggle span:last-child {
    transform: translateY(5px);
  }

  body.menu-open .menu-toggle span:first-child {
    transform: rotate(45deg);
  }

  body.menu-open .menu-toggle span:last-child {
    transform: rotate(-45deg);
  }

  .side-nav {
    position: fixed;
    top: 74px;
    right: 12px;
    left: 12px;
    z-index: 105;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-height: calc(100dvh - 92px);
    overflow-y: auto;
    border: 2px solid var(--black);
    border-radius: 24px;
    background: var(--cream);
    padding: 12px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  body.menu-open .side-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-card {
    min-height: 92px;
  }

  .nav-card strong {
    font-size: 15px;
  }

  .sidebar-cta {
    min-height: 46px;
    padding-inline: 15px;
    white-space: nowrap;
  }

  .sidebar-actions {
    display: none;
  }

  .site-main,
  .site-footer {
    width: 100%;
    margin-left: 0;
  }

  .site-main {
    padding: 86px 10px 0;
  }

  .hero {
    gap: 14px;
  }

  .ticker-wrap {
    margin-block: 16px 24px;
  }

  .feature-grid,
  .price-grid,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .feature-main,
  .image-card.tall,
  .guide-copy,
  .guide-image,
  .coverage-map,
  .coverage-copy {
    min-height: auto;
  }

  .image-card img,
  .guide-image img {
    min-height: 320px;
  }

  .feature-main h2 {
    margin-top: 190px;
  }

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

  .site-footer {
    grid-template-columns: 1fr;
    padding-inline: 18px;
  }
}

@media (max-width: 580px) {
  :root {
    --radius-xl: 30px;
    --radius-lg: 24px;
  }

  .site-main {
    padding-inline: 8px;
  }

  .hero-copy,
  .hero-map {
    min-height: auto;
    padding: 26px;
  }

  .hero h1 {
    font-size: clamp(42px, 13vw, 62px);
  }

  .hero-copy > p {
    font-size: 17px;
  }

  .phone-badge {
    position: relative;
    display: block;
    right: auto;
    bottom: auto;
    width: 72%;
    max-width: 260px;
    margin-top: 28px;
    transform: rotate(3deg);
  }

  .hero-map {
    min-height: 420px;
  }

  .map-caption {
    right: 18px;
    bottom: 18px;
    left: 18px;
  }

  .map-caption strong {
    font-size: 13px;
  }

  .hub-marker {
    left: 50%;
  }

  .hub-marker b {
    padding: 10px 16px;
    font-size: 17px;
  }

  .ticker-track {
    min-height: 46px;
    gap: 28px;
    font-size: 17px;
  }

  .feature-card,
  .price-card,
  .review-card,
  .article-shell,
  .coverage-copy,
  .guide-copy {
    padding: 24px;
  }

  .feature-main h2 {
    margin-top: 170px;
    font-size: 44px;
  }

  .feature-main p,
  .review-card p {
    font-size: 18px;
  }

  .avatar-stack {
    top: 72px;
    right: 50%;
    transform: translateX(50%) scale(0.82);
  }

  .price-card {
    min-height: 280px;
  }

  .mini-map {
    min-height: 400px;
  }

  .section-head h2,
  .guide-copy h2,
  .coverage-copy h2,
  .article-shell h2 {
    font-size: clamp(34px, 11vw, 52px);
  }

  .article-shell p {
    font-size: 16px;
    line-height: 1.66;
  }

  .faq-item button {
    padding: 18px 62px 18px 20px;
    font-size: 18px;
  }

  .faq-item button::after {
    right: 18px;
  }

  .faq-panel p {
    padding-inline: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
