/* Sharee — sharee.one. One accent, one typeface, no decoration that does not
   carry meaning. Dark canvas with a single paper section for rhythm. */

@font-face {
  font-family: "Manrope";
  src: url("/site/fonts/Manrope.woff2") format("woff2");
  font-weight: 200 800;
  font-display: swap;
}

:root {
  --bg: #0a0a0b;
  --bg-2: #101012;
  --bg-3: #161618;
  --ink: #f4f4f1;
  --ink-2: rgba(244, 244, 241, 0.72);
  --muted: rgba(244, 244, 241, 0.5);
  --faint: rgba(244, 244, 241, 0.28);
  --line: rgba(244, 244, 241, 0.1);
  --line-2: rgba(244, 244, 241, 0.18);
  --lime: #d4ff00;
  --lime-dim: rgba(212, 255, 0, 0.14);
  --on-lime: #0a0a0b;
  --paper: #f3f3ef;
  --paper-2: #e9e9e3;
  --paper-ink: #0a0a0b;
  --paper-muted: rgba(10, 10, 11, 0.56);
  --paper-line: rgba(10, 10, 11, 0.1);
  --danger: #ff5a4e;

  --font: "Manrope", -apple-system, "SF Pro Text", "Segoe UI", Roboto, sans-serif;
  --pad: clamp(20px, 5vw, 72px);
  --container: 1320px;
  --section: clamp(96px, 14vw, 190px);
  --radius: 28px;
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
  --nav-h: 72px;
}

*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: calc(var(--nav-h) + 12px);
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.5;
  font-feature-settings: "ss01", "cv05";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
}

body.menu-open { overflow: hidden; }

img, svg, picture { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; }
h1, h2, h3, p, ul, ol, figure { margin: 0; }
ul, ol { padding: 0; list-style: none; }
b, strong { font-weight: 600; }
::selection { background: var(--lime); color: var(--on-lime); }

:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 3px;
  border-radius: 6px;
}

.skip {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--lime);
  color: var(--on-lime);
  border-radius: 999px;
  font-weight: 600;
  transform: translateY(-200%);
  transition: transform 0.2s;
}
.skip:focus { transform: none; }

.container {
  width: min(100% - 2 * var(--pad), var(--container));
  margin-inline: auto;
}

/* ---------- type ---------- */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 28px;
}
.eyebrow__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 4px var(--lime-dim);
}
.eyebrow__num {
  color: var(--lime);
  font-variant-numeric: tabular-nums;
}

.h2 {
  font-size: clamp(2rem, 4.6vw, 4.25rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
  font-weight: 500;
  text-wrap: balance;
  max-width: 22ch;
}

.lead {
  font-size: clamp(1.05rem, 1.4vw, 1.3rem);
  line-height: 1.5;
  color: var(--ink-2);
  max-width: 44ch;
  margin-top: 28px;
}

.br-wide { display: none; }
@media (min-width: 900px) { .br-wide { display: inline; } }

/* ---------- buttons ---------- */

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.005em;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 0.35s var(--ease), background-color 0.25s, border-color 0.25s, color 0.25s, box-shadow 0.35s;
  will-change: transform;
}
.btn--primary {
  background: var(--lime);
  color: var(--on-lime);
  box-shadow: 0 0 0 0 rgba(212, 255, 0, 0);
}
.btn--primary:hover {
  box-shadow: 0 12px 40px -12px rgba(212, 255, 0, 0.55);
}
.btn--ghost {
  border-color: var(--line-2);
  color: var(--ink);
  background: transparent;
}
.btn--ghost:hover { border-color: var(--ink); }
.btn--lg { min-height: 60px; padding: 0 30px; font-size: 16px; }
.btn--sm { min-height: 42px; padding: 0 18px; font-size: 14px; }

.btn__spinner {
  display: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid rgba(10, 10, 11, 0.25);
  border-top-color: var(--on-lime);
  animation: spin 0.8s linear infinite;
}
.btn.is-busy .btn__label { opacity: 0.4; }
.btn.is-busy .btn__spinner { display: block; }
.btn[disabled] { cursor: default; }
@keyframes spin { to { transform: rotate(360deg); } }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
  padding: 8px 0;
}
.link-arrow::after {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--ink);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.link-arrow:hover::after { transform: scaleX(1.4); }

/* ---------- nav ---------- */

.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background-color 0.4s, border-color 0.4s, backdrop-filter 0.4s;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(10, 10, 11, 0.62);
  -webkit-backdrop-filter: saturate(140%) blur(18px);
  backdrop-filter: saturate(140%) blur(18px);
  border-bottom-color: var(--line);
}
.nav__inner {
  width: min(100% - 2 * var(--pad), var(--container));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.03em;
}
.brand__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--lime);
}
.nav__links {
  display: none;
  gap: 30px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-2);
}
.nav__links a {
  position: relative;
  padding: 6px 0;
  transition: color 0.25s;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease);
}
.nav__links a:hover,
.nav__links a.is-active { color: var(--ink); }
.nav__links a:hover::after,
.nav__links a.is-active::after { transform: scaleX(1); transform-origin: left; }
.nav__actions { display: flex; align-items: center; gap: 12px; }
.nav__actions .btn { display: none; }

.nav__burger {
  position: relative;
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 50%;
  border: 1px solid var(--line-2);
  background: transparent;
  cursor: pointer;
}
.nav__burger span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 1.5px;
  margin: -0.75px 0 0 -9px;
  background: var(--ink);
  transition: transform 0.35s var(--ease);
}
.nav__burger span:first-child { transform: translateY(-3.5px); }
.nav__burger span:last-child { transform: translateY(3.5px); }
.nav__burger[aria-expanded="true"] span:first-child { transform: rotate(45deg); }
.nav__burger[aria-expanded="true"] span:last-child { transform: rotate(-45deg); }

@media (min-width: 900px) {
  .nav__links { display: flex; }
  .nav__actions .btn { display: inline-flex; }
  .nav__burger { display: none; }
}

.menu {
  position: fixed;
  inset: 0;
  z-index: 40;
  background: var(--bg);
  padding: calc(var(--nav-h) + 24px) var(--pad) 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  opacity: 0;
  transition: opacity 0.3s;
}
.menu[hidden], .form[hidden], [hidden] { display: none; }
.menu.is-open { opacity: 1; }
.menu__links { display: grid; gap: 6px; }
.menu__links a {
  display: flex;
  align-items: baseline;
  gap: 18px;
  font-size: clamp(2rem, 9vw, 3rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.6s var(--ease), opacity 0.5s;
}
.menu.is-open .menu__links a { transform: none; opacity: 1; }
.menu.is-open .menu__links a:nth-child(2) { transition-delay: 0.05s; }
.menu.is-open .menu__links a:nth-child(3) { transition-delay: 0.1s; }
.menu.is-open .menu__links a:nth-child(4) { transition-delay: 0.15s; }
.menu.is-open .menu__links a:nth-child(5) { transition-delay: 0.2s; }
.menu.is-open .menu__links a:nth-child(6) { transition-delay: 0.25s; }
.menu__links small {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--lime);
}
.menu__foot { display: grid; gap: 18px; }
.menu__mail { color: var(--muted); font-size: 15px; }

/* ---------- hero ---------- */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  padding-top: calc(var(--nav-h) + 40px);
  padding-bottom: 40px;
  overflow: hidden;
  isolation: isolate;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(120% 60% at 50% 115%, #131311 0%, var(--bg) 60%),
    var(--bg);
  overflow: hidden;
}
.hero__glow {
  position: absolute;
  left: 50%;
  bottom: -46vh;
  width: 120vw;
  height: 78vh;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(212, 255, 0, 0.34) 0%, rgba(212, 255, 0, 0.12) 22%, rgba(212, 255, 0, 0.03) 42%, rgba(212, 255, 0, 0) 60%);
  filter: none;
  animation: breathe 14s ease-in-out infinite alternate;
  will-change: transform, opacity;
}
@keyframes breathe {
  from { transform: translateX(-52%) scale(0.96); opacity: 0.85; }
  to { transform: translateX(-48%) scale(1.06); opacity: 1; }
}
.hero__trail {
  position: absolute;
  height: 1px;
  width: 60vw;
  left: -30vw;
  background: linear-gradient(90deg, rgba(244, 244, 241, 0) 0%, rgba(244, 244, 241, 0.55) 50%, rgba(244, 244, 241, 0) 100%);
  opacity: 0.35;
  transform: rotate(-8deg);
  animation: drift 18s linear infinite;
  will-change: transform;
}
.hero__trail--a { top: 58%; }
.hero__trail--b { top: 66%; width: 40vw; animation-duration: 26s; animation-delay: -9s; opacity: 0.22; }
@keyframes drift {
  from { transform: translateX(-20vw) rotate(-8deg); }
  to { transform: translateX(150vw) rotate(-8deg); }
}
.hero__route {
  position: absolute;
  right: 3%;
  top: 6%;
  width: 54%;
  height: 84%;
  opacity: 0.9;
}
.hero__route-line {
  stroke: rgba(244, 244, 241, 0.34);
  stroke-width: 1.2;
  stroke-linecap: round;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  animation: draw 4.5s var(--ease) 0.6s forwards;
}
@keyframes draw { to { stroke-dashoffset: 0; } }
.hero__route-dot {
  fill: var(--lime);
  opacity: 0;
  animation: fade 0.6s var(--ease) 4.2s forwards;
}
.hero__route-ring {
  fill: none;
  stroke: var(--lime);
  stroke-width: 1;
  opacity: 0;
  transform-origin: 620px 190px;
  animation: ping 2.4s var(--ease) 4.6s infinite;
}
@keyframes ping {
  0% { transform: scale(1); opacity: 0.7; }
  70% { transform: scale(5); opacity: 0; }
  100% { transform: scale(5); opacity: 0; }
}
@media (max-width: 900px) {
  .hero__route { right: -12%; top: 0; width: 110%; height: 62%; opacity: 0.5; }
}
@media (max-width: 600px) {
  .hero__route { display: none; }
}
.hero__cursor {
  position: absolute;
  width: 640px;
  height: 640px;
  left: 0;
  top: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244, 244, 241, 0.06) 0%, rgba(244, 244, 241, 0) 60%);
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.6s;
  pointer-events: none;
}
.hero__cursor.is-on { opacity: 1; }
.hero__grain,
.section--request::before {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.9 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.07;
  mix-blend-mode: overlay;
  pointer-events: none;
}

.hero__inner { position: relative; margin-block: auto; padding-block: 24px; }
.hero__eyebrow { margin-bottom: 30px; }
.hero__title {
  font-size: clamp(3.3rem, 12.5vw, 10.5rem);
  line-height: 0.92;
  letter-spacing: -0.05em;
  font-weight: 500;
  margin-bottom: 36px;
}
.hero__title .line {
  display: block;
  overflow: hidden;
  padding-bottom: 0.06em;
  margin-bottom: -0.06em;
}
.hero__title .line > span {
  display: inline-block;
  transform: translateY(110%);
  animation: rise 1.1s var(--ease) forwards;
}
.hero__title .line:nth-child(2) > span { animation-delay: 0.12s; }
.hero__title .ghost {
  color: transparent;
  -webkit-text-stroke: 1px rgba(244, 244, 241, 0.55);
}
@keyframes rise { to { transform: none; } }

.hero__lead {
  font-size: clamp(1.05rem, 1.5vw, 1.35rem);
  line-height: 1.5;
  color: var(--ink-2);
  max-width: 48ch;
  opacity: 0;
  animation: fade 1s var(--ease) 0.55s forwards;
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 34px;
  margin-top: 40px;
  opacity: 0;
  animation: fade 1s var(--ease) 0.75s forwards;
}
@keyframes fade { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

.hero__facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: clamp(56px, 9vh, 120px);
  padding-top: 26px;
  border-top: 1px solid var(--line);
  opacity: 0;
  animation: fade 1s var(--ease) 1s forwards;
}
.fact { display: grid; gap: 4px; }
.fact b { font-size: 15px; font-weight: 600; }
.fact span { font-size: 13px; color: var(--muted); line-height: 1.4; }

.hero__scroll {
  position: absolute;
  right: var(--pad);
  bottom: 40px;
  width: 1px;
  height: 56px;
  background: var(--line-2);
  overflow: hidden;
  display: none;
}
.hero__scroll span {
  position: absolute;
  inset: 0;
  background: var(--lime);
  transform: translateY(-100%);
  animation: scrollcue 2.2s var(--ease) infinite;
}
@keyframes scrollcue {
  0% { transform: translateY(-100%); }
  60% { transform: translateY(100%); }
  100% { transform: translateY(100%); }
}
@media (min-width: 900px) {
  .hero__scroll { display: block; }
  .hero__facts { grid-template-columns: repeat(3, minmax(0, 300px)); gap: 40px; }
}
@media (max-width: 600px) {
  .hero__facts { grid-template-columns: 1fr; gap: 16px; }
  .fact { grid-template-columns: 1fr; }
  .hero__eyebrow { font-size: 11px; letter-spacing: 0.14em; }
  .hero__title { margin-bottom: 28px; }
}

/* ---------- marquee ---------- */

.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.marquee__track {
  display: flex;
  align-items: center;
  gap: 40px;
  width: max-content;
  animation: marquee 48s linear infinite;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}
.marquee__track i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--lime);
  flex: none;
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- sections ---------- */

.section {
  position: relative;
  padding-block: var(--section);
}
.section + .section { padding-top: 0; }
.section--how, .section--app, .section--drivers, .section--request { padding-top: var(--section) !important; }
.section--paper { padding-top: var(--section) !important; }

/* reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.is-in { opacity: 1; transform: none; }
.principles .reveal:nth-child(2), .tariff .reveal:nth-child(2), .features .reveal:nth-child(2), .terms-notes .reveal:nth-child(2) { transition-delay: 0.1s; }
.principles .reveal:nth-child(3), .tariff .reveal:nth-child(3), .features .reveal:nth-child(3), .terms-notes .reveal:nth-child(3) { transition-delay: 0.2s; }
.tariff .reveal:nth-child(4) { transition-delay: 0.3s; }
.faq__list .reveal:nth-child(n+2) { transition-delay: 0.06s; }

/* ---------- club ---------- */

.principles {
  display: grid;
  gap: 0;
  margin-top: clamp(56px, 8vw, 110px);
  border-top: 1px solid var(--line);
}
.principle {
  display: grid;
  gap: 14px;
  padding: 36px 0;
  border-bottom: 1px solid var(--line);
}
.principle__num {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--lime);
}
.principle h3 {
  font-size: clamp(1.5rem, 2.6vw, 2.25rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.05;
}
.principle p { color: var(--ink-2); max-width: 36ch; }
@media (min-width: 900px) {
  .principles { grid-template-columns: repeat(3, 1fr); gap: 0 48px; }
  .principle { padding: 44px 0 56px; border-bottom: 0; grid-template-rows: auto auto 1fr; align-content: start; }
  .principle + .principle { border-left: 1px solid var(--line); padding-left: 40px; }
}

/* ---------- how ---------- */

.how {
  display: grid;
  gap: 48px;
}
.how__counter {
  margin-top: 40px;
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 300;
  letter-spacing: -0.04em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  display: none;
}
.how__counter em { font-style: normal; color: var(--faint); font-size: 0.45em; margin-left: 10px; }
.steps { display: grid; border-top: 1px solid var(--line); }
.step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
  transition: opacity 0.5s;
}
.step__num {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--lime);
  padding-top: 8px;
}
.step h3 {
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 12px;
}
.step p { color: var(--ink-2); max-width: 44ch; }
@media (min-width: 900px) {
  .how { grid-template-columns: 5fr 7fr; gap: 80px; align-items: start; }
  .how__side { position: sticky; top: calc(var(--nav-h) + 48px); }
  .how__counter { display: block; }
  .step { padding: 56px 0; grid-template-columns: 80px 1fr; opacity: 0.35; }
  .step.is-active { opacity: 1; }
  .step h3 { margin-bottom: 16px; }
}

/* ---------- terms (paper) ---------- */

.section--paper {
  background: var(--paper);
  color: var(--paper-ink);
  --ink-2: rgba(10, 10, 11, 0.7);
  --muted: var(--paper-muted);
  --line: var(--paper-line);
}
.section--paper .eyebrow { color: var(--paper-muted); }
.section--paper .eyebrow__num { color: #6d8400; }
.section--paper ::selection { background: var(--paper-ink); color: var(--paper); }

.tariff {
  display: grid;
  gap: 1px;
  background: var(--paper-line);
  border: 1px solid var(--paper-line);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: clamp(48px, 7vw, 96px);
}
.tariff__cell {
  background: var(--paper);
  padding: 32px 28px 30px;
  display: grid;
  gap: 8px;
  align-content: start;
  transition: background-color 0.3s;
}
.tariff__cell:hover { background: #fff; }
.tariff__cell b {
  font-size: clamp(2.4rem, 4.6vw, 4rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.tariff__cell b small { font-size: 0.4em; font-weight: 500; letter-spacing: -0.01em; margin-left: 4px; color: var(--paper-muted); }
.tariff__cell span { font-size: 15px; font-weight: 600; margin-top: 8px; }
.tariff__cell p { font-size: 14px; color: var(--paper-muted); line-height: 1.45; }
@media (min-width: 700px) { .tariff { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .tariff { grid-template-columns: repeat(4, 1fr); } .tariff__cell { padding: 40px 36px 36px; } }

.terms-notes {
  display: grid;
  gap: 0;
  margin-top: clamp(40px, 6vw, 72px);
  border-top: 1px solid var(--paper-line);
}
.terms-notes li {
  padding: 22px 0;
  border-bottom: 1px solid var(--paper-line);
  color: var(--ink-2);
  max-width: 70ch;
}
.terms-notes b { color: var(--paper-ink); }
@media (min-width: 900px) {
  .terms-notes { grid-template-columns: repeat(3, 1fr); gap: 0 40px; }
  .terms-notes li { border-bottom: 0; padding: 28px 0 0; }
}

/* ---------- app ---------- */

.section--app { overflow: hidden; }
.app { display: grid; gap: 64px; align-items: center; }
.features { display: grid; margin-top: clamp(40px, 5vw, 64px); border-top: 1px solid var(--line); }
.features li { padding: 24px 0; border-bottom: 1px solid var(--line); }
.features h3 { font-size: 1.15rem; font-weight: 600; margin-bottom: 8px; letter-spacing: -0.01em; }
.features p { color: var(--ink-2); font-size: 16px; max-width: 42ch; }
.app__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 16px 28px; margin-top: 36px; }
.app__ios { font-size: 14px; color: var(--muted); }

.app__visual {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
}
.app__visual::before {
  content: "";
  position: absolute;
  width: 80%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 255, 0, 0.16) 0%, rgba(212, 255, 0, 0) 62%);
}
.phone {
  position: relative;
  width: min(340px, 74vw);
  aspect-ratio: 720 / 1447;
  padding: 10px;
  border-radius: 44px;
  background: #0c0c0d;
  border: 1px solid rgba(244, 244, 241, 0.16);
  box-shadow:
    0 60px 120px -40px rgba(0, 0, 0, 0.9),
    inset 0 0 0 1px rgba(0, 0, 0, 0.8);
  transform: translateY(0);
  transition: transform 1.2s var(--ease);
}
.phone__screen {
  width: 100%;
  height: 100%;
  border-radius: 34px;
  overflow: hidden;
  background: #111;
}
.phone__screen img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.phone--back {
  display: none;
  position: absolute;
  transform: translate(58%, 6%) scale(0.86);
  opacity: 0.55;
  filter: brightness(0.7);
  z-index: -1;
}
@media (min-width: 900px) {
  .app { grid-template-columns: 6fr 6fr; gap: 40px; }
  .app__visual { min-height: 720px; }
  .phone--back { display: block; }
  .app__visual .phone:first-child { transform: translateX(-16%); }
}

/* ---------- drivers ---------- */

.section--drivers {
  background:
    radial-gradient(60% 50% at 100% 0%, rgba(212, 255, 0, 0.07) 0%, rgba(212, 255, 0, 0) 60%),
    var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.drivers { display: grid; gap: 40px; }
.drivers__text { display: grid; gap: 22px; color: var(--ink-2); font-size: clamp(1.05rem, 1.35vw, 1.25rem); max-width: 52ch; }
.drivers__text .link-arrow { margin-top: 8px; justify-self: start; }
@media (min-width: 900px) { .drivers { grid-template-columns: 5fr 7fr; gap: 80px; align-items: start; } .drivers__text { padding-top: 60px; } }

/* ---------- faq ---------- */

.faq { display: grid; gap: 40px; }
.faq__list { border-top: 1px solid var(--line); }
.qa { border-bottom: 1px solid var(--line); }
.qa summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
  font-size: clamp(1.1rem, 1.7vw, 1.4rem);
  font-weight: 500;
  letter-spacing: -0.015em;
  transition: color 0.25s;
}
.qa summary::-webkit-details-marker { display: none; }
.qa summary:hover { color: var(--lime); }
.qa__icon {
  position: relative;
  flex: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line-2);
  transition: transform 0.45s var(--ease), border-color 0.25s;
}
.qa__icon::before, .qa__icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 1.5px;
  background: currentColor;
  transform: translate(-50%, -50%);
}
.qa__icon::after { transform: translate(-50%, -50%) rotate(90deg); transition: transform 0.35s var(--ease); }
.qa[open] .qa__icon { transform: rotate(180deg); border-color: var(--ink); }
.qa[open] .qa__icon::after { transform: translate(-50%, -50%) rotate(0deg); }
.qa__body { padding: 0 60px 26px 0; color: var(--ink-2); max-width: 64ch; }
.qa__body p { animation: fade 0.5s var(--ease); }
@media (min-width: 900px) { .faq { grid-template-columns: 5fr 7fr; gap: 80px; align-items: start; } .faq > div:first-child { position: sticky; top: calc(var(--nav-h) + 48px); } .faq__list { margin-top: 60px; } }

/* ---------- request ---------- */

.section--request {
  background: var(--bg-3);
  border-top: 1px solid var(--line);
  isolation: isolate;
}
.section--request::before { content: ""; z-index: -1; opacity: 0.05; }
.request { display: grid; gap: 48px; }
.request__mail { margin-top: 28px; color: var(--muted); font-size: 15px; }
.request__mail a { color: var(--ink); border-bottom: 1px solid var(--line-2); }

.form {
  display: grid;
  gap: 22px;
  padding: clamp(24px, 3.5vw, 44px);
  border-radius: var(--radius);
  background: var(--bg);
  border: 1px solid var(--line);
}
.seg {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  margin: 0;
  padding: 4px;
  border: 0;
  border-radius: 999px;
  background: var(--bg-3);
}
.seg__item { position: relative; }
.seg__item input { position: absolute; inset: 0; opacity: 0; cursor: pointer; }
.seg__item span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  transition: background-color 0.3s, color 0.3s;
}
.seg__item input:checked + span { background: var(--ink); color: var(--bg); }
.seg__item input:focus-visible + span { outline: 2px solid var(--lime); outline-offset: 2px; }

.field { display: grid; gap: 8px; }
.field label { font-size: 13px; font-weight: 600; letter-spacing: 0.02em; color: var(--ink-2); }
.field label em { font-style: normal; font-weight: 500; color: var(--faint); }
.field input, .field textarea {
  width: 100%;
  font: inherit;
  font-size: 16px;
  color: var(--ink);
  background: var(--bg-3);
  border: 1px solid transparent;
  border-radius: 16px;
  padding: 15px 18px;
  transition: border-color 0.25s, background-color 0.25s;
  -webkit-appearance: none;
  appearance: none;
}
.field textarea { resize: vertical; min-height: 96px; }
.field input::placeholder, .field textarea::placeholder { color: var(--faint); }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--line-2); background: #1a1a1c; }
.field.is-invalid input, .field.is-invalid textarea { border-color: var(--danger); }
.field__err { display: none; font-size: 13px; color: var(--danger); }
.field.is-invalid .field__err, .field__err.is-on { display: block; }

.hp { position: absolute; left: -10000px; top: auto; width: 1px; height: 1px; overflow: hidden; }

.consent {
  position: relative;
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  align-items: start;
  font-size: 13px;
  line-height: 1.45;
  color: var(--muted);
  cursor: pointer;
}
.consent a { color: var(--ink-2); border-bottom: 1px solid var(--line-2); }
.consent input { position: absolute; opacity: 0; width: 22px; height: 22px; margin: 0; }
.consent__box {
  width: 22px;
  height: 22px;
  border-radius: 7px;
  border: 1px solid var(--line-2);
  background: var(--bg-3);
  display: grid;
  place-items: center;
  transition: background-color 0.25s, border-color 0.25s;
}
.consent__box::after {
  content: "";
  width: 6px;
  height: 11px;
  border: solid var(--on-lime);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg) translateY(-1px);
  opacity: 0;
}
.consent input:checked ~ .consent__box { background: var(--lime); border-color: var(--lime); }
.consent input:checked ~ .consent__box::after { opacity: 1; }
.consent input:focus-visible ~ .consent__box { outline: 2px solid var(--lime); outline-offset: 2px; }
.consent.is-invalid .consent__box { border-color: var(--danger); }

.form__actions { display: grid; gap: 14px; margin-top: 6px; }
.form__actions .btn { justify-self: start; }
.form__error { display: none; color: var(--danger); font-size: 14px; }
.form__error.is-on { display: block; }

.form--done { text-align: left; align-content: start; min-height: 320px; }
.done__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--on-lime);
  display: grid;
  place-items: center;
  animation: pop 0.6s var(--ease);
}
@keyframes pop { from { transform: scale(0.6); opacity: 0; } to { transform: none; opacity: 1; } }
.form--done h3 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 500; letter-spacing: -0.03em; }
.form--done p { color: var(--ink-2); }
.done__note { font-size: 14px; color: var(--muted); }
.done__note a { color: var(--ink); border-bottom: 1px solid var(--line-2); }

@media (min-width: 900px) {
  .request { grid-template-columns: 5fr 6fr; gap: 80px; align-items: start; }
  .request__text { position: sticky; top: calc(var(--nav-h) + 48px); }
}

/* ---------- footer ---------- */

.footer { border-top: 1px solid var(--line); padding: 64px 0 32px; }
.footer__inner { display: grid; gap: 40px; }
.footer__brand p { margin-top: 16px; color: var(--muted); font-size: 14px; line-height: 1.5; }
.footer__col { display: grid; gap: 12px; align-content: start; font-size: 14px; }
.footer__col b { font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--faint); margin-bottom: 6px; }
.footer__col a { color: var(--ink-2); transition: color 0.2s; }
.footer__col a:hover { color: var(--ink); }
.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--muted);
}
.footer__top { margin-left: auto; color: var(--ink-2); }
@media (min-width: 900px) { .footer__inner { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; } }

/* ---------- motion preferences ---------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001s !important; animation-iteration-count: 1 !important; transition-duration: 0.001s !important; }
  .hero__title .line > span { transform: none; }
  .hero__lead, .hero__cta, .hero__facts { opacity: 1; }
  .reveal { opacity: 1; transform: none; }
  .marquee__track { animation: none; }
  .hero__trail { display: none; }
  .hero__route-line { stroke-dashoffset: 0; }
  .hero__route-dot { opacity: 1; }
  .hero__route-ring { display: none; }
}
