:root {
  --navy-950: #031c31;
  --navy-900: #062f53;
  --navy-800: #073f6f;
  --blue-700: #0077b8;
  --blue-600: #0094d3;
  --blue-500: #13afe8;
  --blue-100: #dff5ff;
  --blue-50: #f2fbff;
  --yellow: #ffc400;
  --yellow-soft: #ffe88b;
  --white: #fff;
  --ink: #102a3d;
  --muted: #627888;
  --line: rgba(12, 67, 103, .13);
  --surface: #f5f9fc;
  --shadow-sm: 0 12px 36px rgba(4, 54, 90, .09);
  --shadow-md: 0 22px 60px rgba(4, 54, 90, .14);
  --shadow-lg: 0 40px 100px rgba(0, 38, 66, .25);
  --radius-sm: 16px;
  --radius-md: 24px;
  --radius-lg: 36px;
  --container: 1180px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body {
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
svg { fill: currentColor; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { color: inherit; }
:focus-visible { outline: 3px solid rgba(255, 196, 0, .85); outline-offset: 4px; }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 112px 0; position: relative; }
.section--light { background: var(--surface); }
.section--dark { color: var(--white); background: var(--navy-950); overflow: hidden; }
.section--dark::before {
  content: ""; position: absolute; width: 640px; height: 640px; border-radius: 50%;
  left: -320px; bottom: -400px; background: radial-gradient(circle, rgba(0, 170, 235, .22), transparent 70%);
}
.section--dark::after {
  content: ""; position: absolute; width: 520px; height: 520px; border-radius: 50%;
  right: -280px; top: -330px; background: radial-gradient(circle, rgba(255, 196, 0, .12), transparent 70%);
}
.section--dark > .container { position: relative; z-index: 1; }

.skip-link {
  position: fixed; left: 18px; top: -80px; z-index: 9999; padding: 12px 18px;
  border-radius: 10px; color: var(--navy-950); background: var(--yellow); font-weight: 900;
  transition: top .2s ease;
}
.skip-link:focus { top: 18px; }

/* Header */
.header {
  position: fixed; inset: 0 0 auto; z-index: 1000; color: var(--white);
  background: rgba(3, 28, 49, .62); border-bottom: 1px solid rgba(255, 255, 255, .1);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  transition: background .25s ease, box-shadow .25s ease, transform .25s ease;
}
.header.is-scrolled { background: rgba(3, 28, 49, .94); box-shadow: 0 14px 34px rgba(0, 23, 40, .22); }
.header__inner { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { position: relative; display: inline-block; width: max-content; padding-top: .62rem; line-height: .82; user-select: none; }
.brand__via { position: absolute; left: .08rem; top: 0; z-index: 1; color: var(--yellow); font-size: .8rem; font-weight: 1000; letter-spacing: -.04em; transform: none; transform-origin: center; }
.brand__mobb { display: block; color: var(--white); font-size: 2.45rem; font-weight: 300; letter-spacing: -.1em; }
.brand--dark .brand__mobb { color: var(--navy-900); }
.nav { display: flex; align-items: center; gap: 25px; color: rgba(255, 255, 255, .82); font-size: .9rem; font-weight: 750; }
.nav a { position: relative; white-space: nowrap; transition: color .2s ease; }
.nav a:not(.nav__cta)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -8px; height: 2px; border-radius: 9px; background: var(--yellow); transition: right .22s ease; }
.nav a:hover { color: var(--white); }
.nav a:not(.nav__cta):hover::after { right: 0; }
.nav__cta { padding: 11px 18px; border-radius: 999px; background: var(--yellow); color: var(--navy-950); font-weight: 900; box-shadow: 0 8px 24px rgba(255, 196, 0, .22); }
.menu-button { display: none; width: 46px; height: 46px; padding: 12px; border: 0; border-radius: 13px; background: rgba(255, 255, 255, .1); cursor: pointer; }
.menu-button span { display: block; width: 100%; height: 2px; margin: 5px 0; border-radius: 5px; background: var(--white); transition: transform .25s ease, opacity .25s ease; }
.menu-button.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-button.is-active span:nth-child(2) { opacity: 0; }
.menu-button.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Hero */
.hero {
  position: relative; min-height: 900px; padding: 158px 0 64px; color: var(--white); overflow: hidden;
  background:
    radial-gradient(circle at 79% 17%, rgba(41, 194, 242, .42), transparent 27%),
    radial-gradient(circle at 4% 75%, rgba(255, 196, 0, .11), transparent 23%),
    linear-gradient(135deg, #031f36 0%, #063e6b 43%, #0789c5 100%);
}
.hero::before {
  content: ""; position: absolute; inset: auto -10% -330px; height: 430px; border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  background: var(--white); z-index: 1;
}
.hero__mesh { position: absolute; inset: 0; opacity: .22; pointer-events: none; background-image: linear-gradient(rgba(255,255,255,.07) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.07) 1px, transparent 1px); background-size: 72px 72px; mask-image: linear-gradient(to bottom, black, transparent 78%); }
.hero__grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 72px; }
.hero__copy { max-width: 660px; }
.eyebrow, .section-label { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 18px; font-size: .76rem; font-weight: 900; letter-spacing: .15em; text-transform: uppercase; }
.eyebrow { color: var(--yellow-soft); }
.eyebrow span { width: 28px; height: 2px; border-radius: 9px; background: var(--yellow); }
.hero h1 { max-width: 740px; font-size: clamp(3rem, 5.5vw, 5.65rem); line-height: .98; letter-spacing: -.062em; text-wrap: balance; }
.hero__copy > p { max-width: 610px; margin-top: 25px; color: rgba(255, 255, 255, .79); font-size: 1.08rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 34px; }
.button { min-height: 54px; display: inline-flex; align-items: center; justify-content: center; gap: 11px; padding: 14px 23px; border: 1px solid transparent; border-radius: 999px; font-weight: 900; cursor: pointer; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.button svg { width: 20px; height: 20px; }
.button:hover { transform: translateY(-2px); }
.button--primary { color: var(--navy-950); background: var(--yellow); box-shadow: 0 15px 35px rgba(255, 196, 0, .22); }
.button--primary:hover { background: #ffd437; box-shadow: 0 18px 45px rgba(255, 196, 0, .3); }
.button--glass { color: var(--white); border-color: rgba(255, 255, 255, .22); background: rgba(255, 255, 255, .09); backdrop-filter: blur(12px); }
.button--glass:hover { background: rgba(255, 255, 255, .15); }
.button--dark { color: var(--white); background: var(--navy-950); box-shadow: 0 16px 38px rgba(3, 28, 49, .2); }
.hero__highlights { display: flex; align-items: center; gap: 0; margin-top: 46px; }
.hero__highlights > div { min-width: 128px; padding-right: 24px; margin-right: 24px; border-right: 1px solid rgba(255,255,255,.17); }
.hero__highlights > div:last-child { border-right: 0; margin-right: 0; padding-right: 0; }
.hero__highlights strong { display: block; color: var(--white); font-size: 1.05rem; }
.hero__highlights span { display: block; margin-top: 2px; color: rgba(255,255,255,.55); font-size: .78rem; }

.hero__visual { position: relative; min-height: 610px; display: grid; place-items: center; }
.visual-glow { position: absolute; width: 470px; height: 470px; border-radius: 50%; background: radial-gradient(circle, rgba(95, 214, 255, .28), rgba(95,214,255,.02) 64%, transparent 70%); filter: blur(3px); }
.phone { position: relative; z-index: 2; width: 314px; padding: 10px; border-radius: 47px; background: linear-gradient(145deg, #eef8fc, #9db7c6 45%, #fff 75%); box-shadow: 0 45px 100px rgba(0, 28, 48, .48), inset 0 0 0 1px rgba(255,255,255,.75); transform: rotate(3deg); }
.phone::before { content: ""; position: absolute; inset: 4px; border-radius: 43px; border: 1px solid rgba(0,0,0,.13); pointer-events: none; }
.phone__speaker { position: absolute; top: 19px; left: 50%; z-index: 5; width: 88px; height: 24px; transform: translateX(-50%); border-radius: 20px; background: #051826; }
.phone__screen { min-height: 585px; overflow: hidden; border-radius: 38px; color: var(--ink); background: #edf7fb; }
.appbar { height: 66px; display: flex; align-items: flex-end; justify-content: space-between; padding: 0 20px 12px; color: var(--white); background: linear-gradient(120deg, var(--navy-900), var(--blue-600)); }
.mini-brand { position: relative; display: inline-block; padding-top: .48rem; line-height: .8; }
.mini-brand__mobb { display: block; color: var(--white); font-size: 1.15rem; font-weight: 400; letter-spacing: -.06em; }
.mini-brand__via { position: absolute; left: .02rem; top: 0; color: var(--yellow); font-size: .52rem; font-weight: 1000; letter-spacing: 0; transform: none; }
.appbar button { width: 32px; height: 28px; border: 0; color: rgba(255,255,255,.8); background: transparent; letter-spacing: 2px; }
.map { position: relative; height: 275px; overflow: hidden; background: linear-gradient(25deg, #e6f0eb, #d6e9e8); }
.map::before { content: ""; position: absolute; inset: 0; opacity: .48; background-image: linear-gradient(25deg, transparent 47%, rgba(122,155,154,.28) 48%, rgba(122,155,154,.28) 52%, transparent 53%), linear-gradient(-35deg, transparent 47%, rgba(122,155,154,.19) 48%, rgba(122,155,154,.19) 52%, transparent 53%); background-size: 75px 75px, 95px 95px; }
.road { position: absolute; z-index: 1; display: block; height: 18px; border: 5px solid rgba(255,255,255,.9); background: #b5c9cc; box-shadow: 0 0 0 1px rgba(110,140,143,.16); }
.road--one { width: 370px; left: -42px; top: 112px; transform: rotate(-28deg); }
.road--two { width: 330px; left: -20px; top: 128px; transform: rotate(58deg); }
.road--three { width: 330px; left: 40px; top: 45px; transform: rotate(8deg); }
.route { position: absolute; z-index: 2; width: 155px; height: 135px; left: 83px; top: 57px; border: 5px solid var(--blue-700); border-left-color: transparent; border-bottom-color: transparent; border-radius: 0 80px 0 0; transform: rotate(16deg); }
.pin { position: absolute; z-index: 3; width: 20px; height: 20px; border: 5px solid var(--white); border-radius: 50% 50% 50% 0; box-shadow: 0 5px 14px rgba(0,0,0,.2); transform: rotate(-45deg); }
.pin--start { left: 79px; top: 176px; background: var(--blue-700); }
.pin--end { right: 51px; top: 60px; background: var(--yellow); }
.car { position: absolute; z-index: 4; left: 148px; top: 118px; width: 44px; height: 44px; display: grid; place-items: center; border: 4px solid var(--white); border-radius: 50%; color: var(--white); background: var(--navy-900); box-shadow: 0 8px 20px rgba(0,48,82,.3); }
.car svg { width: 23px; }
.ride-card { position: relative; z-index: 5; min-height: 253px; margin-top: -18px; padding: 18px 18px 20px; border-radius: 26px 26px 0 0; background: var(--white); box-shadow: 0 -12px 35px rgba(19,71,104,.12); }
.ride-card__handle { display: block; width: 48px; height: 5px; margin: 0 auto 15px; border-radius: 9px; background: #dce7ed; }
.ride-card__title { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.ride-card__title small { display: block; color: var(--muted); font-size: .72rem; }
.ride-card__title strong { display: block; font-size: 1rem; }
.avatar { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; color: var(--navy-950); background: var(--yellow); font-size: .68rem; font-weight: 900; }
.field { height: 40px; display: flex; align-items: center; gap: 10px; margin-top: 8px; padding: 0 12px; border: 1px solid #e3edf1; border-radius: 11px; color: #7a8d99; background: #f7fafb; font-size: .72rem; }
.field__dot { width: 9px; height: 9px; border-radius: 50%; flex: 0 0 auto; }
.field__dot--blue { background: var(--blue-600); }
.field__dot--yellow { background: var(--yellow); }
.ride-card button { width: 100%; height: 43px; margin-top: 12px; border: 0; border-radius: 12px; color: var(--navy-950); background: var(--yellow); font-size: .77rem; font-weight: 900; }
.floating-chip { position: absolute; z-index: 4; display: flex; align-items: center; gap: 12px; min-width: 205px; padding: 13px 15px; border: 1px solid rgba(255,255,255,.45); border-radius: 17px; color: var(--ink); background: rgba(255,255,255,.94); box-shadow: 0 22px 55px rgba(0,35,60,.22); backdrop-filter: blur(12px); }
.floating-chip small, .floating-chip strong { display: block; }
.floating-chip small { color: var(--muted); font-size: .7rem; }
.floating-chip strong { font-size: .82rem; }
.floating-chip--top { right: -4px; top: 98px; }
.floating-chip--bottom { left: -25px; bottom: 105px; }
.pulse { position: relative; width: 15px; height: 15px; border-radius: 50%; background: #21bc70; }
.pulse::after { content: ""; position: absolute; inset: -6px; border: 1px solid rgba(33,188,112,.45); border-radius: 50%; animation: pulse 1.8s infinite; }
.chip-icon { width: 32px; height: 32px; display: grid; place-items: center; border-radius: 50%; color: var(--white); background: var(--blue-700); font-weight: 900; }
@keyframes pulse { 0%{transform:scale(.65);opacity:1} 100%{transform:scale(1.4);opacity:0} }
.trust-bar { position: relative; z-index: 3; margin-top: 74px; display: flex; align-items: center; justify-content: space-between; gap: 26px; padding: 21px 28px; border: 1px solid rgba(255,255,255,.18); border-radius: 20px; color: rgba(255,255,255,.57); background: rgba(255,255,255,.08); backdrop-filter: blur(13px); }
.trust-bar > span { font-size: .8rem; font-weight: 700; }
.trust-bar > div { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 27px; }
.trust-bar b { position: relative; color: var(--white); font-size: .83rem; }
.trust-bar b:not(:last-child)::after { content: ""; position: absolute; right: -15px; top: 50%; width: 4px; height: 4px; border-radius: 50%; background: var(--yellow); }

/* Global section headings */
.section-label { color: var(--blue-700); }
.section-label--light { color: var(--yellow-soft); }
h2 { font-size: clamp(2.25rem, 4.2vw, 4.25rem); line-height: 1.05; letter-spacing: -.055em; text-wrap: balance; }
h2 em { color: var(--blue-600); font-style: normal; }
.section-heading { display: grid; grid-template-columns: 1.2fr .8fr; align-items: end; gap: 80px; margin-bottom: 52px; }
.section-heading > p { max-width: 470px; color: var(--muted); }
.section-heading--light > p { color: rgba(255,255,255,.6); }

/* About */
.about-grid { display: grid; grid-template-columns: 1fr .82fr; align-items: center; gap: 95px; }
.about-copy > p { max-width: 650px; margin-top: 25px; color: var(--muted); font-size: 1.02rem; }
.about-points { margin-top: 38px; display: grid; gap: 10px; }
.about-points article { display: grid; grid-template-columns: 44px 1fr; gap: 15px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.about-points article > span { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 12px; color: var(--blue-700); background: var(--blue-100); font-size: .72rem; font-weight: 900; }
.about-points strong { display: block; margin-bottom: 3px; }
.about-points p { color: var(--muted); font-size: .9rem; }
.about-panel { position: relative; padding: 36px; border-radius: var(--radius-lg); color: var(--white); background: linear-gradient(145deg, var(--navy-900), #087db3); box-shadow: var(--shadow-lg); overflow: hidden; }
.about-panel::after { content: ""; position: absolute; width: 280px; height: 280px; right: -120px; bottom: -130px; border: 1px solid rgba(255,255,255,.15); border-radius: 50%; box-shadow: 0 0 0 45px rgba(255,255,255,.025), 0 0 0 90px rgba(255,255,255,.02); }
.about-panel__top { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 15px; }
.icon-box { width: 54px; height: 54px; display: grid; place-items: center; border-radius: 17px; color: var(--navy-950); background: var(--yellow); }
.icon-box svg { width: 27px; }
.status-badge { padding: 8px 12px; border: 1px solid rgba(255,255,255,.18); border-radius: 999px; color: rgba(255,255,255,.8); background: rgba(255,255,255,.08); font-size: .7rem; font-weight: 800; }
.about-panel blockquote { position: relative; z-index: 1; margin: 72px 0 65px; font-size: clamp(1.55rem, 2.8vw, 2.45rem); line-height: 1.2; letter-spacing: -.04em; font-weight: 800; }
.about-panel__footer { position: relative; z-index: 1; display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; padding-top: 23px; border-top: 1px solid rgba(255,255,255,.15); }
.about-panel__footer .brand__mobb { color: var(--white); font-size: 2rem; }
.about-panel__footer .brand__via { top: 0; transform: none; }
.about-panel__footer > span { color: rgba(255,255,255,.55); font-size: .72rem; }

/* Features */
.features-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 18px; }
.feature-card { grid-column: span 4; min-height: 255px; padding: 29px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--white); box-shadow: 0 8px 30px rgba(6,63,105,.04); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.feature-card:hover { transform: translateY(-6px); border-color: rgba(0,148,211,.3); box-shadow: var(--shadow-md); }
.feature-card:nth-child(1), .feature-card:nth-child(6) { grid-column: span 5; }
.feature-card:nth-child(2), .feature-card:nth-child(5) { grid-column: span 7; }
.feature-card__icon { width: 51px; height: 51px; display: grid; place-items: center; margin-bottom: 35px; border-radius: 16px; color: var(--blue-700); background: var(--blue-100); }
.feature-card:nth-child(2) .feature-card__icon, .feature-card:nth-child(5) .feature-card__icon { color: var(--navy-950); background: var(--yellow); }
.feature-card__icon svg { width: 26px; }
.feature-card h3 { margin-bottom: 10px; font-size: 1.18rem; letter-spacing: -.025em; }
.feature-card p { max-width: 470px; color: var(--muted); font-size: .9rem; }

/* Timeline */
.timeline { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 17px; }
.timeline::before { content: ""; position: absolute; left: 8%; right: 8%; top: 34px; height: 1px; background: linear-gradient(90deg, transparent, rgba(255,255,255,.27), transparent); }
.timeline-card { position: relative; min-height: 265px; padding: 26px; border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius-md); background: rgba(255,255,255,.055); backdrop-filter: blur(8px); }
.timeline-card > span { position: relative; z-index: 2; width: 50px; height: 50px; display: grid; place-items: center; margin-bottom: 54px; border: 1px solid rgba(255,255,255,.22); border-radius: 50%; color: var(--navy-950); background: var(--yellow); font-size: .78rem; font-weight: 1000; box-shadow: 0 0 0 10px var(--navy-950); }
.timeline-card h3 { margin-bottom: 10px; font-size: 1.09rem; }
.timeline-card p { color: rgba(255,255,255,.57); font-size: .88rem; }

/* Robot central */
.central-section { overflow: hidden; background: linear-gradient(180deg, var(--white), #f3fbff); }
.central-section::before { content: ""; position: absolute; width: 490px; height: 490px; right: -250px; top: 10px; border-radius: 50%; background: radial-gradient(circle, rgba(0,157,218,.13), transparent 70%); }
.central-grid { display: grid; grid-template-columns: .82fr 1.18fr; align-items: center; gap: 85px; }
.central-copy h2 { margin-bottom: 24px; }
.central-copy > p { max-width: 520px; margin-bottom: 30px; color: var(--muted); }
.central-number { display: flex; width: max-content; max-width: 100%; flex-direction: column; gap: 4px; margin-top: 18px; padding: 13px 16px; border: 1px solid #b8e5f5; border-radius: 14px; color: var(--navy-900); background: #eaf9ff; }
.central-number span { color: var(--blue-700); font-size: .64rem; font-weight: 950; letter-spacing: .08em; }
.central-number strong { font-size: 1.08rem; }
.central-warning { max-width: 490px; margin-top: 10px; color: #657381; font-size: .78rem; }
.robot-card { position: relative; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--white); box-shadow: var(--shadow-md); }
.robot-card::before { content: ""; position: absolute; inset: 16px; border: 1px dashed rgba(0,148,211,.13); border-radius: 27px; pointer-events: none; }
.robot-card__head { position: relative; display: flex; align-items: center; gap: 13px; padding-bottom: 22px; border-bottom: 1px solid var(--line); }
.robot-avatar { width: 50px; height: 50px; display: grid; place-items: center; border-radius: 16px; color: var(--navy-950); background: var(--yellow); }
.robot-avatar svg { width: 26px; }
.robot-card__head strong, .robot-card__head span { display: block; }
.robot-card__head div > span { margin-top: 2px; color: var(--muted); font-size: .75rem; }
.robot-card__head i { display: inline-block; width: 7px; height: 7px; margin-right: 5px; border-radius: 50%; background: #21bc70; }
.robot-steps { position: relative; list-style: none; margin: 25px 0 18px; }
.robot-steps::before { content: ""; position: absolute; left: 18px; top: 19px; bottom: 19px; width: 2px; background: #e2eef3; }
.robot-steps li { position: relative; display: grid; grid-template-columns: 38px 1fr; gap: 14px; padding: 9px 0; }
.robot-steps li > span { position: relative; z-index: 1; width: 38px; height: 38px; display: grid; place-items: center; border: 5px solid var(--white); border-radius: 50%; color: var(--white); background: var(--blue-700); font-size: .72rem; font-weight: 900; box-shadow: 0 0 0 1px #d7e8ef; }
.robot-steps strong { display: block; margin-bottom: 2px; font-size: .9rem; }
.robot-steps p { color: var(--muted); font-size: .8rem; }
.robot-note { position: relative; padding: 14px 16px 14px 43px; border-radius: 14px; color: #725c0a; background: #fff7d4; font-size: .77rem; }
.robot-note::before { content: "!"; position: absolute; left: 15px; top: 50%; width: 19px; height: 19px; display: grid; place-items: center; transform: translateY(-50%); border-radius: 50%; color: var(--navy-950); background: var(--yellow); font-weight: 1000; }

/* Coverage */
.coverage-grid { display: grid; grid-template-columns: .85fr 1.15fr; align-items: center; gap: 80px; }
.coverage-copy > p { max-width: 520px; margin-top: 24px; color: var(--muted); }
.coverage-note { display: grid; grid-template-columns: 30px 1fr; gap: 12px; margin-top: 27px; padding: 16px; border: 1px solid rgba(0,148,211,.16); border-radius: 15px; background: rgba(223,245,255,.48); }
.coverage-note > span { width: 27px; height: 27px; display: grid; place-items: center; border-radius: 50%; color: var(--white); background: var(--blue-700); font-size: .8rem; font-weight: 900; }
.coverage-note p { color: var(--muted); font-size: .82rem; }
.states-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.state-card { position: relative; min-height: 185px; padding: 25px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--white); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .23s ease; }
.state-card:hover { transform: translateY(-5px); }
.state-card::after { content: attr(data-abbr); position: absolute; right: -6px; bottom: -28px; color: rgba(0,148,211,.08); font-size: 7.6rem; line-height: 1; font-weight: 1000; letter-spacing: -.1em; }
.state-card span { display: inline-grid; place-items: center; width: 48px; height: 48px; margin-bottom: 28px; border-radius: 15px; color: var(--navy-950); background: var(--yellow); font-size: .8rem; font-weight: 1000; }
.state-card strong { position: relative; z-index: 1; display: block; font-size: 1.12rem; }
.state-card small { position: relative; z-index: 1; color: var(--muted); }

/* Download */
.download-section { color: var(--white); background: linear-gradient(135deg, #04233c, #074a7d 55%, #0793cb); overflow: hidden; }
.download-section::before { content: ""; position: absolute; inset: 0; opacity: .19; background-image: radial-gradient(circle at 20% 20%, rgba(255,255,255,.22) 1px, transparent 1px); background-size: 25px 25px; }
.download-section > .container { position: relative; z-index: 1; }
.download-head { max-width: 760px; margin-bottom: 48px; }
.download-head > p { margin-top: 20px; color: rgba(255,255,255,.62); }
.download-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.download-card { position: relative; min-height: 470px; padding: 38px; border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius-lg); background: rgba(255,255,255,.08); backdrop-filter: blur(16px); overflow: hidden; }
.download-card::after { content: ""; position: absolute; width: 240px; height: 240px; right: -100px; bottom: -120px; border-radius: 50%; background: radial-gradient(circle, rgba(255,255,255,.15), transparent 68%); }
.download-card--passenger { background: linear-gradient(145deg, rgba(255,255,255,.15), rgba(255,255,255,.07)); }
.download-card--driver { background: linear-gradient(145deg, rgba(255,196,0,.14), rgba(255,255,255,.06)); }
.download-card__icon { width: 64px; height: 64px; display: grid; place-items: center; margin-bottom: 45px; border-radius: 20px; color: var(--navy-950); background: var(--yellow); }
.download-card__icon svg { width: 31px; }
.download-card > span { display: block; margin-bottom: 8px; color: var(--yellow-soft); font-size: .72rem; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.download-card h3 { margin-bottom: 12px; font-size: 2rem; letter-spacing: -.045em; }
.download-card > p { max-width: 460px; margin-bottom: 28px; color: rgba(255,255,255,.63); font-size: .92rem; }
.store-button { position: relative; z-index: 1; width: max-content; min-width: 190px; display: inline-flex; align-items: center; gap: 11px; margin: 0 8px 8px 0; padding: 11px 15px; border: 1px solid rgba(255,255,255,.2); border-radius: 13px; color: var(--white); background: rgba(0,0,0,.5); transition: transform .2s ease, background .2s ease; }
.store-button:hover { transform: translateY(-2px); background: rgba(0,0,0,.7); }
.store-button svg { width: 28px; }
.store-button small, .store-button strong { display: block; line-height: 1.05; }
.store-button small { color: rgba(255,255,255,.65); font-size: .62rem; }
.store-button strong { margin-top: 4px; font-size: 1rem; }

.text-link { position: relative; z-index: 1; display: block; width: max-content; margin-top: 18px; color: var(--yellow-soft); font-size: .82rem; font-weight: 800; }

/* Privacy */
.privacy-grid { display: grid; grid-template-columns: .78fr 1.22fr; align-items: center; gap: 95px; }
.privacy-visual { position: relative; min-height: 470px; display: grid; place-items: center; }
.lock-orbit { position: relative; width: 330px; height: 330px; display: grid; place-items: center; border: 1px solid rgba(0,148,211,.18); border-radius: 50%; box-shadow: 0 0 0 50px rgba(0,148,211,.035), 0 0 0 100px rgba(0,148,211,.02); }
.lock-orbit::before, .lock-orbit::after { content: ""; position: absolute; border-radius: 50%; background: var(--blue-600); box-shadow: 0 0 0 8px rgba(0,148,211,.12); }
.lock-orbit::before { width: 12px; height: 12px; right: 35px; top: 42px; }
.lock-orbit::after { width: 9px; height: 9px; left: 35px; bottom: 63px; background: var(--yellow); box-shadow: 0 0 0 8px rgba(255,196,0,.15); }
.lock-icon { width: 135px; height: 135px; display: grid; place-items: center; border-radius: 40px; color: var(--white); background: linear-gradient(145deg, var(--navy-900), var(--blue-600)); box-shadow: var(--shadow-lg); transform: rotate(-4deg); }
.lock-icon svg { width: 62px; }
.privacy-chip { position: absolute; padding: 10px 14px; border: 1px solid var(--line); border-radius: 999px; color: var(--blue-700); background: var(--white); box-shadow: var(--shadow-sm); font-size: .76rem; font-weight: 850; }
.privacy-chip--one { left: 2px; top: 95px; }
.privacy-chip--two { right: 0; top: 180px; }
.privacy-chip--three { left: 45px; bottom: 70px; }
.privacy-copy > p { margin-top: 23px; color: var(--muted); }
.privacy-list { display: grid; gap: 13px; margin-top: 27px; }
.privacy-list > div { display: grid; grid-template-columns: 28px 1fr; gap: 11px; }
.privacy-list span { width: 25px; height: 25px; display: grid; place-items: center; border-radius: 50%; color: var(--white); background: var(--blue-700); font-size: .72rem; font-weight: 900; }
.privacy-list p { color: var(--muted); font-size: .88rem; }
.legal-note { padding: 15px 17px; border-left: 3px solid var(--yellow); border-radius: 0 12px 12px 0; background: #fff9dc; font-size: .78rem; }

/* FAQ */
.faq-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 80px; }
.faq-copy > p { margin-top: 20px; color: var(--muted); }
.contact-options { display: grid; gap: 12px; margin-top: 32px; }
.support-card { display: grid; grid-template-columns: 49px 1fr 36px; align-items: center; gap: 13px; padding: 17px; border-radius: 18px; color: var(--white); background: var(--navy-900); box-shadow: var(--shadow-md); }
.support-card--robot { background: linear-gradient(135deg, #096b97, #0a98cf); }
.support-card--email .support-card__icon { background: rgba(255,255,255,.12); }
.support-card__icon { width: 49px; height: 49px; display: grid; place-items: center; border-radius: 15px; color: var(--navy-950); background: var(--yellow); }
.support-card__icon svg { width: 24px; }
.support-card small, .support-card strong, .support-card em { display: block; }
.support-card small { color: rgba(255,255,255,.68); font-size: .61rem; font-weight: 900; letter-spacing: .045em; }
.support-card strong { margin-top: 4px; font-size: .94rem; }
.support-card em { margin-top: 3px; color: rgba(255,255,255,.6); font-size: .66rem; font-style: normal; }
.support-card > a { width: 36px; height: 36px; display: grid; place-items: center; border-radius: 50%; color: var(--navy-950); background: var(--white); font-weight: 900; }
.accordion { display: grid; gap: 10px; }
.accordion-item { border: 1px solid var(--line); border-radius: 18px; background: var(--white); overflow: hidden; }
.accordion-button { width: 100%; display: grid; grid-template-columns: 1fr 36px; align-items: center; gap: 18px; padding: 20px 22px; border: 0; text-align: left; background: transparent; cursor: pointer; font-weight: 850; }
.accordion-button > span:last-child { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; color: var(--blue-700); background: var(--blue-100); font-size: 1.25rem; transition: transform .25s ease, background .25s ease; }
.accordion-item.is-open .accordion-button > span:last-child { transform: rotate(45deg); color: var(--navy-950); background: var(--yellow); }
.accordion-content { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.accordion-content p { padding: 0 72px 22px 22px; color: var(--muted); font-size: .87rem; }

/* CTA + Footer */
.social-cta { padding: 68px 0; color: var(--white); background: var(--navy-900); }
.social-cta__inner { display: flex; align-items: center; justify-content: space-between; gap: 45px; }
.social-cta h2 { max-width: 760px; font-size: clamp(2rem, 3.7vw, 3.5rem); }
.footer { padding: 75px 0 24px; color: rgba(255,255,255,.67); background: var(--navy-950); }
.footer__grid { display: grid; grid-template-columns: 1.4fr repeat(3, .7fr); gap: 55px; }
.footer__grid .brand { margin-bottom: 18px; }
.footer__grid > div:first-child p { max-width: 270px; font-size: .85rem; }
.footer__grid strong { display: block; margin-bottom: 17px; color: var(--white); font-size: .83rem; }
.footer__grid > div:not(:first-child) a { display: block; width: max-content; max-width: 100%; margin-top: 10px; font-size: .8rem; transition: color .2s ease; }
.footer-contact-label { display: block; margin-top: 13px; color: rgba(255,255,255,.42); font-size: .65rem; font-weight: 800; text-transform: uppercase; }
.footer-contact-label + a { margin-top: 4px !important; color: var(--white); }
.footer__grid a:hover { color: var(--yellow); }
.footer__bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 58px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.1); font-size: .72rem; }
.whatsapp-float { position: fixed; right: 22px; bottom: 22px; z-index: 900; width: 57px; height: 57px; display: grid; place-items: center; border: 4px solid var(--white); border-radius: 50%; color: var(--white); background: #25d366; box-shadow: 0 16px 35px rgba(0,0,0,.22); transition: transform .2s ease; }
.whatsapp-float:hover { transform: translateY(-4px) scale(1.03); }
.whatsapp-float svg { width: 29px; }

/* Reveal */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .75s ease, transform .75s cubic-bezier(.2,.7,.2,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }
.delay-3 { transition-delay: .3s; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* Responsive */
@media (max-width: 1080px) {
  .nav { gap: 17px; font-size: .82rem; }
  .hero__grid { gap: 35px; }
  .hero__visual { transform: scale(.92); transform-origin: center; }
  .about-grid, .central-grid, .coverage-grid, .privacy-grid { gap: 55px; }
  .feature-card { grid-column: span 6 !important; }
  .timeline { grid-template-columns: repeat(2, 1fr); }
  .timeline::before { display: none; }
  .faq-grid { gap: 50px; }
}

@media (max-width: 900px) {
  .section { padding: 88px 0; }
  .menu-button { display: block; }
  .nav { position: fixed; inset: 82px 20px auto; display: grid; gap: 0; padding: 18px; border: 1px solid rgba(255,255,255,.12); border-radius: 20px; color: var(--white); background: rgba(3,28,49,.98); box-shadow: var(--shadow-lg); opacity: 0; visibility: hidden; transform: translateY(-12px); transition: opacity .2s ease, transform .2s ease, visibility .2s ease; }
  .nav.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
  .nav a { padding: 13px 10px; border-bottom: 1px solid rgba(255,255,255,.08); }
  .nav a::after { display: none; }
  .nav__cta { margin-top: 10px; text-align: center; border-bottom: 0 !important; }
  .hero { min-height: auto; padding-top: 135px; }
  .hero::before { bottom: -380px; }
  .hero__grid { grid-template-columns: 1fr; text-align: center; }
  .hero__copy { margin-inline: auto; }
  .eyebrow { justify-content: center; }
  .hero__actions, .hero__highlights { justify-content: center; }
  .hero__visual { min-height: 610px; margin-top: 12px; transform: none; }
  .trust-bar { margin-top: 40px; }
  .about-grid, .central-grid, .coverage-grid, .privacy-grid, .faq-grid { grid-template-columns: 1fr; }
  .about-panel { max-width: 620px; }
  .section-heading { grid-template-columns: 1fr; gap: 20px; }
  .download-grid { grid-template-columns: 1fr; }
  .download-card { min-height: auto; }
  .privacy-visual { order: 2; }
  .social-cta__inner { align-items: flex-start; flex-direction: column; }
  .footer__grid { grid-template-columns: 1.2fr 1fr 1fr; }
  .footer__grid > div:first-child { grid-column: 1 / -1; }
}

@media (max-width: 650px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 72px 0; }
  .header__inner { min-height: 74px; }
  .brand__mobb { font-size: 2.15rem; }
  .brand__via { top: 0; transform: none; }
  .nav { inset: 74px 14px auto; }
  .hero { padding-top: 118px; }
  .hero h1 { font-size: clamp(2.75rem, 13vw, 4.25rem); }
  .hero__copy > p { font-size: .97rem; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .button { width: 100%; }
  .hero__highlights { flex-wrap: wrap; gap: 16px 0; }
  .hero__highlights > div { min-width: 50%; margin: 0; padding: 0 8px; }
  .hero__visual { min-height: 555px; transform: scale(.82); transform-origin: center top; margin-bottom: -95px; }
  .floating-chip--top { right: -35px; }
  .floating-chip--bottom { left: -40px; }
  .trust-bar { display: block; text-align: center; }
  .trust-bar > div { justify-content: center; margin-top: 12px; gap: 13px 22px; }
  .trust-bar b:not(:last-child)::after { right: -13px; }
  h2 { font-size: clamp(2.05rem, 10vw, 3rem); }
  .about-panel { padding: 26px; }
  .about-panel blockquote { margin: 55px 0 48px; }
  .about-panel__footer { align-items: flex-start; flex-direction: column; }
  .features-grid { grid-template-columns: 1fr; }
  .feature-card { grid-column: auto !important; min-height: auto; }
  .timeline { grid-template-columns: 1fr; }
  .timeline-card { min-height: auto; }
  .timeline-card > span { margin-bottom: 28px; box-shadow: 0 0 0 7px var(--navy-950); }
  .robot-card { padding: 23px; }
  .states-grid { grid-template-columns: 1fr; }
  .state-card { min-height: 155px; }
  .download-card { padding: 27px; }
  .store-button { width: 100%; margin-right: 0; }
  .privacy-visual { min-height: 390px; transform: scale(.82); margin: -25px 0; }
  .accordion-button { padding: 18px; }
  .accordion-content p { padding: 0 20px 20px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 36px 28px; }
  .footer__grid > div:first-child { grid-column: 1 / -1; }
  .footer__bottom { align-items: flex-start; flex-direction: column; }
  .whatsapp-float { right: 15px; bottom: 15px; }
}

@media (max-width: 420px) {
  .hero__visual { transform: scale(.72); margin-left: -18px; margin-right: -18px; margin-bottom: -150px; }
  .hero__highlights > div { min-width: 50%; border-right: 0; }
  .trust-bar b:not(:last-child)::after { display: none; }
  .footer__grid { grid-template-columns: 1fr; }
}
