:root {
  --bg: #050506;
  --bg-soft: #0a0b0d;
  --surface: #111317;
  --surface-2: #191c22;
  --text: #f8fafd;
  --muted: #a8adb7;
  --faint: #6f7684;
  --line: rgba(255, 255, 255, 0.13);
  --blue: #4285f4;
  --blue-2: #7baaf7;
  --mint: #23e6c0;
  --gold: #fbbc04;
  --cream: #f7f3e8;
  --ink: #111318;
  --font-body: "Geist", "Inter", system-ui, sans-serif;
  --font-mono: "Geist Mono", ui-monospace, monospace;
  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1rem + 0.75vw, 1.5rem);
  --text-xl: clamp(1.5rem, 1.2rem + 1.25vw, 2.25rem);
  --text-2xl: clamp(2rem, 1.2rem + 2.5vw, 3.5rem);
  --text-hero: clamp(3.7rem, 1.2rem + 8.2vw, 8.9rem);
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;
  --radius-sm: 0.75rem;
  --radius-md: 1.25rem;
  --radius-lg: 2rem;
  --radius-xl: 3rem;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
body { min-height: 100dvh; background: var(--bg); color: var(--text); font-family: var(--font-body); line-height: 1.5; overflow-x: hidden; }
button, input { font: inherit; color: inherit; }
button { border: 0; background: none; cursor: pointer; }
a { color: inherit; text-decoration: none; }
svg, iframe { display: block; max-width: 100%; }
img { max-width: 100%; height: auto; display: block; }
[hidden] { display: none !important; }
:focus-visible { outline: 3px solid color-mix(in srgb, var(--blue), white 20%); outline-offset: 4px; }
.skip-link { position: fixed; left: 1rem; top: 1rem; z-index: 50; transform: translateY(-150%); padding: .7rem 1rem; border-radius: 999px; background: var(--text); color: var(--ink); font-weight: 700; }
.skip-link:focus { transform: translateY(0); }

.app-shell { background: var(--bg); }
.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 20;
  width: min(1060px, calc(100% - 32px));
  height: 64px;
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 8px 10px 8px 18px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 999px;
  background: rgba(32, 35, 41, .72);
  backdrop-filter: blur(24px) saturate(1.4);
  box-shadow: 0 18px 70px rgba(0, 0, 0, .38);
}
.site-header.is-scrolled { background: rgba(26, 29, 34, .9); }
.brand { display: inline-flex; gap: 10px; align-items: center; font-weight: 800; letter-spacing: -.045em; font-size: 1.34rem; }
.brand span span { color: var(--mint); }
.brand-mark { width: 32px; height: 32px; color: var(--mint); }
.brand-mark path, .brand-mark circle { fill: none; stroke: currentColor; stroke-width: 3.1; stroke-linecap: round; stroke-linejoin: round; }
.brand-mark circle { fill: currentColor; stroke: none; }
.pill-nav { display: inline-flex; gap: 5px; align-items: center; padding: 0; }
.pill-link {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 21px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .1);
  color: rgba(255, 255, 255, .82);
  font-size: var(--text-sm);
  font-weight: 700;
  transition: color 180ms var(--ease-out), background 180ms var(--ease-out), transform 180ms var(--ease-out), border-color 180ms var(--ease-out);
}
.pill-link:hover { transform: translateY(-1px); color: white; background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.18); }
.pill-link--primary { background: var(--cream); color: #101114; border-color: var(--cream); }
.pill-link--primary:hover { background: #fff; color: #050506; }
.menu-button { display: none; width: 46px; height: 46px; border-radius: 999px; place-items: center; border: 1px solid rgba(255,255,255,.12); }
.menu-button span { width: 18px; height: 2px; background: white; grid-column: 1; grid-row: 1; transition: transform 180ms var(--ease-out); }
.menu-button span:last-child { transform: translateY(6px); }

.panel-dark {
  background:
    radial-gradient(circle at 12% 18%, rgba(66, 133, 244, .21), transparent 28%),
    radial-gradient(circle at 82% 46%, rgba(35, 230, 192, .16), transparent 30%),
    linear-gradient(180deg, var(--bg), #030304);
  color: var(--text);
}
.panel-light { background: #f7f8fb; color: var(--ink); }
.hero-section {
  min-height: 100svh;
  position: relative;
  display: grid;
  align-items: end;
  padding: clamp(8.5rem, 13vh, 12rem) clamp(1.25rem, 4vw, 4rem) clamp(3rem, 6vw, 5rem);
  overflow: hidden;
}
.hero-copy { position: relative; z-index: 2; width: min(1000px, 100%); margin: 0 auto; text-align: center; }
.section-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 999px;
  color: rgba(255, 255, 255, .72);
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: rgba(255,255,255,.04);
}
.section-kicker--dark { color: rgba(17,19,24,.62); border-color: rgba(17,19,24,.14); background: rgba(17,19,24,.04); }
h1 {
  margin-top: var(--space-8);
  font-size: var(--text-hero);
  line-height: .95;
  letter-spacing: -.075em;
  font-weight: 800;
  text-wrap: balance;
}
h1 span,
.google-section h2 span {
  display: block;
  color: transparent;
  background: linear-gradient(90deg, var(--blue), #5797ff 35%, var(--mint) 76%, #a7eadf);
  -webkit-background-clip: text;
  background-clip: text;
}
.hero-lede {
  max-width: 760px;
  margin: var(--space-8) auto 0;
  color: var(--muted);
  font-size: var(--text-lg);
  letter-spacing: -.025em;
}
.hero-actions { display: flex; justify-content: center; gap: var(--space-3); margin-top: var(--space-10); flex-wrap: wrap; }
.action-button {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: -.02em;
  transition: transform 180ms var(--ease-out), background 180ms var(--ease-out), border-color 180ms var(--ease-out), box-shadow 180ms var(--ease-out);
}
.action-button:hover { transform: translateY(-2px); }
.action-button:active { transform: translateY(0); }
.action-button--primary { background: var(--blue); color: white; box-shadow: 0 18px 42px rgba(66, 133, 244, .27); }
.action-button--primary:hover { background: #2d75ee; }
.action-button--secondary { color: white; border: 1px solid rgba(255,255,255,.17); background: rgba(255,255,255,.045); }
.action-button--dark { background: #0d0f13; color: white; }
.floating-plus {
  position: absolute;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: var(--blue);
  font-size: 2.2rem;
  font-weight: 500;
  color: white;
  box-shadow: 0 16px 50px rgba(66,133,244,.33);
  animation: float 8s var(--ease-in-out) infinite alternate;
}
.plus-a { top: 16%; right: 9%; }
.plus-b { bottom: 27%; left: 8%; animation-delay: -3s; }
.plus-c { top: 44%; right: 24%; width: 38px; height: 38px; font-size: 1.4rem; opacity: .82; animation-delay: -5s; }
@keyframes float { to { transform: translate3d(0, -18px, 0); } }

.product-stage {
  position: relative;
  z-index: 1;
  width: min(1180px, 100%);
  height: clamp(430px, 48vw, 640px);
  margin: clamp(4rem, 8vw, 7rem) auto 0;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255,255,255,.12);
  background:
    linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.015)),
    rgba(11, 13, 17, .9);
  overflow: hidden;
  box-shadow: 0 45px 140px rgba(0,0,0,.55);
}
.stage-copy {
  position: absolute;
  left: clamp(1rem, 4vw, 3rem);
  top: clamp(1rem, 4vw, 3rem);
  z-index: 3;
  width: min(360px, calc(100% - 2rem));
  padding: var(--space-5);
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(9,11,15,.68);
  backdrop-filter: blur(18px);
}
.stage-label { color: var(--mint); font-family: var(--font-mono); font-size: var(--text-xs); text-transform: uppercase; letter-spacing: .08em; }
.stage-copy strong { display: block; margin-top: var(--space-2); font-size: var(--text-lg); letter-spacing: -.04em; }
.stage-copy p { margin-top: var(--space-3); color: var(--muted); }
.map-card { position: absolute; inset: 0; opacity: 1; }
.map-lines { width: 100%; height: 100%; }

/* --- Topology layers --- */
.map-grid { opacity: .9; }

.river { fill: none; }
.river-band { fill: rgba(35, 96, 156, .18); }
.river-line { stroke: rgba(120, 190, 240, .35); stroke-width: 1.4; fill: none; }
.river-flow {
  stroke: rgba(150, 220, 250, .55);
  stroke-width: 1.2;
  stroke-dasharray: 3 22;
  stroke-linecap: round;
  fill: none;
  animation: river-flow 14s linear infinite;
}
@keyframes river-flow { to { stroke-dashoffset: -300; } }

.streets { stroke: rgba(255, 255, 255, .065); stroke-width: 1; }

.road { fill: none; stroke-linecap: round; stroke-width: 2.1; opacity: .9; }
.road-aleje    { stroke: rgba(255, 255, 255, .22); stroke-width: 2.4; }
.road-mogilska { stroke: var(--blue); opacity: .95; filter: drop-shadow(0 0 6px rgba(66,133,244,.55)); }
.road-dietla   { stroke: var(--mint); opacity: .9; filter: drop-shadow(0 0 6px rgba(35,230,192,.45)); }
.road-krakowska{ stroke: var(--gold); opacity: .85; filter: drop-shadow(0 0 5px rgba(251,188,4,.4)); stroke-dasharray: 2 5; }
.road-bridge   { stroke: rgba(255,255,255,.4); stroke-width: 1.6; stroke-dasharray: 4 4; }
.road-ring     { stroke: rgba(255,255,255,.18); stroke-width: 1.6; }
.road-airport  { stroke: var(--blue-2); stroke-width: 2; opacity: .85; filter: drop-shadow(0 0 5px rgba(123,170,247,.5)); }

/* Animated stroke-dash flow over corridors (directional sweep) */
.road-flow { fill: none; stroke-linecap: round; stroke-width: 2.4; opacity: .55; }
.flow-aleje    { stroke: rgba(255,255,255,.6);  stroke-dasharray: 2 220; animation: flow-sweep 11s linear infinite; }
.flow-mogilska { stroke: #cfe0ff; stroke-dasharray: 4 110; animation: flow-sweep 5.4s linear infinite; }
.flow-dietla   { stroke: #c2fff0; stroke-dasharray: 4 130; animation: flow-sweep 7.6s linear infinite; }
.flow-krakowska{ stroke: #ffe9a8; stroke-dasharray: 2 180; animation: flow-sweep 12s linear infinite; }
.flow-airport  { stroke: #dbe7ff; stroke-dasharray: 4 90;  animation: flow-sweep 4.8s linear infinite; }
.flow-ring     { stroke: rgba(255,255,255,.55); stroke-dasharray: 2 200; animation: flow-sweep 10s linear infinite; }
.flow-bridge   { stroke: #b6f0e0; stroke-dasharray: 2 60;  animation: flow-sweep 6s linear infinite; }
@keyframes flow-sweep { to { stroke-dashoffset: -1200; } }

/* Slow amber congestion overlay near Kazimierz/Grzegórzecka */
.congestion {
  fill: none;
  stroke: var(--gold);
  stroke-width: 4;
  stroke-linecap: round;
  opacity: .55;
  filter: drop-shadow(0 0 9px rgba(251,188,4,.55));
  animation: congestion-breathe 2.4s ease-in-out infinite alternate;
}
@keyframes congestion-breathe {
  from { opacity: .35; stroke-width: 3.4; }
  to   { opacity: .75; stroke-width: 4.6; }
}

.pulse { animation: breathe 3.7s ease-in-out infinite alternate; transform-origin: center; transform-box: fill-box; }
.p-rynek { animation-delay: -.8s; }
.p-grzeg { animation-delay: -1.6s; }
@keyframes breathe { from { opacity: .42; transform: scale(.86); } to { opacity: 1; transform: scale(1.06); } }

/* Concentric ring sweeps at high-demand nodes */
.ring { fill: none; stroke-width: 1.4; opacity: 0; transform-origin: center; transform-box: fill-box; }
.r-kazimierz { stroke: var(--mint); animation: ring-sweep 3.2s ease-out infinite; }
.r-rynek     { stroke: var(--blue); animation: ring-sweep 3.6s ease-out infinite; }
.r-grzeg     { stroke: var(--gold); animation: ring-sweep 3.4s ease-out infinite; }
.delay-1     { animation-delay: -1.6s; }
.delay-2     { animation-delay: -1.8s; }
@keyframes ring-sweep {
  0%   { transform: scale(.4); opacity: .9; }
  80%  { opacity: .05; }
  100% { transform: scale(3.4); opacity: 0; }
}

.node { fill: white; filter: drop-shadow(0 0 10px currentColor); }
.n-kazimierz { color: var(--mint); }
.n-rynek     { color: var(--blue); }
.n-grzeg     { color: var(--gold); }

.anchor { fill: rgba(255,255,255,.72); }

.bridges rect { fill: rgba(255,255,255,.55); }

/* Traffic particles */
.traffic .t { filter: drop-shadow(0 0 4px currentColor); }
.t.blue  { fill: #cfe0ff; color: var(--blue); }
.t.mint  { fill: #c2fff0; color: var(--mint); }
.t.amber { fill: #ffe1a0; color: var(--gold); }
.t.grey  { fill: rgba(255,255,255,.78); color: rgba(255,255,255,.4); filter: drop-shadow(0 0 2px rgba(255,255,255,.4)); }
.t.dim   { opacity: .58; }

.map-lines .labels text { fill: rgba(255,255,255,.92); font: 700 17px var(--font-body); letter-spacing: -.03em; paint-order: stroke; stroke: rgba(0,0,0,.45); stroke-width: 3; stroke-linejoin: round; }
.map-lines .labels .label-soft { fill: rgba(255,255,255,.55); font-weight: 600; font-size: 12px; letter-spacing: .04em; text-transform: uppercase; stroke: none; }
.phone {
  position: absolute;
  right: clamp(1rem, 6vw, 5rem);
  bottom: -18px;
  width: min(270px, 28vw);
  min-width: 220px;
  height: 520px;
  border-radius: 42px;
  padding: 18px;
  border: 2px solid rgba(255,255,255,.12);
  background: linear-gradient(180deg, #10141a, #050506);
  box-shadow: 0 30px 80px rgba(0,0,0,.55), inset 0 0 0 6px #080a0f;
}
.phone-top { display: flex; justify-content: space-between; color: white; font-weight: 800; font-size: .8rem; }
.phone-map { position: relative; height: calc(100% - 38px); margin-top: 18px; border-radius: 28px; background: #060809; overflow: hidden; }
.phone-svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.ph-river { fill: rgba(35, 96, 156, .28); }
.ph-road { fill: none; stroke-width: 1.6; stroke-linecap: round; }
.ph-mint { stroke: var(--mint); filter: drop-shadow(0 0 4px rgba(35,230,192,.5)); }
.ph-blue { stroke: var(--blue); filter: drop-shadow(0 0 4px rgba(66,133,244,.5)); }
.ph-amber { stroke: var(--gold); opacity: .55; stroke-dasharray: 2 4; }
.ph-flow { fill: none; stroke-width: 1.6; stroke-linecap: round; opacity: .85; }
.ph-flow-mint { stroke: #c2fff0; stroke-dasharray: 3 60; animation: flow-sweep 4.2s linear infinite; }
.ph-flow-blue { stroke: #cfe0ff; stroke-dasharray: 3 50; animation: flow-sweep 4.6s linear infinite; }
.ph-pulse { animation: breathe 3.4s ease-in-out infinite alternate; transform-origin: center; transform-box: fill-box; }
.ph-pulse-2 { animation-delay: -1.2s; }
.ph-t { filter: drop-shadow(0 0 3px currentColor); }
.ph-t.ph-mint { fill: #c2fff0; color: var(--mint); }
.ph-t.ph-blue { fill: #cfe0ff; color: var(--blue); }
.ph-t.ph-amber { fill: #ffe1a0; color: var(--gold); }
.ph-t.dim { opacity: .55; }
.ph-node { filter: drop-shadow(0 0 6px currentColor); }
.ph-mint-fill { fill: var(--mint); color: var(--mint); }
.ph-blue-fill { fill: var(--blue); color: var(--blue); }
.ph-amber-fill { fill: var(--gold); color: var(--gold); }
.phone-reco { position: absolute; left: 14px; right: 14px; bottom: 16px; padding: 14px; border-radius: 20px; background: rgba(8,10,14,.72); border: 1px solid rgba(255,255,255,.12); backdrop-filter: blur(16px); z-index: 2; }
.phone-reco small { color: var(--mint); text-transform: uppercase; font-family: var(--font-mono); font-size: .68rem; }
.phone-reco strong { display: block; margin-top: 2px; }
.phone-reco span { color: var(--muted); font-size: .86rem; }

.google-section { min-height: 100svh; display: grid; place-items: center; padding: var(--space-24) var(--space-6); text-align: center; }
.section-inner { width: min(1040px, 100%); margin: 0 auto; }
.section-inner--wide { width: min(1180px, 100%); }
.google-section h2,
.demo-section h2,
.subscribe-card h2,
.split-copy h2 {
  margin-top: var(--space-6);
  font-size: clamp(2.5rem, 1.2rem + 5vw, 6.5rem);
  line-height: .98;
  letter-spacing: -.07em;
  font-weight: 800;
  text-wrap: balance;
}
.mechanics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
  margin-top: var(--space-16);
  text-align: left;
}
.mechanics article {
  position: relative;
  min-height: 280px;
  padding: var(--space-8);
  padding-bottom: calc(var(--space-8) + 60px);
  border-radius: 34px;
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.1);
  overflow: hidden;
}
.mechanics span { color: var(--blue); font-family: var(--font-mono); font-weight: 700; }
.mechanics h3 { margin-top: var(--space-10); font-size: var(--text-xl); letter-spacing: -.045em; }
.mechanics p { margin-top: var(--space-4); color: var(--muted); font-size: var(--text-base); }

.micro {
  position: absolute;
  left: var(--space-8);
  right: var(--space-8);
  bottom: var(--space-6);
  width: calc(100% - var(--space-8) * 2);
  height: 60px;
  display: block;
}
.micro-road { fill: none; stroke-width: 1.4; stroke-linecap: round; }
.micro-mint  { stroke: var(--mint);  opacity: .4; filter: drop-shadow(0 0 4px rgba(35,230,192,.35)); }
.micro-blue  { stroke: var(--blue);  opacity: .4; filter: drop-shadow(0 0 4px rgba(66,133,244,.35)); }
.micro-amber { stroke: var(--gold);  opacity: .35; stroke-dasharray: 2 4; }
.micro-flow { fill: none; stroke-width: 1.6; stroke-linecap: round; opacity: .9; }
.micro-flow-mint { stroke: #c2fff0; stroke-dasharray: 3 80; animation: flow-sweep 4.2s linear infinite; }
.micro-flow-blue { stroke: #cfe0ff; stroke-dasharray: 3 80; animation: flow-sweep 4s linear infinite; }
.micro-t { filter: drop-shadow(0 0 3px currentColor); }
.micro-t.micro-mint  { fill: #c2fff0; color: var(--mint); stroke: none; }
.micro-t.micro-blue  { fill: #cfe0ff; color: var(--blue); stroke: none; }
.micro-t.micro-amber { fill: #ffe1a0; color: var(--gold); stroke: none; }
.micro-t.dim { opacity: .58; }
.micro-target { fill: var(--mint); filter: drop-shadow(0 0 6px var(--mint)); animation: breathe 1.6s ease-in-out infinite alternate; transform-origin: center; transform-box: fill-box; }

.split-section {
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, .72fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
  padding: var(--space-24) clamp(1.25rem, 7vw, 7rem);
}
.split-copy p:not(.section-kicker) { margin-top: var(--space-8); color: #535965; font-size: var(--text-lg); }
.signal-stack { display: grid; gap: var(--space-3); }
.signal-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--space-2);
  align-items: center;
  min-height: 96px;
  padding: var(--space-6);
  border-radius: 28px;
  background: white;
  border: 1px solid rgba(17,19,24,.08);
  box-shadow: 0 12px 50px rgba(20, 24, 32, .08);
}
.signal-row span { color: #656b76; font-weight: 700; }
.signal-row strong { font-size: var(--text-xl); letter-spacing: -.05em; }
.signal-row small { grid-column: 1 / -1; color: #777e88; }
.signal-row.active { background: #111318; color: white; transform: scale(1.03); box-shadow: 0 24px 80px rgba(66,133,244,.18); }
.signal-row.active span { color: var(--mint); }
.signal-row.active small { color: #a7adb8; }

.demo-section { padding: var(--space-24) var(--space-6); text-align: center; }
.section-note { max-width: 760px; margin: var(--space-6) auto var(--space-8); color: var(--muted); font-size: var(--text-base); }
code { font-family: var(--font-mono); color: var(--mint); }
.iframe-shell {
  margin-top: var(--space-12);
  height: min(720px, 72svh);
  border-radius: 42px;
  padding: 10px;
  background: linear-gradient(180deg, rgba(255,255,255,.09), rgba(255,255,255,.025));
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 40px 120px rgba(0,0,0,.45);
}
.iframe-shell iframe, .map-frame iframe { width: 100%; height: 100%; border: 0; border-radius: 32px; background: #050506; }

.subscribe-section { min-height: 92svh; display: grid; place-items: center; padding: var(--space-24) var(--space-6); }
.subscribe-card { width: min(980px, 100%); padding: clamp(2rem, 6vw, 5rem); border-radius: 46px; background: white; box-shadow: 0 30px 100px rgba(20,24,32,.1); }
.subscribe-form { display: grid; grid-template-columns: 1fr auto; gap: var(--space-3); margin-top: var(--space-10); }
.subscribe-form label { display: grid; gap: var(--space-2); }
.subscribe-form label span { color: #5d6370; font-weight: 700; font-size: var(--text-sm); }
.subscribe-form input { min-height: 58px; border-radius: 999px; border: 1px solid rgba(17,19,24,.13); padding: 0 22px; color: #111318; background: #f4f6fa; }
.form-note { margin-top: var(--space-4); color: #666d78; }

.map-view { min-height: 100svh; background: #050506; }
.map-topbar {
  position: fixed;
  top: 16px;
  left: 50%;
  width: min(1120px, calc(100% - 32px));
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 999px;
  padding: 9px 10px 9px 18px;
  background: rgba(22,24,29,.82);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(20px);
}
.brand--compact { font-size: 1.05rem; }
.brand--compact .brand-mark { width: 28px; height: 28px; }
.map-frame { height: 100svh; padding: 96px 10px 10px; }

@media (max-width: 840px) {
  .site-header { grid-template-columns: 1fr auto; }
  .pill-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 10px);
    display: none;
    grid-template-columns: 1fr;
    padding: 10px;
    border-radius: 30px;
    background: #191c22;
    border: 1px solid rgba(255,255,255,.12);
    box-shadow: 0 26px 70px rgba(0,0,0,.58);
  }
  .pill-nav.is-open { display: grid; }
  .menu-button { display: grid; }
  .menu-button.is-open span:first-child { transform: rotate(45deg); }
  .menu-button.is-open span:last-child { transform: rotate(-45deg); }
  .hero-section { padding-top: 8rem; }
  h1 { font-size: clamp(3.6rem, 17vw, 5.8rem); }
  .hero-actions { gap: var(--space-3); }
  .action-button { width: min(260px, 100%); }
  .product-stage { height: 620px; border-radius: 34px; }
  .phone { right: 50%; transform: translateX(50%); bottom: -70px; }
  .stage-copy { left: 1rem; right: 1rem; }
  .mechanics, .split-section, .subscribe-form { grid-template-columns: 1fr; }
  .split-section { padding: var(--space-20) var(--space-5); }
  .google-section h2, .demo-section h2, .subscribe-card h2, .split-copy h2 { font-size: clamp(2.6rem, 11vw, 4.8rem); }
  .floating-plus { width: 42px; height: 42px; font-size: 1.7rem; }
  .plus-a, .plus-b, .plus-c { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
  /* Hide animated traffic particles entirely; keep the static topology composition. */
  .traffic, .ph-t, .micro-t,
  .road-flow, .ph-flow, .micro-flow,
  .ring, .river-flow, .congestion, .micro-target {
    display: none !important;
  }
  .pulse, .ph-pulse { opacity: .8 !important; transform: scale(1) !important; }
}
