:root {
  --bg: #fbfbfa;
  --paper: #ffffff;
  --paper-soft: #f6f6f4;
  --ink: #171717;
  --muted: #777774;
  --faint: #a6a6a2;
  --line: rgba(23, 23, 23, 0.09);
  --line-strong: rgba(23, 23, 23, 0.16);
  --green: #34d26f;
  --teal: #1cc4b1;
  --red: #ff5d6c;
  --yellow: #ffd23f;
  --shadow: 0 22px 70px rgba(23, 23, 23, 0.1);
  --shadow-soft: 0 10px 34px rgba(23, 23, 23, 0.08);
  --radius: 22px;
  --radius-sm: 12px;
  --sans: "Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "Geist Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  min-width: 320px;
  background:
    linear-gradient(rgba(23, 23, 23, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 23, 23, 0.035) 1px, transparent 1px),
    var(--bg);
  background-size: 98px 98px;
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.45;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.96), transparent 36rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(251, 251, 250, 0.94) 42rem, var(--bg));
  pointer-events: none;
}

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

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

button {
  font: inherit;
}

::selection {
  background: var(--ink);
  color: var(--paper);
}

.nav {
  position: fixed;
  top: 28px;
  left: 50%;
  z-index: 50;
  width: min(1280px, calc(100vw - 48px));
  min-height: 78px;
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 22px;
  padding: 14px 22px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 18px 48px rgba(23, 23, 23, 0.07), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(22px) saturate(1.25);
  -webkit-backdrop-filter: blur(22px) saturate(1.25);
  transition: box-shadow 220ms ease, background 220ms ease, top 220ms ease;
}

.nav--scrolled {
  top: 16px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
}

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

.nav-brand {
  gap: 12px;
  justify-self: start;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.04em;
}

.nav-logo {
  width: 34px;
  height: 34px;
  border-radius: 9px;
}

.nav-links {
  gap: 28px;
  justify-self: center;
  align-items: center;
}

.nav-comics-target {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-comics-target > a:not(.nav-mascot-link) {
  position: relative;
  z-index: 3;
}

.nav-links a,
.nav-signin {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.03em;
  color: #202020;
}

.nav-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -5px;
  height: 1px;
  transform: scaleX(0);
  transform-origin: center;
  background: currentColor;
  transition: transform 180ms ease;
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-mascot-link {
  position: absolute;
  display: block;
  width: 72px;
  height: 58px;
  overflow: hidden;
  pointer-events: auto;
  opacity: 0;
  z-index: 1;
  transform: translateX(-50%) translateY(18px) rotate(3deg);
  animation: navMascotPop 860ms cubic-bezier(0.2, 0.85, 0.18, 1.12) 900ms forwards,
    navMascotBob 4.4s ease-in-out 2s infinite;
}

.nav-mascot-link--desktop {
  left: 50%;
  bottom: 10px;
}

.nav-mascot-link--mobile {
  display: none;
}

.nav-mascot-link img {
  position: absolute;
  left: 50%;
  bottom: -34px;
  width: 74px;
  height: 74px;
  object-fit: contain;
  transform: translateX(-50%);
  filter: drop-shadow(0 4px 5px rgba(23, 23, 23, 0.16));
}

@keyframes navMascotPop {
  0% {
    opacity: 0;
    transform: translateX(-50%) translateY(18px) rotate(3deg);
  }
  72% {
    opacity: 1;
    transform: translateX(-50%) translateY(-5px) rotate(-2deg);
  }
  100% {
    opacity: 1;
    transform: translateX(-50%) translateY(0) rotate(0deg);
  }
}

@keyframes navMascotBob {
  0%, 100% { transform: translateX(-50%) translateY(0) rotate(0deg); }
  50% { transform: translateX(-50%) translateY(-4px) rotate(-1deg); }
}

.nav-actions {
  justify-self: end;
  gap: 14px;
}

.nav-signin {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  background: #222;
  color: #fff;
  border: 1px solid #000;
  border-radius: 9px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16), 0 4px 12px rgba(23, 23, 23, 0.16);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.nav-burger {
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--paper);
  cursor: pointer;
}

.nav-burger span {
  position: absolute;
  width: 18px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 180ms ease;
}

.nav-burger span:first-child {
  transform: translateY(-4px);
}

.nav-burger span:last-child {
  transform: translateY(4px);
}

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

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

.hero {
  position: relative;
  min-height: 940px;
  padding: 205px 24px 0;
  overflow: hidden;
  text-align: center;
}

.page-grid {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, transparent 0 52%, rgba(251, 251, 250, 0.82) 83%, var(--bg));
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 3;
  width: min(760px, 100%);
  margin: 0 auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 32px;
  padding: 0 13px;
  margin-bottom: 26px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 5px 16px rgba(23, 23, 23, 0.04);
  color: #4d4d4b;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.eyebrow span,
.panel-tag i {
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(52, 210, 111, 0.12);
}

.hero h1,
.section-head h2,
.workflow h2,
.faq h2,
.final-cta h2 {
  font-weight: 800;
  letter-spacing: -0.07em;
  line-height: 0.95;
  overflow-wrap: break-word;
}

.hero h1 {
  max-width: 720px;
  margin: 0 auto 30px;
  font-size: clamp(3rem, 6vw, 5.55rem);
}

.hero-copy p {
  width: min(620px, 100%);
  margin: 0 auto;
  color: #4e4e4b;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.18;
}

.hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 8px;
  border: 1px solid var(--line-strong);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.035em;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.btn span {
  margin-left: 5px;
}

.btn-dark {
  background: #222;
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), 0 10px 24px rgba(23, 23, 23, 0.18);
}

.btn-light {
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
}

.hero-stage {
  position: relative;
  width: min(1040px, 100%);
  height: 560px;
  margin: 160px auto 0;
}

.radar-glow {
  position: absolute;
  inset: auto 0 0;
  height: 250px;
  background: linear-gradient(180deg, rgba(251, 251, 250, 0), rgba(251, 251, 250, 0.94) 68%, var(--bg));
  z-index: 7;
  pointer-events: none;
}

.radar-map {
  position: absolute;
  left: 50%;
  bottom: -120px;
  width: 950px;
  max-width: 120vw;
  aspect-ratio: 2 / 1;
  transform: translateX(-50%);
  border-radius: 950px 950px 0 0;
  overflow: hidden;
  border: 1px solid rgba(23, 23, 23, 0.08);
  background:
    radial-gradient(circle at 50% 48%, rgba(255, 255, 255, 0.34) 0 23%, transparent 24%),
    radial-gradient(circle at 50% 100%, rgba(23, 23, 23, 0.05) 0 16%, transparent 17%),
    repeating-radial-gradient(circle at 50% 100%, rgba(23, 23, 23, 0.055) 0 1px, transparent 1px 62px),
    linear-gradient(180deg, rgba(23, 23, 23, 0.08), rgba(23, 23, 23, 0.02));
  box-shadow: inset 0 36px 70px rgba(255, 255, 255, 0.7), 0 -10px 90px rgba(23, 23, 23, 0.08);
}

.radar-map::before {
  content: "";
  position: absolute;
  inset: 12% 18% -20%;
  background:
    linear-gradient(110deg, transparent 0 46%, rgba(23, 23, 23, 0.08) 46.3% 46.7%, transparent 47%),
    linear-gradient(70deg, transparent 0 46%, rgba(23, 23, 23, 0.06) 46.3% 46.7%, transparent 47%),
    radial-gradient(ellipse at 50% 45%, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0) 62%);
  border-radius: 50% 50% 0 0;
}

.radar-orbit {
  position: absolute;
  left: 50%;
  bottom: 52px;
  width: 540px;
  height: 540px;
  transform: translateX(-50%);
  border-radius: 50%;
  border: 1px solid rgba(23, 23, 23, 0.06);
  animation: orbitPulse 7s ease-in-out infinite;
}

.map-label {
  position: absolute;
  color: rgba(23, 23, 23, 0.32);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.label-a {
  left: 35%;
  top: 12%;
}

.label-b {
  right: 28%;
  top: 25%;
}

.label-c {
  left: 22%;
  top: 50%;
}

.label-d {
  right: 20%;
  top: 50%;
}

.metric-pin {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 30px;
  padding: 5px 9px 5px 6px;
  border: 1px solid rgba(23, 23, 23, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 9px 24px rgba(23, 23, 23, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #202020;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: -0.035em;
  animation: pingFloat 3.8s ease-in-out infinite;
}

.metric-pin::before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--green), var(--teal));
  box-shadow: 0 0 0 5px rgba(52, 210, 111, 0.13);
}

.metric-pin strong,
.metric-pin em {
  font: inherit;
  font-style: normal;
}

.metric-pin strong {
  color: rgba(23, 23, 23, 0.58);
}

.metric-pin em {
  color: #171717;
}

.pin-a {
  left: 18%;
  top: 43%;
}

.pin-b {
  left: 27%;
  top: 32%;
  animation-delay: -1.1s;
}

.pin-b::before {
  background: linear-gradient(135deg, #28b6ff, #8ceaff);
}

.pin-c {
  right: 28%;
  top: 30%;
  animation-delay: -0.4s;
}

.pin-c::before {
  background: linear-gradient(135deg, #7857ff, #15d7ff);
}

.pin-d {
  right: 18%;
  top: 52%;
  animation-delay: -1.7s;
}

.pin-d::before {
  background: linear-gradient(135deg, var(--red), var(--yellow));
}

.phone-shell {
  position: absolute;
  z-index: 5;
  width: 248px;
  padding: 9px;
  overflow: hidden;
  border-radius: 36px;
  background: #0d0d0d;
  box-shadow: 0 28px 70px rgba(23, 23, 23, 0.22), inset 0 0 0 1px rgba(255, 255, 255, 0.14);
}

.phone-shell img {
  width: 100%;
  aspect-ratio: 9 / 19.5;
  object-fit: cover;
  object-position: top center;
  border-radius: 28px;
}

.phone-main {
  left: 50%;
  bottom: 66px;
  transform: translateX(-50%);
  animation: phoneRise 900ms cubic-bezier(0.2, 0.8, 0.2, 1) both, floatPhone 9s ease-in-out 1s infinite;
}

.phone-left {
  left: calc(50% - 330px);
  bottom: 88px;
  width: 214px;
  opacity: 0.58;
  transform: rotate(-7deg);
  filter: grayscale(1);
  animation: floatPhone 11s ease-in-out infinite reverse;
}

.visit-card {
  position: absolute;
  left: 50%;
  bottom: 32px;
  z-index: 9;
  width: min(700px, calc(100% - 32px));
  min-height: 70px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--line);
  border-radius: 13px;
  box-shadow: 0 16px 50px rgba(23, 23, 23, 0.12);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  text-align: left;
}

.visit-copy {
  display: grid;
  gap: 2px;
  margin-right: auto;
}

.visit-metrics {
  display: flex;
  align-items: center;
  gap: 16px;
}

.visit-metric {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  white-space: nowrap;
}

.visit-card strong {
  font-size: 14px;
  letter-spacing: -0.04em;
}

.visit-card span,
.visit-card a {
  color: #50504d;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: -0.035em;
}

.visit-card a {
  padding: 8px 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #1d1d1b;
  white-space: nowrap;
}

.status-dot {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  border-radius: 99px;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(52, 210, 111, 0.14);
  animation: statusPulse 2.4s ease-in-out infinite;
}

.route-pill {
  padding: 8px 12px;
  border-radius: 999px;
  background: #f5f5f3;
}

.float-chip {
  position: absolute;
  z-index: 10;
  padding: 11px 15px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: 11px;
  box-shadow: var(--shadow-soft);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: -0.045em;
  animation: chipDrift 4.8s ease-in-out infinite;
}

.chip-top {
  left: calc(50% + 128px);
  top: 58px;
}

.chip-right {
  right: 115px;
  top: 215px;
  animation-delay: -1.4s;
}

.trailer,
.answers,
.precision,
.workflow,
.faq,
.final-cta {
  padding: clamp(78px, 10vw, 132px) 24px;
}

.section-head {
  width: min(760px, 100%);
  margin: 0 auto 54px;
  text-align: center;
}

.section-head h2,
.workflow h2,
.faq h2,
.final-cta h2 {
  font-size: clamp(2.25rem, 5.2vw, 4.15rem);
}

.section-head p,
.workflow p,
.final-cta p {
  width: min(560px, 100%);
  margin: 18px auto 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.18;
}

.video-shell {
  position: relative;
  width: min(1120px, 100%);
  margin: 0 auto;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: var(--shadow);
}

.demo-board {
  min-height: 610px;
  display: grid;
  place-items: end center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 16%, rgba(52, 210, 111, 0.08), transparent 24rem),
    radial-gradient(circle, rgba(23, 23, 23, 0.045) 0.8px, transparent 0.8px),
    linear-gradient(180deg, #fff, #f7f7f6);
  background-size: auto, 10px 10px, auto;
}

.recording-board {
  min-height: auto;
  place-items: center;
  padding: clamp(8px, 1.5vw, 14px);
}

.demo-board::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 46%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), #fff);
  pointer-events: none;
}

.recording-board::after {
  display: none;
}

.demo-video-crop {
  position: relative;
  z-index: 2;
  width: min(420px, 100%);
  height: min(720px, 112vw);
  --demo-crop-top: 118px;
  overflow: hidden;
  border-radius: 24px;
  background: #f2f2f0;
  box-shadow: 0 24px 70px rgba(23, 23, 23, 0.13);
}

.demo-video {
  width: 100%;
  height: calc(100% + var(--demo-crop-top));
  display: block;
  object-fit: cover;
  object-position: top center;
  transform: translateY(calc(-1 * var(--demo-crop-top)));
}

.demo-phone {
  position: absolute;
  top: 50%;
  width: 220px;
  z-index: 1;
  overflow: hidden;
  border-radius: 30px;
  background: #0d0d0d;
  padding: 7px;
  box-shadow: 0 24px 70px rgba(23, 23, 23, 0.16), inset 0 0 0 1px rgba(255, 255, 255, 0.12);
  filter: grayscale(0.18) saturate(0.9);
  pointer-events: none;
  --scan-distance: 480px;
}

.demo-phone img {
  width: 100%;
  aspect-ratio: 9 / 19.5;
  object-fit: cover;
  object-position: top center;
  border-radius: 24px;
}

.demo-phone-main {
  z-index: 2;
  width: 310px;
}

.demo-phone-left {
  left: max(3%, calc(50% - 380px));
  transform: translate(-30%, -50%) rotate(-7deg);
  opacity: 0.78;
  animation: floatPhone 12s ease-in-out infinite;
}

.demo-phone-right {
  right: max(3%, calc(50% - 380px));
  transform: translate(30%, -50%) rotate(7deg);
  opacity: 0.78;
  animation: floatPhone 14s ease-in-out infinite reverse;
}

@media (max-width: 1060px) {
  .demo-phone {
    width: 140px;
    top: auto;
    bottom: 26px;
    padding: 5px;
    border-radius: 24px;
    --scan-distance: 300px;
  }
  .demo-phone img {
    border-radius: 19px;
  }
  .demo-phone-left {
    left: 3%;
    transform: rotate(-11deg);
    animation-duration: 13s;
  }
  .demo-phone-right {
    right: 3%;
    transform: rotate(11deg);
    animation-duration: 15s;
  }
}

.demo-caption {
  position: absolute;
  top: -70px;
  right: -72px;
  z-index: 2;
  padding: 18px 30px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
  transform: rotate(-7deg);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.06em;
}

.caption-arrow {
  position: absolute;
  top: -14px;
  right: -20px;
  z-index: 1;
  width: 126px;
  color: #1d1d1b;
  transform: rotate(8deg);
}

.answers {
  background: #fff;
}

.answer-grid {
  width: min(1400px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(420px, 1.55fr);
  gap: 24px;
}

.answer-copy,
.product-panel,
.feature-card,
.workflow-inner,
.faq-inner,
.final-cta {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.75);
}

.answer-copy {
  display: flex;
  min-height: 430px;
  flex-direction: column;
  justify-content: center;
  padding: clamp(32px, 5vw, 58px);
  border-radius: 9px;
}

.answer-copy h3 {
  margin-bottom: 34px;
  font-size: clamp(1.8rem, 3vw, 2.55rem);
  font-weight: 800;
  letter-spacing: -0.07em;
  line-height: 0.98;
}

.answer-copy p,
.answer-copy strong {
  max-width: 420px;
  color: var(--muted);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 1.18;
}

.answer-copy strong {
  display: block;
  margin-top: 26px;
  color: #30302d;
}

.product-panel {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  display: grid;
  place-items: center;
  border-radius: 9px;
  background:
    radial-gradient(circle, rgba(23, 23, 23, 0.05) 0.8px, transparent 0.8px),
    linear-gradient(180deg, #fff, #fafafa);
  background-size: 9px 9px, auto;
}

.product-panel::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 46%;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.9));
  pointer-events: none;
}

.panel-tag {
  position: absolute;
  top: 58px;
  left: 50%;
  z-index: 3;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 30px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.panel-wide .panel-tag {
  top: 30px;
}

.product-panel img {
  position: relative;
  z-index: 1;
  width: min(280px, 46%);
  border-radius: 30px;
  box-shadow: 0 20px 60px rgba(23, 23, 23, 0.14);
  filter: grayscale(0.3) saturate(0.72);
}

.panel-wide img {
  transform: translateY(48px) scale(1.05);
}

.panel-wide::after {
  height: 34%;
}

.mini-window {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: auto;
  bottom: 28px;
  width: min(300px, calc(100% - 108px));
  transform: translateX(-50%);
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-soft);
}

.window-top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  margin-bottom: 12px;
  color: #595956;
  font-size: 12px;
  font-weight: 700;
}

.window-top strong {
  color: var(--ink);
  font-size: 15px;
}

.metric-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 34px;
  padding: 0 12px;
  margin-top: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #8c8c88;
  font-size: 12px;
  font-weight: 700;
}

.metric-row.active {
  color: var(--ink);
  background: #f9f9f9;
}

.metric-row strong {
  color: #22b65f;
}

.tooltip-card {
  position: relative;
  left: auto;
  bottom: auto;
  display: inline-flex;
  margin-top: 10px;
  padding: 11px 13px;
  border-radius: 7px;
  background: #111;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  box-shadow: var(--shadow-soft);
}

.score-widget {
  position: absolute;
  z-index: 2;
  top: 118px;
  left: 50%;
  width: min(340px, calc(100% - 80px));
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-soft);
}

.metrics-panel .panel-tag {
  top: 34px;
}

.metrics-panel img {
  transform: translateY(36px) scale(1.03);
}

.score-widget div {
  padding: 16px 14px;
  border-right: 1px solid var(--line);
}

.score-widget div:last-child {
  border-right: 0;
}

.score-widget span {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.score-widget strong {
  display: block;
  margin-top: 6px;
  font-size: 18px;
  letter-spacing: -0.06em;
}

.precision {
  background: var(--paper-soft);
}

.showcase,
.checkins-section {
  padding: clamp(78px, 10vw, 132px) 24px;
}

.showcase {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(300px, 1fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
}

.showcase.reverse .showcase-copy {
  order: 2;
}

.showcase-copy h2 {
  max-width: 620px;
  margin-bottom: 18px;
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  font-weight: 800;
  letter-spacing: -0.07em;
  line-height: 0.96;
}

.showcase-copy p {
  max-width: 520px;
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  font-weight: 650;
  letter-spacing: -0.045em;
  line-height: 1.24;
}

.showcase-phone {
  justify-self: center;
  width: min(390px, 100%);
  max-height: 760px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.showcase-phone img {
  width: 100%;
  aspect-ratio: 9 / 18.8;
  object-fit: cover;
  object-position: top center;
}

.future-section {
  padding-top: clamp(90px, 12vw, 150px);
}

.checkins-section {
  background: #fff;
}

.checkin-gallery {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 2.5vw, 24px);
  align-items: start;
}

.checkin-gallery img {
  width: 100%;
  aspect-ratio: 9 / 16.6;
  object-fit: cover;
  object-position: top center;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
}

.checkin-gallery img:nth-child(2) {
  margin-top: 56px;
}

.checkin-gallery img:nth-child(3) {
  margin-top: 24px;
}

.feature-row {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  overflow: hidden;
  border-radius: 14px;
  padding: 18px 18px 26px;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset;
}

.feature-card > img,
.feature-stack {
  margin-bottom: 24px;
}

.feature-card > img,
.feature-stack img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: top center;
  border-radius: 10px;
  filter: grayscale(0.22) saturate(0.8);
}

.feature-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.deep-dive-stack img:nth-child(2) {
  margin-top: 34px;
}

.feature-card h3 {
  margin-bottom: 10px;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.06em;
}

.feature-card p,
.step p,
.faq p {
  color: var(--muted);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.24;
}

.workflow-inner {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 46px;
  padding: clamp(34px, 6vw, 70px);
  border-radius: 22px;
  box-shadow: var(--shadow-soft);
}

.workflow .eyebrow,
.faq .eyebrow {
  margin-bottom: 20px;
}

.workflow p {
  margin-left: 0;
}

.steps {
  display: grid;
  gap: 12px;
}

.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 18px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
}

.step span {
  grid-row: 1 / 3;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: #1f1f1f;
  color: #fff;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
}

.step strong {
  font-size: 18px;
  letter-spacing: -0.05em;
}

.faq {
  background: #fff;
}

.faq-inner {
  width: min(980px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 60px;
  padding: clamp(30px, 5vw, 52px);
  border-radius: 20px;
}

.faq h2 {
  font-size: clamp(2.1rem, 4vw, 3.2rem);
}

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

.faq details {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
}

.faq summary {
  position: relative;
  list-style: none;
  cursor: pointer;
  padding: 20px 52px 20px 20px;
  font-weight: 800;
  letter-spacing: -0.055em;
}

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

.faq summary::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
}

.faq details[open] summary::after {
  content: "-";
}

.faq p {
  padding: 0 20px 20px;
}

.final-cta {
  width: min(900px, calc(100% - 48px));
  margin: clamp(60px, 8vw, 100px) auto;
  border-radius: 26px;
  padding: clamp(46px, 8vw, 84px) 24px;
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.final-cta p {
  margin-bottom: 30px;
}

.foot {
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 34px 0 48px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.foot div {
  display: flex;
  gap: 22px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 800ms ease, transform 800ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

@keyframes phoneRise {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(34px) scale(0.94);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0) scale(1);
  }
}

@keyframes floatPhone {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -12px;
  }
}

@keyframes chipDrift {
  0%,
  100% {
    transform: translateY(0) rotate(-1deg);
  }
  50% {
    transform: translateY(-10px) rotate(1deg);
  }
}

@keyframes pingFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes pingRing {
  from {
    opacity: 0.8;
    transform: scale(0.7);
  }
  to {
    opacity: 0;
    transform: scale(1.8);
  }
}

@keyframes orbitPulse {
  0%,
  100% {
    opacity: 0.55;
    transform: translateX(-50%) scale(0.96);
  }
  50% {
    opacity: 1;
    transform: translateX(-50%) scale(1.03);
  }
}

@keyframes statusPulse {
  0%, 100% {
    box-shadow: 0 0 0 6px rgba(52, 210, 111, 0.14);
  }
  50% {
    box-shadow: 0 0 0 11px rgba(52, 210, 111, 0.04);
  }
}

@keyframes scanSweep {
  0% {
    transform: translate(-50%, 0);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translate(-50%, var(--scan-distance, 700px));
    opacity: 0;
  }
}

.feature-card,
.product-panel,
.answer-copy,
.checkin-gallery img,
.showcase-phone img {
  transition: transform 260ms cubic-bezier(0.2, 0.8, 0.2, 1),
              box-shadow 260ms ease,
              border-color 220ms ease;
}

.feature-card:hover,
.product-panel:hover,
.answer-copy:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow-soft);
}

.checkin-gallery img:hover,
.showcase-phone img:hover {
  transform: translateY(-6px) scale(1.012);
}

.demo-phone-left::after,
.demo-phone-right::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 86%;
  height: 3px;
  transform: translate(-50%, 0);
  background: linear-gradient(90deg,
    rgba(52, 210, 111, 0) 0%,
    rgba(52, 210, 111, 0.6) 20%,
    rgba(255, 255, 255, 1) 50%,
    rgba(52, 210, 111, 0.6) 80%,
    rgba(52, 210, 111, 0) 100%);
  box-shadow: 0 0 14px rgba(52, 210, 111, 0.75),
              0 0 4px rgba(255, 255, 255, 0.95);
  border-radius: 99px;
  z-index: 3;
  pointer-events: none;
  animation: scanSweep 4.6s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.demo-phone-right::after {
  animation-delay: -2.3s;
}

@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;
  }
  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}

@media (max-width: 1060px) {
  .nav {
    grid-template-columns: 1fr auto;
    min-height: 66px;
  }

  .nav-links {
    position: absolute;
    left: auto;
    right: 0;
    top: calc(100% + 10px);
    display: grid;
    width: min(230px, calc(100vw - 48px));
    gap: 2px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #fff;
    box-shadow: var(--shadow-soft);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .nav-mascot-link--desktop {
    display: none;
  }

  .nav-mascot-link--mobile {
    display: block;
    right: 54px;
    top: 14px;
    left: auto;
    width: 62px;
    height: 52px;
    z-index: 4;
    transform: translateY(16px) rotate(4deg);
    animation: navMascotMobilePop 820ms cubic-bezier(0.2, 0.85, 0.18, 1.12) 900ms forwards,
      navMascotMobileBob 4.4s ease-in-out 2s infinite;
  }

  .nav-mascot-link--mobile img {
    width: 64px;
    height: 64px;
    bottom: -30px;
  }

  @keyframes navMascotMobilePop {
    0% {
      opacity: 0;
      transform: translateY(16px) rotate(4deg);
    }
    72% {
      opacity: 1;
      transform: translateY(-4px) rotate(-2deg);
    }
    100% {
      opacity: 1;
      transform: translateY(0) rotate(0deg);
    }
  }

  @keyframes navMascotMobileBob {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-3px) rotate(-1deg); }
  }

  .nav-links.open {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-links a {
    width: 100%;
    padding: 12px 14px;
    text-align: left;
  }

  .nav-links a::after {
    display: none;
  }

  .nav-actions {
    gap: 10px;
  }

  .nav-signin {
    display: none;
  }

  .nav-burger {
    display: grid;
    position: relative;
  }

  .hero {
    min-height: 900px;
    padding-top: 154px;
  }

  .phone-left {
    left: calc(50% - 250px);
  }

  .chip-right {
    right: 20px;
  }

  .demo-caption,
  .caption-arrow {
    display: none;
  }

  .answer-grid,
  .workflow-inner,
  .faq-inner {
    grid-template-columns: 1fr;
  }

  .answer-copy {
    min-height: auto;
  }
}

@media (max-width: 760px) {
  body {
    background-size: 56px 56px;
  }

  .nav {
    top: 12px;
    width: calc(100vw - 24px);
    left: 12px;
    right: auto;
    transform: none;
    padding: 10px;
    border-radius: 16px;
  }

  .nav-brand {
    font-size: 18px;
  }

  .nav-logo {
    width: 30px;
    height: 30px;
  }

  .nav-cta {
    display: none;
  }

  .hero {
    min-height: 760px;
    padding: 124px 18px 0;
  }

  .hero-copy p {
    font-size: 1rem;
    line-height: 1.26;
  }

  .hero-copy,
  .section-head {
    width: min(100%, 354px);
    margin-left: auto;
    margin-right: auto;
  }

  .hero h1 {
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(2.28rem, 10vw, 2.8rem);
    line-height: 1;
    letter-spacing: -0.06em;
  }

  .section-head h2,
  .workflow h2,
  .faq h2,
  .final-cta h2 {
    font-size: clamp(2rem, 10vw, 2.7rem);
    line-height: 1;
  }

  .hero-actions {
    gap: 10px;
  }

  .btn {
    width: 100%;
    max-width: 340px;
  }

  .hero-stage {
    height: 420px;
    margin-top: 22px;
  }

  .radar-map {
    width: 700px;
    bottom: 80px;
  }

  .radar-orbit {
    width: 360px;
    height: 360px;
    bottom: 60px;
  }

  .radar-glow {
    height: 180px;
  }

  .phone-shell {
    width: 182px;
    border-radius: 28px;
    padding: 7px;
  }

  .phone-shell img {
    border-radius: 22px;
  }

  .phone-main {
    bottom: 20px;
  }

  .phone-left,
  .map-label,
  .chip-right {
    display: none;
  }

  .metric-pin {
    min-height: 28px;
    gap: 5px;
    padding: 4px 8px 4px 5px;
    font-size: 11px;
  }

  .metric-pin::before {
    width: 10px;
    height: 10px;
  }

  .pin-a {
    left: 13%;
    top: 44%;
  }

  .pin-b {
    left: 22%;
    top: 31%;
  }

  .pin-c {
    right: 13%;
    top: 31%;
  }

  .pin-d {
    right: 11%;
    top: 54%;
  }

  .chip-top {
    left: auto;
    right: calc(50% - 105px);
    top: 58px;
    font-size: 11px;
    padding: 6px 11px;
    border-radius: 9px;
  }

  .visit-card {
    bottom: 24px;
    min-height: 58px;
    gap: 8px;
    padding: 10px;
  }

  .visit-copy span,
  .visit-card a {
    display: none;
  }

  .visit-metrics {
    gap: 10px;
  }

  .visit-metric {
    gap: 7px;
  }

  .status-dot {
    width: 14px;
    height: 14px;
  }

  .trailer,
  .answers,
  .precision,
  .workflow,
  .faq {
    padding: 72px 18px;
  }

  .section-head {
    margin-bottom: 36px;
  }

  .video-shell {
    padding: 6px;
    border-radius: 18px;
  }

  .demo-board {
    min-height: 500px;
  }

  .recording-board {
    min-height: auto;
  }

  .demo-video-crop {
    width: min(330px, 100%);
    height: min(650px, 118vw);
    --demo-crop-top: 96px;
    border-radius: 18px;
  }

  .demo-board::after {
    border-radius: 13px;
  }

  .recording-board {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "video video"
      "left  right";
    gap: 14px;
    align-items: center;
    justify-items: center;
    padding: 10px;
  }

  .demo-video-crop {
    grid-area: video;
  }

  .demo-phone {
    position: static;
    width: 100%;
    max-width: 150px;
    padding: 5px;
    border-radius: 22px;
    transform: none;
    --scan-distance: 320px;
  }

  .demo-phone img {
    border-radius: 17px;
  }

  .demo-phone-main {
    width: 230px;
  }

  .demo-phone-left {
    grid-area: left;
    justify-self: end;
    transform: rotate(-4deg);
  }

  .demo-phone-right {
    grid-area: right;
    justify-self: start;
    transform: rotate(4deg);
  }


  .answer-grid,
  .feature-row {
    gap: 14px;
  }

  .product-panel {
    min-height: 390px;
  }

  .mini-window {
    top: auto;
    bottom: 18px;
    width: min(270px, calc(100% - 96px));
  }

  .panel-wide .panel-tag {
    top: 24px;
  }

  .window-top {
    grid-template-columns: 1fr auto;
  }

  .product-panel img {
    width: min(218px, 64%);
  }

  .score-widget {
    top: 108px;
    width: min(320px, calc(100% - 66px));
  }

  .metrics-panel .panel-tag {
    top: 28px;
  }

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

  .showcase,
  .showcase.reverse,
  .checkins-section {
    width: auto;
    padding: 72px 18px;
    grid-template-columns: 1fr;
  }

  .showcase.reverse .showcase-copy {
    order: 0;
  }

  .showcase-copy {
    text-align: center;
  }

  .showcase-copy h2,
  .showcase-copy p {
    margin-left: auto;
    margin-right: auto;
  }

  .showcase-phone {
    width: min(330px, 100%);
    max-height: 620px;
  }

  .checkin-gallery {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding: 4px 18px 22px;
    margin-left: -18px;
    margin-right: -18px;
    scroll-snap-type: x mandatory;
  }

  .checkin-gallery img {
    flex: 0 0 min(72vw, 280px);
    scroll-snap-align: center;
  }

  .checkin-gallery img:nth-child(2),
  .checkin-gallery img:nth-child(3) {
    margin-top: 0;
  }

  .workflow-inner,
  .faq-inner {
    padding: 24px;
    gap: 28px;
  }

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

  .step span {
    grid-row: auto;
  }

  .final-cta {
    width: calc(100% - 36px);
    margin: 42px auto;
  }

  .foot,
  .foot div {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    max-width: 296px;
    font-size: 2.22rem;
  }

  .hero-copy p {
    max-width: 316px;
    margin-left: auto;
    margin-right: auto;
  }
}

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