:root {
  color-scheme: light;
  --canvas: #f4f6f1;
  --surface: #ffffff;
  --ink: #0b1712;
  --forest: #073f2b;
  --forest-deep: #052a1e;
  --emerald: #00b96b;
  --mint: #c9f4dd;
  --coral: #ff6259;
  --blue: #7fc8d8;
  --quiet: #68736d;
  --line: rgba(11, 23, 18, 0.1);
  --display: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-ui: cubic-bezier(0.2, 0.8, 0.2, 1);
  --shadow-ambient: 0 32px 90px rgba(5, 42, 30, 0.14);
  --route-progress: 0;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--canvas);
  color: var(--ink);
  font-family: var(--display);
  font-size: 16px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

body.menu-open {
  overflow: hidden;
}

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

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

button {
  color: inherit;
  font: inherit;
}

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

::selection {
  color: #fff;
  background: var(--forest);
}

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

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  transform: translateY(-140%);
  transition: transform 180ms ease;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.page-shell {
  width: min(1400px, calc(100% - 96px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  display: grid;
  width: 100%;
  height: 84px;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 40px;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition:
    height 380ms var(--ease-out),
    color 280ms ease,
    background-color 280ms ease,
    border-color 280ms ease,
    backdrop-filter 280ms ease;
}

.site-header.scrolled {
  height: 70px;
  color: var(--ink);
  background: rgba(244, 246, 241, 0.86);
  border-color: var(--line);
  backdrop-filter: blur(18px) saturate(140%);
}

.brand {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-self: start;
  gap: 11px;
  font-size: 20px;
  font-weight: 760;
  letter-spacing: -0.045em;
}

.brand-mark {
  width: 36px;
  height: 36px;
  padding: 6px;
  overflow: visible;
  color: var(--mint);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  background: rgba(5, 42, 30, 0.5);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.12);
}

.brand-mark path,
.brand-mark circle {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
}

.site-header.scrolled .brand-mark {
  color: var(--forest);
  border-color: rgba(7, 63, 43, 0.12);
  background: rgba(201, 244, 221, 0.72);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.desktop-nav a,
.header-login {
  position: relative;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  font-size: 14px;
  font-weight: 650;
  letter-spacing: -0.02em;
  opacity: 0.82;
  transition: opacity 180ms ease;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 7px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  opacity: 0.8;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 280ms var(--ease-out);
}

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

.desktop-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

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

.header-login {
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  opacity: 1;
}

.site-header.scrolled .header-login {
  border-color: rgba(7, 63, 43, 0.12);
  background: rgba(255, 255, 255, 0.74);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 260ms var(--ease-out);
}

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

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

.mobile-nav {
  position: fixed;
  z-index: -1;
  inset: 0;
  display: flex;
  padding: 120px 30px 40px;
  flex-direction: column;
  gap: 8px;
  background: rgba(5, 42, 30, 0.97);
  color: #fff;
  backdrop-filter: blur(18px);
}

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

.mobile-nav a {
  display: flex;
  min-height: 58px;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.045em;
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  overflow: hidden;
  align-items: end;
  color: #fff;
  background: var(--forest-deep);
  isolation: isolate;
}

.hero-media,
.hero-wash,
.hero-grain {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  scale: 1.035;
  animation: hero-settle 2.2s var(--ease-out) both;
}

.hero-wash {
  background:
    linear-gradient(90deg, rgba(4, 35, 25, 0.94) 0%, rgba(4, 35, 25, 0.76) 34%, rgba(4, 35, 25, 0.16) 72%, rgba(4, 35, 25, 0.08) 100%),
    linear-gradient(180deg, rgba(4, 35, 25, 0.25) 0%, transparent 45%, rgba(4, 35, 25, 0.66) 100%);
}

.hero-grain {
  z-index: 1;
  opacity: 0.08;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.28'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
  pointer-events: none;
}

.hero-route {
  position: absolute;
  z-index: 2;
  inset: 0;
  opacity: 0.62;
  pointer-events: none;
}

.hero-route svg {
  width: 100%;
  height: 100%;
}

.hero-route path {
  fill: none;
  stroke: var(--coral);
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  stroke-linecap: round;
  stroke-width: 3;
  vector-effect: non-scaling-stroke;
  animation: hero-route 2.1s 900ms var(--ease-out) forwards;
  path-length: 1;
}

.hero-copy {
  position: relative;
  z-index: 5;
  padding-top: 160px;
  padding-bottom: clamp(100px, 13vh, 150px);
}

.eyebrow {
  display: flex;
  margin: 0 0 24px;
  align-items: center;
  gap: 13px;
  color: var(--forest);
  font-size: 12px;
  font-weight: 780;
  letter-spacing: 0.16em;
}

.eyebrow::before {
  width: 34px;
  height: 1px;
  background: currentColor;
  content: "";
}

.eyebrow.light {
  color: var(--mint);
}

.eyebrow.coral {
  color: var(--coral);
}

.eyebrow.mint {
  color: var(--mint);
}

.hero h1 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(66px, 8.2vw, 142px);
  font-weight: 700;
  letter-spacing: -0.075em;
  line-height: 0.86;
  text-wrap: balance;
  animation: hero-copy 1.1s 180ms var(--ease-out) both;
}

.hero h1 span {
  color: var(--mint);
}

.hero-lead {
  max-width: 640px;
  margin: 34px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(18px, 1.45vw, 23px);
  line-height: 1.55;
  animation: hero-copy 1s 320ms var(--ease-out) both;
}

.hero-cta-row {
  display: flex;
  margin-top: 34px;
  align-items: center;
  gap: 12px;
  animation: hero-copy 1s 420ms var(--ease-out) both;
}

.button {
  display: inline-flex;
  min-height: 54px;
  padding: 0 23px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 740;
  letter-spacing: -0.015em;
  transition:
    transform 240ms var(--ease-out),
    box-shadow 240ms ease,
    background-color 240ms ease,
    color 240ms ease;
}

.button svg {
  width: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

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

.button-primary {
  color: #053523;
  background: var(--mint);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.16);
}

.button-primary:hover {
  background: #e5fff0;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.22);
}

.button-ghost-light {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.button-ink {
  color: #fff;
  background: var(--ink);
}

.button-coral {
  color: #fff;
  background: var(--coral);
}

.hero-proof {
  display: flex;
  margin: 32px 0 0;
  padding: 0;
  gap: 24px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  font-weight: 650;
  list-style: none;
  animation: hero-copy 1s 520ms var(--ease-out) both;
}

.hero-proof li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-proof li::before {
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: var(--coral);
  content: "";
}

.hero-float {
  position: absolute;
  z-index: 6;
  display: flex;
  min-width: 215px;
  min-height: 72px;
  padding: 12px 16px 12px 12px;
  align-items: center;
  gap: 12px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 22px;
  background: rgba(5, 42, 30, 0.56);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(18px) saturate(140%);
  transition: transform 180ms ease-out;
}

.hero-float span:last-child {
  display: flex;
  flex-direction: column;
}

.hero-float b {
  font-size: 13px;
}

.hero-float small {
  color: rgba(255, 255, 255, 0.6);
  font-size: 11px;
}

.hero-float-pet {
  right: 9%;
  bottom: 21%;
}

.hero-float-weather {
  right: 25%;
  bottom: 9%;
}

.pet-avatar {
  display: inline-block;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: 15px;
  background: url("./assets/petzigoo-pets-hero-v2.webp") 73% 52% / 210% auto;
}

.pet-avatar.large {
  width: 116px;
  height: 116px;
  border: 5px solid rgba(255, 255, 255, 0.95);
  border-radius: 36px;
  box-shadow: 0 20px 52px rgba(5, 42, 30, 0.18);
}

.weather-sun {
  position: relative;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.12);
}

.weather-sun::before {
  position: absolute;
  inset: 11px;
  border-radius: 999px;
  background: var(--coral);
  box-shadow: 0 0 20px rgba(255, 98, 89, 0.5);
  content: "";
}

.scroll-cue {
  position: absolute;
  z-index: 8;
  right: 46px;
  bottom: 36px;
  display: flex;
  min-height: 44px;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.scroll-cue i {
  position: relative;
  width: 28px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
}

.scroll-cue i::after {
  position: absolute;
  top: 9px;
  left: 12px;
  width: 2px;
  height: 7px;
  border-radius: 2px;
  background: var(--mint);
  content: "";
  animation: scroll-dot 1.8s ease-in-out infinite;
}

.section-light {
  background: var(--canvas);
}

.section-dark,
.section-ink {
  color: #fff;
  background: var(--forest-deep);
}

.promise {
  position: relative;
  padding: clamp(130px, 16vw, 250px) 0;
  overflow: hidden;
}

.promise::after {
  position: absolute;
  top: 8%;
  right: -10%;
  width: 44vw;
  height: 44vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(127, 200, 216, 0.17), transparent 68%);
  content: "";
  pointer-events: none;
}

.promise-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 80px;
}

.promise-copy h2,
.story-intro h2,
.care-copy h2,
.discover-head h2,
.business-copy h2,
.trust-shell h2,
.final-copy h2 {
  margin: 0;
  font-size: clamp(52px, 6.3vw, 104px);
  font-weight: 680;
  letter-spacing: -0.07em;
  line-height: 0.94;
}

.promise-copy h2 span,
.care-copy h2 span,
.business-copy h2 span,
.trust-shell h2 span {
  color: var(--forest);
}

.promise-copy > p:last-child,
.care-copy > p,
.business-copy > p,
.discover-head > p,
.story-intro > p {
  max-width: 620px;
  margin: 32px 0 0;
  color: var(--quiet);
  font-size: clamp(18px, 1.4vw, 22px);
  line-height: 1.65;
}

.orbit-system {
  position: relative;
  width: min(650px, 48vw);
  aspect-ratio: 1;
  justify-self: end;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(7, 63, 43, 0.14);
  border-radius: 50%;
}

.orbit-one {
  inset: 8%;
}

.orbit-two {
  inset: 25%;
  border-style: dashed;
}

.orbit-core {
  position: absolute;
  inset: 38%;
  display: grid;
  border: 1px solid rgba(7, 63, 43, 0.13);
  border-radius: 38%;
  background: #fff;
  box-shadow: var(--shadow-ambient);
  place-items: center;
  rotate: 7deg;
}

.orbit-core svg {
  width: 58%;
  color: var(--forest);
}

.orbit-core path,
.orbit-core circle {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.8;
}

.orbit-node {
  position: absolute;
  display: flex;
  width: 172px;
  min-height: 104px;
  padding: 18px;
  flex-direction: column;
  justify-content: center;
  border: 1px solid rgba(7, 63, 43, 0.09);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 24px 60px rgba(5, 42, 30, 0.09);
  backdrop-filter: blur(14px);
}

.orbit-node span {
  color: var(--emerald);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.orbit-node b {
  margin-top: 5px;
  font-size: 20px;
  letter-spacing: -0.04em;
}

.orbit-node small {
  margin-top: 2px;
  color: var(--quiet);
}

.node-care { top: 2%; left: 15%; }
.node-discover { top: 28%; right: -2%; }
.node-walk { right: 14%; bottom: 2%; }
.node-book { bottom: 16%; left: -2%; }

.walk-film {
  position: relative;
  min-height: max(760px, 100svh);
  background: #061f17;
  --route-progress: 0;
  --cycle-progress: 0;
  --scene-progress: 0;
}

.walk-sticky {
  position: relative;
  display: grid;
  width: 100%;
  height: 100svh;
  min-height: 680px;
  overflow: hidden;
  grid-template-columns: minmax(300px, 0.78fr) minmax(470px, 1.22fr);
  align-items: center;
  color: #fff;
  background:
    radial-gradient(circle at 72% 42%, rgba(0, 185, 107, 0.17), transparent 35%),
    linear-gradient(145deg, #082d21 0%, #041912 66%, #081d17 100%);
  isolation: isolate;
}

.walk-stage-copy,
.walk-product-stage {
  transition: opacity 520ms ease, filter 520ms ease, transform 720ms var(--ease-out);
}

.walk-film.is-loop-resetting .walk-stage-copy,
.walk-film.is-loop-resetting .walk-product-stage {
  opacity: 0.18;
  filter: blur(8px);
}

.walk-map-atmosphere {
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: 0.38;
  mask-image: linear-gradient(90deg, transparent 0%, #000 35%, #000 100%);
}

.walk-map-atmosphere svg {
  width: 100%;
  height: 100%;
}

.walk-map-atmosphere path {
  fill: none;
  stroke: rgba(201, 244, 221, 0.16);
  stroke-width: 1.3;
  vector-effect: non-scaling-stroke;
}

.walk-stage-copy {
  position: relative;
  z-index: 12;
  max-width: 620px;
  padding-left: max(48px, calc((100vw - 1400px) / 2));
}

.walk-stage-copy h2 {
  margin: 0;
  font-size: clamp(62px, 7vw, 116px);
  font-weight: 660;
  letter-spacing: -0.075em;
  line-height: 0.9;
  transition: opacity 250ms ease, transform 460ms var(--ease-out);
}

.walk-stage-copy > p:not(.eyebrow) {
  max-width: 480px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 19px;
  line-height: 1.55;
}

.demo-play {
  display: inline-flex;
  min-height: 50px;
  margin-top: 30px;
  padding: 0 19px 0 8px;
  align-items: center;
  gap: 11px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  cursor: pointer;
}

.demo-play-icon {
  display: grid;
  width: 34px;
  height: 34px;
  padding-left: 2px;
  border-radius: 50%;
  background: var(--coral);
  font-size: 10px;
  place-items: center;
}

.demo-play.playing .demo-play-icon {
  box-shadow: 0 0 0 7px rgba(255, 111, 83, 0.12);
}

.walk-product-stage {
  position: relative;
  z-index: 3;
  width: 100%;
  height: 100%;
  perspective: 1400px;
}

.device-glow {
  position: absolute;
  top: 18%;
  left: 48%;
  width: 36vw;
  height: 55vh;
  border-radius: 50%;
  background: rgba(0, 185, 107, 0.15);
  filter: blur(70px);
  translate: -50% 0;
}

.demo-phone {
  position: absolute;
  z-index: 5;
  top: 50%;
  left: 50%;
  width: min(390px, 30vw);
  aspect-ratio: 390 / 790;
  padding: 11px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 62px;
  background: #07120e;
  box-shadow:
    0 70px 110px rgba(0, 0, 0, 0.45),
    inset 0 0 0 3px rgba(255, 255, 255, 0.04);
  transform: translate(-50%, -50%) rotateY(-7deg) rotateX(1deg);
  transform-style: preserve-3d;
  transition: transform 1s var(--ease-out), left 1s var(--ease-out), opacity 500ms ease;
}

.phone-hardware {
  position: absolute;
  z-index: 10;
  top: 18px;
  right: 29px;
  left: 29px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--ink);
  font-size: 10px;
  font-weight: 720;
}

.phone-hardware i {
  width: 82px;
  height: 24px;
  border-radius: 999px;
  background: #07120e;
}

.phone-screen {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 52px;
  background: var(--canvas);
}

.screen-state {
  position: absolute;
  inset: 0;
  padding: 65px 29px 28px;
  opacity: 0;
  transform: scale(0.97) translateY(18px);
  transition: opacity 560ms ease, transform 820ms var(--ease-out);
  pointer-events: none;
}

.screen-start {
  display: flex;
  align-items: center;
  flex-direction: column;
  color: var(--ink);
  background:
    radial-gradient(circle at 50% 32%, rgba(127, 200, 216, 0.24), transparent 32%),
    linear-gradient(180deg, #f4f7f2, #ecf5ef);
}

.screen-start::before {
  position: absolute;
  inset: auto -14% -7% 18%;
  height: 36%;
  border-radius: 50% 50% 0 0;
  background: rgba(201, 244, 221, 0.72);
  content: "";
  rotate: -8deg;
}

.start-topline {
  display: flex;
  width: 100%;
  margin-bottom: 38px;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 750;
}

.start-topline small {
  padding: 6px 10px;
  color: var(--forest);
  border-radius: 999px;
  background: var(--mint);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pet-portrait {
  position: relative;
  z-index: 1;
}

.pet-portrait::after {
  position: absolute;
  right: -10px;
  bottom: 1px;
  width: 27px;
  height: 27px;
  border: 4px solid var(--canvas);
  border-radius: 50%;
  background: var(--emerald);
  content: "";
}

.screen-kicker {
  position: relative;
  z-index: 1;
  margin: 26px 0 8px;
  color: var(--forest);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.screen-start h3,
.screen-complete h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--ink);
  font-size: 34px;
  font-weight: 720;
  letter-spacing: -0.065em;
  line-height: 0.98;
  text-align: center;
}

.walk-readiness {
  position: relative;
  z-index: 1;
  display: grid;
  width: 100%;
  margin-top: 30px;
  padding: 17px 16px 17px 45px;
  border: 1px solid rgba(7, 63, 43, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
}

.walk-readiness b {
  font-size: 12px;
}

.walk-readiness small {
  margin-top: 2px;
  color: var(--quiet);
  font-size: 9px;
}

.mini-pulse {
  position: absolute;
  top: 21px;
  left: 19px;
  width: 12px;
  height: 12px;
  border: 3px solid rgba(0, 185, 107, 0.28);
  border-radius: 50%;
  background: var(--emerald);
}

.phone-start-button,
.complete-story-cta {
  position: relative;
  z-index: 2;
  display: flex;
  width: 100%;
  min-height: 58px;
  margin-top: auto;
  padding: 0 20px;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  border: 0;
  border-radius: 20px;
  background: var(--forest);
  cursor: pointer;
  font-size: 13px;
  font-weight: 750;
  box-shadow: 0 16px 35px rgba(7, 63, 43, 0.23);
}

.phone-start-button span,
.complete-story-cta span {
  display: grid;
  width: 31px;
  height: 31px;
  border-radius: 50%;
  color: var(--forest);
  background: var(--mint);
  place-items: center;
}

.screen-gps {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #fff;
  background:
    radial-gradient(circle at 50% 49%, rgba(0, 185, 107, 0.2), transparent 35%),
    #071f17;
}

.gps-copy {
  position: absolute;
  z-index: 2;
  top: 76px;
  left: 29px;
  display: flex;
  flex-direction: column;
}

.gps-copy small {
  color: var(--mint);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.gps-copy strong {
  margin-top: 8px;
  font-size: 23px;
  letter-spacing: -0.045em;
}

.gps-copy span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
}

.gps-radar {
  position: relative;
  width: 260px;
  aspect-ratio: 1;
}

.gps-radar i {
  position: absolute;
  inset: 10%;
  border: 1px solid rgba(201, 244, 221, 0.23);
  border-radius: 50%;
  animation: gps-wave 2.6s ease-out infinite;
}

.gps-radar i:nth-child(2) { animation-delay: 0.7s; }
.gps-radar i:nth-child(3) { animation-delay: 1.4s; }
.gps-radar b {
  position: absolute;
  inset: calc(50% - 11px);
  border: 5px solid #fff;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 9px rgba(255, 98, 89, 0.18);
}

.gps-status {
  position: absolute;
  bottom: 34px;
  display: flex;
  min-height: 42px;
  padding: 0 16px;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  font-size: 10px;
}

.gps-status span,
.status-live {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--emerald);
  box-shadow: 0 0 0 5px rgba(0, 185, 107, 0.15);
}

.screen-walk {
  padding: 0;
  color: #fff;
  background: #0a2119;
}

.walk-map {
  position: relative;
  height: 72%;
  overflow: hidden;
  background:
    radial-gradient(circle at 70% 18%, rgba(0, 185, 107, 0.13), transparent 25%),
    #0b2b21;
}

.demo-map {
  width: 100%;
  height: 100%;
}

.demo-map-roads path {
  fill: none;
  stroke: rgba(201, 244, 221, 0.12);
  stroke-width: 2;
}

.demo-route-under,
.demo-route {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.demo-route-under {
  stroke: rgba(4, 22, 16, 0.54);
  stroke-width: 17;
}

.demo-route {
  stroke: var(--coral);
  stroke-dasharray: 1;
  stroke-dashoffset: calc(1 - var(--route-progress));
  stroke-width: 8;
}

.route-start {
  fill: var(--emerald);
  stroke: #fff;
  stroke-width: 4;
}

.route-position {
  offset-path: path("M126 628C155 584 143 528 201 493C244 467 281 492 312 447C353 389 300 342 351 292C390 254 450 279 473 224C492 178 459 145 509 98");
  offset-distance: calc(var(--route-progress) * 100%);
}

.route-position circle:first-child {
  fill: rgba(255, 98, 89, 0.26);
}

.route-position circle:last-child {
  fill: var(--coral);
  stroke: #fff;
  stroke-width: 4;
}

.walk-map-status {
  position: absolute;
  top: 58px;
  left: 23px;
  display: flex;
  min-height: 38px;
  padding: 0 13px;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(5, 35, 25, 0.74);
  backdrop-filter: blur(10px);
  font-size: 10px;
  font-weight: 700;
}

.walk-map-close {
  position: absolute;
  top: 56px;
  right: 22px;
  display: grid;
  width: 40px;
  height: 40px;
  padding: 0;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  background: rgba(5, 35, 25, 0.72);
  place-items: center;
}

.live-metrics {
  display: grid;
  height: 14%;
  padding: 11px 20px;
  grid-template-columns: 1.1fr 1fr 0.9fr;
  background: #0a2119;
}

.live-metrics > div {
  display: grid;
  align-content: center;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.live-metrics > div:last-child {
  padding-left: 12px;
  border: 0;
}

.live-metrics small {
  color: rgba(255, 255, 255, 0.42);
  font-size: 7px;
  font-weight: 750;
  letter-spacing: 0.13em;
}

.live-metrics strong {
  font-size: 23px;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.045em;
}

.live-metrics span {
  margin-left: 3px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 8px;
}

.walk-controls {
  display: grid;
  height: 14%;
  padding: 12px 18px 18px;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  background: #0a2119;
}

.walk-controls button {
  border: 0;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 11px;
  font-weight: 700;
}

.walk-controls button:last-child {
  color: var(--ink);
  background: #fff;
}

.screen-complete {
  display: flex;
  align-items: center;
  flex-direction: column;
  color: var(--ink);
  background: linear-gradient(180deg, #edf8f1, #f7f8f5);
}

.complete-mark {
  display: grid;
  width: 58px;
  height: 58px;
  margin-top: 18px;
  border-radius: 20px;
  color: #fff;
  background: var(--forest);
  box-shadow: 0 18px 40px rgba(7, 63, 43, 0.2);
  place-items: center;
}

.complete-mark span {
  display: grid;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--emerald);
  place-items: center;
}

.screen-complete .screen-kicker {
  margin-top: 24px;
}

.screen-complete h3 {
  font-size: 31px;
}

.complete-route-mini {
  width: 84%;
  height: 132px;
  margin-top: 18px;
  overflow: hidden;
  border-radius: 25px;
  background:
    linear-gradient(rgba(7, 63, 43, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 63, 43, 0.05) 1px, transparent 1px),
    #e4efe8;
  background-size: 32px 32px;
}

.complete-route-mini svg {
  width: 100%;
  height: 100%;
}

.complete-route-mini path {
  fill: none;
  stroke: var(--coral);
  stroke-linecap: round;
  stroke-width: 7;
}

.complete-stats {
  display: grid;
  width: 100%;
  margin-top: 16px;
  grid-template-columns: repeat(3, 1fr);
}

.complete-stats span {
  display: flex;
  align-items: center;
  flex-direction: column;
  border-right: 1px solid var(--line);
}

.complete-stats span:last-child { border: 0; }
.complete-stats b { font-size: 18px; letter-spacing: -0.04em; }
.complete-stats small { margin-top: 2px; color: var(--quiet); font-size: 7px; font-weight: 760; letter-spacing: 0.1em; }
.complete-story-cta { margin-top: auto; }

.walk-story-card {
  position: absolute;
  z-index: 7;
  top: 50%;
  left: 50%;
  width: min(345px, 27vw);
  aspect-ratio: 9 / 16;
  overflow: hidden;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 39px;
  background: var(--forest);
  box-shadow: 0 70px 120px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transform: translate(-38%, -50%) rotateY(24deg) rotateZ(3deg) scale(0.64);
  transform-origin: center;
  transition: opacity 700ms ease, transform 1.1s var(--ease-out);
}

.story-photo,
.story-shade {
  position: absolute;
  inset: 0;
}

.story-photo {
  background: url("./assets/hero-walk-cinematic.webp") 69% center / cover;
  filter: saturate(0.9) contrast(1.03);
}

.story-shade {
  background: linear-gradient(180deg, rgba(4, 25, 18, 0.45), transparent 37%, transparent 55%, rgba(4, 25, 18, 0.78));
}

.story-top {
  position: absolute;
  z-index: 2;
  top: 9%;
  right: 8%;
  left: 8%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.72);
  font-size: 7px;
  font-weight: 760;
  letter-spacing: 0.12em;
}

.story-brand {
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.05em;
}

.story-route-visual {
  position: absolute;
  z-index: 2;
  inset: 22% 9% 25%;
}

.story-route-visual svg {
  width: 100%;
  height: 100%;
}

.story-route-visual path {
  fill: none;
  stroke: var(--coral);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 7;
  filter: drop-shadow(0 4px 5px rgba(0, 0, 0, 0.28));
}

.story-bottom {
  position: absolute;
  z-index: 2;
  right: 8%;
  bottom: 8%;
  left: 8%;
}

.story-bottom > p {
  margin: 0 0 9px;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.story-bottom > div {
  display: flex;
  gap: 24px;
}

.story-bottom > div span {
  display: flex;
  align-items: flex-end;
  gap: 4px;
}

.story-bottom b {
  font-size: 32px;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.06em;
}

.story-bottom small {
  font-size: 7px;
  font-style: normal;
  letter-spacing: 0.08em;
}

.story-bottom > small {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.68);
  letter-spacing: 0;
}

.story-bottom > small b {
  color: var(--mint);
  font-size: inherit;
}

.metric-float {
  position: absolute;
  z-index: 4;
  display: flex;
  min-width: 155px;
  min-height: 78px;
  padding: 15px 18px;
  flex-direction: column;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
  opacity: 0;
  backdrop-filter: blur(16px);
  transition: opacity 450ms ease, transform 700ms var(--ease-out);
}

.metric-float small {
  color: var(--mint);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.metric-float strong {
  margin-top: 2px;
  font-size: 22px;
  letter-spacing: -0.04em;
}

.metric-distance { top: 20%; left: 6%; transform: translateX(18px); }
.metric-steps { right: 7%; bottom: 23%; transform: translateX(-18px); }
.metric-share { top: 18%; right: 8%; transform: translateX(-18px); }

.walk-progress {
  position: absolute;
  z-index: 20;
  right: 24px;
  top: 50%;
  display: flex;
  margin: 0;
  padding: 0;
  flex-direction: column;
  gap: 15px;
  list-style: none;
  transform: translateY(-50%);
}

.walk-progress::before,
.walk-progress::after {
  position: absolute;
  z-index: 0;
  right: 2px;
  top: 11px;
  width: 1px;
  height: calc(100% - 22px);
  content: "";
  background: rgba(255, 255, 255, 0.1);
}

.walk-progress::after {
  height: calc((100% - 22px) * var(--cycle-progress));
  background: linear-gradient(180deg, var(--mint), var(--coral));
  box-shadow: 0 0 12px rgba(255, 111, 83, 0.36);
}

.walk-progress li {
  display: flex;
  position: relative;
  z-index: 1;
  min-height: 22px;
  align-items: center;
  justify-content: flex-end;
  gap: 9px;
  color: rgba(255, 255, 255, 0.34);
  font-size: 8px;
  font-weight: 780;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 300ms ease;
}

.walk-progress li span {
  order: 2;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
  transition: scale 300ms var(--ease-out), background 300ms ease;
}

.walk-progress li b {
  opacity: 0;
  transform: translateX(7px);
  transition: opacity 300ms ease, transform 300ms var(--ease-out);
}

.walk-progress li.active {
  color: #fff;
}

.walk-progress li.active span {
  background: var(--coral);
  scale: 1.8;
}

.walk-progress li.active b {
  opacity: 1;
  transform: none;
}

.walk-film[data-step="start"] .screen-start,
.walk-film[data-step="gps"] .screen-gps,
.walk-film[data-step="walk"] .screen-walk,
.walk-film[data-step="complete"] .screen-complete,
.walk-film[data-step="story"] .screen-complete {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.walk-film[data-step="gps"] .demo-phone { transform: translate(-50%, -50%) rotateY(0deg) scale(1.02); }
.walk-film[data-step="walk"] .demo-phone { transform: translate(-50%, -50%) rotateY(4deg) rotateX(-1deg) scale(1.035); }
.walk-film[data-step="complete"] .demo-phone { transform: translate(-50%, -50%) rotateY(0deg) scale(1); }

.walk-film[data-step="walk"] .metric-distance,
.walk-film[data-step="walk"] .metric-steps,
.walk-film[data-step="complete"] .metric-distance,
.walk-film[data-step="complete"] .metric-steps {
  opacity: 1;
  transform: none;
}

.walk-film[data-step="story"] .demo-phone {
  left: 27%;
  opacity: 0.26;
  transform: translate(-50%, -50%) rotateY(18deg) scale(0.82);
}

.walk-film[data-step="story"] .walk-story-card {
  opacity: 1;
  transform: translate(-20%, -50%) rotateY(-5deg) rotateZ(-1deg) scale(0.93);
}

.walk-film[data-step="story"] .metric-share {
  opacity: 1;
  transform: none;
}

.story-world {
  position: relative;
  padding: clamp(130px, 15vw, 220px) 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 45%, rgba(0, 185, 107, 0.13), transparent 34%),
    #061e16;
}

.story-intro {
  text-align: center;
}

.story-intro .eyebrow {
  justify-content: center;
}

.story-intro h2 span {
  color: var(--coral);
}

.story-intro > p {
  margin-right: auto;
  margin-left: auto;
  color: rgba(255, 255, 255, 0.56);
}

.story-gallery {
  display: flex;
  width: min(1180px, 92vw);
  margin: 90px auto 0;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 4vw, 66px);
  perspective: 1400px;
  scrollbar-width: none;
}

.story-gallery::-webkit-scrollbar,
.discover-tabs::-webkit-scrollbar {
  display: none;
}

.story-choice {
  padding: 0;
  color: rgba(255, 255, 255, 0.46);
  border: 0;
  background: none;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  transition: color 300ms ease, transform 600ms var(--ease-out), opacity 400ms ease;
}

.story-choice:nth-child(1) { transform: rotateY(13deg) scale(0.9); }
.story-choice:nth-child(3) { transform: rotateY(-13deg) scale(0.9); }
.story-choice.active { z-index: 2; color: #fff; transform: translateY(-16px) rotateY(0) scale(1.08); }

.choice-frame {
  position: relative;
  display: block;
  width: clamp(190px, 19vw, 275px);
  aspect-ratio: 9 / 16;
  margin-bottom: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 32px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.32);
}

.choice-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 67% center;
}

.choice-photo::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(4, 25, 18, 0.76));
  content: "";
}

.choice-photo i,
.choice-route svg {
  position: absolute;
  z-index: 2;
  inset: 23% 14% 27%;
}

.choice-photo i::before {
  position: absolute;
  inset: 10% 14%;
  border: 4px solid var(--coral);
  border-top-color: transparent;
  border-left-color: transparent;
  border-radius: 44% 50% 38% 56%;
  content: "";
  rotate: 14deg;
}

.choice-photo b,
.choice-route b {
  position: absolute;
  z-index: 3;
  bottom: 15%;
  left: 10%;
  color: #fff;
  font-size: 34px;
  letter-spacing: -0.06em;
}

.choice-photo b small,
.choice-route b small {
  font-size: 10px;
  letter-spacing: 0.08em;
}

.choice-photo em,
.choice-route em {
  position: absolute;
  z-index: 3;
  bottom: 10%;
  left: 10%;
  color: rgba(255, 255, 255, 0.62);
  font-size: 8px;
  font-style: normal;
}

.choice-route {
  background: linear-gradient(155deg, #0d4030, #061b14);
}

.choice-route svg {
  width: 72%;
  height: 62%;
  margin: auto;
}

.choice-route path {
  fill: none;
  stroke: var(--coral);
  stroke-linecap: round;
  stroke-width: 8;
}

.choice-minimal {
  display: flex;
  padding: 15% 12%;
  align-items: flex-start;
  flex-direction: column;
  color: var(--forest);
  background: #edf6ef;
}

.choice-minimal > small {
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.choice-minimal > b {
  margin-top: auto;
  font-size: 65px;
  letter-spacing: -0.09em;
  line-height: 0.78;
}

.choice-minimal > b em {
  font-size: 18px;
  font-style: normal;
  letter-spacing: 0;
}

.choice-minimal > i {
  width: 100%;
  height: 5px;
  margin: 25px 0;
  border-radius: 999px;
  background: var(--coral);
}

.choice-minimal > span {
  color: var(--quiet);
  font-size: 9px;
}

.story-share-line {
  display: grid;
  width: min(880px, calc(100% - 48px));
  margin: 80px auto 0;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.story-share-line span:last-child {
  text-align: right;
}

.care {
  padding: clamp(130px, 15vw, 230px) 0;
  overflow: hidden;
}

.care-layout {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: clamp(70px, 10vw, 150px);
}

.care-visual {
  position: relative;
  min-height: 680px;
}

.care-photo {
  position: absolute;
  top: 0;
  left: 0;
  width: 73%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 46% 46% 34px 34px;
  box-shadow: var(--shadow-ambient);
}

.care-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.care-dashboard {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  width: 75%;
  padding: 25px;
  border: 1px solid rgba(7, 63, 43, 0.09);
  border-radius: 33px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 35px 90px rgba(5, 42, 30, 0.17);
  backdrop-filter: blur(22px);
}

.care-dash-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 750;
}

.care-dash-head b {
  color: var(--emerald);
}

.care-rings {
  display: grid;
  margin-top: 20px;
  grid-template-columns: repeat(4, 1fr);
}

.care-rings > div {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.care-rings i {
  position: relative;
  display: grid;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: conic-gradient(var(--emerald) calc(var(--value) * 1%), rgba(7, 63, 43, 0.09) 0);
  place-items: center;
}

.care-rings i::after {
  position: absolute;
  inset: 5px;
  border-radius: 50%;
  background: #fff;
  content: "";
}

.care-rings b {
  position: absolute;
  z-index: 1;
  margin-top: 15px;
  color: var(--forest);
  font-size: 10px;
}

.care-rings small {
  margin-top: 8px;
  color: var(--quiet);
  font-size: 8px;
}

.care-upcoming {
  display: grid;
  min-height: 74px;
  margin-top: 22px;
  padding: 10px 5px;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--line);
}

.care-calendar {
  display: grid;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  color: #fff;
  background: var(--coral);
  font-size: 13px;
  font-weight: 800;
  place-items: center;
}

.care-upcoming > span:nth-child(2) {
  display: flex;
  flex-direction: column;
}

.care-upcoming small { color: var(--quiet); font-size: 7px; font-weight: 800; letter-spacing: 0.12em; }
.care-upcoming b { margin-top: 2px; font-size: 11px; }
.care-upcoming em { color: var(--quiet); font-size: 8px; font-style: normal; }

.feature-list {
  margin: 54px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: grid;
  min-height: 68px;
  grid-template-columns: 52px 1fr;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.feature-list span {
  color: var(--emerald);
  font-size: 11px;
  font-weight: 800;
}

.feature-list b {
  font-size: 16px;
  letter-spacing: -0.025em;
}

.discover {
  padding: clamp(130px, 15vw, 220px) 0;
  background:
    radial-gradient(circle at 45% 80%, rgba(127, 200, 216, 0.13), transparent 28%),
    #0b1712;
}

.discover-head {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: end;
  gap: 60px;
}

.discover-head .eyebrow,
.discover-head h2 {
  grid-column: 1;
}

.discover-head h2 span {
  color: var(--blue);
}

.discover-head > p {
  margin: 0;
  grid-column: 2;
  grid-row: 1 / span 2;
  color: rgba(255, 255, 255, 0.54);
}

.discover-canvas {
  position: relative;
  min-height: 650px;
  margin-top: 92px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 46px;
  background: #0d2c22;
  box-shadow: 0 60px 140px rgba(0, 0, 0, 0.3);
}

.discover-map {
  position: absolute;
  inset: 0;
  opacity: 0.95;
  background:
    radial-gradient(circle at 68% 44%, rgba(0, 185, 107, 0.13), transparent 28%),
    linear-gradient(145deg, #15392d, #0c261e);
}

.discover-map::before {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(201, 244, 221, 0.09) 1px, transparent 1px);
  background-size: 20px 20px;
  content: "";
  mask-image: linear-gradient(90deg, #000, transparent 85%);
}

.discover-map svg {
  width: 100%;
  height: 100%;
}

.discover-map path {
  fill: none;
  stroke: rgba(201, 244, 221, 0.16);
  stroke-width: 2;
  vector-effect: non-scaling-stroke;
}

.map-pin,
.map-user {
  position: absolute;
  display: grid;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 17px 17px 17px 4px;
  background: rgba(201, 244, 221, 0.9);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.25);
  opacity: 0.5;
  place-items: center;
  rotate: -45deg;
  transform-origin: bottom left;
  transition: opacity 300ms ease, scale 450ms var(--ease-out), background 300ms ease;
}

.map-pin span {
  color: var(--forest);
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
  rotate: 45deg;
}

.map-pin.active {
  z-index: 2;
  opacity: 1;
  scale: 1.22;
  background: var(--coral);
}

.map-pin.active span {
  color: #fff;
}

.pin-vet { top: 27%; left: 22%; }
.pin-walker { top: 58%; left: 36%; }
.pin-hotel { top: 19%; left: 53%; }
.pin-groom { top: 62%; left: 65%; }

.map-user {
  top: 48%;
  left: 48%;
  width: 28px;
  height: 28px;
  border: 5px solid #fff;
  border-radius: 50%;
  background: var(--blue);
  opacity: 1;
  rotate: 0deg;
}

.map-user::after {
  position: absolute;
  width: 50px;
  height: 50px;
  border: 1px solid rgba(127, 200, 216, 0.65);
  border-radius: 50%;
  content: "";
  animation: map-user-pulse 2.4s ease-out infinite;
}

.discover-panel {
  position: absolute;
  z-index: 3;
  top: 34px;
  right: 34px;
  display: flex;
  width: min(470px, 40%);
  flex-direction: column;
  gap: 14px;
}

.discover-tabs {
  display: grid;
  padding: 6px;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(5, 42, 30, 0.72);
  backdrop-filter: blur(18px);
  scrollbar-width: none;
}

.discover-tabs button {
  min-height: 42px;
  padding: 0 8px;
  color: rgba(255, 255, 255, 0.55);
  border: 0;
  border-radius: 13px;
  background: transparent;
  cursor: pointer;
  font-size: 10px;
  font-weight: 700;
  transition: color 220ms ease, background 220ms ease;
}

.discover-tabs button[aria-selected="true"] {
  color: var(--ink);
  background: #fff;
}

.provider-card {
  overflow: hidden;
  color: var(--ink);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.22);
}

.provider-photo {
  height: 190px;
  background:
    linear-gradient(135deg, rgba(0, 185, 107, 0.14), rgba(127, 200, 216, 0.22)),
    url("./assets/petzigoo-pets-hero-v2.webp") center 48% / cover;
  transition: background-position 500ms var(--ease-out), filter 350ms ease;
}

.provider-photo[data-provider-photo="walker"] { background-position: 73% 46%; filter: hue-rotate(7deg) saturate(0.82); }
.provider-photo[data-provider-photo="hotel"] { background-position: 32% 55%; filter: saturate(0.75) brightness(1.05); }
.provider-photo[data-provider-photo="groom"] { background-position: 57% 42%; filter: hue-rotate(-12deg) saturate(0.88); }

.provider-content {
  padding: 24px;
}

.provider-content > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.verified {
  padding: 6px 9px;
  color: var(--forest);
  border-radius: 999px;
  background: var(--mint);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.provider-distance {
  color: var(--quiet);
  font-size: 9px;
}

.provider-content h3 {
  margin: 17px 0 0;
  font-size: 25px;
  letter-spacing: -0.045em;
}

.provider-content p {
  margin: 4px 0 0;
  color: var(--quiet);
  font-size: 11px;
}

.provider-content button {
  display: flex;
  width: 100%;
  min-height: 48px;
  margin-top: 20px;
  padding: 0 16px;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  border: 0;
  border-radius: 15px;
  background: var(--forest);
  font-size: 11px;
  font-weight: 700;
}

.business {
  padding: clamp(130px, 15vw, 220px) 0;
}

.business-shell {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  align-items: center;
  gap: clamp(70px, 8vw, 130px);
}

.business-actions {
  display: flex;
  margin-top: 40px;
  align-items: center;
  gap: 22px;
}

.text-link {
  position: relative;
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  color: var(--forest);
  font-size: 13px;
  font-weight: 700;
}

.text-link::after {
  position: absolute;
  right: 0;
  bottom: 8px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
}

.portal-scene {
  position: relative;
  min-height: 610px;
  perspective: 1400px;
}

.portal-window {
  position: absolute;
  top: 5%;
  left: 50%;
  width: 104%;
  min-height: 490px;
  overflow: hidden;
  border: 1px solid rgba(7, 63, 43, 0.12);
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 50px 110px rgba(5, 42, 30, 0.18);
  transform: translateX(-50%) rotateY(-7deg) rotateX(2deg);
}

.portal-top {
  display: flex;
  height: 56px;
  padding: 0 21px;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  background: var(--forest);
}

.portal-logo {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.045em;
}

.portal-logo small {
  margin-left: 5px;
  color: var(--mint);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.portal-top > div {
  display: flex;
  gap: 5px;
}

.portal-top i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
}

.portal-body {
  display: grid;
  min-height: 440px;
  grid-template-columns: 58px 1fr;
}

.portal-body aside {
  display: flex;
  padding: 22px 0;
  align-items: center;
  flex-direction: column;
  gap: 22px;
  background: #eef5f0;
}

.portal-body aside span {
  width: 21px;
  height: 21px;
  border: 2px solid rgba(7, 63, 43, 0.22);
  border-radius: 7px;
}

.portal-body aside span.active {
  border-color: var(--emerald);
  background: var(--emerald);
}

.portal-main {
  padding: 26px;
}

.portal-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.portal-title > div {
  display: flex;
  flex-direction: column;
}

.portal-title small,
.portal-lower small {
  color: var(--emerald);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.portal-title b {
  margin-top: 4px;
  font-size: 18px;
  letter-spacing: -0.035em;
}

.portal-title button {
  min-height: 36px;
  padding: 0 12px;
  color: #fff;
  border: 0;
  border-radius: 11px;
  background: var(--forest);
  font-size: 8px;
  font-weight: 700;
}

.portal-metrics {
  display: grid;
  margin-top: 24px;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.portal-metrics > span {
  display: flex;
  min-height: 98px;
  padding: 13px;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fbfcfb;
}

.portal-metrics small { color: var(--quiet); font-size: 7px; }
.portal-metrics b { margin-top: auto; font-size: 26px; letter-spacing: -0.05em; }
.portal-metrics em { color: var(--emerald); font-size: 7px; font-style: normal; }

.portal-lower {
  display: grid;
  margin-top: 18px;
  grid-template-columns: 1fr 128px;
  gap: 12px;
}

.portal-lower > div {
  min-height: 160px;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 17px;
}

.portal-lower p {
  display: grid;
  margin: 12px 0 0;
  padding: 8px 0;
  grid-template-columns: 22px 1fr auto;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--line);
}

.portal-lower p i {
  width: 21px;
  height: 21px;
  border-radius: 7px;
  background: var(--mint);
}

.portal-lower p span {
  display: flex;
  flex-direction: column;
}

.portal-lower p b { font-size: 7px; }
.portal-lower p em { color: var(--quiet); font-size: 6px; font-style: normal; }
.portal-lower p strong { color: var(--forest); font-size: 6px; }

.portal-calendar {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  background: var(--forest) !important;
}

.portal-calendar small { color: var(--mint); }
.portal-calendar b { font-size: 48px; letter-spacing: -0.06em; }
.portal-calendar span { color: rgba(255, 255, 255, 0.56); font-size: 8px; }

.sync-card {
  position: absolute;
  z-index: 4;
  display: flex;
  width: 190px;
  min-height: 92px;
  padding: 17px;
  flex-direction: column;
  border: 1px solid rgba(7, 63, 43, 0.11);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 24px 60px rgba(5, 42, 30, 0.15);
  backdrop-filter: blur(16px);
}

.sync-card span { color: var(--emerald); font-size: 8px; font-weight: 800; letter-spacing: 0.12em; }
.sync-card b { margin-top: 5px; font-size: 13px; }
.sync-card small { color: var(--quiet); font-size: 9px; }
.sync-client { left: -4%; bottom: 3%; }
.sync-reminder { right: -4%; bottom: 8%; }

.sync-line {
  position: absolute;
  right: 19%;
  bottom: 14%;
  left: 19%;
  height: 1px;
  background: linear-gradient(90deg, var(--emerald), var(--coral));
}

.trust {
  padding: 0 0 clamp(130px, 15vw, 220px);
}

.trust-shell {
  padding-top: 100px;
  border-top: 1px solid var(--line);
}

.trust-points {
  display: grid;
  margin-top: 90px;
  grid-template-columns: repeat(3, 1fr);
  gap: 44px;
}

.trust-points article {
  padding-top: 23px;
  border-top: 2px solid var(--forest);
}

.trust-points span {
  color: var(--emerald);
  font-size: 11px;
  font-weight: 800;
}

.trust-points h3 {
  margin: 26px 0 0;
  font-size: 22px;
  letter-spacing: -0.04em;
}

.trust-points p {
  margin: 12px 0 0;
  color: var(--quiet);
  font-size: 14px;
  line-height: 1.6;
}

.final-cta {
  position: relative;
  display: grid;
  min-height: 92vh;
  overflow: hidden;
  align-items: center;
  background:
    radial-gradient(circle at 50% 100%, rgba(0, 185, 107, 0.2), transparent 45%),
    #052a1e;
}

.final-route {
  position: absolute;
  inset: 0;
  opacity: 0.7;
}

.final-route svg {
  width: 100%;
  height: 100%;
}

.final-route path {
  fill: none;
  stroke: var(--coral);
  stroke-linecap: round;
  stroke-width: 3;
  vector-effect: non-scaling-stroke;
}

.final-copy {
  position: relative;
  z-index: 2;
  text-align: center;
}

.final-copy .eyebrow {
  justify-content: center;
}

.final-copy h2 {
  font-size: clamp(72px, 10vw, 160px);
}

.final-copy > p {
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 20px;
}

.final-actions {
  display: flex;
  margin-top: 36px;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.store-row {
  display: flex;
  margin-top: 40px;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.store-row > span {
  display: flex;
  min-width: 150px;
  min-height: 55px;
  padding: 9px 16px;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
}

.store-row small { color: var(--mint); font-size: 6px; font-weight: 800; letter-spacing: 0.13em; }
.store-row b { font-size: 14px; }

.site-footer {
  padding: 60px 0;
  color: rgba(255, 255, 255, 0.62);
  background: #031a12;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: center;
  gap: 24px;
}

.footer-brand {
  color: #fff;
}

.footer-grid > p {
  margin: 0;
  font-size: 12px;
}

.footer-grid nav {
  display: flex;
  gap: 21px;
  font-size: 11px;
  font-weight: 700;
}

.footer-note {
  grid-column: 1 / -1;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.34);
}

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 800ms ease, transform 1s var(--ease-out);
}

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

.demo-toast {
  position: fixed;
  z-index: 500;
  right: 50%;
  bottom: max(24px, env(safe-area-inset-bottom));
  width: min(520px, calc(100% - 36px));
  padding: 15px 20px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(5, 42, 30, 0.94);
  box-shadow: 0 18px 60px rgba(5, 42, 30, 0.25);
  transform: translateX(50%);
  font-size: 13px;
  font-weight: 650;
  text-align: center;
}

.demo-toast[hidden] {
  display: none;
}

@keyframes hero-settle {
  from { opacity: 0; scale: 1.1; }
  to { opacity: 1; scale: 1.035; }
}

@keyframes hero-copy {
  from { opacity: 0; transform: translateY(36px); }
  to { opacity: 1; transform: none; }
}

@keyframes hero-route {
  to { stroke-dashoffset: 0; }
}

@keyframes scroll-dot {
  0%, 100% { opacity: 0.2; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(13px); }
}

@keyframes gps-wave {
  0% { opacity: 0; transform: scale(0.35); }
  15% { opacity: 0.65; }
  100% { opacity: 0; transform: scale(1); }
}

@keyframes map-user-pulse {
  from { opacity: 0.7; scale: 0.45; }
  to { opacity: 0; scale: 1.2; }
}

@media (max-width: 1180px) {
  .page-shell { width: min(100% - 56px, 1120px); }
  .hero h1 { max-width: 720px; }
  .hero-float-pet { right: 4%; }
  .hero-float-weather { right: 18%; }
  .promise-grid { gap: 30px; }
  .orbit-system { width: 50vw; }
  .walk-sticky { grid-template-columns: 0.72fr 1.28fr; }
  .walk-stage-copy { padding-left: 36px; }
  .demo-phone { width: min(360px, 32vw); }
  .walk-story-card { width: min(320px, 29vw); }
  .discover-panel { width: 45%; }
  .business-shell { gap: 55px; }
  .portal-window { width: 100%; }
}

@media (max-width: 900px) {
  .site-header { grid-template-columns: 1fr auto; padding: 0 22px; }
  .desktop-nav, .header-login { display: none; }
  .menu-toggle { display: block; }
  .site-header.scrolled .menu-toggle { border-color: var(--line); background: rgba(255, 255, 255, 0.75); }
  .page-shell { width: min(100% - 40px, 760px); }
  .hero { min-height: 980px; }
  .hero-media img { object-position: 64% center; }
  .hero-wash { background: linear-gradient(180deg, rgba(4, 35, 25, 0.75), rgba(4, 35, 25, 0.42) 43%, rgba(4, 35, 25, 0.88) 78%); }
  .hero-copy { align-self: start; padding-top: 160px; padding-bottom: 340px; }
  .hero h1 { font-size: clamp(60px, 12vw, 92px); }
  .hero-lead { max-width: 610px; }
  .hero-float-pet { right: auto; bottom: 105px; left: 5%; }
  .hero-float-weather { right: 5%; bottom: 45px; }
  .scroll-cue { display: none; }
  .promise-grid, .care-layout, .business-shell { grid-template-columns: 1fr; }
  .promise-copy { max-width: 680px; }
  .orbit-system { width: min(680px, 100%); margin-top: 30px; justify-self: center; }
  .walk-sticky { min-height: 720px; grid-template-columns: 1fr; align-items: start; }
  .walk-stage-copy { z-index: 14; max-width: none; padding: 92px 28px 0; text-align: center; pointer-events: none; }
  .walk-stage-copy .eyebrow { justify-content: center; }
  .walk-stage-copy h2 { font-size: clamp(44px, 8.5vw, 70px); line-height: 0.94; }
  .walk-stage-copy h2 br { display: none; }
  .walk-stage-copy > p:not(.eyebrow) { max-width: 620px; margin: 13px auto 0; font-size: 15px; }
  .demo-play { position: absolute; right: 24px; bottom: 24px; pointer-events: auto; }
  .walk-product-stage { position: absolute; inset: 0; }
  .demo-phone { top: 58%; width: min(340px, 45vw); }
  .walk-story-card { top: 58%; width: min(315px, 42vw); }
  .metric-distance { top: 32%; left: 5%; }
  .metric-steps { right: 4%; bottom: 16%; }
  .metric-share { top: 31%; right: 4%; }
  .walk-progress { top: auto; right: 50%; bottom: 26px; flex-direction: row; transform: translateX(50%); }
  .walk-progress::before, .walk-progress::after { top: auto; right: auto; bottom: 2px; left: 11px; width: calc(100% - 22px); height: 1px; }
  .walk-progress::after { width: calc((100% - 22px) * var(--cycle-progress)); }
  .walk-progress li { flex-direction: column; gap: 6px; }
  .walk-progress li span { order: 0; }
  .walk-progress li b { display: none; }
  .walk-film[data-step="story"] .demo-phone { left: 23%; }
  .walk-film[data-step="story"] .walk-story-card { transform: translate(-5%, -50%) rotateY(-3deg) scale(0.9); }
  .story-gallery { gap: 18px; overflow-x: auto; justify-content: flex-start; scroll-snap-type: x mandatory; padding: 28px; }
  .story-choice { flex: 0 0 auto; scroll-snap-align: center; }
  .choice-frame { width: 220px; }
  .care-layout { gap: 100px; }
  .care-visual { width: min(670px, 100%); justify-self: center; }
  .care-copy { max-width: 660px; }
  .discover-head { grid-template-columns: 1fr; }
  .discover-head .eyebrow, .discover-head h2, .discover-head > p { grid-column: auto; grid-row: auto; }
  .discover-head > p { margin-top: 28px; }
  .discover-canvas { min-height: 760px; }
  .discover-panel { top: auto; right: 24px; bottom: 24px; left: 24px; width: auto; }
  .provider-photo { height: 145px; }
  .business-shell { gap: 80px; }
  .portal-scene { width: min(760px, 100%); justify-self: center; }
  .trust-points { gap: 24px; }
  .footer-grid { grid-template-columns: 1fr auto; }
  .footer-grid > p:not(.footer-note) { display: none; }
}

@media (max-width: 620px) {
  .page-shell { width: calc(100% - 36px); }
  .site-header { height: 72px; padding: 0 18px; }
  .site-header.scrolled { height: 64px; }
  .brand { font-size: 19px; }
  .brand-mark { width: 34px; height: 34px; }
  .hero { min-height: 900px; }
  .hero-media img { object-position: 67% center; }
  .hero-copy { padding-top: 122px; padding-bottom: 350px; }
  .eyebrow { margin-bottom: 18px; font-size: 10px; }
  .eyebrow::before { width: 25px; }
  .hero h1 { font-size: clamp(56px, 16.5vw, 76px); line-height: 0.9; }
  .hero-lead { margin-top: 24px; font-size: 16px; line-height: 1.5; }
  .hero-cta-row { align-items: stretch; flex-direction: column; }
  .button { min-height: 52px; }
  .hero-proof { display: none; }
  .hero-float { min-width: 0; min-height: 64px; padding: 9px 12px 9px 9px; border-radius: 19px; }
  .hero-float b { font-size: 11px; }
  .hero-float small { font-size: 9px; }
  .hero-float-pet { right: 10px; bottom: 142px; left: 18px; }
  .hero-float-weather { right: 18px; bottom: 64px; left: 68px; }
  .pet-avatar { width: 41px; height: 41px; border-radius: 13px; }
  .weather-sun { width: 40px; height: 40px; }
  .promise { padding: 110px 0; }
  .promise-copy h2, .story-intro h2, .care-copy h2, .discover-head h2, .business-copy h2, .trust-shell h2, .final-copy h2 { font-size: clamp(46px, 13vw, 62px); }
  .promise-copy > p:last-child, .care-copy > p, .business-copy > p, .discover-head > p, .story-intro > p { margin-top: 24px; font-size: 16px; }
  .orbit-system { width: 100%; margin-top: 55px; }
  .orbit-node { width: 122px; min-height: 79px; padding: 12px; border-radius: 19px; }
  .orbit-node b { font-size: 15px; }
  .orbit-node small { font-size: 9px; }
  .node-care { left: 7%; }
  .node-discover { right: -1%; }
  .node-walk { right: 7%; }
  .node-book { left: -1%; }
  .walk-film { min-height: max(680px, 100svh); }
  .walk-sticky { min-height: 630px; }
  .walk-stage-copy { padding: 82px 19px 0; }
  .walk-stage-copy .eyebrow { display: none; }
  .walk-stage-copy h2 { font-size: 39px; }
  .walk-stage-copy > p:not(.eyebrow) { max-width: 340px; margin-top: 8px; font-size: 13px; }
  .demo-play {
    position: static;
    width: max-content;
    min-height: 44px;
    margin: 14px auto 0;
    padding-right: 16px;
    font-size: 11px;
  }
  .demo-phone { top: 59%; width: min(300px, 76vw); border-radius: 50px; }
  .phone-screen { border-radius: 42px; }
  .screen-state { padding: 56px 22px 22px; }
  .phone-hardware { top: 16px; right: 24px; left: 24px; }
  .phone-hardware i { width: 65px; height: 20px; }
  .pet-avatar.large { width: 92px; height: 92px; border-radius: 29px; }
  .screen-start h3, .screen-complete h3 { font-size: 28px; }
  .start-topline { margin-bottom: 22px; }
  .screen-kicker { margin-top: 19px; }
  .walk-readiness { margin-top: 20px; }
  .walk-map-status { top: 48px; }
  .walk-map-close { top: 46px; }
  .metric-float { display: none; }
  .walk-story-card { top: 60%; width: min(285px, 74vw); border-radius: 32px; }
  .walk-film[data-step="story"] .demo-phone { left: 8%; opacity: 0.18; transform: translate(-50%, -50%) rotateY(18deg) scale(0.72); }
  .walk-film[data-step="story"] .walk-story-card { left: 50%; transform: translate(-50%, -50%) rotateY(0) scale(0.92); }
  .walk-progress { bottom: 18px; gap: 12px; }
  .story-world, .care, .discover, .business { padding: 110px 0; }
  .story-gallery { width: 100%; margin-top: 55px; padding: 24px 68px; gap: 22px; }
  .choice-frame { width: 220px; }
  .story-share-line { margin-top: 46px; grid-template-columns: 1fr; text-align: center; }
  .story-share-line > span:last-child { text-align: center; }
  .care-layout { gap: 75px; }
  .care-visual { min-height: 540px; }
  .care-photo { width: 84%; border-radius: 42% 42% 28px 28px; }
  .care-dashboard { width: 92%; padding: 19px; border-radius: 26px; }
  .care-rings i { width: 42px; height: 42px; }
  .care-rings b { margin-top: 13px; font-size: 9px; }
  .feature-list { margin-top: 38px; }
  .discover-canvas { width: calc(100% - 20px); min-height: 710px; margin-top: 55px; border-radius: 29px; }
  .discover-panel { right: 12px; bottom: 12px; left: 12px; }
  .discover-tabs { overflow-x: auto; grid-template-columns: repeat(4, minmax(80px, 1fr)); }
  .provider-photo { height: 130px; }
  .provider-content { padding: 18px; }
  .provider-content h3 { font-size: 21px; }
  .portal-scene { min-height: 470px; }
  .portal-window { top: 0; width: 118%; min-height: 380px; transform: translateX(-50%) scale(0.82) rotateY(-5deg); transform-origin: top center; }
  .sync-card { width: 155px; min-height: 80px; padding: 13px; }
  .sync-client { left: 0; }
  .sync-reminder { right: 0; }
  .business-actions { align-items: flex-start; flex-direction: column; }
  .trust { padding-bottom: 110px; }
  .trust-shell { padding-top: 80px; }
  .trust-points { margin-top: 55px; grid-template-columns: 1fr; gap: 32px; }
  .final-cta { min-height: 800px; }
  .final-copy h2 { font-size: 65px; }
  .final-actions { align-items: stretch; flex-direction: column; }
  .store-row { align-items: stretch; flex-direction: column; }
  .store-row > span { min-width: 0; align-items: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid nav { flex-wrap: wrap; }
  .footer-note { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .hero-route path { stroke-dashoffset: 0; }
  .walk-film { height: auto; }
  .walk-sticky { position: relative; min-height: 950px; }
  .walk-film .screen-state { opacity: 0; }
  .walk-film .screen-complete { opacity: 1; transform: none; }
  .walk-film .demo-phone { left: 38%; transform: translate(-50%, -50%) !important; }
  .walk-film .walk-story-card { left: 68%; opacity: 1; transform: translate(-50%, -50%) scale(0.78); }
  .walk-progress, .demo-play, .metric-float { display: none; }
}

@media (max-width: 620px) and (prefers-reduced-motion: reduce) {
  .walk-sticky { min-height: 850px; }
  .walk-film .demo-phone { display: none; }
  .walk-film .walk-story-card {
    top: 61%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
  }
}
