:root {
  color-scheme: light;
  --bg: #f7faf8;
  --surface: #ffffff;
  --surface-soft: #f1f7f5;
  --surface-mint: #ddf7f4;
  --surface-warm: #fff4ea;
  --ink: #1f2329;
  --muted: #6e7582;
  --muted-strong: #555d6a;
  --line: rgba(31, 35, 41, 0.11);
  --line-strong: rgba(31, 35, 41, 0.18);
  --teal: #2aada8;
  --teal-dark: #168783;
  --teal-soft: #d8f6f3;
  --aqua: #72d2cf;
  --blue: #2f7ed8;
  --warm: #ff9f43;
  --coral: #e96c4c;
  --shadow: 0 26px 70px rgba(41, 51, 63, 0.13);
  --shadow-soft: 0 16px 42px rgba(41, 51, 63, 0.09);
  --radius-xl: 34px;
  --radius-lg: 28px;
  --radius-md: 22px;
  --radius-sm: 14px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(216, 246, 243, 0.46) 0%, rgba(247, 250, 248, 0) 420px),
    var(--bg);
}

body::selection {
  color: #fff;
  background: var(--teal-dark);
}

body.is-loading {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

img,
svg {
  display: block;
}

svg {
  width: 24px;
  height: 24px;
}

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

.icon-sprite symbol path,
svg path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.85;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 30;
  width: min(calc(100% - 32px), 1180px);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 14px 50px rgba(31, 35, 41, 0.11);
  backdrop-filter: blur(20px);
  transform: translateX(-50%);
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.92);
  border-color: var(--line);
  box-shadow: 0 12px 38px rgba(31, 35, 41, 0.14);
}

.brand,
.header-cta,
.nav a,
.store-button,
.screen-tabs button,
.social-row a,
.footer-links a {
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 10px 6px 6px;
  border-radius: 999px;
  font-weight: 800;
}

.brand:hover,
.header-cta:hover,
.nav a:hover,
.store-button:hover,
.screen-tabs button:hover,
.social-row a:hover,
.footer-links a:hover {
  transform: translateY(-1px);
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 15px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 24px rgba(42, 173, 168, 0.29);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.app-loader {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  gap: 18px;
  align-content: center;
  color: var(--ink);
  background:
    radial-gradient(circle at 52% 38%, rgba(114, 210, 207, 0.2), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, var(--bg) 100%);
  opacity: 1;
  visibility: visible;
  transition: opacity 420ms ease, visibility 420ms ease;
}

.app-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 112px;
  height: 112px;
  animation: loaderFloat 1.8s ease-in-out infinite;
}

.loader-icon::before {
  content: "";
  position: absolute;
  inset: -12px;
  border: 2px solid rgba(42, 173, 168, 0.15);
  border-top-color: rgba(42, 173, 168, 0.62);
  border-radius: 34px;
  animation: loaderSpin 1.3s linear infinite;
}

.loader-icon img {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 28px;
  box-shadow: 0 24px 54px rgba(31, 35, 41, 0.18);
}

.app-loader span {
  font-size: 20px;
  font-weight: 900;
}

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

.nav a {
  padding: 11px 14px;
  border-radius: 999px;
  color: var(--muted-strong);
  font-size: 14px;
  font-weight: 700;
}

.nav a:hover {
  color: var(--teal-dark);
  background: var(--teal-soft);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  color: #fff;
  background: var(--ink);
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 14px 28px rgba(31, 35, 41, 0.18);
}

.header-cta svg {
  width: 18px;
  height: 18px;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 540px);
  align-items: center;
  gap: 34px;
  overflow: hidden;
  padding: 142px max(30px, calc((100vw - var(--container)) / 2)) 106px;
  isolation: isolate;
}

.hero-map {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  background: #eef8f5;
}

.hero-map img {
  position: absolute;
  inset: -90px -30px auto auto;
  width: min(760px, 68vw);
  min-width: 520px;
  opacity: 0.42;
  filter: saturate(0.92) contrast(1.04);
  transform: rotate(-5deg) scale(1.08);
  transform-origin: top right;
}

.map-wash {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(247, 250, 248, 0.98) 0%, rgba(247, 250, 248, 0.88) 38%, rgba(247, 250, 248, 0.56) 68%, rgba(247, 250, 248, 0.9) 100%),
    linear-gradient(180deg, rgba(247, 250, 248, 0.18) 0%, rgba(247, 250, 248, 0.96) 100%);
}

.hero-route {
  position: absolute;
  right: 0;
  bottom: 6%;
  width: 80%;
  height: 68%;
  color: var(--teal);
  opacity: 0.92;
}

.hero-route path {
  fill: none;
  stroke-linecap: round;
}

.route-shadow {
  stroke: rgba(255, 255, 255, 0.92);
  stroke-width: 28;
}

.route-line {
  stroke: currentColor;
  stroke-width: 12;
  stroke-dasharray: 34 18;
  animation: routeDash 8s linear infinite;
}

.map-pin,
.cta-pin {
  position: absolute;
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border: 4px solid #fff;
  border-radius: 999px;
  background: var(--teal);
  box-shadow: 0 12px 22px rgba(31, 35, 41, 0.2);
}

.map-pin::after,
.cta-pin::after {
  content: "";
  position: absolute;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(42, 173, 168, 0.34);
  border-radius: inherit;
  animation: pinPulse 2.8s ease-out infinite;
}

.pin-a {
  right: 18%;
  top: 25%;
}

.pin-b {
  right: 41%;
  bottom: 27%;
  background: var(--warm);
}

.pin-c {
  right: 10%;
  bottom: 42%;
  background: var(--blue);
}

.hero-copy {
  max-width: 680px;
  padding-top: 18px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-size: 92px;
  line-height: 0.92;
  letter-spacing: 0;
}

.hero-slogan {
  margin: 22px 0 0;
  max-width: 650px;
  font-size: 42px;
  line-height: 1.08;
  font-weight: 850;
}

.hero-text {
  margin: 20px 0 0;
  max-width: 590px;
  color: var(--muted-strong);
  font-size: 20px;
  line-height: 1.62;
}

.store-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.store-row.center {
  justify-content: center;
}

.store-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 62px;
  min-width: 178px;
  padding: 10px 18px 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 16px 34px rgba(31, 35, 41, 0.08);
  font-size: 17px;
  font-weight: 850;
}

.store-button small {
  display: block;
  margin-bottom: 2px;
  color: currentColor;
  font-size: 11px;
  font-weight: 800;
  opacity: 0.68;
}

.store-dark {
  color: #fff;
  border-color: transparent;
  background: var(--ink);
}

.store-button:hover {
  box-shadow: 0 18px 40px rgba(31, 35, 41, 0.14);
}

.store-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  border-radius: 15px;
  background: var(--teal-soft);
  color: var(--teal-dark);
}

.store-dark .store-icon {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.store-icon svg {
  width: 20px;
  height: 20px;
}

.store-icon.play {
  position: relative;
}

.store-icon.play::before {
  content: "";
  width: 0;
  height: 0;
  margin-left: 3px;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid currentColor;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-pills span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid rgba(42, 173, 168, 0.22);
  border-radius: 999px;
  color: var(--teal-dark);
  background: rgba(216, 246, 243, 0.64);
  font-size: 14px;
  font-weight: 800;
}

.hero-product {
  position: relative;
  min-height: 690px;
}

.phone-mockup {
  position: relative;
  overflow: hidden;
  border: 10px solid #101418;
  border-radius: 42px;
  background: #101418;
  box-shadow: var(--shadow);
  transform-style: preserve-3d;
}

.phone-mockup img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 31px;
}

.phone-speaker {
  position: absolute;
  top: 10px;
  left: 50%;
  z-index: 2;
  width: 82px;
  height: 20px;
  border-radius: 999px;
  background: #101418;
  transform: translateX(-50%);
}

.phone-main {
  position: absolute;
  right: 44px;
  top: 0;
  width: 318px;
  height: 690px;
  animation: floatPhone 7s ease-in-out infinite;
}

.android-phone {
  border-width: 12px 9px 14px;
  border-radius: 36px;
  box-shadow:
    0 30px 80px rgba(31, 35, 41, 0.19),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.android-phone img {
  border-radius: 26px;
}

.android-camera {
  position: absolute;
  top: 12px;
  left: 50%;
  z-index: 3;
  width: 18px;
  height: 18px;
  border: 4px solid #101418;
  border-radius: 999px;
  background: #1c232a;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.12);
  transform: translateX(-50%);
}

.phone-secondary {
  position: absolute;
  left: 6px;
  top: 128px;
  width: 236px;
  height: 510px;
  border-width: 8px;
  opacity: 0.96;
  transform: rotate(-6deg);
  animation: floatPhoneSmall 8s ease-in-out infinite;
}

.floating-task {
  position: absolute;
  z-index: 4;
  display: grid;
  gap: 3px;
  min-width: 210px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.84);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 38px rgba(31, 35, 41, 0.15);
  backdrop-filter: blur(18px);
}

.floating-task strong {
  font-size: 16px;
}

.floating-task span:last-child {
  color: var(--muted);
  font-size: 14px;
}

.floating-task svg {
  width: 22px;
  height: 22px;
  color: var(--teal-dark);
}

.task-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--teal);
}

.task-one {
  left: 16px;
  top: 36px;
}

.task-two {
  right: 0;
  bottom: 110px;
}

.hero-next-peek {
  position: absolute;
  left: 50%;
  bottom: 22px;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  width: min(calc(100% - 40px), 760px);
  padding: 9px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 16px 44px rgba(31, 35, 41, 0.1);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
}

.hero-next-peek div {
  padding: 15px 18px;
  border-radius: 21px;
  background: rgba(216, 246, 243, 0.56);
}

.hero-next-peek strong,
.hero-next-peek span {
  display: block;
}

.hero-next-peek strong {
  font-size: 15px;
}

.hero-next-peek span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 13px;
}

.section {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
  padding: 96px 0;
}

.section-head {
  max-width: 850px;
  margin-bottom: 42px;
}

.section-head.compact {
  max-width: 720px;
  text-align: center;
  margin-right: auto;
  margin-left: auto;
}

.section h2,
.final-cta h2 {
  margin: 0;
  font-size: 54px;
  line-height: 1.06;
  letter-spacing: 0;
}

.section h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.2;
}

.section p {
  color: var(--muted-strong);
  line-height: 1.64;
}

.idea-section {
  width: 100%;
  max-width: none;
  padding-right: max(20px, calc((100vw - var(--container)) / 2));
  padding-left: max(20px, calc((100vw - var(--container)) / 2));
  background: linear-gradient(180deg, var(--bg), #eef8f5);
}

.idea-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.75fr) minmax(380px, 1.65fr) minmax(220px, 0.75fr);
  align-items: center;
  gap: 22px;
}

.person-panel {
  display: grid;
  gap: 18px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-soft);
}

.avatar,
.founder-avatar,
.supporter-avatar {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  border-radius: 28px;
  color: #fff;
  background: linear-gradient(145deg, var(--teal), var(--aqua));
  font-size: 28px;
  font-weight: 900;
}

.avatar-warm,
.supporter-avatar {
  background: linear-gradient(145deg, var(--warm), var(--coral));
}

.panel-label,
.side-kicker {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--teal-dark);
  background: var(--teal-soft);
  font-size: 13px;
  font-weight: 900;
}

.person-panel p {
  margin: 12px 0 0;
}

.city-connection {
  min-height: 430px;
}

.mini-map {
  position: relative;
  height: 430px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(90deg, rgba(47, 126, 216, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(47, 126, 216, 0.08) 1px, transparent 1px),
    #fbfdfb;
  background-size: 52px 52px;
  box-shadow: var(--shadow);
}

.mini-map svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.map-road {
  fill: none;
  stroke-linecap: round;
}

.muted-road {
  stroke: rgba(31, 35, 41, 0.12);
  stroke-width: 14;
}

.active-road {
  stroke: var(--teal);
  stroke-width: 16;
  stroke-dasharray: 28 14;
  animation: routeDash 9s linear infinite;
}

.city-point {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 14px 34px rgba(31, 35, 41, 0.1);
  color: var(--muted-strong);
  font-size: 14px;
  font-weight: 850;
}

.city-point::before {
  content: "";
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: var(--teal);
}

.point-home {
  left: 7%;
  top: 63%;
}

.point-helper {
  right: 8%;
  top: 24%;
}

.point-task {
  left: 42%;
  top: 42%;
}

.point-helper::before {
  background: var(--warm);
}

.point-task::before {
  background: var(--blue);
}

.task-preview-card {
  position: absolute;
  right: 9%;
  bottom: 14%;
  display: grid;
  gap: 6px;
  width: 190px;
  padding: 18px;
  border-radius: 24px;
  background: var(--ink);
  color: #fff;
  box-shadow: 0 18px 42px rgba(31, 35, 41, 0.24);
}

.task-preview-card span {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
}

.task-preview-card strong {
  font-size: 28px;
}

.value-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 22px;
}

.value-strip div {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 82px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--muted-strong);
  font-weight: 850;
}

.value-strip svg {
  flex: 0 0 auto;
  color: var(--teal-dark);
}

.steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.steps::before {
  content: "";
  position: absolute;
  top: 48px;
  left: 9%;
  right: 9%;
  height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--warm), var(--blue));
}

.step-card,
.scenario-card,
.feature-card,
.supporter-card {
  position: relative;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-soft);
}

.step-card {
  min-height: 255px;
}

.step-card svg,
.scenario-card svg,
.feature-card svg,
.safety-item svg {
  color: var(--teal-dark);
}

.step-number {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  margin-bottom: 46px;
  border: 7px solid var(--bg);
  border-radius: 999px;
  color: #fff;
  background: var(--teal);
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(42, 173, 168, 0.24);
}

.step-card svg {
  position: absolute;
  top: 28px;
  right: 24px;
  width: 30px;
  height: 30px;
}

.step-card p,
.scenario-card p,
.feature-card p,
.supporter-card p {
  margin: 12px 0 0;
}

.scenario-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1.2fr);
  gap: 24px;
  align-items: start;
}

.route-card {
  position: sticky;
  top: 110px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: #fff;
  box-shadow: var(--shadow);
}

.route-card-map {
  position: relative;
  height: 330px;
  overflow: hidden;
  background:
    linear-gradient(125deg, transparent 0 47%, rgba(42, 173, 168, 0.16) 47% 50%, transparent 50% 100%),
    linear-gradient(55deg, transparent 0 42%, rgba(255, 159, 67, 0.2) 42% 45%, transparent 45% 100%),
    linear-gradient(90deg, rgba(47, 126, 216, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(47, 126, 216, 0.08) 1px, transparent 1px),
    #f9fcf9;
  background-size: auto, auto, 44px 44px, 44px 44px;
}

.route-card-map svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  color: var(--teal);
}

.route-card-map path {
  stroke: currentColor;
  stroke-width: 16;
  stroke-linecap: round;
  stroke-dasharray: 26 13;
  animation: routeDash 7s linear infinite;
}

.route-pin {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border: 6px solid #fff;
  border-radius: 23px;
  color: #fff;
  font-size: 22px;
  font-weight: 900;
  box-shadow: 0 14px 30px rgba(31, 35, 41, 0.18);
}

.route-pin.start {
  left: 54px;
  top: 42px;
  background: var(--warm);
}

.route-pin.finish {
  right: 58px;
  bottom: 42px;
  background: var(--teal);
}

.route-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 14px;
}

.route-stats span {
  display: grid;
  gap: 4px;
  padding: 18px 14px;
  border-radius: 22px;
  background: var(--surface-soft);
  color: var(--muted);
  font-weight: 800;
}

.route-stats strong {
  color: var(--ink);
  font-size: 28px;
}

.scenario-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.scenario-card {
  min-height: 196px;
}

.scenario-card.wide {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  column-gap: 18px;
}

.scenario-card.wide h3,
.scenario-card.wide p {
  grid-column: 2;
}

.scenario-card svg,
.feature-card svg {
  width: 34px;
  height: 34px;
  margin-bottom: 32px;
}

.sides-section {
  width: 100%;
  max-width: none;
  padding-right: max(20px, calc((100vw - var(--container)) / 2));
  padding-left: max(20px, calc((100vw - var(--container)) / 2));
  background: linear-gradient(180deg, #eef8f5 0%, #fbf8f3 100%);
}

.sides-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.side-card {
  position: relative;
  overflow: hidden;
  min-height: 450px;
  padding: 38px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
}

.side-card::before {
  content: "";
  position: absolute;
  right: -60px;
  bottom: -80px;
  width: 280px;
  height: 280px;
  border-radius: 80px;
  background:
    linear-gradient(145deg, rgba(42, 173, 168, 0.12), rgba(47, 126, 216, 0.1));
  transform: rotate(18deg);
}

.side-card.performer::before {
  background: linear-gradient(145deg, rgba(255, 159, 67, 0.16), rgba(42, 173, 168, 0.12));
}

.side-card h3 {
  max-width: 520px;
  font-size: 34px;
  line-height: 1.12;
}

.side-card ul {
  position: relative;
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.side-card li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted-strong);
  font-size: 18px;
  font-weight: 750;
}

.side-card li::before {
  content: "";
  width: 12px;
  height: 12px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--teal);
}

.performer li::before {
  background: var(--warm);
}

.app-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 52px;
  align-items: center;
  margin-bottom: 34px;
}

.app-copy h2 {
  margin: 0;
}

.app-copy p:not(.eyebrow) {
  max-width: 620px;
  margin: 22px 0 0;
  font-size: 19px;
}

.screen-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.mobile-screen-tabs {
  display: none;
}

.screen-tabs button {
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--muted-strong);
  cursor: pointer;
  font-weight: 850;
}

.screen-tabs button svg {
  display: none;
}

.mobile-screen-tabs button svg {
  display: block;
}

.screen-tabs button.active {
  border-color: transparent;
  color: #fff;
  background: var(--teal);
  box-shadow: 0 14px 28px rgba(42, 173, 168, 0.22);
}

.mobile-screen-tabs button.active {
  border-color: transparent;
  color: #fff;
  background: var(--teal);
  box-shadow: 0 14px 28px rgba(42, 173, 168, 0.22);
}

.screen-phone {
  display: grid;
  justify-content: center;
}

.app-phone {
  width: 300px;
  height: 650px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.feature-card {
  min-height: 210px;
}

.guide-section {
  width: 100%;
  max-width: none;
  padding-right: max(20px, calc((100vw - var(--container)) / 2));
  padding-left: max(20px, calc((100vw - var(--container)) / 2));
  background:
    linear-gradient(180deg, #fbf8f3 0%, rgba(221, 247, 244, 0.74) 48%, var(--bg) 100%);
}

.guide-section .section-head {
  width: min(100%, var(--container));
  margin-right: auto;
  margin-left: auto;
}

.guide-section .section-head p:not(.eyebrow) {
  max-width: 760px;
  margin: 18px 0 0;
  font-size: 19px;
}

.guide-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 28px;
  width: min(100%, var(--container));
  min-width: 0;
  margin: 0 auto;
  align-items: start;
}

.guide-panel {
  min-width: 0;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.guide-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  min-width: 0;
}

.guide-tabs button {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--muted-strong);
  cursor: pointer;
  font-weight: 850;
  text-align: left;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.guide-tabs button:hover,
.guide-step-button:hover {
  transform: translateY(-1px);
}

.guide-tabs button svg {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
}

.guide-tabs button.active {
  border-color: rgba(42, 173, 168, 0.26);
  background: var(--teal-soft);
  color: var(--teal-dark);
  box-shadow: 0 14px 30px rgba(42, 173, 168, 0.16);
}

.guide-copy {
  min-width: 0;
  margin-top: 18px;
  padding: 24px;
  border-radius: 26px;
  background:
    linear-gradient(145deg, rgba(31, 35, 41, 0.95), rgba(22, 135, 131, 0.9));
  color: #fff;
}

.guide-copy h3 {
  margin-top: 10px;
  color: #fff;
  font-size: 32px;
}

.guide-copy p {
  max-width: 720px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
  overflow-wrap: anywhere;
}

.guide-count {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  font-weight: 900;
}

.guide-steps {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.guide-step-button {
  width: 100%;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 12px;
  min-height: 82px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--ink);
  cursor: pointer;
  text-align: left;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.guide-step-button.active {
  border-color: rgba(42, 173, 168, 0.38);
  background: rgba(216, 246, 243, 0.62);
  box-shadow: 0 14px 28px rgba(42, 173, 168, 0.12);
}

.guide-step-number {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 15px;
  color: #fff;
  background: var(--teal);
  font-size: 15px;
  font-weight: 900;
}

.guide-step-body {
  display: grid;
  gap: 5px;
  min-width: 0;
}

.guide-step-title {
  font-size: 17px;
  font-weight: 900;
  line-height: 1.18;
}

.guide-step-text {
  color: var(--muted-strong);
  font-size: 14px;
  line-height: 1.38;
}

.guide-visual {
  position: sticky;
  top: 110px;
  display: grid;
  justify-items: center;
  gap: 14px;
  min-width: 0;
}

.guide-phone {
  --focus-x: 6%;
  --focus-y: 4%;
  --focus-w: 82%;
  --focus-h: 8%;
  position: relative;
  width: 328px;
  aspect-ratio: 694 / 1548;
  overflow: hidden;
  border: 9px solid #101418;
  border-radius: 42px;
  background: #101418;
  box-shadow: var(--shadow);
}

.guide-phone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 31px;
  transition: opacity 180ms ease;
}

.guide-focus {
  position: absolute;
  left: var(--focus-x);
  top: var(--focus-y);
  z-index: 2;
  width: var(--focus-w);
  height: var(--focus-h);
  border: 3px solid #fff;
  border-radius: 18px;
  background: rgba(216, 246, 243, 0.12);
  box-shadow:
    0 0 0 999px rgba(31, 35, 41, 0.28),
    0 0 0 5px rgba(42, 173, 168, 0.58),
    0 18px 42px rgba(31, 35, 41, 0.22);
  pointer-events: none;
}

.guide-focus-dot {
  position: absolute;
  left: calc(var(--focus-x) + var(--focus-w) - 17px);
  top: calc(var(--focus-y) - 17px);
  z-index: 3;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 4px solid #fff;
  border-radius: 999px;
  color: #fff;
  background: var(--warm);
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(31, 35, 41, 0.22);
  pointer-events: none;
}

.guide-caption {
  display: grid;
  gap: 7px;
  width: min(100%, 390px);
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-soft);
}

.guide-caption strong {
  font-size: 18px;
}

.guide-caption span {
  color: var(--muted-strong);
  font-size: 15px;
  line-height: 1.45;
}

.safety-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 28px;
  align-items: center;
}

.safety-copy {
  padding: 38px;
  border-radius: var(--radius-xl);
  color: #fff;
  background:
    linear-gradient(145deg, rgba(31, 35, 41, 0.96), rgba(22, 135, 131, 0.92));
  box-shadow: var(--shadow);
}

.safety-copy .eyebrow,
.safety-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.safety-copy h2 {
  color: #fff;
}

.safety-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.safety-item {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 104px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-soft);
  color: var(--muted-strong);
  font-size: 18px;
  font-weight: 850;
}

.safety-item:nth-child(5) {
  grid-column: 1 / -1;
}

.founder-section {
  padding-top: 54px;
}

.founder-card {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 34px;
  align-items: center;
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(120deg, rgba(216, 246, 243, 0.84), rgba(255, 244, 234, 0.74)),
    #fff;
  box-shadow: var(--shadow);
}

.founder-photo {
  position: relative;
  overflow: hidden;
  width: 176px;
  height: 176px;
  margin: 0;
  border: 8px solid rgba(255, 255, 255, 0.62);
  border-radius: 48px;
  background: var(--teal-soft);
  box-shadow: 0 18px 38px rgba(31, 35, 41, 0.16);
}

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

.founder-avatar {
  width: 140px;
  height: 140px;
  border-radius: 46px;
  font-size: 54px;
}

.founder-copy h2 {
  max-width: 820px;
  margin: 0;
  font-size: 42px;
}

.founder-copy p:not(.eyebrow) {
  max-width: 780px;
  margin: 18px 0 0;
  font-size: 18px;
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.social-row a,
.footer-links a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--muted-strong);
  font-weight: 850;
}

.social-row a:hover,
.footer-links a:hover {
  color: var(--teal-dark);
  border-color: rgba(42, 173, 168, 0.26);
  background: var(--teal-soft);
}

.supporters-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.supporter-card {
  min-height: 250px;
}

.supporter-avatar {
  margin-bottom: 24px;
}

.supporter-avatar.mint {
  background: linear-gradient(145deg, var(--teal), var(--aqua));
}

.supporter-avatar.blue {
  background: linear-gradient(145deg, var(--blue), var(--teal));
}

.supporter-card a {
  display: inline-flex;
  margin-top: 18px;
  color: var(--teal-dark);
  font-weight: 900;
}

.final-cta {
  position: relative;
  overflow: hidden;
  width: min(calc(100% - 40px), var(--container));
  margin: 40px auto 0;
  padding: 90px 34px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(145deg, rgba(31, 35, 41, 0.94), rgba(22, 135, 131, 0.92));
  color: #fff;
  box-shadow: var(--shadow);
  isolation: isolate;
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.final-cta .eyebrow,
.final-cta p {
  color: rgba(255, 255, 255, 0.78);
}

.final-cta p {
  margin: 20px auto 0;
  max-width: 650px;
  font-size: 19px;
  line-height: 1.6;
}

.cta-map {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.42;
}

.cta-map svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.cta-map path {
  stroke: rgba(255, 255, 255, 0.38);
  stroke-width: 12;
  stroke-linecap: round;
  stroke-dasharray: 26 18;
  animation: routeDash 10s linear infinite;
}

.cta-pin.one {
  left: 14%;
  top: 25%;
}

.cta-pin.two {
  right: 18%;
  top: 42%;
  background: var(--warm);
}

.cta-pin.three {
  left: 43%;
  bottom: 18%;
  background: var(--blue);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  width: min(calc(100% - 40px), var(--container));
  margin: 24px auto 34px;
  color: var(--muted-strong);
}

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

.site-footer strong {
  color: var(--ink);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.policy-page {
  min-height: 100vh;
}

.policy-header {
  position: sticky;
  top: 18px;
  transform: translateX(-50%);
}

.policy-main {
  width: min(calc(100% - 40px), 980px);
  margin: 92px auto 0;
  padding: 58px 0 40px;
}

.policy-hero {
  display: grid;
  gap: 18px;
  margin-bottom: 28px;
}

.policy-hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(38px, 6vw, 76px);
  line-height: 0.94;
  letter-spacing: 0;
}

.policy-hero p,
.policy-section p,
.policy-card p,
.policy-card li,
.policy-list li {
  color: var(--muted-strong);
  font-size: 18px;
  line-height: 1.65;
}

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

.policy-card,
.policy-section {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-soft);
}

.policy-card {
  padding: 26px;
}

.policy-section {
  display: grid;
  gap: 14px;
  margin-top: 18px;
  padding: 28px;
}

.policy-card h2,
.policy-section h2 {
  margin: 0;
  font-size: 24px;
}

.policy-card ol,
.policy-list {
  display: grid;
  gap: 10px;
  margin: 14px 0 0;
  padding-left: 22px;
}

.policy-card a,
.policy-section a {
  color: var(--teal-dark);
  font-weight: 800;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  z-index: 80;
  max-width: min(calc(100% - 40px), 460px);
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: 999px;
  color: #fff;
  background: rgba(31, 35, 41, 0.92);
  box-shadow: 0 16px 38px rgba(31, 35, 41, 0.22);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 12px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes routeDash {
  to {
    stroke-dashoffset: -180;
  }
}

@keyframes pinPulse {
  0% {
    opacity: 0.54;
    transform: scale(0.62);
  }
  80%,
  100% {
    opacity: 0;
    transform: scale(1.5);
  }
}

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

@keyframes floatPhoneSmall {
  0%,
  100% {
    transform: translateY(0) rotate(-6deg);
  }
  50% {
    transform: translateY(13px) rotate(-5deg);
  }
}

@keyframes loaderFloat {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-8px) scale(1.03);
  }
}

@keyframes loaderSpin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 1080px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 118px;
  }

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

  .hero h1 {
    font-size: 78px;
  }

  .hero-slogan {
    font-size: 36px;
  }

  .hero-product {
    min-height: 580px;
    width: min(100%, 620px);
    margin: 0 auto;
  }

  .phone-main {
    right: 88px;
    width: 282px;
    height: 610px;
  }

  .phone-secondary {
    left: 42px;
    width: 210px;
    height: 454px;
  }

  .idea-grid,
  .safety-section,
  .scenario-layout,
  .app-showcase {
    grid-template-columns: 1fr;
  }

  .route-card {
    position: relative;
    top: auto;
  }

  .value-strip,
  .steps,
  .feature-grid,
  .supporters-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps::before {
    display: none;
  }

  .app-showcase {
    gap: 28px;
  }

  .founder-card {
    grid-template-columns: 170px minmax(0, 1fr);
  }

  .founder-photo {
    width: 156px;
    height: 156px;
    border-radius: 42px;
  }
}

@media (max-width: 760px) {
  .site-header {
    top: 10px;
    grid-template-columns: 1fr auto;
    width: calc(100% - 20px);
    padding: 8px;
  }

  .nav {
    display: none;
  }

  .brand {
    font-size: 15px;
  }

  .header-cta {
    min-height: 40px;
    padding: 0 13px;
  }

  .policy-main {
    width: calc(100% - 28px);
    margin-top: 74px;
    padding-top: 38px;
  }

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

  .policy-card,
  .policy-section {
    border-radius: 24px;
    padding: 22px;
  }

  .policy-hero h1 {
    font-size: 42px;
  }

  .hero {
    min-height: auto;
    gap: 26px;
    padding: 104px 20px 162px;
  }

  .hero h1 {
    font-size: 58px;
  }

  .hero-slogan {
    font-size: 30px;
  }

  .hero-text {
    font-size: 17px;
  }

  .store-button {
    width: 100%;
    justify-content: center;
  }

  .hero-map img {
    right: -190px;
    width: 700px;
    opacity: 0.34;
  }

  .hero-route {
    width: 120%;
    height: 50%;
    bottom: 16%;
  }

  .hero-product {
    min-height: 470px;
    width: 100%;
  }

  .phone-main {
    right: 0;
    width: 220px;
    height: 476px;
    border-width: 8px;
  }

  .android-phone {
    border-width: 10px 7px 12px;
    border-radius: 31px;
  }

  .android-phone img {
    border-radius: 23px;
  }

  .android-camera {
    top: 10px;
    width: 14px;
    height: 14px;
    border-width: 3px;
  }

  .phone-secondary {
    left: 0;
    top: 104px;
    width: 162px;
    height: 350px;
    border-width: 7px;
  }

  .phone-speaker {
    top: 8px;
    width: 58px;
    height: 15px;
  }

  .phone-mockup img {
    border-radius: 29px;
  }

  .android-phone img {
    border-radius: 23px;
  }

  .floating-task {
    min-width: 174px;
    padding: 13px 14px;
    border-radius: 20px;
  }

  .task-one {
    left: 0;
    top: 22px;
  }

  .task-two {
    right: 2px;
    bottom: 22px;
  }

  .hero-next-peek {
    grid-template-columns: 1fr;
    bottom: 18px;
  }

  .hero-next-peek div {
    padding: 12px 15px;
  }

  .section {
    width: min(calc(100% - 32px), var(--container));
    padding: 68px 0;
  }

  .idea-section,
  .sides-section {
    padding-right: 16px;
    padding-left: 16px;
  }

  .section h2,
  .final-cta h2 {
    font-size: 36px;
  }

  .section h3 {
    font-size: 20px;
  }

  .mini-map {
    height: 360px;
  }

  .person-panel,
  .step-card,
  .scenario-card,
  .feature-card,
  .supporter-card,
  .side-card,
  .safety-copy,
  .founder-card {
    border-radius: 24px;
  }

  .value-strip,
  .steps,
  .scenario-grid,
  .sides-grid,
  .feature-grid,
  .safety-items,
  .supporters-grid {
    grid-template-columns: 1fr;
  }

  .scenario-card.wide {
    display: block;
  }

  .route-card-map {
    height: 250px;
  }

  .route-stats {
    grid-template-columns: 1fr;
  }

  .side-card {
    min-height: auto;
    padding: 28px;
  }

  .side-card h3 {
    font-size: 28px;
  }

  .side-card li {
    font-size: 16px;
  }

  .app-phone {
    width: 238px;
    height: 516px;
    border-width: 8px;
  }

  .screen-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 8px;
    scrollbar-width: none;
  }

  .screen-tabs::-webkit-scrollbar {
    display: none;
  }

  .screen-tabs button {
    flex: 0 0 auto;
  }

  .app-copy p:not(.eyebrow) {
    font-size: 17px;
  }

  .safety-item:nth-child(5) {
    grid-column: auto;
  }

  .safety-copy {
    padding: 30px;
  }

  .safety-copy h2 {
    font-size: 33px;
    line-height: 1.12;
  }

  .safety-item {
    min-height: 86px;
    font-size: 16px;
  }

  .founder-card {
    grid-template-columns: 1fr;
    padding: 28px;
  }

  .founder-photo {
    width: min(100%, 260px);
    height: 260px;
    border-radius: 36px;
  }

  .founder-avatar {
    width: 108px;
    height: 108px;
    border-radius: 34px;
    font-size: 42px;
  }

  .founder-copy h2 {
    font-size: 31px;
  }

  .final-cta {
    width: calc(100% - 32px);
    padding: 70px 20px;
  }

  .site-footer {
    display: grid;
    width: calc(100% - 32px);
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 420px) {
  .hero h1 {
    font-size: 50px;
  }

  .hero-slogan {
    font-size: 27px;
  }

  .hero-product {
    min-height: 430px;
  }

  .phone-main {
    width: 198px;
    height: 430px;
  }

  .founder-photo {
    height: 230px;
  }

  .phone-secondary {
    width: 146px;
    height: 316px;
  }

  .floating-task {
    font-size: 13px;
  }
}

@media (max-width: 760px) {
  html,
  body {
    overflow-x: hidden;
  }

  #idea,
  #how,
  #scenarios,
  #safety,
  #app,
  .app-section,
  .founder-section {
    scroll-margin-top: 84px;
  }

  .site-header {
    top: 8px;
    width: calc(100% - 18px);
    gap: 8px;
    padding: 7px;
  }

  .brand {
    gap: 8px;
    padding-right: 8px;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
    border-radius: 13px;
  }

  .header-cta {
    min-height: 38px;
    padding: 0 12px;
    font-size: 13px;
  }

  .hero {
    gap: 18px;
    padding: 92px 16px 112px;
    text-align: center;
  }

  .hero-copy {
    max-width: 440px;
    margin: 0 auto;
    padding-top: 0;
  }

  .eyebrow {
    margin-bottom: 10px;
    font-size: 11px;
  }

  .hero h1 {
    font-size: 52px;
    line-height: 0.96;
  }

  .hero-slogan {
    margin-top: 14px;
    font-size: 26px;
    line-height: 1.12;
  }

  .hero-text {
    margin-top: 14px;
    font-size: 15px;
    line-height: 1.55;
  }

  .store-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 22px;
  }

  .store-button {
    width: 100%;
    min-width: 0;
    min-height: 54px;
    justify-content: center;
    gap: 8px;
    padding: 9px 10px;
    font-size: 14px;
    line-height: 1.05;
  }

  .store-button small {
    font-size: 10px;
  }

  .store-icon {
    width: 32px;
    height: 32px;
    border-radius: 12px;
  }

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

  .hero-pills span {
    justify-content: center;
    min-height: 32px;
    padding: 0 10px;
    font-size: 12px;
  }

  .hero-map img {
    top: -52px;
    right: -250px;
    width: 680px;
    min-width: 0;
    opacity: 0.28;
  }

  .map-wash {
    background:
      linear-gradient(180deg, rgba(247, 250, 248, 0.92) 0%, rgba(247, 250, 248, 0.68) 43%, rgba(247, 250, 248, 0.96) 100%),
      linear-gradient(90deg, rgba(247, 250, 248, 0.96), rgba(247, 250, 248, 0.5), rgba(247, 250, 248, 0.96));
  }

  .hero-route {
    right: -28%;
    bottom: 13%;
    width: 150%;
    height: 42%;
    opacity: 0.72;
  }

  .hero-product {
    min-height: 398px;
    width: min(100%, 360px);
    margin: 2px auto 0;
  }

  .phone-main {
    top: 0;
    right: calc(50% - 165px);
    width: 188px;
    height: 408px;
    border-width: 8px;
  }

  .android-phone {
    border-width: 9px 7px 11px;
    border-radius: 30px;
  }

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

  .android-camera {
    top: 9px;
    width: 13px;
    height: 13px;
    border-width: 3px;
  }

  .phone-secondary {
    top: 78px;
    left: calc(50% - 166px);
    width: 138px;
    height: 300px;
    border-width: 6px;
    border-radius: 31px;
    opacity: 0.98;
  }

  .phone-speaker {
    top: 7px;
    width: 50px;
    height: 13px;
  }

  .phone-mockup img,
  .phone-secondary img {
    border-radius: 22px;
  }

  .floating-task {
    min-width: 138px;
    max-width: 166px;
    gap: 2px;
    padding: 10px 11px;
    border-radius: 17px;
    text-align: left;
  }

  .floating-task strong {
    font-size: 13px;
  }

  .floating-task span:last-child {
    font-size: 11px;
  }

  .floating-task svg {
    width: 18px;
    height: 18px;
  }

  .task-dot {
    width: 9px;
    height: 9px;
  }

  .task-one {
    left: calc(50% - 168px);
    top: 12px;
  }

  .task-two {
    right: calc(50% - 176px);
    bottom: 12px;
  }

  .hero-next-peek {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    width: calc(100% - 24px);
    padding: 6px;
    border-radius: 22px;
  }

  .hero-next-peek div {
    padding: 10px 8px;
    border-radius: 17px;
  }

  .hero-next-peek strong {
    font-size: 11px;
    line-height: 1.15;
  }

  .hero-next-peek span {
    font-size: 10px;
  }

  .section {
    width: min(calc(100% - 28px), var(--container));
    padding: 58px 0;
  }

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

  .section h2,
  .final-cta h2 {
    font-size: 30px;
    line-height: 1.12;
  }

  .section h3 {
    font-size: 17px;
    line-height: 1.22;
  }

  .section p {
    font-size: 14px;
    line-height: 1.52;
  }

  .idea-section,
  .sides-section {
    padding-right: 14px;
    padding-left: 14px;
  }

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

  .city-connection {
    order: 2;
    grid-column: 1 / -1;
    min-height: 276px;
  }

  .person-panel {
    order: 1;
    gap: 12px;
    padding: 14px;
    border-radius: 20px;
  }

  .avatar,
  .founder-avatar,
  .supporter-avatar {
    width: 44px;
    height: 44px;
    border-radius: 16px;
    font-size: 18px;
  }

  .panel-label,
  .side-kicker {
    margin-bottom: 8px;
    padding: 6px 9px;
    font-size: 10px;
  }

  .person-panel p {
    margin-top: 8px;
    font-size: 12px;
  }

  .mini-map {
    height: 276px;
    border-radius: 24px;
    background-size: 36px 36px;
  }

  .muted-road {
    stroke-width: 10;
  }

  .active-road {
    stroke-width: 11;
  }

  .city-point {
    min-height: 32px;
    padding: 0 10px;
    font-size: 11px;
  }

  .city-point::before {
    width: 8px;
    height: 8px;
  }

  .task-preview-card {
    right: 6%;
    bottom: 9%;
    width: 142px;
    padding: 13px;
    border-radius: 18px;
  }

  .task-preview-card strong {
    font-size: 20px;
  }

  .value-strip,
  .steps,
  .scenario-grid,
  .feature-grid,
  .safety-items {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .value-strip {
    margin-top: 12px;
  }

  .value-strip div {
    min-height: 70px;
    padding: 12px;
    border-radius: 18px;
    gap: 9px;
    font-size: 12px;
    line-height: 1.25;
  }

  .value-strip svg {
    width: 20px;
    height: 20px;
  }

  .step-card,
  .scenario-card,
  .feature-card,
  .supporter-card {
    min-height: 0;
    padding: 16px;
    border-radius: 20px;
  }

  .step-number {
    width: 36px;
    height: 36px;
    margin-bottom: 26px;
    border-width: 5px;
    font-size: 13px;
  }

  .step-card svg {
    top: 18px;
    right: 16px;
    width: 22px;
    height: 22px;
  }

  .step-card p,
  .scenario-card p,
  .feature-card p {
    margin-top: 8px;
    font-size: 12px;
  }

  .scenario-layout {
    gap: 16px;
  }

  .route-card {
    border-radius: 24px;
  }

  .route-card-map {
    height: 182px;
    background-size: auto, auto, 34px 34px, 34px 34px;
  }

  .route-card-map path {
    stroke-width: 11;
  }

  .route-pin {
    width: 42px;
    height: 42px;
    border-width: 4px;
    border-radius: 15px;
    font-size: 16px;
  }

  .route-pin.start {
    left: 32px;
    top: 28px;
  }

  .route-pin.finish {
    right: 34px;
    bottom: 28px;
  }

  .route-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    padding: 8px;
  }

  .route-stats span {
    padding: 10px 8px;
    border-radius: 15px;
    font-size: 11px;
  }

  .route-stats strong {
    font-size: 18px;
  }

  .scenario-card svg,
  .feature-card svg {
    width: 25px;
    height: 25px;
    margin-bottom: 20px;
  }

  .scenario-card.wide {
    display: block;
    grid-column: 1 / -1;
  }

  .sides-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .side-card {
    padding: 22px;
    border-radius: 24px;
  }

  .side-card::before {
    right: -110px;
    bottom: -130px;
  }

  .side-card h3 {
    font-size: 24px;
  }

  .side-card ul {
    gap: 8px;
    margin-top: 18px;
  }

  .side-card li {
    gap: 9px;
    font-size: 14px;
  }

  .side-card li::before {
    width: 9px;
    height: 9px;
  }

  .app-showcase {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 52px;
    gap: 18px 12px;
    align-items: center;
    margin-bottom: 18px;
  }

  .app-copy {
    grid-column: 1 / -1;
  }

  .app-copy p:not(.eyebrow) {
    max-width: none;
    margin-top: 14px;
    font-size: 14px;
  }

  .screen-phone {
    grid-column: 1;
    align-self: start;
    justify-content: start;
    padding-left: 10px;
  }

  .screen-tabs {
    display: none;
  }

  .mobile-screen-tabs {
    grid-column: 2;
    align-self: center;
    display: grid;
    grid-template-columns: 1fr;
    align-content: center;
    justify-items: center;
    gap: 9px;
    margin-top: 0;
    padding-bottom: 0;
    overflow: visible;
  }

  .mobile-screen-tabs button {
    display: grid;
    place-items: center;
    width: 44px;
    min-width: 0;
    height: 44px;
    min-height: 44px;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.86);
    color: var(--muted-strong);
    box-shadow: 0 12px 28px rgba(31, 35, 41, 0.1);
  }

  .mobile-screen-tabs button span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  .mobile-screen-tabs button svg {
    width: 20px;
    height: 20px;
  }

  .app-phone {
    width: min(248px, calc(100vw - 114px));
    height: 538px;
    border-width: 7px;
    border-radius: 32px;
  }

  .feature-card h3,
  .scenario-card h3 {
    font-size: 15px;
  }

  .safety-section {
    gap: 14px;
  }

  .safety-copy {
    padding: 24px;
    border-radius: 24px;
  }

  .safety-copy h2 {
    font-size: 28px;
  }

  .safety-item,
  .safety-item:nth-child(5) {
    grid-column: auto;
  }

  .safety-item {
    min-height: 74px;
    gap: 9px;
    padding: 14px;
    border-radius: 18px;
    font-size: 13px;
    line-height: 1.25;
  }

  .safety-item svg {
    width: 21px;
    height: 21px;
    flex: 0 0 auto;
  }

  .founder-section {
    padding-top: 34px;
  }

  .founder-card {
    display: block;
    padding: 22px;
    border-radius: 24px;
  }

  .founder-photo {
    float: left;
    width: 132px;
    height: 132px;
    margin: 0 18px 14px 0;
    border-width: 5px;
    border-radius: 30px;
  }

  .founder-copy .eyebrow {
    padding-top: 6px;
  }

  .founder-copy h2 {
    clear: both;
    margin-top: 16px;
    font-size: 25px;
    line-height: 1.14;
  }

  .founder-copy p:not(.eyebrow) {
    margin-top: 14px;
    font-size: 15px;
    line-height: 1.52;
  }

  .founder-copy::after {
    content: "";
    display: block;
    clear: both;
  }

  .social-row {
    gap: 7px;
    margin-top: 16px;
  }

  .social-row a,
  .footer-links a {
    min-height: 34px;
    padding: 0 11px;
    font-size: 12px;
  }

  .final-cta {
    width: calc(100% - 28px);
    margin-top: 18px;
    padding: 48px 16px;
    border-radius: 24px;
  }

  .final-cta p {
    margin-top: 14px;
    font-size: 14px;
  }

  .site-footer {
    width: calc(100% - 28px);
    margin-top: 18px;
    gap: 14px;
    font-size: 13px;
  }

  .footer-links {
    gap: 7px;
  }
}

@media (max-width: 420px) {
  .hero {
    padding-right: 14px;
    padding-left: 14px;
  }

  .hero h1 {
    font-size: 48px;
  }

  .hero-slogan {
    font-size: 24px;
  }

  .hero-product {
    min-height: 378px;
    width: min(100%, 334px);
  }

  .phone-main {
    right: calc(50% - 152px);
    width: 174px;
    height: 378px;
  }

  .phone-secondary {
    top: 78px;
    left: calc(50% - 152px);
    width: 126px;
    height: 274px;
  }

  .task-one {
    left: calc(50% - 154px);
  }

  .task-two {
    right: calc(50% - 160px);
  }

  .section h2,
  .final-cta h2 {
    font-size: 28px;
  }

  .feature-card h3,
  .scenario-card h3 {
    font-size: 14px;
  }

  .founder-photo {
    width: 120px;
    height: 120px;
    margin-right: 14px;
    border-radius: 28px;
  }

  .founder-copy h2 {
    font-size: 23px;
  }
}

@media (max-width: 360px) {
  .store-row,
  .hero-pills,
  .idea-grid,
  .value-strip,
  .steps,
  .scenario-grid,
  .feature-grid,
  .safety-items {
    grid-template-columns: 1fr;
  }

  .hero-next-peek {
    grid-template-columns: 1fr;
  }

  .city-connection {
    order: 3;
  }

  .app-showcase {
    grid-template-columns: minmax(0, 1fr) 46px;
  }

  .screen-phone {
    padding-left: 0;
  }

  .mobile-screen-tabs button {
    width: 40px;
    height: 40px;
    min-height: 40px;
  }

  .mobile-screen-tabs button svg {
    width: 18px;
    height: 18px;
  }

  .app-phone {
    width: min(214px, calc(100vw - 92px));
    height: 464px;
  }

  .founder-photo {
    width: 104px;
    height: 104px;
  }

  .founder-copy h2 {
    font-size: 21px;
  }
}

@media (max-width: 1080px) {
  .guide-shell {
    grid-template-columns: 1fr;
  }

  .guide-visual {
    position: relative;
    top: auto;
  }

  .guide-phone {
    width: 300px;
  }
}

@media (max-width: 760px) {
  #guide {
    scroll-margin-top: 84px;
  }

  .guide-section {
    padding-right: 14px;
    padding-left: 14px;
  }

  .guide-section .section-head p:not(.eyebrow) {
    margin-top: 14px;
    font-size: 14px;
    line-height: 1.52;
  }

  .guide-shell {
    gap: 16px;
  }

  .guide-panel {
    padding: 14px;
    border-radius: 24px;
  }

  .guide-tabs {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
  }

  .guide-tabs::-webkit-scrollbar {
    display: none;
  }

  .guide-tabs button {
    flex: 0 0 auto;
    min-height: 46px;
    padding: 0 12px;
    border-radius: 18px;
    font-size: 13px;
  }

  .guide-tabs button svg {
    width: 19px;
    height: 19px;
  }

  .guide-copy {
    margin-top: 12px;
    padding: 18px;
    border-radius: 22px;
  }

  .guide-copy h3 {
    font-size: 24px;
  }

  .guide-copy p {
    font-size: 14px;
  }

  .guide-count {
    min-height: 28px;
    font-size: 11px;
  }

  .guide-steps {
    gap: 8px;
    margin-top: 12px;
  }

  .guide-step-button {
    grid-template-columns: 32px minmax(0, 1fr);
    min-height: 74px;
    padding: 12px;
    border-radius: 18px;
  }

  .guide-step-number {
    width: 32px;
    height: 32px;
    border-radius: 13px;
    font-size: 13px;
  }

  .guide-step-title {
    font-size: 14px;
  }

  .guide-step-text {
    font-size: 12px;
  }

  .guide-phone {
    width: min(270px, calc(100vw - 70px));
    border-width: 7px;
    border-radius: 32px;
  }

  .guide-phone img {
    border-radius: 24px;
  }

  .guide-focus {
    border-width: 2px;
    border-radius: 13px;
    box-shadow:
      0 0 0 999px rgba(31, 35, 41, 0.26),
      0 0 0 4px rgba(42, 173, 168, 0.58),
      0 14px 30px rgba(31, 35, 41, 0.2);
  }

  .guide-focus-dot {
    width: 30px;
    height: 30px;
    border-width: 3px;
    font-size: 12px;
  }

  .guide-caption {
    width: min(100%, 340px);
    padding: 14px;
    border-radius: 20px;
  }

  .guide-caption strong {
    font-size: 15px;
  }

  .guide-caption span {
    font-size: 13px;
  }
}

@media (max-width: 420px) {
  .guide-tabs button span {
    max-width: 118px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .guide-phone {
    width: min(248px, calc(100vw - 58px));
  }
}

@media (max-width: 360px) {
  .guide-phone {
    width: min(224px, calc(100vw - 52px));
  }
}

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

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

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