:root {
  --ink: #18181a;
  --ink-strong: #0b0b0c;
  --graphite: #111113;
  --graphite-soft: #1a1a1d;
  --muted: #6d6b72;
  --muted-light: #aaa7ae;
  --paper: #ffffff;
  --surface: #f6f6f5;
  --surface-strong: #efefee;
  --purple: #a956f7;
  --purple-dark: #8531d5;
  --purple-soft: #f5ecfd;
  --line: #e4e2e6;
  --line-strong: #d2cfd5;
  --shell: min(1240px, calc(100% - 48px));
  --section-space: clamp(88px, 10vw, 152px);
  --radius-sm: 8px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --shadow-sm: 0 18px 46px rgba(15, 14, 17, 0.08);
  --shadow-lg: 0 48px 120px rgba(15, 14, 17, 0.17);
  --font-sans:
    Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  max-width: 100%;
  overflow-x: clip;
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
}

body {
  margin: 0;
  max-width: 100%;
  overflow-x: clip;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--purple);
  outline-offset: 4px;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.icon {
  width: 1em;
  height: 1em;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  transform: translateY(-170%);
  border-radius: 999px;
  background: var(--paper);
  padding: 11px 17px;
  color: var(--ink-strong);
  font-weight: 750;
  transition: transform 180ms ease;
}

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

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.section {
  padding-block: var(--section-space);
}

.eyebrow {
  margin: 0 0 17px;
  color: var(--purple-dark);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow-light {
  color: #cf9bff;
}

.section-lead {
  margin: 25px 0 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.75;
}

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  width: 100%;
  border-bottom: 1px solid transparent;
  color: var(--ink);
  transition:
    background-color 220ms ease,
    border-color 220ms ease,
    color 220ms ease,
    box-shadow 220ms ease;
}

.site-header.is-over-hero:not(.is-menu-open) {
  color: white;
}

.site-header.is-over-hero:not(.is-menu-open) .brand-mark {
  filter: brightness(0) invert(1);
}

.site-header.is-over-hero.is-scrolled:not(.is-menu-open) {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(11, 11, 12, 0.72);
  box-shadow: 0 14px 45px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(18px);
}

.site-header:not(.is-over-hero),
.site-header.is-menu-open {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  box-shadow: 0 12px 38px rgba(15, 14, 17, 0.06);
  backdrop-filter: blur(18px);
}

.site-header.is-menu-open .brand-mark {
  filter: none;
}

.header-inner {
  display: flex;
  min-width: 0;
  min-height: 76px;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 2px;
  font-size: 1.45rem;
  font-weight: 760;
  line-height: 1;
}

.brand-mark {
  width: 34px;
  transition: filter 220ms ease;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-left: auto;
  font-size: 0.8rem;
  font-weight: 650;
}

.desktop-nav a,
.header-login {
  opacity: 0.7;
  transition: opacity 160ms ease;
}

.desktop-nav a:hover,
.header-login:hover {
  opacity: 1;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-login {
  font-size: 0.8rem;
  font-weight: 700;
}

.button {
  display: inline-flex;
  max-width: 100%;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 19px;
  font-size: 0.86rem;
  font-weight: 750;
  line-height: 1.15;
  text-align: center;
  transition:
    transform 170ms ease,
    background-color 170ms ease,
    border-color 170ms ease,
    color 170ms ease,
    box-shadow 170ms ease;
}

.button .icon {
  width: 1rem;
  height: 1rem;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary,
.button-dark {
  background: var(--ink-strong);
  color: white;
  box-shadow: 0 15px 36px -20px rgba(0, 0, 0, 0.82);
}

.site-header.is-over-hero:not(.is-menu-open) .button-primary {
  background: white;
  color: var(--ink-strong);
}

.button-primary:hover,
.button-dark:hover {
  background: var(--purple-dark);
  box-shadow: 0 18px 42px -20px rgba(169, 86, 247, 0.8);
}

.button-light {
  background: white;
  color: var(--ink-strong);
  box-shadow: 0 18px 42px -20px rgba(0, 0, 0, 0.62);
}

.button-light:hover {
  color: var(--purple-dark);
  box-shadow: 0 22px 46px -20px rgba(169, 86, 247, 0.72);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.04);
  color: white;
}

.button-ghost:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.09);
}

.button-small {
  min-height: 39px;
  padding-inline: 15px;
  font-size: 0.76rem;
}

.button-large {
  min-height: 54px;
  padding-inline: 24px;
  font-size: 0.9rem;
}

.menu-button {
  display: none;
  position: relative;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  opacity: 0.86;
  flex: 0 0 auto;
}

.menu-button span {
  position: absolute;
  width: 17px;
  height: 1.5px;
  background: currentColor;
  transition: transform 180ms ease;
}

.menu-button span:first-child {
  transform: translateY(-3px);
}

.menu-button span:last-child {
  transform: translateY(3px);
}

.menu-button[aria-expanded="true"] span:first-child {
  transform: rotate(45deg);
}

.menu-button[aria-expanded="true"] span:last-child {
  transform: rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  z-index: 95;
  inset: 76px 0 auto;
  display: grid;
  max-height: calc(100svh - 76px);
  overflow-y: auto;
  border-top: 1px solid var(--line);
  background: white;
  padding: 14px 20px 24px;
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}

.mobile-menu[hidden] {
  display: none;
}

.mobile-menu a {
  border-bottom: 1px solid var(--line);
  padding: 15px 2px;
  font-size: 0.94rem;
  font-weight: 680;
}

.mobile-menu-primary {
  margin-top: 12px;
  border: 0 !important;
  border-radius: 999px;
  background: var(--ink-strong);
  padding-inline: 18px !important;
  color: white;
  text-align: center;
}

/* Hero */
.hero {
  --hero-progress: 0;
  --hero-copy-opacity: 1;
  --hero-product-opacity: 0;
  --hero-product-scale: 0.9;
  --hero-video-opacity: 1;
  --hero-beats-opacity: 0;
  position: relative;
  height: 250svh;
  background: var(--ink-strong);
  color: white;
}

.hero-pin {
  position: sticky;
  top: 0;
  min-height: 100svh;
  overflow: clip;
  isolation: isolate;
  background:
    linear-gradient(115deg, #0b0b0c 0%, #111012 56%, #151318 100%);
}

.hero-video-layer {
  position: absolute;
  z-index: -4;
  inset: 0;
  overflow: hidden;
  background: #0b0b0c;
  opacity: var(--hero-video-opacity);
  transition: opacity 360ms ease;
  pointer-events: none;
}

.hero-video-layer::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(11, 11, 12, 0.96) 0%, rgba(11, 11, 12, 0.78) 34%, rgba(11, 11, 12, 0.22) 64%, rgba(11, 11, 12, 0.32) 100%),
    linear-gradient(180deg, rgba(11, 11, 12, 0.08), rgba(11, 11, 12, 0.34));
  content: "";
}

.hero-video-poster,
.hero-video {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-video-poster {
  opacity: 1;
  transition: opacity 280ms ease;
}

.hero-video {
  opacity: 0;
  transition: opacity 280ms ease;
  pointer-events: none;
}

.hero.is-video-ready .hero-video-poster {
  opacity: 0;
}

.hero.is-video-ready .hero-video {
  opacity: 1;
}

.hero-grid {
  position: absolute;
  z-index: -3;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 88%);
}

.hero-vignette {
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    radial-gradient(circle at 73% 49%, rgba(169, 86, 247, 0.12), transparent 32%),
    linear-gradient(90deg, rgba(11, 11, 12, 0.12), transparent 55%);
  pointer-events: none;
}

.hero-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(390px, 0.86fr) minmax(540px, 1.14fr);
  gap: clamp(48px, 6vw, 90px);
  min-height: 100svh;
  align-items: center;
  padding-block: 112px 96px;
}

.hero-copy {
  position: relative;
  z-index: 5;
  min-width: 0;
  max-width: 590px;
  opacity: var(--hero-copy-opacity);
  transform: translate3d(0, calc(var(--hero-progress) * -20px), 0);
  transition: opacity 100ms linear;
}

.launch-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  padding: 8px 13px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.7rem;
  font-weight: 730;
  backdrop-filter: blur(12px);
}

.launch-badge span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--purple);
  box-shadow: 0 0 0 5px rgba(169, 86, 247, 0.16);
}

.hero-kicker {
  margin: 31px 0 14px;
  color: #c98cff;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(4rem, 7vw, 7.2rem);
  font-weight: 710;
  letter-spacing: 0;
  line-height: 0.92;
}

.hero-description {
  max-width: 560px;
  margin: 27px 0 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: clamp(1rem, 1.35vw, 1.12rem);
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.free-proof {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.75rem;
}

.free-proof .icon {
  color: var(--purple);
}

.hero-product-window {
  position: absolute;
  z-index: 10;
  top: 50%;
  left: 50%;
  width: min(960px, calc(100% - 96px));
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  background: white;
  box-shadow: 0 60px 140px rgba(0, 0, 0, 0.58);
  opacity: var(--hero-product-opacity);
  transform: translate(-50%, -50%) scale(var(--hero-product-scale));
  pointer-events: none;
}

.hero-product-window img,
.demo-window img,
.hub-window img,
.showcase-screen img {
  width: 100%;
  height: auto;
}

.product-browser-bar {
  display: grid;
  grid-template-columns: 7px 7px 7px 1fr;
  gap: 6px;
  align-items: center;
  min-height: 38px;
  border-bottom: 1px solid #e9e7ea;
  background: #fbfbfb;
  padding: 0 14px;
}

.product-browser-bar > span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #d2cfd5;
}

.product-browser-bar > span:nth-child(2) {
  background: var(--purple);
}

.product-browser-bar small {
  margin-left: 6px;
  color: #8b8990;
  font-size: 0.6rem;
}

.hero-beats {
  position: absolute;
  z-index: 20;
  top: 50%;
  left: 50%;
  display: grid;
  width: min(980px, calc(100% - 96px));
  min-height: 170px;
  align-items: center;
  justify-items: center;
  opacity: var(--hero-beats-opacity);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.hero-beats p {
  grid-area: 1 / 1;
  margin: 0;
  max-width: 920px;
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(2.5rem, 4.5vw, 5rem);
  font-weight: 680;
  line-height: 1.02;
  text-align: center;
  text-shadow: 0 12px 42px rgba(0, 0, 0, 0.72);
  opacity: 0;
  transform: translateY(18px) scale(0.985);
  transition:
    opacity 320ms ease,
    transform 420ms ease;
}

.hero-beats p.is-active {
  opacity: 1;
  transform: none;
}

.scroll-meter {
  position: absolute;
  z-index: 20;
  bottom: 44px;
  left: 0;
  width: 96px;
  height: 2px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.15);
}

.scroll-meter span {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(var(--hero-progress));
  transform-origin: left;
  background: var(--purple);
}

/* Product story */
.product-story {
  --demo-progress: 0;
  position: relative;
  height: 178svh;
  background: var(--surface);
}

.product-story-pin {
  position: sticky;
  top: 0;
  display: grid;
  min-height: 100svh;
  align-items: center;
  overflow: clip;
}

.product-story-layout {
  display: grid;
  grid-template-columns: minmax(340px, 0.78fr) minmax(600px, 1.22fr);
  gap: clamp(48px, 6vw, 84px);
  align-items: center;
  padding-block: 108px 70px;
}

.product-story-copy h2,
.problem h2,
.residents h2,
.business-section h2,
.showcase h2,
.plans h2,
.how h2,
.local-motion h2,
.faq h2,
.closing h2 {
  margin: 0;
  font-size: clamp(2.8rem, 5.7vw, 5.8rem);
  font-weight: 690;
  letter-spacing: 0;
  line-height: 0.97;
}

.product-story-copy > p:last-of-type {
  margin: 25px 0 0;
  color: var(--muted);
  line-height: 1.72;
}

.product-story-copy h2 {
  max-width: 460px;
  font-size: clamp(3rem, 4.6vw, 4.8rem);
}

.demo-steps {
  display: grid;
  margin: 34px 0 0;
  padding: 0;
  border-top: 1px solid var(--line-strong);
  list-style: none;
}

.demo-steps li {
  display: grid;
  grid-template-columns: 35px 1fr;
  gap: 15px;
  align-items: center;
  border-bottom: 1px solid var(--line-strong);
  padding: 15px 0;
  color: var(--muted);
  opacity: 0.48;
  transition:
    color 240ms ease,
    opacity 240ms ease;
}

.demo-steps li.is-active {
  color: var(--ink);
  opacity: 1;
}

.demo-steps li > span {
  color: var(--purple-dark);
  font-size: 0.66rem;
  font-weight: 800;
}

.demo-steps li div {
  display: grid;
  gap: 3px;
}

.demo-steps strong {
  font-size: 0.9rem;
}

.demo-steps small {
  color: var(--muted);
  font-size: 0.76rem;
}

.demo-cta {
  width: fit-content;
  margin-top: 28px;
}

.demo-stage {
  position: relative;
  min-width: 0;
  transform: translateY(calc((var(--demo-progress) - 0.5) * -12px));
}

.demo-search {
  position: absolute;
  z-index: 8;
  top: -28px;
  left: 50%;
  display: grid;
  grid-template-columns: 18px 1fr auto;
  gap: 10px;
  align-items: center;
  width: min(520px, 84%);
  min-height: 58px;
  transform: translateX(-50%);
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  padding: 0 9px 0 18px;
  color: var(--muted);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(14px);
  opacity: 0.68;
  transition:
    border-color 320ms ease,
    box-shadow 320ms ease,
    opacity 320ms ease;
}

.demo-stage[data-state="0"] .demo-search {
  border-color: rgba(169, 86, 247, 0.42);
  box-shadow:
    0 18px 46px rgba(15, 14, 17, 0.1),
    0 0 0 4px rgba(169, 86, 247, 0.08);
  opacity: 1;
}

.demo-search .icon {
  width: 17px;
  height: 17px;
}

.demo-search > span {
  overflow: hidden;
  font-size: 0.76rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.demo-search-action {
  border-radius: 999px;
  background: var(--ink-strong);
  padding: 10px 15px;
  color: white;
  font-size: 0.65rem;
}

.demo-window {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 25px;
  background: white;
  box-shadow: var(--shadow-lg);
}

.demo-image-viewport {
  position: relative;
  overflow: hidden;
}

.demo-image-viewport img {
  transform: scale(1.005);
  transform-origin: center top;
  transition:
    transform 600ms ease,
    transform-origin 600ms ease;
}

.demo-stage[data-state="1"] .demo-image-viewport img {
  transform: translateY(-3%) scale(1.06);
  transform-origin: center 66%;
}

.demo-stage[data-state="2"] .demo-image-viewport img {
  transform: translateY(-1%) scale(1.055);
  transform-origin: 34% 43%;
}

.demo-signal {
  position: absolute;
  z-index: 7;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  padding: 10px 14px;
  color: var(--ink);
  font-size: 0.7rem;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
  opacity: 0.44;
  transform: scale(0.97);
  transition:
    border-color 320ms ease,
    box-shadow 320ms ease,
    opacity 320ms ease,
    transform 320ms ease;
}

.demo-signal .icon {
  color: var(--purple-dark);
}

.demo-signal-one {
  right: -18px;
  bottom: 15%;
}

.demo-signal-two {
  top: 42%;
  left: -18px;
}

.demo-stage[data-state="1"] .demo-signal-one,
.demo-stage[data-state="2"] .demo-signal-two {
  border-color: rgba(169, 86, 247, 0.36);
  box-shadow:
    0 18px 46px rgba(15, 14, 17, 0.1),
    0 0 0 4px rgba(169, 86, 247, 0.08);
  opacity: 1;
  transform: translateY(-2px) scale(1);
}

.demo-disclaimer,
.showcase-caption {
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 0.66rem;
  text-align: center;
}

/* Problem */
.problem {
  background: white;
}

.problem-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(520px, 1.22fr);
  gap: clamp(70px, 10vw, 140px);
  align-items: center;
}

.problem-copy {
  max-width: 530px;
}

.problem-copy > p:last-child {
  margin: 26px 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.problem-fragments {
  position: relative;
  min-height: 500px;
}

.fragment {
  position: absolute;
  margin: 0;
  border: 1px solid var(--line);
  background: white;
  box-shadow: var(--shadow-sm);
}

blockquote.fragment {
  max-width: 310px;
  border-radius: 22px 22px 22px 7px;
  padding: 17px 20px;
  font-size: 0.86rem;
  font-weight: 650;
}

.fragment-question {
  top: 15px;
  left: 0;
  transform: rotate(-1.5deg);
}

.fragment-contact {
  right: 0;
  bottom: 35px;
  transform: rotate(1.5deg);
}

article.fragment {
  display: grid;
  gap: 7px;
  width: min(350px, 70%);
  border-radius: 22px;
  padding: 23px;
}

article.fragment span {
  color: var(--purple-dark);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

article.fragment strong {
  font-size: 1rem;
}

article.fragment small {
  color: var(--muted);
}

.fragment-profile {
  top: 115px;
  right: 2%;
  transform: rotate(2deg);
}

.fragment-note {
  bottom: 70px;
  left: 2%;
  transform: rotate(-2deg);
}

.problem-conclusion {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: clamp(70px, 9vw, 120px);
  border-top: 1px solid var(--line-strong);
  padding-top: 30px;
  color: var(--muted);
  font-size: clamp(1rem, 1.8vw, 1.3rem);
}

.problem-conclusion strong {
  color: var(--ink);
}

/* Residents */
.residents {
  background: var(--surface);
}

.residents-layout {
  display: grid;
  grid-template-columns: minmax(390px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(70px, 10vw, 145px);
  align-items: center;
}

.phone-composition {
  position: relative;
  display: grid;
  min-height: 610px;
  place-items: center;
}

.phone-frame {
  position: relative;
  z-index: 2;
  width: min(330px, 76%);
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 27px;
  background: white;
  box-shadow: var(--shadow-lg);
}

.phone-frame figcaption {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  padding: 0 16px;
}

.phone-frame figcaption span {
  font-size: 0.75rem;
  font-weight: 750;
}

.phone-frame figcaption small {
  color: var(--muted);
  font-size: 0.62rem;
}

.phone-frame img {
  width: 100%;
  height: auto;
}

.phone-orbit {
  position: absolute;
  width: 82%;
  aspect-ratio: 1;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  transform: rotate(-14deg) scaleY(0.66);
}

.phone-label {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  padding: 11px 15px;
  font-size: 0.7rem;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(12px);
}

.phone-label .icon {
  color: var(--purple-dark);
}

.phone-label-search {
  top: 21%;
  right: 1%;
}

.phone-label-favorites {
  bottom: 17%;
  left: 0;
}

.phone-label-location {
  right: 5%;
  bottom: 7%;
}

.residents-copy {
  max-width: 610px;
}

.feature-lines {
  margin: 38px 0 30px;
  border-top: 1px solid var(--line-strong);
}

.feature-lines article {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 16px;
  align-items: start;
  border-bottom: 1px solid var(--line-strong);
  padding: 21px 0;
}

.feature-lines article > .icon {
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 11px;
  padding: 8px;
  background: white;
  color: var(--purple-dark);
}

.feature-lines strong {
  font-size: 0.92rem;
}

.feature-lines p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.58;
}

/* Business */
.business-section {
  overflow: hidden;
  background: var(--ink-strong);
  color: white;
}

.business-layout {
  display: grid;
  grid-template-columns: minmax(330px, 0.72fr) minmax(570px, 1.28fr);
  gap: clamp(60px, 8vw, 120px);
  align-items: center;
}

.business-copy {
  position: relative;
  z-index: 5;
  max-width: 540px;
}

.business-copy .section-lead {
  color: rgba(255, 255, 255, 0.62);
}

.business-benefits {
  display: grid;
  margin: 35px 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  list-style: none;
}

.business-benefits li {
  display: grid;
  grid-template-columns: 17px 1fr;
  gap: 11px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  padding: 14px 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.84rem;
}

.business-benefits .icon {
  margin-top: 2px;
  color: var(--purple);
}

.hub-composition {
  position: relative;
  min-width: 0;
  padding-block: 75px 80px;
}

.hub-window {
  margin: 0;
  overflow: hidden;
  border: 1px solid #363438;
  border-radius: 24px;
  background: #111;
  box-shadow: 0 55px 140px rgba(0, 0, 0, 0.56);
}

.hub-titlebar {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #302e32;
  padding: 0 17px;
}

.hub-titlebar span {
  font-size: 0.75rem;
  font-weight: 720;
}

.hub-titlebar small {
  color: #8c8990;
  font-size: 0.62rem;
}

.hub-tag {
  position: absolute;
  z-index: 4;
  border: 1px solid #3b383e;
  border-radius: 999px;
  background: rgba(25, 24, 27, 0.94);
  padding: 11px 15px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.7rem;
  font-weight: 680;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(14px);
}

.hub-tag-catalog {
  top: 19px;
  left: -22px;
}

.hub-tag-control {
  right: -12px;
  bottom: 30px;
}

/* Showcase */
.showcase {
  background: white;
}

.showcase-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  gap: 70px;
  align-items: end;
}

.showcase-heading > p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.showcase-stage {
  position: relative;
  min-height: 790px;
  margin-top: 70px;
}

.showcase-screen {
  position: absolute;
  top: 65px;
  left: 50%;
  width: min(980px, 82%);
  margin: 0;
  overflow: hidden;
  transform: translateX(-50%);
  border: 1px solid var(--line);
  border-radius: 27px;
  background: white;
  box-shadow: var(--shadow-lg);
}

.showcase-callout {
  position: absolute;
  z-index: 3;
  display: grid;
  width: 220px;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.96);
  padding: 17px;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(14px);
}

.showcase-callout span {
  color: var(--purple-dark);
  font-size: 0.62rem;
  font-weight: 800;
}

.showcase-callout strong {
  font-size: 0.86rem;
}

.callout-discovery {
  top: 10px;
  left: 0;
}

.callout-catalog {
  right: 0;
  bottom: 115px;
}

.callout-contact {
  bottom: 40px;
  left: 8%;
}

.showcase-caption {
  position: absolute;
  right: 0;
  bottom: 25px;
}

/* Plans */
.plans {
  background: var(--purple-soft);
}

.plans-heading {
  max-width: 920px;
  text-align: center;
}

.plans-heading > p:last-child {
  max-width: 690px;
  margin: 26px auto 0;
  color: var(--muted);
  line-height: 1.75;
}

.plan-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 18px;
  margin-top: 56px;
}

.plan-card {
  display: flex;
  min-height: 560px;
  flex-direction: column;
  border: 1px solid rgba(169, 86, 247, 0.18);
  border-radius: 28px;
  padding: clamp(27px, 4vw, 48px);
}

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

.plan-badge {
  color: #d29fff;
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.plan-card h3 {
  margin: 12px 0 0;
  font-size: clamp(1.8rem, 3vw, 2.65rem);
  line-height: 1.05;
}

.plan-free {
  background: var(--ink-strong);
  color: white;
  box-shadow: 0 35px 90px rgba(71, 28, 107, 0.18);
}

.plan-free header > p {
  display: grid;
  justify-items: end;
  margin: 0;
}

.plan-free header > p strong {
  font-size: clamp(2.3rem, 4vw, 3.7rem);
  line-height: 0.9;
}

.plan-free header > p span {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.68rem;
}

.plan-description {
  margin: 27px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.plan-free .plan-description {
  color: rgba(255, 255, 255, 0.63);
}

.plan-card ul {
  display: grid;
  gap: 13px;
  margin: 34px 0;
  padding: 0;
  list-style: none;
}

.plan-card li {
  display: grid;
  grid-template-columns: 17px 1fr;
  gap: 10px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
}

.plan-card li .icon {
  margin-top: 2px;
  color: var(--purple);
}

.plan-free .button {
  width: fit-content;
  margin-top: auto;
}

.plan-plus {
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  backdrop-filter: blur(12px);
}

.plan-plus .plan-badge {
  color: var(--purple-dark);
}

.plus-symbol {
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  border: 1px solid rgba(169, 86, 247, 0.28);
  border-radius: 16px;
  padding: 12px;
  fill: none;
  stroke: var(--purple-dark);
  stroke-linecap: round;
  stroke-width: 1.5;
}

.plus-message {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 14px;
  align-items: start;
  margin-top: 35px;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  padding-block: 25px;
}

.plus-message > .icon {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(169, 86, 247, 0.22);
  border-radius: 11px;
  padding: 8px;
  background: white;
  color: var(--purple-dark);
}

.plus-message p,
.plan-guarantee {
  margin: 0;
  color: var(--muted);
  font-size: 0.83rem;
  line-height: 1.65;
}

.plan-guarantee {
  margin-top: 25px;
  color: var(--ink);
  font-weight: 650;
}

.plan-unavailable {
  display: flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  border: 1px dashed var(--line-strong);
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 700;
}

/* How */
.how {
  background: white;
}

.how-heading {
  max-width: 840px;
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 60px;
}

.journey {
  display: flex;
  min-height: 480px;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: clamp(28px, 4vw, 45px);
}

.journey-business {
  background: var(--surface);
}

.journey header {
  display: grid;
  gap: 8px;
}

.journey header span {
  color: var(--purple-dark);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.journey header strong {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.journey ol {
  display: grid;
  margin: 34px 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.journey li {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 14px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding: 17px 0;
}

.journey li b {
  color: var(--purple-dark);
  font-size: 0.64rem;
}

.journey li span {
  font-size: 0.88rem;
  font-weight: 650;
}

.journey > a {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 9px;
  margin-top: auto;
  border-bottom: 1px solid currentColor;
  padding-bottom: 4px;
  font-size: 0.82rem;
  font-weight: 750;
}

/* Local motion */
.local-motion {
  position: relative;
  overflow: hidden;
  background: var(--graphite);
  padding-block: clamp(105px, 14vw, 190px);
  color: white;
}

.local-motion::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 70px 70px;
  content: "";
  mask-image: linear-gradient(to bottom, transparent, black 28%, black 72%, transparent);
}

.local-motion-track {
  position: absolute;
  top: 47%;
  left: 50%;
  display: flex;
  width: max-content;
  align-items: center;
  gap: 30px;
  transform: translate(-50%, -50%) rotate(-4deg);
  color: rgba(255, 255, 255, 0.05);
  font-size: clamp(5rem, 13vw, 12rem);
  font-weight: 760;
  white-space: nowrap;
}

.local-motion-track i {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--purple);
  opacity: 0.45;
}

.local-motion-copy {
  position: relative;
  z-index: 2;
  max-width: 920px;
}

.local-motion-copy > p:last-child {
  max-width: 620px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.75;
}

/* FAQ */
.faq {
  background: var(--surface);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(520px, 1.28fr);
  gap: clamp(70px, 10vw, 145px);
  align-items: start;
}

.faq-heading {
  position: sticky;
  top: 120px;
}

.faq-heading > p:last-child {
  margin: 25px 0 0;
  color: var(--muted);
}

.faq-list {
  border-top: 1px solid var(--line-strong);
}

.faq-list details {
  border-bottom: 1px solid var(--line-strong);
}

.faq-list summary {
  display: grid;
  grid-template-columns: 1fr 24px;
  gap: 20px;
  align-items: center;
  padding: 25px 0;
  font-size: 0.94rem;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary .icon {
  width: 19px;
  height: 19px;
  color: var(--purple-dark);
  transition: transform 180ms ease;
}

.faq-list details[open] summary .icon {
  transform: rotate(180deg);
}

.faq-list details p {
  max-width: 650px;
  margin: -5px 0 25px;
  color: var(--muted);
  font-size: 0.87rem;
  line-height: 1.7;
}

/* Closing */
.closing {
  position: relative;
  overflow: hidden;
  background: var(--ink-strong);
  padding-block: clamp(110px, 15vw, 200px);
  color: white;
}

.closing-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(1050px, 90vw);
  aspect-ratio: 2 / 1;
  transform: translate(-50%, -50%) rotate(-8deg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  box-shadow:
    0 0 120px rgba(169, 86, 247, 0.12),
    inset 0 0 120px rgba(169, 86, 247, 0.04);
}

.closing-inner {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  text-align: center;
}

.closing-mark {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 30px;
  font-size: 1.4rem;
  font-weight: 760;
}

.closing-mark img {
  width: 48px;
  filter: brightness(0) invert(1);
}

.closing h2 {
  max-width: 1050px;
  font-size: clamp(3.4rem, 7.8vw, 8rem);
}

.closing-inner > p:not(.eyebrow) {
  max-width: 600px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
}

.closing-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 38px;
}

/* Footer */
.site-footer {
  background: white;
  padding: 74px 0 25px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 42px;
}

.footer-brand > p {
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
}

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

.footer-column h2 {
  margin: 0 0 8px;
  font-size: 0.78rem;
}

.footer-column a {
  width: fit-content;
  color: var(--muted);
  font-size: 0.78rem;
}

.footer-column a:hover {
  color: var(--ink);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 68px;
  border-top: 1px solid var(--line);
  padding-top: 22px;
  color: var(--muted);
  font-size: 0.69rem;
}

.footer-bottom p {
  margin: 0;
}

/* Progressive enhancement */
.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 600ms ease,
    transform 600ms ease;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1160px) {
  .desktop-nav {
    display: none;
  }

  .header-actions {
    margin-left: auto;
  }

  .hero-layout {
    grid-template-columns: minmax(340px, 0.78fr) minmax(480px, 1.22fr);
    gap: 32px;
  }

  .product-story-layout {
    grid-template-columns: minmax(300px, 0.75fr) minmax(540px, 1.25fr);
    gap: 36px;
  }

  .business-layout {
    grid-template-columns: minmax(310px, 0.72fr) minmax(500px, 1.28fr);
    gap: 45px;
  }
}

@media (max-width: 1024px) {
  .hero-video-poster,
  .hero-video {
    transform: scale(1.04);
    transform-origin: center;
  }

  .hero-video-layer::after {
    background:
      linear-gradient(180deg, rgba(11, 11, 12, 0.76) 0%, rgba(11, 11, 12, 0.2) 54%, rgba(11, 11, 12, 0.56) 100%),
      linear-gradient(90deg, rgba(11, 11, 12, 0.7), rgba(11, 11, 12, 0.16));
  }
}

@media (max-width: 980px) {
  .hero {
    height: 190svh;
  }

  .hero-layout {
    grid-template-columns: minmax(0, 1fr);
    align-content: center;
    gap: 22px;
  }

  .hero-copy {
    max-width: 710px;
  }

  .hero h1 {
    max-width: 760px;
    font-size: clamp(4rem, 10vw, 6.5rem);
  }

  .hero-description {
    max-width: 650px;
  }

  .hero-product-window {
    top: 50%;
    left: 50%;
    width: min(720px, calc(100vw - 48px));
  }

  .hero-beats {
    top: 50%;
    left: 50%;
    right: auto;
    bottom: auto;
    width: calc(100% - 64px);
    min-height: 150px;
    align-items: center;
    justify-items: center;
    transform: translate(-50%, -50%);
  }

  .hero-beats p {
    max-width: 720px;
    font-size: clamp(2.2rem, 5.8vw, 3.8rem);
    font-weight: 680;
    line-height: 1.06;
    text-align: center;
    text-shadow: 0 10px 34px rgba(0, 0, 0, 0.86);
    transform: translateY(14px) scale(0.985);
  }

  .product-story {
    height: auto;
  }

  .product-story-pin {
    position: relative;
    min-height: auto;
  }

  .product-story-layout,
  .problem-layout,
  .residents-layout,
  .business-layout,
  .faq-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .product-story-layout {
    gap: 64px;
    padding-block: var(--section-space);
  }

  .product-story-copy,
  .problem-copy,
  .residents-copy,
  .business-copy {
    max-width: 730px;
  }

  .demo-stage {
    width: min(100%, 820px);
    margin-inline: auto;
    transform: none;
  }

  .problem-layout,
  .residents-layout,
  .business-layout {
    gap: 55px;
  }

  .problem-fragments {
    min-height: 450px;
  }

  .phone-composition {
    min-height: 590px;
  }

  .business-copy {
    order: 0;
  }

  .hub-composition {
    width: min(100%, 850px);
    padding-top: 50px;
  }

  .showcase-heading {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .showcase-heading > p {
    max-width: 650px;
  }

  .showcase-stage {
    min-height: 680px;
  }

  .showcase-screen {
    width: 88%;
  }

  .faq-layout {
    gap: 50px;
  }

  .faq-heading {
    position: relative;
    top: auto;
    max-width: 700px;
  }
}

@media (max-width: 760px) {
  :root {
    --shell: calc(100% - 40px);
    --section-space: 84px;
  }

  .header-inner {
    min-height: 68px;
  }

  .header-actions {
    display: none;
  }

  .menu-button {
    display: inline-flex;
    margin-left: auto;
  }

  .mobile-menu {
    inset-block-start: 68px;
    max-height: calc(100svh - 68px);
  }

  .hero {
    height: 200svh;
  }

  .hero-video-poster,
  .hero-video {
    transform: scale(1.08);
  }

  .hero-video-layer::after {
    background:
      linear-gradient(180deg, rgba(11, 11, 12, 0.7) 0%, rgba(11, 11, 12, 0.12) 38%, rgba(11, 11, 12, 0.2) 66%, rgba(11, 11, 12, 0.68) 100%),
      linear-gradient(90deg, rgba(11, 11, 12, 0.34), rgba(11, 11, 12, 0.08));
  }

  .hero-layout {
    min-height: 100svh;
    align-content: start;
    padding-block: 112px 82px;
  }

  .hero h1 {
    font-size: clamp(3.65rem, 16vw, 5.2rem);
    line-height: 0.94;
  }

  .hero-description {
    font-size: 0.95rem;
  }

  .hero-actions {
    display: grid;
  }

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

  .free-proof {
    justify-content: center;
    text-align: center;
  }

  .hero-product-window {
    top: 50%;
    left: 50%;
    width: min(630px, calc(100vw - 32px));
  }

  .hero-beats {
    top: 50%;
    left: 50%;
    right: auto;
    bottom: auto;
    width: calc(100% - 40px);
    min-height: 150px;
    align-items: center;
    justify-items: center;
    transform: translate(-50%, -50%);
  }

  .hero-beats p {
    max-width: 350px;
    font-size: clamp(1.85rem, 8vw, 2.65rem);
    font-weight: 680;
    line-height: 1.06;
    text-align: center;
    text-shadow: 0 10px 34px rgba(0, 0, 0, 0.86);
    transform: translateY(14px) scale(0.985);
  }

  .demo-cta {
    width: 100%;
  }

  .scroll-meter {
    bottom: 34px;
    width: 70px;
  }

  .product-story-copy h2,
  .problem h2,
  .residents h2,
  .business-section h2,
  .showcase h2,
  .plans h2,
  .how h2,
  .local-motion h2,
  .faq h2 {
    font-size: clamp(2.65rem, 12vw, 4rem);
  }

  .demo-search {
    top: -23px;
    width: 92%;
    min-height: 50px;
    padding-left: 14px;
  }

  .demo-search-action {
    padding: 8px 11px;
  }

  .demo-window {
    border-radius: 17px;
  }

  .demo-signal {
    display: none;
  }

  .problem-fragments {
    min-height: 500px;
  }

  article.fragment {
    width: 78%;
  }

  .problem-conclusion {
    display: grid;
    margin-top: 55px;
  }

  .phone-composition {
    min-height: 520px;
  }

  .phone-frame {
    width: min(300px, 80%);
    border-radius: 22px;
  }

  .phone-label-search {
    right: 0;
  }

  .phone-label-favorites {
    left: 0;
  }

  .hub-composition {
    padding-block: 50px 58px;
  }

  .hub-window {
    border-radius: 17px;
  }

  .hub-tag-catalog {
    left: -3px;
  }

  .hub-tag-control {
    right: -3px;
    bottom: 10px;
  }

  .showcase-stage {
    display: grid;
    min-height: auto;
    gap: 12px;
    margin-top: 45px;
  }

  .showcase-screen,
  .showcase-callout,
  .showcase-caption {
    position: relative;
    inset: auto;
    width: 100%;
    transform: none;
  }

  .showcase-screen {
    order: -1;
    border-radius: 17px;
  }

  .showcase-caption {
    margin-top: 2px;
    text-align: left;
  }

  .plan-grid,
  .how-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .plan-grid {
    margin-top: 42px;
  }

  .plan-card {
    min-height: auto;
    border-radius: 23px;
    padding: 25px;
  }

  .plan-card header {
    align-items: flex-end;
  }

  .plan-free .button,
  .plan-unavailable {
    width: 100%;
    margin-top: 24px;
  }

  .journey {
    min-height: 430px;
  }

  .local-motion-track {
    font-size: 5.5rem;
  }

  .faq-list summary {
    padding-block: 22px;
    font-size: 0.88rem;
  }

  .closing h2 {
    font-size: clamp(3.2rem, 15vw, 5rem);
  }

  .closing-actions {
    display: grid;
    width: 100%;
  }

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

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

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 430px) {
  :root {
    --shell: calc(100% - 32px);
  }

  .launch-badge {
    font-size: 0.64rem;
  }

  .hero-kicker {
    margin-top: 27px;
  }

  .product-browser-bar {
    min-height: 30px;
  }

  .demo-search > span {
    font-size: 0.67rem;
  }

  .problem-fragments {
    min-height: 525px;
  }

  blockquote.fragment {
    max-width: 250px;
  }

  article.fragment {
    width: 84%;
  }

  .phone-composition {
    min-height: 470px;
  }

  .phone-label {
    padding: 9px 12px;
    font-size: 0.64rem;
  }

  .phone-label-location {
    display: none;
  }

  .plan-card header {
    display: grid;
  }

  .plan-free header > p {
    justify-items: start;
  }

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

  .footer-brand {
    grid-column: auto;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .hero,
  .product-story {
    height: auto;
  }

  .hero-video-layer {
    display: block;
    opacity: 1;
  }

  .hero-video-poster {
    opacity: 1;
    transform: none;
  }

  .hero-video {
    display: none;
  }

  .hero-pin,
  .product-story-pin {
    position: relative;
    min-height: auto;
  }

  .hero-layout {
    min-height: 100svh;
  }

  .hero-copy {
    opacity: 1;
    transform: none;
  }

  .hero-beats,
  .scroll-meter,
  .hero-product-window {
    display: none;
  }

  .demo-stage,
  .demo-image-viewport img {
    transform: none !important;
  }

  .demo-search,
  .demo-signal {
    opacity: 1;
  }

  .demo-signal {
    transform: none;
  }

  .demo-steps li {
    opacity: 1;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}
