:root {
  color-scheme: dark;
  --bg: #0f0f13;
  --ink: #f6f6fb;
  --muted: #b8b3c7;
  --dim: #777184;
  --panel: #17171d;
  --panel-2: #20202a;
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.2);
  --blue: #5aa2ff;
  --blue-deep: #2f8cff;
  --violet: #8b5cf6;
  --mint: #43d6b5;
  --amber: #ffd44a;
  --danger: #ff5c7a;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  margin: 0;
  background:
    linear-gradient(180deg, rgba(47, 140, 255, 0.1), transparent 320px),
    var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.7), transparent 64%);
  animation: roadGrid 18s linear infinite;
}

a {
  color: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(15, 15, 19, 0.9);
  backdrop-filter: blur(18px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
  padding: 14px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand-logo {
  width: 132px;
  height: auto;
}

.brand-icon {
  width: 36px;
  height: 36px;
}

.brand-wordmark {
  width: 104px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 760;
}

.nav-links a {
  text-decoration: none;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: #24242d;
  color: var(--ink);
  font-size: 0.94rem;
  font-weight: 820;
  text-decoration: none;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.button.primary {
  border-color: transparent;
  background: linear-gradient(135deg, var(--blue-deep), var(--violet));
  color: #fff;
  box-shadow: 0 18px 38px rgba(47, 140, 255, 0.22);
}

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

.button.primary:hover,
.button.primary:focus-visible {
  box-shadow: 0 24px 48px rgba(139, 92, 246, 0.25);
}

[data-reveal],
[data-tilt] {
  --base-rotate: 0deg;
  --lift: 0px;
  --reveal-y: 0px;
  --rx: 0deg;
  --ry: 0deg;
  transform: perspective(900px) rotateZ(var(--base-rotate)) rotateX(var(--rx)) rotateY(var(--ry)) translateY(calc(var(--lift) + var(--reveal-y)));
}

.motion-ready [data-reveal] {
  --reveal-y: 28px;
  opacity: 0;
  filter: blur(10px);
  transition:
    opacity 720ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 720ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 720ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--delay, 0ms);
}

.motion-ready [data-reveal].is-visible {
  --reveal-y: 0px;
  opacity: 1;
  filter: blur(0);
}

.hero {
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(360px, 0.74fr);
  gap: 64px;
  align-items: center;
  width: min(100% - 40px, var(--max));
  min-height: calc(100svh - 64px);
  margin: 0 auto;
  padding: 72px 0 84px;
}

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

h1 {
  max-width: 720px;
  margin-bottom: 22px;
  font-size: clamp(4rem, 9vw, 8.2rem);
  line-height: 0.88;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.6rem, 6vw, 5.9rem);
  line-height: 0.95;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.22rem;
  line-height: 1.15;
}

p {
  color: var(--muted);
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--mint);
  font-size: 0.78rem;
  font-weight: 880;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.lede {
  max-width: 650px;
  color: var(--muted);
  font-size: clamp(1.16rem, 2.1vw, 1.42rem);
}

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

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 760px;
  margin: 60px 0 0;
  border-top: 1px solid var(--line);
}

.hero-stats div {
  min-width: 0;
  padding: 18px 18px 0 0;
}

.hero-stats div + div {
  padding-left: 18px;
  border-left: 1px solid var(--line);
}

.hero-stats dt {
  margin-bottom: 10px;
  color: var(--dim);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-stats dd {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.45rem, 3vw, 2.6rem);
  font-weight: 860;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.hero-preview {
  position: relative;
  display: grid;
  justify-items: center;
  animation: previewFloat 7s ease-in-out infinite;
}

.demo-label {
  position: absolute;
  top: -16px;
  right: 18px;
  z-index: 2;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(15, 15, 19, 0.86);
  padding: 8px 12px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.phone,
.mini-phone {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background:
    radial-gradient(circle at 20% 14%, rgba(139, 92, 246, 0.18), transparent 32%),
    linear-gradient(180deg, #1b1b23, #0f0f13);
  box-shadow: 0 42px 96px rgba(0, 0, 0, 0.44);
}

[data-tilt] {
  --mx: 50%;
  --my: 40%;
  transform-style: preserve-3d;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
  will-change: transform;
}

.phone[data-tilt]::after,
.screen-card[data-tilt]::after,
.stamp-card[data-tilt]::after,
.cta-panel[data-tilt]::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(circle at var(--mx) var(--my), rgba(255, 255, 255, 0.16), transparent 32%);
  transition: opacity 220ms ease;
}

.phone[data-tilt]:hover::after,
.screen-card[data-tilt]:hover::after,
.stamp-card[data-tilt]:hover::after,
.cta-panel[data-tilt]:hover::after {
  opacity: 1;
}

.phone > *,
.mini-phone > * {
  position: relative;
  z-index: 1;
}

.phone {
  width: min(100%, 430px);
  min-height: 720px;
  border-radius: 52px;
  padding: 28px;
}

.screenshot-phone {
  padding: 0;
  background: #050507;
}

.screenshot-phone::before {
  display: none;
}

.phone.screenshot-phone {
  min-height: 0;
  aspect-ratio: 828 / 1800;
  height: min(76vh, 760px);
}

.mini-phone.screenshot-phone {
  min-height: 0;
  height: 520px;
}

.app-screenshot {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: saturate(1.04) contrast(1.02);
}

.phone::before,
.mini-phone::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 15px;
  z-index: 3;
  width: 112px;
  height: 28px;
  border-radius: 999px;
  background: #050507;
  transform: translateX(-50%);
}

.phone-status {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  margin-bottom: 44px;
  color: var(--ink);
  font-size: 0.85rem;
  font-weight: 800;
}

.app-title > span,
.mini-header > span,
.receipt-row div > span,
.stamp > span,
.stamp-card > span,
.passport-stamp > span {
  color: var(--dim);
  font-size: 0.7rem;
  font-weight: 880;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.app-title strong {
  display: block;
  margin-top: 6px;
  color: var(--ink);
  font-size: 4.8rem;
  line-height: 0.9;
  font-variant-numeric: tabular-nums;
}

.app-title p {
  max-width: 320px;
  margin: 16px 0 0;
  font-size: 1.02rem;
}

.car-stage {
  position: relative;
  height: 170px;
  margin: 38px -8px 30px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(ellipse at 50% 78%, rgba(90, 162, 255, 0.2), transparent 38%),
    linear-gradient(180deg, transparent 0 58%, rgba(255, 255, 255, 0.035) 59%, transparent 61%);
  overflow: hidden;
}

.car-stage::before {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 15px;
  height: 64px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 50%;
  border-left-color: transparent;
  border-right-color: transparent;
  transform: perspective(240px) rotateX(58deg);
  opacity: 0.75;
}

.car-body {
  position: absolute;
  left: 26px;
  right: 18px;
  bottom: 55px;
  height: 58px;
  border-radius: 20px 70px 24px 18px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.92), rgba(210, 216, 225, 0.94) 42%, rgba(124, 132, 145, 0.98)),
    linear-gradient(180deg, #f8fafc, #8b94a3);
  clip-path: polygon(2% 58%, 11% 28%, 34% 14%, 62% 12%, 86% 26%, 98% 48%, 94% 78%, 10% 84%);
  box-shadow:
    inset 0 -13px 22px rgba(0, 0, 0, 0.28),
    0 18px 28px rgba(0, 0, 0, 0.28);
  animation: carIdle 2.7s ease-in-out infinite;
}

.car-body::before {
  content: "";
  position: absolute;
  left: 102px;
  top: 9px;
  width: 152px;
  height: 26px;
  border-radius: 38px 54px 8px 8px;
  background:
    linear-gradient(90deg, rgba(13, 18, 27, 0.96), rgba(50, 71, 100, 0.92));
  clip-path: polygon(0 100%, 20% 12%, 72% 4%, 100% 100%);
}

.car-body::after {
  content: "";
  position: absolute;
  left: 52px;
  right: 26px;
  bottom: 18px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(47, 140, 255, 0.95), transparent);
  box-shadow: 0 0 18px rgba(47, 140, 255, 0.45);
}

.wheel {
  position: absolute;
  bottom: 36px;
  z-index: 2;
  width: 48px;
  height: 48px;
  border: 8px solid #16171d;
  border-radius: 50%;
  background:
    radial-gradient(circle, #d7d9de 0 18%, #323640 19% 34%, transparent 35%),
    conic-gradient(from 0deg, #cfd4dc 0 10%, #5e6470 10% 13%, #cfd4dc 13% 25%, #5e6470 25% 28%, #cfd4dc 28% 40%, #5e6470 40% 43%, #cfd4dc 43% 100%);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.34);
  animation: wheelRoll 2.2s linear infinite;
}

.wheel.left {
  left: 72px;
}

.wheel.right {
  right: 54px;
}

.road-line {
  position: absolute;
  left: 64px;
  right: 64px;
  bottom: 8px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.road-line::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 -36%;
  width: 36%;
  border-radius: inherit;
  background: linear-gradient(90deg, transparent, rgba(90, 162, 255, 0.75), transparent);
  animation: roadPulse 1.9s ease-in-out infinite;
}

.receipt-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--line);
}

.receipt-row div {
  min-width: 0;
  background: rgba(255, 255, 255, 0.035);
  padding: 18px 14px;
}

.receipt-row strong {
  display: block;
  margin-top: 6px;
  font-size: 1.28rem;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

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

.stamp {
  min-height: 92px;
  border: 1px dashed rgba(139, 92, 246, 0.7);
  border-radius: 18px;
  background: rgba(139, 92, 246, 0.14);
  padding: 14px;
  transform: rotate(-1.5deg);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.stamp strong {
  display: block;
  margin-top: 12px;
  font-size: 0.96rem;
}

.stamp.green {
  border-color: rgba(67, 214, 181, 0.7);
  background: rgba(67, 214, 181, 0.12);
  transform: rotate(1.2deg);
}

.stamp.blue {
  border-color: rgba(90, 162, 255, 0.7);
  background: rgba(90, 162, 255, 0.12);
  transform: rotate(-0.6deg);
}

.section {
  padding: 96px 0;
}

.section:nth-of-type(even) {
  background: #141419;
}

.wrap {
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
}

.section-head {
  max-width: 900px;
  margin-bottom: 44px;
}

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

.screen-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--panel);
  padding: 18px;
}

.screen-card:hover {
  border-color: rgba(90, 162, 255, 0.34);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.24);
}

.screen-card > * {
  position: relative;
  z-index: 1;
}

.screen-card h3 {
  margin-top: 22px;
}

.screen-card p {
  margin-bottom: 0;
}

.mini-phone {
  min-height: 440px;
  border-radius: 34px;
  padding: 28px 20px 20px;
}

.mini-phone::before {
  width: 82px;
  height: 18px;
  top: 12px;
}

.mini-header {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin: 26px 0 24px;
}

.mini-header strong {
  color: var(--ink);
  font-size: 2.3rem;
  line-height: 0.9;
}

.passport-stamps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.passport-stamp {
  min-height: 142px;
  border: 1px dashed rgba(67, 214, 181, 0.75);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(67, 214, 181, 0.18), transparent),
    rgba(255, 255, 255, 0.035);
  padding: 16px;
  transform: rotate(-1.2deg);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.is-visible .passport-stamp {
  animation: stampSet 620ms cubic-bezier(0.2, 1.4, 0.3, 1) both;
}

.is-visible .passport-stamp:nth-child(2) {
  animation-delay: 110ms;
}

.is-visible .passport-stamp:nth-child(3) {
  animation-delay: 220ms;
}

.is-visible .passport-stamp:nth-child(4) {
  animation-delay: 330ms;
}

.passport-stamp:hover {
  transform: rotate(0deg) translateY(-3px);
}

.passport-stamp strong {
  display: block;
  margin-top: 26px;
  font-size: 1.85rem;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.passport-stamp small {
  color: var(--dim);
  font-weight: 850;
  letter-spacing: 0.12em;
}

.passport-stamp.amber {
  border-color: rgba(255, 212, 74, 0.78);
  background: linear-gradient(135deg, rgba(255, 212, 74, 0.16), transparent), rgba(255, 255, 255, 0.035);
  transform: rotate(1.1deg);
}

.passport-stamp.violet {
  border-color: rgba(139, 92, 246, 0.8);
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.18), transparent), rgba(255, 255, 255, 0.035);
  transform: rotate(-0.7deg);
}

.passport-stamp.blue {
  border-color: rgba(90, 162, 255, 0.8);
  background: linear-gradient(135deg, rgba(90, 162, 255, 0.16), transparent), rgba(255, 255, 255, 0.035);
  transform: rotate(1.5deg);
}

.route-map {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #101014;
  padding: 16px;
}

.route-map::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: 0.55;
}

.route-map svg {
  position: relative;
  z-index: 1;
}

.route-draw {
  stroke-dasharray: 520;
  stroke-dashoffset: 520;
}

.is-visible .route-draw {
  animation: routeDraw 1.7s cubic-bezier(0.16, 1, 0.3, 1) 220ms forwards;
}

.route-pin {
  opacity: 0;
  transform: scale(0.4);
  transform-box: fill-box;
  transform-origin: center;
}

.is-visible .route-pin {
  animation: pinDrop 520ms cubic-bezier(0.2, 1.5, 0.4, 1) 1.35s forwards;
}

.is-visible .route-pin.end {
  animation-delay: 1.55s;
}

.receipt-total {
  margin-top: 18px;
  border: 1px solid rgba(67, 214, 181, 0.35);
  background: rgba(67, 214, 181, 0.08);
  padding: 20px;
}

.receipt-total > span {
  color: var(--mint);
  font-size: 0.74rem;
  font-weight: 880;
  letter-spacing: 0.13em;
}

.receipt-total strong {
  display: block;
  margin-top: 8px;
  font-size: 4rem;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.rank-row {
  display: grid;
  grid-template-columns: 34px 1fr auto;
  gap: 12px;
  align-items: center;
  border-top: 1px solid var(--line);
  padding: 18px 0;
}

.motion-ready .rank-row {
  opacity: 0.35;
  transform: translateX(-10px);
}

.is-visible .rank-row {
  animation: rankSlide 520ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.is-visible .rank-row:nth-of-type(2) {
  animation-delay: 90ms;
}

.is-visible .rank-row:nth-of-type(3) {
  animation-delay: 180ms;
}

.rank-row > span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--muted);
  font-weight: 850;
}

.rank-row strong {
  font-size: 1.1rem;
}

.rank-row em {
  color: var(--mint);
  font-style: normal;
  font-weight: 860;
  font-variant-numeric: tabular-nums;
}

.rank-row.lead {
  border-top-color: rgba(90, 162, 255, 0.55);
}

.rank-row.lead > span {
  border-color: rgba(90, 162, 255, 0.8);
  color: var(--blue);
}

.club-card {
  margin-top: 24px;
  border: 1px solid rgba(139, 92, 246, 0.5);
  border-radius: 22px;
  background: rgba(139, 92, 246, 0.12);
  padding: 18px;
  color: var(--muted);
  font-weight: 760;
}

.split-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1fr);
  gap: 60px;
  align-items: center;
}

.stamp-wall {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.stamp-card {
  position: relative;
  overflow: hidden;
  --base-rotate: -1deg;
  min-height: 170px;
  border: 1px dashed rgba(139, 92, 246, 0.76);
  border-radius: 26px;
  background: rgba(139, 92, 246, 0.12);
  padding: 22px;
}

.stamp-card > * {
  position: relative;
  z-index: 1;
}

.stamp-card:hover {
  border-style: solid;
}

.stamp-card strong {
  display: block;
  margin: 28px 0 8px;
  font-size: 2rem;
  line-height: 1;
}

.stamp-card small {
  color: var(--dim);
  font-weight: 820;
}

.stamp-card.blue {
  --base-rotate: 1.2deg;
  border-color: rgba(90, 162, 255, 0.72);
  background: rgba(90, 162, 255, 0.11);
}

.stamp-card.green {
  --base-rotate: 0.8deg;
  border-color: rgba(67, 214, 181, 0.72);
  background: rgba(67, 214, 181, 0.1);
}

.stamp-card.amber {
  --base-rotate: -0.8deg;
  border-color: rgba(255, 212, 74, 0.72);
  background: rgba(255, 212, 74, 0.1);
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
}

.feature-list article {
  padding: 26px;
  transition: background 180ms ease;
}

.feature-list article:hover {
  background: rgba(255, 255, 255, 0.03);
}

.feature-list article + article {
  border-left: 1px solid var(--line);
}

.feature-list span {
  display: inline-block;
  margin-bottom: 48px;
  color: var(--blue);
  font-weight: 900;
  font-variant-numeric: tabular-nums;
}

.feature-list p {
  margin-bottom: 0;
}

.final-cta {
  padding-top: 64px;
}

.cta-panel {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  border: 1px solid rgba(90, 162, 255, 0.3);
  background:
    radial-gradient(circle at 82% 30%, rgba(90, 162, 255, 0.2), transparent 34%),
    var(--panel);
  padding: 36px;
}

.cta-panel > * {
  position: relative;
  z-index: 1;
}

.cta-panel h2 {
  font-size: clamp(2.4rem, 5vw, 4.8rem);
}

.cta-panel p {
  max-width: 640px;
  margin-bottom: 0;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 32px 0;
  color: var(--muted);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-inner p {
  margin-bottom: 0;
}

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

.footer-links a {
  color: var(--muted);
  text-decoration: none;
}

.policy {
  width: min(100% - 40px, 860px);
  margin: 0 auto;
  padding: 76px 0 96px;
}

.policy h1 {
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 0.95;
}

.policy h2 {
  margin-top: 44px;
  margin-bottom: 10px;
  font-size: 1.4rem;
}

.policy p,
.policy li {
  color: var(--muted);
}

.policy ul {
  padding-left: 22px;
}

.notice {
  margin: 32px 0;
  border-left: 4px solid var(--mint);
  background: var(--panel);
  padding: 18px 20px;
  color: var(--ink);
}

@keyframes roadGrid {
  from {
    background-position: 0 0, 0 0;
  }

  to {
    background-position: 0 56px, 56px 0;
  }
}

@keyframes previewFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes carIdle {
  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -3px;
  }
}

@keyframes wheelRoll {
  to {
    rotate: 360deg;
  }
}

@keyframes roadPulse {
  0% {
    transform: translateX(0);
    opacity: 0;
  }

  35%,
  70% {
    opacity: 1;
  }

  100% {
    transform: translateX(420%);
    opacity: 0;
  }
}

@keyframes stampSet {
  0% {
    opacity: 0;
    transform: scale(1.12) rotate(-4deg);
  }

  100% {
    opacity: 1;
  }
}

@keyframes routeDraw {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes pinDrop {
  0% {
    opacity: 0;
    transform: scale(0.4);
  }

  72% {
    opacity: 1;
    transform: scale(1.18);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes rankSlide {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .split {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: auto;
    padding-top: 54px;
  }

  .hero-preview {
    justify-items: start;
  }

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

  .feature-list article:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .feature-list article:nth-child(4) {
    border-top: 1px solid var(--line);
  }
}

@media (max-width: 680px) {
  .nav-links {
    display: none;
  }

  .hero-grid {
    width: min(100% - 32px, var(--max));
    gap: 28px;
    padding-top: 42px;
    padding-bottom: 42px;
  }

  h1 {
    font-size: clamp(3.4rem, 16vw, 5.1rem);
  }

  h2 {
    font-size: clamp(2.6rem, 12vw, 4rem);
  }

  .screen-grid,
  .stamp-wall,
  .feature-list {
    grid-template-columns: 1fr;
  }

  .feature-list article + article,
  .feature-list article:nth-child(3),
  .feature-list article:nth-child(4) {
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .hero-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 42px;
  }

  .hero-stats div {
    padding-right: 10px;
  }

  .hero-stats div + div {
    padding-left: 10px;
    border-left: 1px solid var(--line);
  }

  .hero-stats dt {
    font-size: 0.62rem;
  }

  .hero-stats dd {
    font-size: clamp(1.08rem, 7vw, 1.8rem);
  }

  .hero-preview {
    height: 360px;
    overflow: hidden;
  }

  .phone {
    min-height: 620px;
    border-radius: 42px;
    padding: 24px;
  }

  .app-title strong {
    font-size: 3.45rem;
  }

  .phone .receipt-row,
  .phone .stamp-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .phone .receipt-row div {
    padding: 14px 10px;
  }

  .phone .receipt-row strong {
    font-size: 1rem;
  }

  .phone .stamp {
    min-height: 76px;
    padding: 11px;
  }

  .phone .stamp strong {
    font-size: 0.78rem;
  }

  .section {
    padding: 72px 0;
  }

  .wrap {
    width: min(100% - 32px, var(--max));
  }

  .mini-phone {
    min-height: 400px;
  }

  .feature-list span {
    margin-bottom: 28px;
  }

  .cta-panel,
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

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

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

  .motion-ready [data-reveal],
  .motion-ready [data-reveal].is-visible,
  .motion-ready .rank-row {
    --reveal-y: 0px;
    opacity: 1;
    filter: none;
    transform: none;
  }

  .button:hover,
  .button:focus-visible,
  [data-tilt] {
    transform: none;
  }
}
