:root {
  color-scheme: light;
  --bg: #ffffff;
  --bg-deep: #f4f9ff;
  --bg-ink: #01285a;
  --surface: #ffffff;
  --surface-2: #f4f9ff;
  --surface-3: #e7f2ff;
  --surface-soft: rgb(0 117 254 / 5%);
  --line: rgb(1 40 90 / 14%);
  --line-strong: rgb(0 117 254 / 24%);
  --text: #01285a;
  --text-soft: #284a73;
  --muted: #5a6f89;
  --mint: #0075fe;
  --sea: #01285a;
  --peach: #0075fe;
  --lemon: #dfeeff;
  --lavender: #cfe4ff;
  --rose: #01285a;
  --ink-on-pastel: #ffffff;
  --shadow: 0 24px 70px rgb(1 40 90 / 12%);
  --shadow-soft: 0 14px 34px rgb(1 40 90 / 10%);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  margin: 0;
  min-width: 320px;
}

body.nav-open {
  overflow: hidden;
}

[id] {
  scroll-margin-top: 86px;
}

::selection {
  background: rgb(0 117 254 / 18%);
  color: var(--text);
}

a {
  color: inherit;
}

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

button,
input {
  font: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
summary:focus-visible {
  outline: 3px solid rgb(0 117 254 / 44%);
  outline-offset: 3px;
}

.site-header {
  align-items: center;
  background: rgb(255 255 255 / 88%);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
  color: var(--text);
  display: flex;
  gap: 18px;
  justify-content: space-between;
  left: 0;
  min-height: 70px;
  padding: 12px clamp(16px, 5vw, 64px);
  position: fixed;
  right: 0;
  top: 0;
  z-index: 30;
}

.brand {
  align-items: center;
  display: inline-flex;
  font-size: 1.42rem;
  font-weight: 950;
  gap: 10px;
  letter-spacing: 0;
  line-height: 1;
  text-decoration: none;
}

.brand-mark {
  display: block;
  height: 34px;
  object-fit: contain;
  width: 34px;
}

.site-nav {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: flex-end;
}

.site-nav a,
.nav-toggle {
  border-radius: 8px;
  font-weight: 850;
  text-decoration: none;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.site-nav a {
  color: var(--text-soft);
  padding: 10px 12px;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgb(0 117 254 / 8%);
  color: var(--sea);
}

.site-nav .nav-cta {
  background: rgb(0 117 254 / 8%);
  border: 1px solid rgb(0 117 254 / 32%);
  color: var(--mint);
  padding-inline: 18px;
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible {
  background: var(--mint);
  color: var(--ink-on-pastel);
}

.nav-toggle {
  background: var(--mint);
  border: 0;
  color: var(--ink-on-pastel);
  cursor: pointer;
  display: none;
  min-height: 42px;
  padding: 10px 12px;
}

.hero {
  align-items: center;
  background:
    linear-gradient(135deg, #ffffff 0%, #f5faff 58%, #eaf4ff 100%),
    linear-gradient(90deg, transparent 0%, rgb(0 117 254 / 8%) 46%, transparent 100%);
  color: var(--text);
  display: grid;
  gap: clamp(26px, 5vw, 70px);
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
  min-height: clamp(650px, 86vh, 860px);
  overflow: hidden;
  padding: 110px clamp(18px, 6vw, 76px) 42px;
  position: relative;
}

.hero::before {
  background-image:
    linear-gradient(rgb(1 40 90 / 5%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(1 40 90 / 5%) 1px, transparent 1px);
  background-size: 58px 58px;
  content: "";
  inset: 0;
  mask-image: linear-gradient(180deg, #000 0%, transparent 86%);
  opacity: 0.42;
  pointer-events: none;
  position: absolute;
}

.hero::after {
  background: linear-gradient(90deg, var(--mint), var(--peach), var(--lavender));
  bottom: 0;
  content: "";
  height: 1px;
  left: clamp(18px, 6vw, 76px);
  opacity: 0.56;
  position: absolute;
  right: clamp(18px, 6vw, 76px);
}

.hero-light {
  background: linear-gradient(180deg, transparent, rgb(0 117 254 / 12%), transparent);
  filter: blur(6px);
  height: 150%;
  opacity: 0.74;
  position: absolute;
  top: -25%;
  transform: rotate(-24deg);
  width: 70px;
}

.hero-light-one {
  left: 51%;
}

.hero-light-two {
  background: linear-gradient(180deg, transparent, rgb(1 40 90 / 10%), transparent);
  opacity: 0.54;
  right: 15%;
  transform: rotate(28deg);
}

.hero-copy,
.hero-device {
  position: relative;
  z-index: 2;
}

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

.eyebrow {
  color: var(--peach);
  font-size: 0.8rem;
  font-weight: 950;
  letter-spacing: 0;
  margin: 0 0 10px;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  color: var(--text);
  font-size: 6.4rem;
  letter-spacing: 0;
  line-height: 0.96;
  margin-bottom: 24px;
}

h2 {
  color: var(--text);
  font-size: 4.05rem;
  letter-spacing: 0;
  line-height: 1;
  margin-bottom: 18px;
}

h3 {
  color: var(--text);
  font-size: 1.42rem;
  letter-spacing: 0;
  line-height: 1.08;
  margin-bottom: 10px;
}

.hero-lead {
  color: var(--text-soft);
  font-size: 1.34rem;
  line-height: 1.42;
  max-width: 760px;
}

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

.button {
  align-items: center;
  border-radius: 8px;
  display: inline-flex;
  font-weight: 950;
  justify-content: center;
  line-height: 1.15;
  min-height: 48px;
  padding: 13px 18px;
  text-align: center;
  text-decoration: none;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease,
    transform 180ms ease;
  white-space: normal;
}

.button.primary {
  background: var(--mint);
  box-shadow: 0 16px 34px rgb(0 117 254 / 18%);
  color: var(--ink-on-pastel);
}

.button.secondary {
  background: #ffffff;
  border: 1px solid var(--line-strong);
  color: var(--text);
}

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

.button.primary:hover,
.button.primary:focus-visible {
  background: var(--lemon);
  box-shadow: 0 18px 40px rgb(1 40 90 / 12%);
  color: var(--text);
}

.button.secondary:hover,
.button.secondary:focus-visible {
  background: var(--surface-2);
  border-color: var(--line-strong);
}

.proof-pill {
  align-items: center;
  background: #ffffff;
  border: 1px solid rgb(0 117 254 / 18%);
  border-radius: 999px;
  color: var(--text-soft);
  display: inline-flex;
  flex-wrap: wrap;
  font-size: 0.9rem;
  font-weight: 850;
  gap: 8px;
  margin-top: 34px;
  padding: 9px 14px;
  text-decoration: none;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.proof-pill:hover,
.proof-pill:focus-visible {
  background: rgb(0 117 254 / 6%);
  border-color: rgb(0 117 254 / 38%);
  transform: translateY(-2px);
}

.proof-pill span {
  background: var(--mint);
  border-radius: 999px;
  box-shadow: 0 0 0 6px rgb(0 117 254 / 12%);
  height: 9px;
  width: 9px;
}

.proof-pill b {
  color: var(--mint);
}

.hero-device {
  min-height: 590px;
  place-self: end;
  width: min(100%, 430px);
}

.phone-frame {
  --phone-rotate: 1.4deg;
  animation: device-float 7s ease-in-out infinite;
  background:
    linear-gradient(160deg, #ffffff, #f1f7ff),
    var(--surface);
  border: 1px solid rgb(1 40 90 / 12%);
  border-radius: 30px;
  box-shadow: var(--shadow);
  height: 650px;
  margin-left: auto;
  max-width: 380px;
  overflow: hidden;
  padding: 10px;
  position: relative;
  transform: rotate(var(--phone-rotate));
}

.phone-frame::before {
  background: rgb(1 40 90 / 20%);
  border-radius: 999px;
  content: "";
  height: 5px;
  left: 50%;
  position: absolute;
  top: 17px;
  transform: translateX(-50%);
  width: 82px;
  z-index: 3;
}

.phone-frame::after {
  background: linear-gradient(110deg, transparent 0 42%, rgb(255 255 255 / 10%) 48%, transparent 56% 100%);
  content: "";
  inset: 10px;
  pointer-events: none;
  position: absolute;
  z-index: 2;
}

.phone-frame img {
  border-radius: 22px;
  filter: saturate(1.08) contrast(1.02);
  height: 100%;
  object-fit: cover;
  object-position: top center;
  width: 100%;
}

.ai-bubble {
  animation: bubble-pulse 2.9s ease-in-out infinite;
  background: var(--mint);
  border: 0;
  border-radius: 999px;
  bottom: 42%;
  box-shadow: 0 0 0 18px rgb(0 117 254 / 10%);
  color: var(--ink-on-pastel);
  cursor: pointer;
  font-weight: 950;
  left: 50%;
  min-height: 58px;
  min-width: 220px;
  padding: 14px 22px;
  position: absolute;
  transform: translateX(-50%);
  z-index: 4;
}

.qr-float {
  align-items: center;
  background: linear-gradient(145deg, #ffffff, #dfeeff);
  border: 1px solid rgb(1 40 90 / 12%);
  border-radius: 12px;
  bottom: 58px;
  box-shadow: 0 16px 38px rgb(1 40 90 / 16%);
  display: flex;
  height: 78px;
  justify-content: center;
  position: absolute;
  right: -8px;
  transform: rotate(3deg);
  width: 78px;
}

.qr-float span {
  background:
    linear-gradient(90deg, #04111c 50%, transparent 0) 0 0 / 12px 12px,
    linear-gradient(#04111c 50%, transparent 0) 0 0 / 12px 12px,
    #f5fbff;
  border: 7px solid #04111c;
  height: 54px;
  width: 54px;
}

.audience-strip {
  background: var(--surface-2);
  border-block: 1px solid var(--line);
  color: var(--text);
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 1px clamp(18px, 6vw, 76px);
}

.audience-strip article {
  background:
    linear-gradient(180deg, #ffffff, #f9fcff),
    var(--surface);
  padding: 26px 24px;
}

.audience-strip span {
  color: var(--mint);
  display: block;
  font-size: 0.78rem;
  font-weight: 950;
  margin-bottom: 9px;
  text-transform: uppercase;
}

.audience-strip strong {
  color: var(--text-soft);
  display: block;
  font-size: 1.18rem;
  line-height: 1.28;
}

.section {
  border-top: 1px solid var(--line);
  padding: clamp(56px, 9vw, 118px) clamp(18px, 6vw, 76px);
}

.section-heading {
  max-width: 980px;
}

.section-heading p,
.ai-copy p,
.local-copy p,
.demo p {
  color: var(--muted);
  font-size: 1.16rem;
  line-height: 1.48;
}

.problem {
  background: var(--bg);
}

.problem-grid,
.benefit-grid,
.comparison-grid,
.ai-list {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

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

.problem-grid article,
.benefit-grid article,
.comparison-grid article,
.ai-list article,
.faq details,
.demo-form,
.legal-content {
  background:
    linear-gradient(180deg, #ffffff, #f9fcff),
    var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.problem-grid article,
.benefit-grid article,
.comparison-grid article,
.ai-list article {
  padding: 22px;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.problem-grid span {
  color: var(--rose);
  display: block;
  font-weight: 950;
  margin-bottom: 18px;
}

.problem-grid p,
.benefit-grid p,
.comparison-grid li,
.feature-card p,
.ai-list span,
.faq p {
  color: var(--muted);
  line-height: 1.5;
}

.ai-band {
  background:
    linear-gradient(135deg, #ffffff 0%, #f4f9ff 50%, #eaf4ff 100%);
  color: var(--text);
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
}

.ai-band .ai-copy p,
.ai-list span {
  color: var(--text-soft);
}

.ai-list {
  margin-top: 0;
}

.ai-list article:nth-child(1) {
  border-color: rgb(0 117 254 / 24%);
}

.ai-list article:nth-child(2) {
  border-color: rgb(1 40 90 / 18%);
}

.ai-list article:nth-child(3) {
  border-color: rgb(0 117 254 / 18%);
}

.ai-list b {
  color: var(--sea);
  display: block;
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.product {
  background: var(--surface-2);
}

.feature-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 30px;
}

.feature-card {
  background:
    linear-gradient(180deg, #ffffff, #f9fcff),
    var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.feature-wide {
  grid-column: span 3;
}

.feature-card img {
  aspect-ratio: 16 / 9;
  background: var(--bg-ink);
  border-bottom: 1px solid var(--line);
  object-fit: cover;
  width: 100%;
}

.feature-card div {
  padding: 20px;
}

.benefits {
  background: var(--bg);
}

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

.benefit-grid article {
  overflow: hidden;
  position: relative;
}

.benefit-grid article::before {
  background: var(--sea);
  content: "";
  height: 6px;
  inset: 0 0 auto;
  position: absolute;
}

.benefit-grid article:nth-child(2)::before {
  background: var(--lemon);
}

.benefit-grid article:nth-child(3)::before {
  background: var(--lavender);
}

.benefit-grid article:nth-child(4)::before {
  background: var(--peach);
}

.local-seo {
  background:
    linear-gradient(135deg, #ffffff 0%, #f4f9ff 54%, #eaf4ff 100%);
  color: var(--text);
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.82fr);
}

.local-copy p {
  color: var(--text-soft);
}

.local-keywords {
  align-content: start;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.local-keywords span {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text-soft);
  font-weight: 850;
  padding: 8px 11px;
}

.comparison {
  background: var(--surface-2);
}

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

.comparison-grid ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
}

.comparison-grid .with {
  border-color: rgb(0 117 254 / 28%);
  box-shadow: 0 18px 48px rgb(0 117 254 / 8%);
}

.faq {
  background: var(--bg);
}

.faq-list {
  display: grid;
  gap: 10px;
  margin-top: 24px;
  max-width: 980px;
}

.faq details {
  padding: 18px 20px;
  transition:
    background-color 180ms ease,
    border-color 180ms ease;
}

.faq details[open] {
  border-color: rgb(0 117 254 / 30%);
}

.faq summary {
  color: var(--text);
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 950;
}

.faq p {
  margin: 12px 0 0;
}

.demo {
  align-items: start;
  background:
    linear-gradient(135deg, #ffffff 0%, #f3f8ff 50%, #e9f4ff 100%);
  border-top: 1px solid var(--line);
  color: var(--text);
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  padding: clamp(56px, 8vw, 96px) clamp(18px, 6vw, 76px);
}

.demo .eyebrow {
  color: var(--sea);
}

.demo-form {
  display: grid;
  gap: 12px;
  padding: 18px;
}

.demo-form label {
  color: var(--text-soft);
  display: grid;
  font-weight: 850;
  gap: 6px;
}

.demo-form input {
  background: #ffffff;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  color: var(--text);
  min-height: 46px;
  min-width: 0;
  padding: 10px 12px;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
  width: 100%;
}

.demo-form input::placeholder {
  color: rgb(150 168 188 / 76%);
}

.demo-form input:focus {
  background: #ffffff;
  border-color: rgb(0 117 254 / 50%);
  box-shadow: 0 0 0 4px rgb(0 117 254 / 12%);
}

.demo-form button {
  border: 0;
  cursor: pointer;
  margin-top: 4px;
}

.form-legal {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.45;
  margin: 0;
}

.form-legal a {
  color: var(--peach);
  font-weight: 900;
}

.site-footer {
  align-items: center;
  background: var(--bg-deep);
  border-top: 1px solid var(--line);
  color: var(--text);
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: space-between;
  padding: 24px clamp(18px, 6vw, 76px);
}

.site-footer div {
  display: grid;
  gap: 4px;
}

.site-footer span {
  color: var(--muted);
}

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

.legal-links a {
  color: var(--text-soft);
  font-weight: 800;
  text-decoration: none;
  transition: color 180ms ease;
}

.legal-links a:hover,
.legal-links a:focus-visible {
  color: var(--mint);
}

.legal-page {
  background:
    linear-gradient(180deg, #ffffff 0%, #f7fbff 52%, #eef6ff 100%);
}

.legal-main {
  background: transparent;
  padding: 112px clamp(18px, 6vw, 76px) 70px;
}

.legal-page .site-header {
  position: static;
}

.legal-page .legal-main {
  padding-top: 54px;
}

.legal-hero {
  max-width: 980px;
  padding-bottom: 34px;
}

.legal-hero h1 {
  color: var(--text);
  font-size: 4.8rem;
  line-height: 0.96;
}

.legal-hero p {
  color: var(--text-soft);
  font-size: 1.16rem;
  line-height: 1.48;
}

.legal-content {
  display: grid;
  gap: 22px;
  max-width: 1040px;
  padding: clamp(20px, 4vw, 42px);
}

.legal-content section {
  border-bottom: 1px solid var(--line);
  padding-bottom: 22px;
}

.legal-content section:last-of-type {
  border-bottom: 0;
  padding-bottom: 0;
}

.legal-content h2 {
  font-size: 1.82rem;
  line-height: 1.08;
  margin-bottom: 10px;
}

.legal-content h3 {
  font-size: 1.12rem;
  margin-top: 18px;
}

.legal-content p,
.legal-content li {
  color: var(--text-soft);
  line-height: 1.6;
}

.legal-content a {
  color: var(--mint);
}

.legal-content ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 20px;
}

.legal-table {
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  overflow: hidden;
}

.legal-table div {
  background: #ffffff;
  display: grid;
  gap: 8px;
  grid-template-columns: minmax(140px, 0.35fr) minmax(0, 1fr);
  padding: 12px 14px;
}

.legal-table div + div {
  border-top: 1px solid var(--line);
}

.legal-table strong {
  color: var(--text);
}

.legal-table span {
  color: var(--text-soft);
}

.legal-notice {
  background: rgb(0 117 254 / 7%);
  border: 1px solid rgb(0 117 254 / 24%);
  border-radius: 8px;
  color: var(--text);
  font-weight: 850;
  padding: 14px 16px;
}

.legal-back {
  color: var(--mint);
  display: inline-flex;
  font-weight: 900;
  margin-top: 18px;
  text-decoration: none;
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.legal-back:hover,
.legal-back:focus-visible {
  color: var(--sea);
  transform: translateX(3px);
}

@keyframes device-float {
  0%,
  100% {
    transform: rotate(var(--phone-rotate)) translateY(0);
  }

  50% {
    transform: rotate(calc(var(--phone-rotate) - 0.8deg)) translateY(-10px);
  }
}

@keyframes bubble-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 14px rgb(0 117 254 / 11%);
  }

  50% {
    box-shadow: 0 0 0 24px rgb(0 117 254 / 4%);
  }
}

@media (hover: hover) {
  .problem-grid article:hover,
  .benefit-grid article:hover,
  .comparison-grid article:hover,
  .ai-list article:hover,
    .feature-card:hover {
    border-color: rgb(0 117 254 / 34%);
    box-shadow: var(--shadow);
    transform: translateY(-4px);
  }
}

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

  .feature-wide {
    grid-column: span 2;
  }

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

@media (max-width: 980px) {
  h1 {
    font-size: 4.9rem;
  }

  h2 {
    font-size: 3.2rem;
  }

  .hero-lead,
  .section-heading p,
  .ai-copy p,
  .local-copy p,
  .demo p,
  .legal-hero p {
    font-size: 1.12rem;
  }

  .legal-hero h1 {
    font-size: 3.8rem;
  }

  .legal-content h2 {
    font-size: 1.62rem;
  }

  .problem-grid,
  .ai-band,
  .local-seo,
  .comparison-grid,
  .demo {
    grid-template-columns: 1fr;
  }

  .site-header {
    align-items: center;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    align-items: stretch;
    background:
      linear-gradient(180deg, #ffffff, #f7fbff),
      var(--bg-deep);
    border-bottom: 1px solid var(--line);
    border-top: 1px solid var(--line);
    box-shadow: 0 24px 70px rgb(1 40 90 / 14%);
    display: none;
    flex-direction: column;
    flex-wrap: nowrap;
    inset: 70px 0 auto;
    max-height: calc(100vh - 70px);
    overflow: auto;
    padding: 10px 18px 18px;
    position: fixed;
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    width: 100%;
  }

  .legal-page .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .legal-page .legal-nav {
    align-items: center;
    background: transparent;
    border: 0;
    box-shadow: none;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 6px;
    inset: auto;
    justify-content: flex-start;
    max-height: none;
    overflow: visible;
    padding: 0;
    position: static;
    width: 100%;
  }

  .legal-page .legal-nav a {
    width: auto;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 104px;
  }

  .hero-device {
    margin-inline: auto;
    min-height: 500px;
    place-self: center;
  }

  .phone-frame {
    height: 500px;
    margin-inline: auto;
    max-width: 330px;
  }

  .qr-float {
    right: max(8px, calc(50% - 196px));
  }

  .audience-strip {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  h1 {
    font-size: 4rem;
  }

  h2 {
    font-size: 2.75rem;
  }

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

  .feature-wide {
    grid-column: auto;
  }

  .site-header {
    padding-inline: 16px;
  }

  .brand span:last-child {
    max-width: calc(100vw - 150px);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}

@media (max-width: 620px) {
  .hero {
    gap: 22px;
    padding: 88px 16px 24px;
  }

  .hero::after {
    left: 16px;
    right: 16px;
  }

  .hero-light {
    display: none;
  }

  h1 {
    font-size: 2.55rem;
    margin-bottom: 16px;
  }

  h2 {
    font-size: 2.28rem;
  }

  .hero-lead {
    font-size: 1.02rem;
  }

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

  .proof-pill,
  .local-keywords span {
    width: 100%;
  }

  .hero-device {
    min-height: 280px;
    width: min(100%, 260px);
  }

  .phone-frame {
    --phone-rotate: 0.8deg;
    border-radius: 24px;
    height: 280px;
    max-width: 210px;
    padding: 8px;
  }

  .phone-frame img {
    border-radius: 18px;
  }

  .ai-bubble {
    bottom: 35%;
    font-size: 0.78rem;
    min-height: 42px;
    min-width: 150px;
    padding: 10px 12px;
  }

  .qr-float {
    bottom: 18px;
    height: 58px;
    right: 4px;
    width: 58px;
  }

  .qr-float span {
    background:
      linear-gradient(90deg, #04111c 50%, transparent 0) 0 0 / 9px 9px,
      linear-gradient(#04111c 50%, transparent 0) 0 0 / 9px 9px,
      #f5fbff;
    border-width: 6px;
    height: 42px;
    width: 42px;
  }

  .section,
  .demo,
  .legal-main {
    padding-inline: 16px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    padding-inline: 16px;
  }

  .legal-table div {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 430px) {
  .site-nav {
    padding-inline: 16px;
  }

  .brand {
    font-size: 1.15rem;
    gap: 8px;
  }

  .brand-mark {
    height: 32px;
    width: 32px;
  }

  .proof-pill {
    align-items: flex-start;
    border-radius: 8px;
  }

  .proof-pill b {
    display: block;
    width: 100%;
  }

  h1 {
    font-size: 2.25rem;
  }

  .hero-device {
    min-height: 230px;
  }

  .phone-frame {
    height: 230px;
    max-width: 176px;
  }

  .ai-bubble {
    display: none;
  }
}

@media (max-width: 360px) {
  h1 {
    font-size: 2.05rem;
  }
}

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

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