@charset "UTF-8";

/* Figtree (OFL) — Vodafone kurumsal yazı tipi lisanslı/özel olduğundan yasal en yakın alternatif */
@font-face {
  font-family: 'Figtree';
  font-style: normal;
  font-display: swap;
  font-weight: 400;
  src: url(fonts/figtree-latin-ext-400.woff2) format('woff2');
  unicode-range: U+0100-02BA,U+02BD-02C5,U+02C7-02CC,U+02CE-02D7,U+02DD-02FF,U+0304,U+0308,U+0329,U+1D00-1DBF,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20C0,U+2113,U+2C60-2C7F,U+A720-A7FF;
}
@font-face {
  font-family: 'Figtree';
  font-style: normal;
  font-display: swap;
  font-weight: 400;
  src: url(fonts/figtree-latin-400.woff2) format('woff2');
  unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
}
@font-face {
  font-family: 'Figtree';
  font-style: normal;
  font-display: swap;
  font-weight: 600;
  src: url(fonts/figtree-latin-ext-600.woff2) format('woff2');
  unicode-range: U+0100-02BA,U+02BD-02C5,U+02C7-02CC,U+02CE-02D7,U+02DD-02FF,U+0304,U+0308,U+0329,U+1D00-1DBF,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20C0,U+2113,U+2C60-2C7F,U+A720-A7FF;
}
@font-face {
  font-family: 'Figtree';
  font-style: normal;
  font-display: swap;
  font-weight: 600;
  src: url(fonts/figtree-latin-600.woff2) format('woff2');
  unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
}
@font-face {
  font-family: 'Figtree';
  font-style: normal;
  font-display: swap;
  font-weight: 700;
  src: url(fonts/figtree-latin-ext-700.woff2) format('woff2');
  unicode-range: U+0100-02BA,U+02BD-02C5,U+02C7-02CC,U+02CE-02D7,U+02DD-02FF,U+0304,U+0308,U+0329,U+1D00-1DBF,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20C0,U+2113,U+2C60-2C7F,U+A720-A7FF;
}
@font-face {
  font-family: 'Figtree';
  font-style: normal;
  font-display: swap;
  font-weight: 700;
  src: url(fonts/figtree-latin-700.woff2) format('woff2');
  unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
}

:root {
  --fox: #6558b1;
  --fox-deep: #4a418c;
  --spark: #8b78ff;
  --ink: #16171d;
  --muted: #6b7180;
  --line: #e6e4ef;
  --paper: #f3f1f8;
  --bg: #f7f6fb;
  --white: #ffffff;
  --footer: #12131a;
  --radius: 18px;
  --page-pad: clamp(28px, 5vw, 88px);
  --shell: 1600px;
  --header-h: 80px;
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
  overflow-x: clip; /* body overflow kırıyor: sticky + backdrop-filter */
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Figtree", "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
a, button, input, textarea, select { -webkit-tap-highlight-color: transparent; }
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 3px solid var(--spark);
  outline-offset: 3px;
}
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { text-wrap: balance; }
h1 {
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.04em;
  margin-bottom: 18px;
}
h2 {
  font-size: clamp(30px, 3.4vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 700;
  margin-bottom: 16px;
}
h2 br { display: block; content: ""; margin: 0; line-height: 0; }
h3 {
  font-size: 22px;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  line-height: 1.2;
}

.shell {
  width: 100%;
  max-width: var(--shell);
  margin: 0 auto;
  padding-left: var(--page-pad);
  padding-right: var(--page-pad);
  box-sizing: border-box;
}
.shell.narrow { max-width: 920px; }

.skip {
  position: fixed;
  top: -90px;
  left: 20px;
  background: #fff;
  z-index: 120;
  padding: 12px 18px;
  border-radius: 10px;
}
.skip:focus { top: 12px; }

.scroll-progress {
  position: fixed;
  inset: 0 0 auto;
  height: 2px;
  z-index: 90;
  pointer-events: none;
}
.scroll-progress span {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--fox), var(--spark));
}

/* Header — iOS frosted glass */
.header {
  position: sticky;
  top: 0;
  z-index: 70;
  height: var(--header-h);
  width: 100%;
  padding: 0 var(--page-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--ink);
  background: rgba(247, 246, 251, 0.55);
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.75),
    0 10px 30px rgba(22, 23, 29, 0.04);
  -webkit-backdrop-filter: blur(28px) saturate(200%);
  backdrop-filter: blur(28px) saturate(200%);
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .header { background: rgba(247, 246, 251, 0.92); }
}
.header.is-scrolled {
  background: rgba(255, 255, 255, 0.62);
  border-bottom-color: rgba(230, 228, 239, 0.9);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.85),
    0 12px 36px rgba(22, 23, 29, 0.07);
}
.brand {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  line-height: 0.86;
  text-shadow: none;
  filter: none;
}
.brand-mark {
  display: block;
  width: auto;
  height: 46px;
  object-fit: contain;
  flex-shrink: 0;
}
.brand-text {
  display: inline-flex;
  flex-direction: column;
  line-height: 0.86;
}
.wordmark {
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.08em;
  font-style: italic;
  color: var(--ink);
}
.brand-dot { color: var(--spark); }
.brand-sub {
  font-size: 10px;
  letter-spacing: 0.45em;
  font-weight: 700;
  margin: 8px 0 0 2px;
  color: var(--muted);
}
.navigation {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 14px;
  font-weight: 600;
  text-shadow: none;
  filter: none;
}
.navigation > a:not(.button):not(.nav-icon) {
  padding: 6px 0;
  color: #3d4150;
  border-bottom: 1px solid transparent;
  text-shadow: none;
  box-shadow: none;
  filter: none;
  background: transparent;
}
.navigation > a:not(.button):not(.nav-icon):hover,
.navigation > a[aria-current]:not(.nav-icon) {
  color: var(--fox-deep);
  border-bottom-color: var(--spark);
}
.languages {
  display: flex;
  gap: 2px;
  border: 1px solid rgba(101, 88, 177, 0.18);
  border-radius: 999px;
  padding: 3px;
  font-size: 12px;
  background: rgba(255, 255, 255, 0.35);
  box-shadow: none;
}
.languages a {
  padding: 6px 9px;
  color: var(--muted);
  border-radius: 999px;
  text-shadow: none;
}
.languages a[aria-current] {
  background: var(--fox);
  color: #fff;
}
.nav-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  color: var(--ink);
  border: 1px solid rgba(101, 88, 177, 0.18);
  background: rgba(255, 255, 255, 0.55);
  transition: color .2s ease, background .2s ease, border-color .2s ease;
}
.nav-icon:hover {
  color: #fff;
  background: var(--fox);
  border-color: var(--fox);
}
.nav-icon svg { display: block; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform .2s, background .2s, box-shadow .2s;
  text-shadow: none;
  filter: none;
}
.button:hover { transform: translateY(-1px); }
.button span { font-size: 16px; line-height: 1; }
.accent {
  background: var(--fox);
  color: #fff;
}
.accent:hover {
  background: var(--fox-deep);
  box-shadow: 0 10px 24px rgba(101, 88, 177, 0.25);
}
.dark { background: var(--ink); color: #fff; }
.light { background: #fff; color: var(--fox-deep); }
.small { padding: 10px 15px; gap: 14px; }
.menu-toggle { display: none; }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fox);
  margin-bottom: 16px;
}
.dash {
  width: 24px;
  height: 2px;
  background: var(--spark);
  flex: none;
}

/* Hero — light wide */
.hero {
  width: 100%;
  background:
    radial-gradient(ellipse 50% 60% at 85% 40%, rgba(139, 120, 255, 0.16), transparent 60%),
    radial-gradient(ellipse 40% 50% at 10% 80%, rgba(101, 88, 177, 0.08), transparent 55%),
    linear-gradient(180deg, #eeecf6 0%, var(--bg) 100%);
  padding: 48px 0 28px;
}
.hero-grid {
  width: 100%;
  max-width: var(--shell);
  margin: 0 auto;
  padding-left: var(--page-pad);
  padding-right: var(--page-pad);
  box-sizing: border-box;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 24px;
  align-items: center;
  min-height: calc(92svh - var(--header-h));
}
.hero-content { max-width: 560px; }
.brand-hero {
  font-size: clamp(56px, 7vw, 96px);
  font-weight: 800;
  letter-spacing: -0.07em;
  line-height: 0.88;
  margin-bottom: 20px;
  font-style: italic;
  color: var(--ink);
}
.hero-lead {
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 650;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
  color: var(--ink);
}
.hero-description {
  max-width: 420px;
  color: var(--muted);
  margin-bottom: 28px;
}
.actions {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}
.text-link {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  font-size: 14px;
  font-weight: 650;
  border-bottom: 1px solid #c9c6d6;
  padding: 6px 0;
  color: var(--ink);
}
.text-link:hover {
  color: var(--fox);
  border-bottom-color: var(--fox);
}
.hero-stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 480px;
}
.hero-halo {
  position: absolute;
  width: min(680px, 100%);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139, 120, 255, 0.22), transparent 62%);
}
.hero-scooter-stack {
  position: relative;
  width: min(640px, 100%);
  z-index: 1;
}
.hero-scooter {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 28px 40px rgba(55, 45, 100, 0.18));
}

/* Tire smoke — from bottom of rear wheel, drifting back */
.wheel-smoke {
  position: absolute;
  left: 6%;
  bottom: 11%;
  width: 28%;
  height: 22%;
  z-index: 2;
  pointer-events: none;
  overflow: visible;
}
.wheel-smoke span {
  position: absolute;
  left: 35%;
  bottom: 0;
  width: 14px;
  height: 10px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(120, 118, 135, 0.45) 0%, rgba(160, 155, 180, 0.18) 45%, transparent 70%);
  filter: blur(5px);
  opacity: 0;
  animation: tire-smoke 2.8s ease-out infinite;
}
.wheel-smoke span:nth-child(1) { animation-delay: 0s; }
.wheel-smoke span:nth-child(2) { animation-delay: 0.45s; width: 18px; height: 12px; left: 28%; }
.wheel-smoke span:nth-child(3) { animation-delay: 0.9s; width: 22px; height: 14px; left: 20%; }
.wheel-smoke span:nth-child(4) { animation-delay: 1.35s; width: 16px; height: 11px; left: 32%; }
.wheel-smoke span:nth-child(5) { animation-delay: 1.8s; width: 26px; height: 16px; left: 14%; }
@keyframes tire-smoke {
  0% { opacity: 0; transform: translate(0, 0) scaleX(0.6) scaleY(0.5); }
  15% { opacity: 0.55; }
  100% { opacity: 0; transform: translate(-72px, -6px) scaleX(2.1) scaleY(1.3); }
}

.marquee {
  width: 100%;
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  padding: 14px 0;
}
.marquee-track {
  display: flex;
  gap: 28px;
  width: max-content;
  animation: marquee 36s linear infinite;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}
.marquee-track span:nth-child(even) { color: var(--spark); }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Experience — clean wide */
.experience {
  width: 100%;
  padding: 88px 0;
  background: var(--bg);
}
.experience-head {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 40px;
}
.experience-head h2 {
  margin: 0;
  max-width: 760px;
}
.experience-head p {
  margin: 0;
  color: var(--muted);
  max-width: 380px;
  font-size: 16px;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.step {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.step:hover {
  border-color: rgba(101, 88, 177, 0.35);
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(70, 60, 120, 0.08);
}
.step-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
}
.step-number {
  font-size: 40px;
  color: #c4c0d4;
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
}
.step-symbol {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--fox);
  background: var(--paper);
}
.step p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

/* Gallery — 360 viewer */
.gallery {
  width: 100%;
  padding: 88px 0;
  background:
    radial-gradient(ellipse 45% 50% at 10% 20%, rgba(139, 120, 255, 0.1), transparent 60%),
    var(--white);
  border-top: 1px solid var(--line);
}
.gallery-head {
  max-width: 720px;
  margin-bottom: 36px;
}
.gallery-head p { color: var(--muted); max-width: 520px; }
.spin360 {
  max-width: 980px;
  margin: 0 auto;
}
.spin360-stage {
  position: relative;
  aspect-ratio: 16 / 10;
  border-radius: 10px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 55% at 50% 62%, rgba(255,255,255,0.95), transparent 70%),
    linear-gradient(180deg, #fbfafd 0%, #ebe6f6 100%);
  border: 1px solid rgba(101, 88, 177, 0.12);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.85) inset,
    0 28px 60px rgba(40, 32, 80, 0.1);
  cursor: grab;
  user-select: none;
  touch-action: pan-y;
}
.spin360-stage:active { cursor: grabbing; }
.spin360-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: clamp(16px, 4vw, 40px);
  display: block;
  pointer-events: none;
  transition: opacity .18s ease;
}
.spin360-hint {
  position: absolute;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(101, 88, 177, 0.12);
  padding: 7px 12px;
  border-radius: 999px;
  backdrop-filter: blur(8px);
  pointer-events: none;
  transition: opacity .25s ease;
}
.spin360.is-dragging .spin360-hint,
.spin360.is-interacted .spin360-hint { opacity: 0; }
.spin360-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 18px;
}
.spin360-btn {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  font-size: 24px;
  line-height: 1;
  display: grid;
  place-items: center;
}
.spin360-btn:hover {
  background: var(--fox);
  border-color: var(--fox);
  color: #fff;
}
.spin360-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}
.spin360-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 0;
  padding: 0;
  background: #d4d0e0;
  cursor: pointer;
}
.spin360-dot.is-active {
  width: 22px;
  background: var(--fox);
}
.spin360-caption {
  text-align: center;
  margin: 14px 0 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Safety */
.safety {
  width: 100%;
  padding: 88px 0;
  background:
    linear-gradient(120deg, #12131a 0%, #1c1830 45%, #2d2555 100%);
  color: #f4f2fa;
}
.safety-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}
.safety-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 420px;
  isolation: isolate;
}
.safety-stage {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.spot {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.7;
  animation: spotPulse 5.5s ease-in-out infinite;
}
.spot-a {
  width: 280px;
  height: 280px;
  top: -40px;
  left: 18%;
  background: radial-gradient(circle, rgba(255,255,255,0.55), transparent 70%);
}
.spot-b {
  width: 320px;
  height: 320px;
  top: 10%;
  right: 8%;
  background: radial-gradient(circle, rgba(139,120,255,0.55), transparent 70%);
  animation-delay: -1.8s;
}
.spot-c {
  width: 240px;
  height: 240px;
  bottom: 18%;
  left: 8%;
  background: radial-gradient(circle, rgba(101,88,177,0.45), transparent 70%);
  animation-delay: -3.2s;
}
.spot-floor {
  position: absolute;
  left: 50%;
  bottom: 8%;
  width: 68%;
  height: 48px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(255,255,255,0.22), transparent 70%);
  filter: blur(8px);
}
.safety-scooter {
  position: relative;
  z-index: 1;
  width: min(100%, 520px);
  height: auto;
  display: block;
  filter: drop-shadow(0 28px 50px rgba(0,0,0,0.45));
}
@keyframes spotPulse {
  0%, 100% { opacity: 0.55; transform: scale(1); }
  50% { opacity: 0.85; transform: scale(1.06); }
}
.safety .eyebrow { color: #c4b8ff; }
.safety h2 { color: #fff; }
.safety-copy > p { color: #c8c5d6; max-width: 440px; }
.safety-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: grid;
  gap: 14px;
}
.safety-list li {
  position: relative;
  padding-left: 28px;
  font-size: 15px;
  font-weight: 600;
  color: #ebe8f6;
}
.safety-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--spark);
  box-shadow: 0 0 0 4px rgba(139, 120, 255, 0.25);
}

/* Cities */
.cities {
  width: 100%;
  padding: 56px 0;
  background: var(--bg);
  border-top: 1px solid var(--line);
}
.cities-head {
  max-width: 640px;
  margin-bottom: 22px;
}
.cities-head h2 {
  font-size: clamp(24px, 2.6vw, 34px);
  margin-bottom: 8px;
}
.cities-head p {
  color: var(--muted);
  max-width: 480px;
  font-size: 14px;
  margin: 0;
}
.cities-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}
.city--live { grid-column: span 3; }
.city--soon { grid-column: span 2; }
.city {
  position: relative;
  padding: 16px 16px 18px;
  min-height: 0;
  background:
    radial-gradient(ellipse 60% 80% at 100% 0%, rgba(139, 120, 255, 0.12), transparent 55%),
    linear-gradient(160deg, #f7f6fb, #ece8f7);
  border: 1px solid var(--line);
}
.city--soon {
  background:
    radial-gradient(ellipse 60% 80% at 100% 0%, rgba(101, 88, 177, 0.06), transparent 55%),
    linear-gradient(160deg, #faf9fc, #f1eff6);
}
.city-mark {
  display: block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--fox);
  margin-bottom: 8px;
}
.city-status {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fox-deep);
  background: rgba(101, 88, 177, 0.12);
  padding: 3px 8px;
  border-radius: 999px;
}
.city--soon .city-status {
  color: #6b7180;
  background: rgba(22, 23, 29, 0.06);
}
.city h3 {
  font-size: clamp(18px, 2vw, 22px);
  letter-spacing: -0.03em;
  margin-bottom: 6px;
}
.city p {
  margin: 0;
  color: var(--muted);
  max-width: 360px;
  font-size: 13px;
  line-height: 1.45;
}

/* Instagram */
.instagram {
  width: 100%;
  padding: 88px 0;
  background:
    radial-gradient(ellipse 50% 60% at 90% 30%, rgba(139, 120, 255, 0.14), transparent 55%),
    var(--white);
  border-top: 1px solid var(--line);
}
.instagram-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 40px;
  align-items: center;
}
.instagram-copy p { color: var(--muted); max-width: 420px; }
.instagram-copy .button { margin-top: 8px; }
.instagram-card {
  display: block;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 18px 40px rgba(22, 23, 29, 0.06);
  color: inherit;
  transition: transform .25s ease, box-shadow .25s ease;
}
.instagram-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 48px rgba(22, 23, 29, 0.1);
}
.instagram-card-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.instagram-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid transparent;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(45deg, #f58529, #dd2a7b, #8134af, #515bd4) border-box;
}
.instagram-card-top strong {
  display: block;
  font-size: 18px;
  letter-spacing: -0.02em;
}
.instagram-card-top span {
  font-size: 13px;
  color: var(--muted);
}
.instagram-preview {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 16px;
}
.instagram-preview img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: #111;
}
.instagram-follow {
  display: inline-flex;
  font-size: 14px;
  font-weight: 700;
  color: var(--fox);
}

/* Download */
.download {
  width: 100%;
  padding: 88px 0;
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.download-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
}
.download-copy p { color: var(--muted); max-width: 480px; }
.store-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.store-badge {
  display: inline-flex;
  transition: transform .2s, opacity .2s;
  line-height: 0;
}
.store-badge:hover { transform: translateY(-2px); opacity: 0.92; }
.store-badge img {
  display: block;
  height: 54px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
}
.download-qr {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}
.download-qr > p {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
}
.qr-card {
  display: grid;
  place-items: center;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 18px 40px rgba(70, 60, 120, 0.08);
}
.qr-card img {
  width: min(220px, 70vw);
  height: auto;
  display: block;
}

/* Pricing — light panel */
.pricing {
  width: 100%;
  padding: 88px 0;
  background:
    radial-gradient(ellipse 45% 55% at 90% 20%, rgba(139, 120, 255, 0.12), transparent 55%),
    var(--bg);
}
.pricing-shell {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.price-intro p { color: var(--muted); max-width: 440px; }
.fine-print { font-size: 13px; margin-top: 20px; }
.price-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(70, 60, 120, 0.08);
}
.price-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  padding: 28px 24px;
}
.price-values > div + div {
  border-left: 1px solid var(--line);
  padding-left: 18px;
}
.price-values span { font-size: 13px; color: var(--muted); }
.price-values strong {
  display: block;
  font-size: 28px;
  margin: 12px 0 6px;
  letter-spacing: -0.03em;
}
.price-values small { color: #8a90a0; font-size: 12px; }
.calculator {
  padding: 22px 24px 26px;
  background: var(--paper);
  border-top: 1px solid var(--line);
}
.calculator h3 { font-size: 16px; margin-bottom: 12px; }
.calculator input {
  width: 100%;
  accent-color: var(--fox);
  margin: 16px 0;
}
.estimate {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--line);
  padding-top: 14px;
  font-size: 14px;
}
.estimate output {
  font-size: 26px;
  font-weight: 700;
  color: var(--fox);
}

/* Reviews */
.reviews {
  width: 100%;
  padding: 88px 0;
  background: var(--white);
  border-top: 1px solid var(--line);
}
.reviews-head { margin-bottom: 36px; max-width: 760px; }
.reviews-note {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  max-width: 540px;
}
.reviews-carousel {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
}
.reviews-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, calc((100% - 36px) / 3));
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 6px 2px 14px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.reviews-track::-webkit-scrollbar { display: none; }
.review {
  margin: 0;
  padding: 24px 22px 26px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  min-height: 240px;
  scroll-snap-align: start;
}
.reviews-nav {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  font-size: 26px;
  line-height: 1;
  display: grid;
  place-items: center;
  flex: none;
  transition: background .2s, color .2s, border-color .2s;
}
.reviews-nav:hover {
  background: var(--fox);
  border-color: var(--fox);
  color: #fff;
}
.review-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 14px;
}
.review-stars {
  color: #f5a524;
  letter-spacing: 0.08em;
  font-size: 14px;
  line-height: 1;
}
.review-store {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 5px 9px;
  border-radius: 999px;
  white-space: nowrap;
}
.review-store--appstore {
  color: #1d1d1f;
  background: rgba(29, 29, 31, 0.08);
}
.review-store--google {
  color: #1a73e8;
  background: rgba(26, 115, 232, 0.1);
}
.review p {
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 18px;
  color: var(--ink);
  flex: 1;
}
.review footer {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 13px;
}
.review strong { color: var(--fox-deep); }
.review footer span { color: var(--muted); }

/* Opportunities */
.opportunities {
  width: 100%;
  padding: 88px 0;
  background: var(--bg);
}
.opportunities-heading {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: end;
  margin-bottom: 28px;
}
.opportunities-heading h2 { margin: 0; max-width: 560px; }
.opportunities-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.opportunity {
  border-radius: 24px;
  padding: 36px 32px 40px;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
}
.opportunity::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--fox), var(--spark));
}
.opportunity > p:not(.eyebrow) {
  margin-bottom: 24px;
  max-width: 420px;
}
.opportunity .button { margin-top: auto; }
.partner-card {
  background: linear-gradient(145deg, #6558b1, #5a4eab 55%, #7466c8);
  color: #fff;
}
.partner-card .eyebrow { color: rgba(255, 255, 255, 0.8); }
.partner-card .button { background: #fff; color: var(--fox-deep); }
.software-card {
  background: var(--white);
  border: 1px solid var(--line);
}
.software-card .eyebrow { color: var(--fox); }

/* CTA */
.cta-band {
  width: 100%;
  padding: 64px 0;
  background: linear-gradient(120deg, #6558b1 0%, #7466c8 45%, #8b78ff 100%);
  color: #fff;
}
.cta-band-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.cta-band .eyebrow { color: rgba(255, 255, 255, 0.82); }
.cta-band h2 { margin: 0; max-width: 560px; color: #fff; line-height: 1.08; }
.cta-band .button.light {
  background: #fff;
  color: var(--fox-deep);
}

/* Footer */
.footer {
  width: 100%;
  background: var(--footer);
  color: #f2f3f7;
  padding: 64px var(--page-pad) 28px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 40px;
  max-width: 1600px;
  margin: 0 auto;
}
.footer-brand {
  margin-bottom: 22px;
}
.footer-brand .brand-mark {
  height: 52px;
}
.footer-brand .wordmark {
  color: #ffffff;
}
.footer-brand .brand-sub {
  color: #c4c7d4;
}
.footer h2 {
  font-size: 28px;
  color: #ffffff;
  margin-bottom: 12px;
}
.footer p {
  color: #c8ccd8;
  max-width: 360px;
  font-size: 14px;
  line-height: 1.6;
}
.footer-legal {
  margin-top: 14px !important;
  font-size: 12px !important;
  color: #a8adbb !important;
}
.footer-cols { display: flex; gap: 56px; flex-wrap: wrap; }
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 140px;
  font-size: 14px;
}
.footer-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #b9aeff;
  font-weight: 700;
  margin-bottom: 4px;
}
.footer-links a { color: #e8eaf0; }
.footer-links a:hover { color: #ffffff; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  max-width: 1600px;
  margin: 0 auto;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 12px;
  color: #b4b8c6;
}
.footer-languages { display: flex; gap: 14px; }
.footer-languages a { color: #c8ccd8; }
.footer-languages a:hover { color: #fff; }
.footer-languages a[aria-current] {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 5px;
}

/* Forms */
.form-page {
  width: 100%;
  padding: 56px 0 80px;
  background: var(--bg);
}
.form-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.15fr;
  gap: 40px;
  align-items: start;
}
.form-intro {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 32px 28px;
}
.form-intro > p:not(.eyebrow) { color: var(--muted); }
.form-aside {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.form-aside h2 { font-size: 24px; }
.form-aside p { color: var(--muted); font-size: 14px; }
.contact-detail {
  display: inline-block;
  margin-top: 28px;
  border-bottom: 1px solid #bbb7c8;
  padding-bottom: 6px;
}
.form-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 18px;
}
.form-heading h2 { margin: 0; font-size: 22px; }
.form-heading-index { color: var(--fox); font-size: 12px; letter-spacing: 0.12em; }
.form-caption { color: var(--muted); font-size: 13px; }
fieldset { border: 0; padding: 0; margin: 0; min-width: 0; }
.fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.fields label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
  font-weight: 650;
}
.fields input,
.fields select,
.fields textarea {
  border: 1px solid #d8d5e4;
  border-radius: 12px;
  padding: 12px 14px;
  background: #fff;
  width: 100%;
}
.fields input:focus,
.fields select:focus,
.fields textarea:focus {
  outline: none;
  border-color: var(--fox);
  box-shadow: 0 0 0 3px rgba(101, 88, 177, 0.15);
}
.fields textarea { min-height: 140px; resize: vertical; }
.full { grid-column: 1 / -1; }
.consent {
  display: flex;
  gap: 12px;
  margin: 18px 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}
.consent input { width: 18px; height: 18px; margin-top: 4px; accent-color: var(--fox); flex: none; }
.consent a { text-decoration: underline; text-underline-offset: 3px; }
.captcha-wrap { margin: 8px 0 18px; }
.captcha-hint { margin: 8px 0 0; font-size: 12px; color: var(--muted); }
.submit { width: 100%; justify-content: center; border-radius: 14px; }
.notice {
  background: #f1eefc;
  border: 1px solid #d8d1f0;
  color: var(--fox-deep);
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 14px;
}
.form-status {
  margin-top: 16px;
  padding: 14px;
  border-radius: 12px;
  background: #eef8f0;
  border: 1px solid #c4e0c8;
  font-size: 14px;
}
.form-status:empty { display: none; }
.form-status.error {
  background: #fbf0f3;
  border-color: #ecc0cc;
  color: #8a3048;
}
.honey {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.legal {
  width: 100%;
  padding: 56px 0 80px;
  background: var(--bg);
  min-height: 60vh;
}
.legal p { color: var(--muted); }
.legal-lead {
  max-width: 720px;
  margin-bottom: 28px;
  font-size: 16px;
}
.legal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.legal-doc {
  margin-top: 8px;
}
.legal-block {
  padding: 22px 0;
  border-top: 1px solid var(--line);
}
.legal-block:first-of-type { border-top: 0; padding-top: 0; }
.legal-block h2 {
  font-size: clamp(18px, 2vw, 22px);
  margin-bottom: 12px;
  color: var(--ink);
}
.legal-block h3 {
  font-size: clamp(15px, 1.6vw, 17px);
  margin: 20px 0 10px;
  color: var(--ink);
  font-weight: 700;
}
.legal-block p,
.legal-block li {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}
.legal-block ol,
.legal-block ul {
  margin: 0;
  padding-left: 1.2em;
}
.legal-block ol > li + li,
.legal-block ul > li + li {
  margin-top: 10px;
}
.legal-block strong { color: var(--ink); }
.legal-block a { color: var(--fox); text-decoration: underline; text-underline-offset: 3px; }
.defs {
  margin: 0;
  display: grid;
  gap: 14px;
}
.defs dt {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fox);
  margin: 0;
}
.defs dd {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
  padding-left: 0;
}
.defs-list {
  margin: 0;
  padding-left: 1.15em;
  list-style: disc;
}
.defs-list li {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}
.defs-list li + li { margin-top: 10px; }
.defs-list strong { color: var(--ink); }
.legal-meta {
  margin-top: 18px !important;
  font-size: 13px !important;
  color: #8a8796 !important;
}
.nowrap { white-space: nowrap; }
.legal-block hr {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 22px 0 12px;
}

.app-page {
  width: 100%;
  padding: 64px 0 80px;
  background:
    radial-gradient(ellipse 40% 50% at 85% 30%, rgba(139, 120, 255, 0.14), transparent 55%),
    var(--bg);
  min-height: calc(100svh - var(--header-h));
}
.app-page-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}
.app-copy > p { color: var(--muted); max-width: 460px; }
.app-note { font-size: 13px; color: #8a90a0; margin-top: 16px; }
.app-copy .button { margin-top: 22px; }

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .14s; }
.reveal[data-delay="3"] { transition-delay: .2s; }
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
.legal .reveal {
  opacity: 1;
  transform: none;
}

@media (max-width: 1100px) {
  .hero-grid,
  .experience-head,
  .download-grid,
  .pricing-shell,
  .opportunities-grid,
  .form-grid,
  .app-page-inner,
  .safety-grid,
  .instagram-grid { grid-template-columns: 1fr; }
  .cities-grid { grid-template-columns: 1fr 1fr; }
  .city--live,
  .city--soon { grid-column: span 1; }
  .reviews-track {
    grid-auto-columns: minmax(260px, calc((100% - 18px) / 2));
  }
  .hero-stage { min-height: 360px; }
  .steps { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  :root {
    --header-h: 72px;
    --page-pad: clamp(22px, 5.5vw, 36px);
  }
  .header,
  .header.is-scrolled {
    background: #ffffff;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 8px 24px rgba(22, 23, 29, 0.06);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }
  .menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 6px;
    background: #f3f1f8;
    border: 1px solid rgba(101, 88, 177, 0.22);
    border-radius: 10px;
    padding: 11px;
  }
  .menu-toggle span {
    width: 22px;
    height: 2px;
    background: var(--ink);
  }
  .navigation {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: #ffffff;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    padding: 22px var(--page-pad);
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 40px rgba(22, 23, 29, 0.12);
  }
  .navigation.open { display: flex; }
  .nav-icon {
    align-self: flex-start;
  }
  .languages { align-self: flex-start; }
  .steps,
  .cities-grid { grid-template-columns: 1fr; }
  .city--live,
  .city--soon { grid-column: auto; }
  .reviews-carousel { grid-template-columns: 1fr; }
  .reviews-nav { display: none; }
  .reviews-track {
    grid-auto-columns: minmax(78%, 1fr);
  }
  .cta-band-inner,
  .opportunities-heading,
  .footer-top { flex-direction: column; align-items: flex-start; }
  .fields { grid-template-columns: 1fr; }
  .footer-cols { gap: 32px; }
  .hero { padding-top: 28px; }
  .hero-grid { min-height: 0; }
  .brand-hero { font-size: clamp(48px, 14vw, 64px); }
  .experience,
  .gallery,
  .safety,
  .cities,
  .instagram,
  .download,
  .pricing,
  .reviews,
  .opportunities { padding: 64px 0; }
  .city { min-height: 0; padding: 14px 14px 16px; }
  .cities { padding: 48px 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
  .reveal { opacity: 1; transform: none; }
  .wheel-smoke { display: none; }
}
