:root {
  --bg: #f5ecdb;
  --bg-deep: #103246;
  --surface: rgba(255, 251, 245, 0.82);
  --surface-strong: rgba(255, 255, 255, 0.96);
  --surface-dark: rgba(17, 50, 70, 0.92);
  --surface-tint: rgba(216, 236, 250, 0.84);
  --text: #16202b;
  --muted: #5c6774;
  --line: rgba(22, 32, 43, 0.12);
  --line-strong: rgba(22, 32, 43, 0.2);
  --primary: #2d67ad;
  --primary-strong: #1f4f87;
  --accent: #e5842a;
  --accent-soft: rgba(229, 132, 42, 0.14);
  --success: #2f8c67;
  --shadow-lg: 0 28px 80px rgba(15, 35, 49, 0.18);
  --shadow-md: 0 20px 48px rgba(15, 35, 49, 0.12);
  --shadow-sm: 0 12px 28px rgba(15, 35, 49, 0.08);
  --radius-2xl: 36px;
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --content: 1280px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 10%, rgba(229, 132, 42, 0.18), transparent 26%),
    radial-gradient(circle at 90% 10%, rgba(45, 103, 173, 0.14), transparent 24%),
    radial-gradient(circle at 50% 90%, rgba(47, 140, 103, 0.12), transparent 24%),
    linear-gradient(180deg, #fbf5e9 0%, #f4ead8 44%, #efe2cc 100%);
  line-height: 1.55;
}

a {
  color: inherit;
}

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

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

.landing-shell {
  width: min(calc(100% - 32px), var(--content));
  margin: 0 auto;
  padding: 24px 0 120px;
}

.surface {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-2xl);
  background: var(--surface);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-md);
}

.site-header {
  position: sticky;
  top: 16px;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 18px;
  margin-bottom: 20px;
}

.brand-link,
.header-nav,
.header-actions {
  display: flex;
  align-items: center;
}

.brand-link {
  gap: 12px;
  text-decoration: none;
}

.brand-link img {
  width: 50px;
  height: 50px;
  border-radius: 16px;
  box-shadow: 0 10px 18px rgba(45, 103, 173, 0.18);
}

.brand-link img.brand-banner {
  width: clamp(180px, 18vw, 260px);
  height: auto;
  border-radius: 0;
  box-shadow: none;
}

.brand-stack {
  display: grid;
  gap: 2px;
}

.brand-stack span {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.header-nav {
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.header-nav a,
.header-actions a,
.scan-link,
.footer-link {
  text-decoration: none;
}

.header-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.header-nav a:hover,
.header-nav a:focus-visible {
  color: var(--text);
  background: rgba(255, 255, 255, 0.74);
  transform: translateY(-1px);
}

.header-actions {
  gap: 10px;
}

.button,
.button-secondary,
.button-ghost,
.scan-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.button::after {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: inherit;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.32), transparent 68%);
  opacity: 0;
  transition: opacity 180ms ease;
}

.button:hover,
.button:focus-visible,
.button-secondary:hover,
.button-secondary:focus-visible,
.button-ghost:hover,
.button-ghost:focus-visible,
.scan-link:hover,
.scan-link:focus-visible {
  transform: translateY(-2px);
}

.button:hover::after,
.button:focus-visible::after {
  opacity: 1;
}

.button {
  color: #fff;
  background: linear-gradient(135deg, #2d67ad 0%, #15467c 100%);
  box-shadow: 0 18px 38px rgba(45, 103, 173, 0.3);
}

.button-secondary {
  color: var(--primary-strong);
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(45, 103, 173, 0.14);
}

.button-ghost {
  color: var(--text);
  background: transparent;
  border-color: rgba(22, 32, 43, 0.12);
}

.hero-panel {
  padding: 34px;
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at var(--spotlight-x, 78%) var(--spotlight-y, 22%), rgba(255, 255, 255, 0.4), transparent 24%),
    linear-gradient(125deg, rgba(255, 255, 255, 0.2), transparent 40%);
  pointer-events: none;
}

.hero-grid,
.metrics-grid,
.story-stack,
.story-card,
.coverage-grid,
.business-grid,
.footer-grid,
.hero-visuals {
  display: grid;
  gap: 20px;
}

.hero-grid {
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  align-items: start;
}

.eyebrow,
.section-kicker,
.metric-label,
.story-index,
.plan-label,
.scan-badge,
.coverage-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  min-height: 34px;
  padding: 0 13px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow,
.section-kicker,
.metric-label,
.scan-badge {
  color: var(--primary-strong);
  background: rgba(45, 103, 173, 0.1);
}

.hero-copy h1,
.section-heading,
.story-copy h3,
.business-card h3,
.footer-cta h2,
.hero-stat strong,
.coverage-copy h3 {
  margin: 0;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  letter-spacing: -0.05em;
}

.hero-copy h1 {
  margin-top: 18px;
  max-width: 12ch;
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.99;
}

.accent-text {
  color: var(--accent);
}

.hero-copy p,
.section-copy,
.story-copy p,
.business-card p,
.coverage-copy p,
.footer-copy,
.hero-note,
.scan-card p,
.footer-meta p {
  color: var(--muted);
}

.hero-copy p {
  margin: 18px 0 0;
  max-width: 58ch;
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.proof-pill,
.coverage-chip,
.footer-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(22, 32, 43, 0.08);
  background: rgba(255, 255, 255, 0.6);
  font-weight: 700;
}

.hero-note {
  margin-top: 18px;
  font-size: 0.95rem;
}

.metrics-grid {
  margin-top: 28px;
  grid-template-columns: 1fr;
}

.hero-stat {
  min-width: 0;
  padding: 18px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(22, 32, 43, 0.08);
  background: rgba(255, 255, 255, 0.58);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.42);
}

.hero-stat strong {
  display: block;
  margin-top: 8px;
  font-size: clamp(1.3rem, 2vw, 1.75rem);
  line-height: 1.08;
  text-wrap: balance;
}

.hero-stat p {
  margin: 8px 0 0;
  font-size: 0.96rem;
}

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

.hero-visuals {
  align-content: start;
}

.device-stage,
.scan-card,
.story-card,
.coverage-card,
.business-card,
.footer-cta,
.footer-meta {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background: var(--surface-strong);
  box-shadow: var(--shadow-md);
}

.device-stage {
  min-height: 640px;
  padding: 24px;
  background:
    radial-gradient(circle at 18% 18%, rgba(229, 132, 42, 0.2), transparent 24%),
    radial-gradient(circle at 82% 22%, rgba(45, 103, 173, 0.22), transparent 30%),
    linear-gradient(180deg, rgba(208, 231, 248, 0.96), rgba(255, 255, 255, 0.8)),
    linear-gradient(135deg, rgba(229, 132, 42, 0.12), transparent 42%);
  transform-style: preserve-3d;
}

.device-stage::before {
  content: "";
  position: absolute;
  inset: auto -100px -100px auto;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(229, 132, 42, 0.28), transparent 68%);
}

.device-stage::after {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.44);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), transparent 42%),
    repeating-linear-gradient(
      90deg,
      transparent 0,
      transparent 30px,
      rgba(255, 255, 255, 0.08) 30px,
      rgba(255, 255, 255, 0.08) 31px
    );
  opacity: 0.65;
  pointer-events: none;
}

.device-stage-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.device-stage-head h2 {
  margin: 8px 0 0;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  letter-spacing: -0.04em;
  line-height: 1.04;
}

.device-stage-head p {
  margin: 10px 0 0;
  max-width: 26ch;
  color: var(--muted);
}

.device-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 18px;
  background: rgba(17, 50, 70, 0.9);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(17, 50, 70, 0.18);
}

.device-stack {
  position: relative;
  min-height: 500px;
}

.screen-card {
  position: absolute;
  overflow: hidden;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-lg);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.screen-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.screen-card.primary {
  inset: 34px 26px 32px 42px;
}

.screen-card.secondary {
  top: 188px;
  right: -8px;
  width: 238px;
  height: 308px;
  transform: rotate(7deg);
}

.screen-card.tertiary {
  left: -6px;
  bottom: 2px;
  width: 214px;
  height: 296px;
  transform: rotate(-8deg);
}

.screen-card:hover {
  box-shadow: 0 32px 72px rgba(15, 35, 49, 0.22);
}

.floating-note {
  position: absolute;
  z-index: 2;
  max-width: 260px;
  padding: 16px 18px;
  border-radius: 20px;
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-sm);
}

.floating-note strong {
  display: block;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: 1rem;
  letter-spacing: -0.03em;
}

.floating-note p {
  margin: 6px 0 0;
  font-size: 0.92rem;
}

.floating-note.discovery {
  top: 116px;
  left: -2px;
  background: rgba(255, 250, 245, 0.92);
}

.floating-note.routing {
  right: 22px;
  bottom: 34px;
  background: rgba(17, 50, 70, 0.92);
  color: #fff;
}

.floating-note.routing p {
  color: rgba(255, 255, 255, 0.78);
}

.scan-card {
  padding: 22px;
}

.scan-card-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
}

.scan-card h3 {
  margin: 10px 0 0;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: 1.55rem;
  letter-spacing: -0.04em;
}

.scan-card p {
  margin: 12px 0 0;
}

.scan-qr-wrap {
  display: grid;
  gap: 16px;
  justify-items: center;
  margin-top: 20px;
  padding: 20px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(45, 103, 173, 0.08), rgba(255, 255, 255, 0.64)),
    rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(45, 103, 173, 0.12);
}

.scan-qr-wrap img.qr-code {
  width: min(100%, 240px);
  border-radius: 18px;
}

.play-badge img {
  width: 214px;
  height: auto;
}

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

.scan-link {
  min-height: 44px;
  padding: 0 16px;
  color: var(--primary-strong);
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(45, 103, 173, 0.14);
  font-weight: 800;
}

.section-panel {
  padding: 32px;
  margin-top: 26px;
}

.section-heading {
  margin-top: 14px;
  font-size: clamp(2.1rem, 4.4vw, 3.6rem);
  line-height: 0.95;
}

.section-copy {
  max-width: 62ch;
  margin-top: 14px;
  font-size: 1.02rem;
}

.story-stack {
  margin-top: 26px;
}

.story-card {
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  align-items: start;
  padding: 18px;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.story-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 68px rgba(15, 35, 49, 0.16);
}

.story-card:nth-child(even) {
  grid-template-columns: minmax(320px, 1fr) minmax(0, 0.9fr);
}

.story-card:nth-child(even) .story-copy {
  order: 2;
}

.story-card:nth-child(even) .story-media {
  order: 1;
}

.story-copy {
  padding: 8px 10px 6px 6px;
}

.story-index {
  color: #8f4c11;
  background: rgba(229, 132, 42, 0.14);
}

.story-copy h3 {
  margin-top: 18px;
  max-width: 15ch;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 0.98;
}

.story-copy p {
  max-width: 48ch;
  margin: 14px 0 0;
}

.story-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.story-list li {
  position: relative;
  margin-top: 10px;
  padding-left: 18px;
  color: var(--muted);
}

.story-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
}

.story-media {
  position: relative;
  overflow: hidden;
  min-height: 390px;
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(245, 236, 219, 0.6), rgba(216, 236, 250, 0.6)),
    #fff;
}

.story-frame,
.coverage-frame {
  width: 100%;
  height: 100%;
}

.story-frame img,
.coverage-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.story-media.media-neighborhoods {
  min-height: 350px;
}

.story-media.media-neighborhoods img {
  object-position: center 16%;
}

.story-media.media-compare {
  min-height: 360px;
}

.story-media.media-compare img {
  object-position: center top;
}

.story-media.media-trip {
  min-height: 370px;
}

.story-media.media-trip img {
  object-position: center top;
}

.story-bubble {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  padding: 16px 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-sm);
}

.story-bubble strong {
  display: block;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: 1.02rem;
}

.story-bubble span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.92rem;
}

.coverage-grid {
  margin-top: 24px;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  align-items: stretch;
}

.coverage-card {
  padding: 24px;
}

.coverage-card.visual {
  min-height: 0;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at top left, rgba(229, 132, 42, 0.08), transparent 24%),
    linear-gradient(180deg, rgba(250, 246, 239, 0.98), rgba(240, 233, 220, 0.92));
}

.story-frame,
.coverage-frame {
  width: min(100%, 360px);
  aspect-ratio: 449 / 1000;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(22, 32, 43, 0.08);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 28px 68px rgba(15, 35, 49, 0.16);
}

.coverage-badge {
  position: absolute;
  top: 22px;
  left: 22px;
  color: #0e4a3e;
  background: rgba(209, 242, 222, 0.92);
}

.coverage-copy h3 {
  margin-top: 18px;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 0.98;
}

.coverage-copy p {
  margin-top: 14px;
  max-width: 42ch;
}

.coverage-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.business-panel {
  background:
    radial-gradient(circle at top right, rgba(229, 132, 42, 0.12), transparent 26%),
    linear-gradient(180deg, rgba(255, 251, 245, 0.92), rgba(237, 248, 255, 0.8));
}

.business-grid {
  margin-top: 26px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.business-footer {
  display: flex;
  justify-content: center;
  margin-top: 22px;
}

.business-card {
  display: flex;
  flex-direction: column;
  padding: 24px;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.business-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 68px rgba(15, 35, 49, 0.16);
}

.plan-label {
  color: #8f4c11;
  background: rgba(229, 132, 42, 0.14);
}

.plan-label.featured {
  color: #0f4f86;
  background: rgba(45, 103, 173, 0.12);
}

.plan-label.events {
  color: #0e4a3e;
  background: rgba(47, 140, 103, 0.14);
}

.business-card h3 {
  margin-top: 18px;
  font-size: 1.6rem;
  line-height: 1;
}

.business-card p {
  margin-top: 12px;
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-top: 18px;
}

.price-row strong {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: 2.2rem;
  letter-spacing: -0.05em;
}

.price-row span {
  color: var(--muted);
  font-weight: 700;
}

.business-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.business-list li {
  position: relative;
  margin-top: 10px;
  padding-left: 18px;
  color: var(--muted);
}

.business-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
}

.business-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: auto;
  padding-top: 24px;
}

.business-actions .button,
.business-actions .button-secondary {
  width: 100%;
}

.footer-grid {
  margin-top: 26px;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
}

.footer-cta,
.footer-meta {
  padding: 26px;
}

.footer-cta {
  background:
    linear-gradient(135deg, rgba(17, 50, 70, 0.96), rgba(37, 84, 120, 0.94)),
    var(--surface-dark);
  color: #fff;
}

.footer-cta::after {
  content: "";
  position: absolute;
  inset: auto -40px -80px auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(229, 132, 42, 0.4), transparent 70%);
}

.footer-cta .section-kicker {
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.12);
}

.footer-cta h2 {
  margin-top: 16px;
  max-width: 14ch;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 0.96;
}

.footer-copy {
  margin-top: 14px;
  max-width: 54ch;
  color: rgba(255, 255, 255, 0.78);
}

.footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.footer-cta .button-secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
}

.footer-meta {
  display: grid;
  align-content: start;
  gap: 18px;
}

.footer-meta h3 {
  margin: 0;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: 1.4rem;
  letter-spacing: -0.04em;
}

.footer-meta p {
  margin: 10px 0 0;
}

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

.footer-link {
  color: var(--primary-strong);
}

.footer-meta strong {
  display: block;
  margin-bottom: 6px;
  font-size: 0.95rem;
}

.footer-meta a {
  color: var(--primary-strong);
}

.mobile-cta {
  position: fixed;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 50;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 14px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(22, 32, 43, 0.08);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(18px);
}

.mobile-cta strong {
  display: block;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: 1rem;
  letter-spacing: -0.03em;
}

.mobile-cta span {
  color: var(--muted);
  font-size: 0.82rem;
}

.mobile-cta .button {
  min-height: 46px;
  padding: 0 16px;
  flex-shrink: 0;
}

.has-motion [data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.has-motion [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1180px) {
  .hero-grid,
  .footer-grid,
  .coverage-grid {
    grid-template-columns: 1fr;
  }

  .device-stage {
    min-height: 580px;
  }

  .coverage-card.visual {
    padding: 20px;
  }

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

@media (max-width: 920px) {
  .landing-shell {
    width: min(calc(100% - 22px), var(--content));
    padding-top: 16px;
  }

  .site-header {
    position: static;
    flex-wrap: wrap;
  }

  .header-nav {
    order: 3;
    justify-content: flex-start;
    width: 100%;
  }

  .hero-panel,
  .section-panel,
  .footer-cta,
  .footer-meta {
    padding: 24px;
  }

  .metrics-grid,
  .business-grid {
    grid-template-columns: 1fr;
  }

  .story-card,
  .story-card:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .story-card:nth-child(even) .story-copy,
  .story-card:nth-child(even) .story-media {
    order: initial;
  }

  .story-media {
    min-height: 420px;
  }

  .story-media.media-neighborhoods,
  .story-media.media-compare,
  .story-media.media-trip {
    min-height: 360px;
  }

  .coverage-card.visual {
    padding: 18px;
  }

  .story-frame,
  .coverage-frame {
    width: min(100%, 420px);
  }
}

@media (min-width: 921px) {
  .story-media,
  .coverage-card.visual {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
  }

  .story-media,
  .coverage-card.visual {
    background:
      radial-gradient(circle at top left, rgba(229, 132, 42, 0.08), transparent 24%),
      linear-gradient(180deg, rgba(250, 246, 239, 0.98), rgba(240, 233, 220, 0.92));
  }
}

@media (max-width: 720px) {
  .hero-copy h1 {
    max-width: 100%;
    font-size: clamp(2.6rem, 13vw, 4rem);
    line-height: 1.01;
  }

  .header-actions {
    width: 100%;
  }

  .header-actions .button {
    width: 100%;
  }

  .device-stage {
    min-height: 520px;
    padding: 18px;
  }

  .device-stage-head {
    flex-direction: column;
  }

  .device-stack {
    min-height: 400px;
  }

  .screen-card.primary {
    inset: 18px 10px 24px 18px;
  }

  .screen-card.secondary {
    top: 176px;
    right: -2px;
    width: 166px;
    height: 220px;
  }

  .screen-card.tertiary {
    width: 144px;
    height: 204px;
  }

  .floating-note {
    display: none;
  }

  .story-media {
    min-height: 320px;
  }

  .story-media.media-neighborhoods,
  .story-media.media-compare,
  .story-media.media-trip {
    min-height: 300px;
  }

  .coverage-card.visual {
    padding: 16px;
  }

  .story-frame,
  .coverage-frame {
    width: min(100%, 400px);
  }

  .footer-actions,
  .hero-actions,
  .scan-links {
    flex-direction: column;
    align-items: stretch;
  }

  .button,
  .button-secondary,
  .button-ghost,
  .scan-link {
    width: 100%;
  }

  .mobile-cta {
    display: flex;
  }
}

@media (max-width: 560px) {
  .landing-shell {
    padding-bottom: 126px;
  }

  .brand-link {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .brand-link img.brand-banner {
    width: min(100%, 220px);
  }

  .header-nav {
    gap: 6px;
  }

  .header-nav a {
    padding: 8px 12px;
    font-size: 0.88rem;
  }

  .site-header,
  .hero-panel,
  .section-panel,
  .footer-cta,
  .footer-meta {
    border-radius: 24px;
  }

  .story-media {
    min-height: 270px;
  }

  .story-media.media-neighborhoods,
  .story-media.media-compare,
  .story-media.media-trip {
    min-height: 258px;
  }

  .coverage-card.visual {
    padding: 14px;
  }

  .story-frame,
  .coverage-frame {
    width: 100%;
    border-radius: 24px;
  }

  .section-heading {
    font-size: clamp(1.9rem, 10vw, 2.7rem);
  }

  .play-badge img {
    width: 192px;
  }

  .footer-grid {
    gap: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .has-motion [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
