/* Release 20260810-cache1: deployment cache boundary. */
:root {
  --ink: #151515;
  --ink-soft: #232323;
  --lime: #c9ff3d;
  --lime-bright: #d8ff73;
  --cream: #f4f1e9;
  --paper: #fffef9;
  --muted: #74746d;
  --line: rgba(21, 21, 21, 0.14);
  --white: #ffffff;
  --radius: 28px;
  --shadow: 0 24px 80px rgba(20, 20, 20, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", sans-serif;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
button { color: inherit; }
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }

.site-header {
  position: fixed;
  z-index: 50;
  top: 10px;
  left: 0;
  right: 0;
  height: 58px;
  color: var(--ink);
  opacity: 0;
  transform: translateY(-12px);
  pointer-events: none;
  will-change: opacity, transform;
  transition: opacity .3s ease, transform .3s ease;
}
.site-header.scrolled { background: transparent; box-shadow: none; }
.glass-filter { position: absolute; width: 0; height: 0; overflow: hidden; }
.nav-wrap { position: relative; isolation: isolate; overflow: visible; width: min(1240px, calc(100% - 20px)); height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 7px 8px 7px 14px; border: 0; border-radius: 999px; background: transparent; box-shadow: 0 6px 6px rgba(0,0,0,.2), 0 0 20px rgba(0,0,0,.1); transition: all .7s cubic-bezier(.175,.885,.32,2.2); }
.nav-wrap::before { content: ""; position: absolute; inset: 0; z-index: 0; border-radius: inherit; -webkit-backdrop-filter: blur(3px); backdrop-filter: blur(3px); filter: url(#glass-distortion); pointer-events: none; }
.nav-wrap::after { content: ""; position: absolute; inset: 0; z-index: 1; border-radius: inherit; background: rgba(255,255,255,.25); box-shadow: inset 2px 2px 1px 0 rgba(255,255,255,.5), inset -1px -1px 1px 1px rgba(255,255,255,.5); pointer-events: none; }
.nav-wrap > * { position: relative; z-index: 2; }
.site-header.scrolled .nav-wrap { box-shadow: 0 6px 6px rgba(0,0,0,.2), 0 0 20px rgba(0,0,0,.1); }
.brand { display: inline-flex; align-items: center; position: relative; z-index: 3; }
.brand-logo { display: block; width: 68px; height: 42px; object-fit: contain; }
.site-header .brand { width: 78px; height: 44px; justify-content: center; }
.site-header .brand-logo { width: 66px; height: auto; }
.brand-logo-light { position: absolute; top: 50%; left: 50%; opacity: 0; filter: brightness(0) invert(1); clip-path: polygon(0 0, 100% 0, 100% 50%, 63% 50%, 53% 51%, 53% 61.2%, 48.3% 61.2%, 48.3% 50%, 0 50%); transform: translate(-50%, -50%); transition: opacity .25s ease; }
.site-header.brand-on-dark .brand-logo-light { opacity: 1; }
.nav-actions { display: flex; align-items: center; gap: 10px; position: relative; z-index: 3; }
.language-picker { position: relative; display: inline-block; }
.language-trigger { height: 40px; display: flex; align-items: center; gap: 7px; padding: 0 11px; border: 1px solid #e4e5e2; border-radius: 999px; background: rgba(246,247,246,.82); color: var(--ink); box-shadow: 0 2px 8px rgba(0,0,0,.04); cursor: pointer; transition: background .2s ease, border-color .2s ease, box-shadow .2s ease; }
.language-trigger:hover, .language-picker.open .language-trigger { border-color: #d6d9d3; background: white; box-shadow: 0 5px 16px rgba(0,0,0,.08); }
.language-trigger:focus-visible { outline: 0; box-shadow: 0 0 0 3px rgba(201,255,61,.55); }
.language-trigger-flag, .language-flag { font-size: 15px; line-height: 1; }
.language-code { display: inline-block; font-size: 13px; font-weight: 700; letter-spacing: .02em; }
.language-trigger-label { max-width: 78px; overflow: hidden; font-size: 11px; font-weight: 700; text-overflow: ellipsis; white-space: nowrap; }
.language-chevron { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; transition: transform .2s ease; }
.language-picker.open .language-chevron { transform: rotate(180deg); }
.language-menu { position: absolute; top: calc(100% + 9px); left: 0; z-index: 20; width: 184px; padding: 6px; overflow: hidden; border: 1px solid rgba(21,21,21,.12); border-radius: 16px; background: rgba(255,255,255,.96); backdrop-filter: blur(18px); box-shadow: 0 16px 40px rgba(0,0,0,.16); animation: language-fade-in .18s ease-out; }
.language-menu[hidden] { display: none; }
.language-option { width: 100%; min-height: 38px; display: flex; align-items: center; gap: 9px; padding: 7px 9px; border: 0; border-radius: 10px; background: transparent; color: var(--ink); font-size: 12px; font-weight: 600; text-align: left; cursor: pointer; transition: background .15s ease, color .15s ease; }
.language-option:hover, .language-option:focus-visible { outline: 0; background: #f1f2ee; }
.language-option[aria-selected="true"] { color: #719000; font-weight: 800; }
.language-check { width: 15px; height: 15px; margin-left: auto; fill: none; stroke: currentColor; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; opacity: 0; }
.language-option[aria-selected="true"] .language-check { opacity: 1; }
@keyframes language-fade-in { from { opacity: 0; transform: translateY(-3px); } to { opacity: 1; transform: translateY(0); } }
.nav-cta-group { display: flex; align-items: center; gap: 4px; }
.nav-cta { white-space: nowrap; }
.nav-arrow { position: relative; width: 40px; height: 40px; display: grid; place-items: center; flex: 0 0 auto; padding: 0; border: 0; border-radius: 50%; background: var(--ink); color: white; cursor: pointer; transition: transform .35s cubic-bezier(.2,.8,.2,1), background .2s ease, color .2s ease, box-shadow .2s ease; }
.nav-arrow:hover { transform: rotate(4deg) scale(1.04); }
.nav-arrow:focus-visible { outline: 0; box-shadow: 0 0 0 3px rgba(201,255,61,.65); }
.nav-menu-icon { position: relative; width: 17px; height: 14px; display: flex; flex-direction: column; justify-content: space-between; }
.nav-menu-icon i { display: block; width: 100%; height: 1.5px; border-radius: 999px; background: currentColor; transform-origin: center; transition: transform .48s cubic-bezier(.2,.8,.2,1), opacity .2s ease, width .35s cubic-bezier(.2,.8,.2,1); }
.nav-menu-icon i:nth-child(2) { width: 12px; margin-left: auto; }
.nav-arrow[aria-expanded="true"] { background: var(--ink); color: white; transform: rotate(0); }
.nav-arrow[aria-expanded="true"] .nav-menu-icon i:first-child { transform: translateY(6.25px) rotate(45deg); }
.nav-arrow[aria-expanded="true"] .nav-menu-icon i:nth-child(2) { width: 0; opacity: 0; transform: translateX(5px); }
.nav-arrow[aria-expanded="true"] .nav-menu-icon i:last-child { transform: translateY(-6.25px) rotate(-45deg); }

.kinetic-menu { position: fixed; z-index: 45; inset: 0; visibility: hidden; pointer-events: none; }
.kinetic-menu.open { visibility: visible; pointer-events: auto; }
.kinetic-menu.closing { visibility: visible; pointer-events: none; }
.kinetic-menu-scrim { position: absolute; inset: 0; background: rgba(0,0,0,.7); opacity: 0; transition: opacity .5s ease; }
.kinetic-menu.open .kinetic-menu-scrim { opacity: 1; }
.kinetic-menu-layer,
.kinetic-menu-panel { position: absolute; inset: 0; transform: translateX(101%); transition: transform .75s cubic-bezier(.65,.01,.05,.99); }
.kinetic-menu-layer-lime { background: var(--lime); transition-delay: .04s; }
.kinetic-menu-layer-cream { background: var(--cream); transition-delay: .1s; }
.kinetic-menu-panel { overflow: hidden; background: var(--ink); color: white; isolation: isolate; transition-delay: .16s; }
.kinetic-menu.open .kinetic-menu-layer,
.kinetic-menu.open .kinetic-menu-panel { transform: translateX(0); }
.kinetic-menu.closing .kinetic-menu-layer-lime { transition-delay: .12s; }
.kinetic-menu.closing .kinetic-menu-layer-cream { transition-delay: .06s; }
.kinetic-menu.closing .kinetic-menu-panel { transition-delay: 0s; }
.kinetic-menu-shapes { position: absolute; z-index: -1; inset: 0 0 0 48%; overflow: hidden; background: radial-gradient(circle at 50% 48%, #282828 0, #191919 48%, #101010 100%); }
.kinetic-menu-shapes::before { content: ""; position: absolute; inset: 0; opacity: .1; background-image: linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px); background-size: 42px 42px; }
.kinetic-shape { position: absolute; width: min(66vw, 760px); height: min(82vw, 760px); top: 50%; left: 50%; overflow: visible; opacity: 0; filter: saturate(.76) brightness(.78); transform: translate(-50%,-50%) scale(.55) rotate(-8deg); transition: opacity .3s ease, transform .3s ease; }
.kinetic-shape.active { opacity: .36; transform: translate(-50%,-50%) scale(1) rotate(0); transition: opacity .5s ease, transform .75s cubic-bezier(.18,.89,.32,1.28); }
.kinetic-shape i, .kinetic-shape b, .kinetic-shape span, .kinetic-shape strong { position: absolute; box-sizing: border-box; font-style: normal; }
.fleet-route-path { top: 28%; left: 18%; width: 64%; height: 43%; border: 20px solid rgba(201,255,61,.25); border-right-color: var(--lime); border-bottom-color: var(--lime); border-radius: 46% 55% 45% 52%; transform: rotate(-13deg); filter: drop-shadow(0 15px 32px rgba(201,255,61,.12)); }
.fleet-pin { width: 74px; height: 74px; border: 10px solid var(--lime); border-radius: 50% 50% 50% 8px; background: #191919; transform: rotate(-45deg); box-shadow: 0 16px 32px rgba(0,0,0,.32); }
.fleet-pin::after { content: ""; position: absolute; inset: 16px; border-radius: 50%; background: var(--lime); }
.fleet-pin-start { top: 17%; left: 17%; }
.fleet-pin-mid { top: 51%; left: 44%; width: 58px; height: 58px; border-width: 8px; }
.fleet-pin-mid::after { inset: 12px; }
.fleet-pin-end { top: 24%; right: 13%; width: 94px; height: 94px; }
.fleet-pin-end::after { inset: 21px; }
.fleet-route-package { top: 66%; right: 24%; width: 84px; height: 84px; display: grid; place-items: center; border: 7px solid var(--lime); border-radius: 18px; background: rgba(201,255,61,.16); color: var(--lime); font: 800 34px/1 "Manrope",sans-serif; transform: rotate(8deg); }
.fleet-percent { top: 50%; left: 50%; color: var(--lime); font: 800 min(36vw,340px)/.8 "Manrope",sans-serif; letter-spacing: -.12em; text-shadow: 0 20px 45px rgba(201,255,61,.13); transform: translate(-56%,-50%) rotate(-8deg); }
.fleet-coin { width: 118px; height: 118px; display: grid; place-items: center; border: 10px solid var(--lime); border-radius: 50%; background: #1c1c1c; color: var(--lime); font: 800 25px/1 "Manrope",sans-serif; box-shadow: 0 16px 34px rgba(0,0,0,.32), inset 0 0 0 7px rgba(201,255,61,.13); }
.fleet-coin-one { top: 14%; right: 14%; transform: rotate(12deg); }
.fleet-coin-two { right: 8%; bottom: 17%; width: 92px; height: 92px; border-width: 8px; font-size: 20px; transform: rotate(-10deg); }
.fleet-coin-three { bottom: 12%; left: 17%; width: 72px; height: 72px; border-width: 6px; font-size: 16px; transform: rotate(7deg); }
.fleet-shield { top: 16%; left: 24%; width: 52%; height: 67%; background: rgba(201,255,61,.14); clip-path: polygon(50% 0, 92% 16%, 86% 65%, 50% 100%, 14% 65%, 8% 16%); }
.fleet-shield::before { content: ""; position: absolute; inset: 13px; background: var(--lime); clip-path: inherit; }
.fleet-shield::after { content: ""; position: absolute; inset: 27px; background: #191919; clip-path: inherit; }
.fleet-shield b { z-index: 1; top: 25%; left: 34%; width: 34%; height: 48%; background: var(--lime); clip-path: polygon(54% 0, 100% 0, 67% 40%, 94% 40%, 24% 100%, 43% 55%, 10% 55%); }
.fleet-benefit-chip { display: grid; place-items: center; min-width: 106px; height: 58px; padding: 0 18px; border: 5px solid var(--lime); border-radius: 999px; background: #191919; color: var(--lime); font: 800 20px/1 "Manrope",sans-serif; box-shadow: 0 14px 28px rgba(0,0,0,.3); }
.fleet-benefit-chip-one { top: 22%; right: 6%; transform: rotate(9deg); }
.fleet-benefit-chip-two { bottom: 22%; left: 8%; transform: rotate(-10deg); }
.fleet-benefit-star { color: var(--lime); font: 300 100px/1 "Manrope",sans-serif; }
.fleet-benefit-star-one { top: 4%; left: 12%; transform: rotate(18deg); }
.fleet-benefit-star-two { right: 13%; bottom: 5%; transform: rotate(-12deg) scale(.7); }
.fleet-chat { display: flex; align-items: center; justify-content: center; border: 9px solid var(--lime); background: #191919; color: var(--lime); box-shadow: 0 20px 45px rgba(0,0,0,.33); }
.fleet-chat::after { content: ""; position: absolute; bottom: -31px; width: 54px; height: 54px; border-right: 9px solid var(--lime); border-bottom: 9px solid var(--lime); background: #191919; }
.fleet-chat-question { top: 16%; left: 8%; width: 58%; height: 42%; border-radius: 50px 50px 50px 14px; font: 800 150px/1 "Manrope",sans-serif; transform: rotate(-7deg); }
.fleet-chat-question::after { left: 54px; transform: rotate(45deg); }
.fleet-chat-answer { right: 7%; bottom: 16%; width: 54%; height: 32%; gap: 16px; border-radius: 50px 50px 14px 50px; transform: rotate(5deg); }
.fleet-chat-answer::after { right: 54px; transform: rotate(45deg); }
.fleet-chat-answer b { position: relative; width: 25px; height: 25px; border-radius: 50%; background: var(--lime); }
.fleet-support-ring { z-index: -1; top: 8%; right: 4%; width: 360px; height: 360px; border: 56px solid rgba(201,255,61,.1); border-radius: 50%; }
.fleet-speed-line { left: 6%; height: 12px; border-radius: 999px; background: var(--lime); opacity: .64; }
.fleet-speed-line-one { top: 32%; width: 25%; }
.fleet-speed-line-two { top: 45%; width: 17%; }
.fleet-speed-line-three { top: 58%; width: 30%; }
.fleet-delivery-bag { top: 17%; left: 29%; width: 48%; height: 62%; border: 13px solid var(--lime); border-radius: 82px 82px 38px 38px; background: rgba(201,255,61,.14); transform: rotate(6deg); box-shadow: 0 22px 50px rgba(0,0,0,.35); }
.fleet-delivery-bag::before { content: ""; position: absolute; top: -70px; left: 24%; width: 52%; height: 92px; border: 13px solid var(--lime); border-bottom: 0; border-radius: 48px 48px 0 0; }
.fleet-delivery-bag b { top: 18%; left: 50%; width: 72px; height: 72px; border-radius: 50%; background: var(--lime); transform: translateX(-50%); }
.fleet-delivery-bag b::after { content: ""; position: absolute; top: 18px; left: 25px; width: 18px; height: 34px; border-right: 7px solid #171717; border-bottom: 7px solid #171717; transform: rotate(45deg); }
.fleet-delivery-bag span { right: 0; bottom: 16%; left: 0; color: var(--lime); font: 900 39px/.82 "Manrope",sans-serif; letter-spacing: -.06em; text-align: center; }
.fleet-go-arrow { right: 7%; bottom: 8%; width: 116px; height: 116px; display: grid; place-items: center; border-radius: 50%; background: var(--lime); color: #171717; font: 500 70px/1 "Manrope",sans-serif; box-shadow: 0 18px 38px rgba(0,0,0,.32); transform: rotate(8deg); }
.kinetic-shape.active .fleet-pin-end, .kinetic-shape.active .fleet-coin-one, .kinetic-shape.active .fleet-benefit-chip-one, .kinetic-shape.active .fleet-chat-answer, .kinetic-shape.active .fleet-go-arrow { animation: fleet-shape-float 2.8s ease-in-out infinite alternate; }
@keyframes fleet-shape-float { to { translate: 0 -14px; rotate: 4deg; } }
.kinetic-menu-inner { position: relative; z-index: 2; width: min(1440px, calc(100% - 64px)); height: 100%; margin: 0 auto; display: grid; grid-template-columns: minmax(230px,.7fr) minmax(520px,1.3fr); grid-template-rows: 1fr auto; align-items: center; gap: 32px 8vw; padding: 100px 0 28px; }
.kinetic-menu-meta { align-self: end; padding-bottom: 12px; }
.kinetic-menu-meta img { display: block; width: min(220px, 20vw); margin: 0 0 36px; filter: brightness(0) invert(1); }
.kinetic-menu-meta p { max-width: 300px; margin: 0; color: rgba(255,255,255,.58); font-size: 14px; line-height: 1.65; }
.kinetic-menu-links { align-self: center; display: flex; flex-direction: column; }
.kinetic-menu-link { position: relative; display: grid; grid-template-columns: 34px 1fr 40px; align-items: center; gap: 18px; padding: clamp(9px,1.4vh,17px) 2px; overflow: hidden; border-bottom: 1px solid rgba(255,255,255,.16); color: white; transform: translateY(35px) rotate(2deg); opacity: 0; transition: color .25s ease, padding .25s ease, transform .55s cubic-bezier(.2,.8,.2,1), opacity .45s ease; }
.kinetic-menu.open .kinetic-menu-link { transform: translateY(0) rotate(0); opacity: 1; }
.kinetic-menu.open .kinetic-menu-link:nth-child(1) { transition-delay: .34s; }
.kinetic-menu.open .kinetic-menu-link:nth-child(2) { transition-delay: .39s; }
.kinetic-menu.open .kinetic-menu-link:nth-child(3) { transition-delay: .44s; }
.kinetic-menu.open .kinetic-menu-link:nth-child(4) { transition-delay: .49s; }
.kinetic-menu.open .kinetic-menu-link:nth-child(5) { transition-delay: .54s; }
.kinetic-menu-link::before { content: ""; position: absolute; inset: 0; z-index: -1; background: var(--lime); transform: translateY(102%); transition: transform .35s cubic-bezier(.2,.8,.2,1); }
.kinetic-menu-link:hover { padding-right: 18px; padding-left: 18px; color: var(--ink); }
.kinetic-menu-link:hover::before { transform: translateY(0); }
.kinetic-menu-link small { color: var(--lime); font: 700 10px/1 "Manrope",sans-serif; letter-spacing: 1px; transition: color .25s ease; }
.kinetic-menu-link:hover small { color: var(--ink); }
.kinetic-menu-link strong { font: 500 clamp(34px,5.4vw,78px)/.95 "Manrope",sans-serif; letter-spacing: -.06em; }
.kinetic-menu-title { position: relative; display: grid; min-width: 0; overflow: hidden; perspective: 900px; }
.kinetic-menu-title strong { grid-area: 1 / 1; display: block; transform-origin: center bottom; transition: transform .55s cubic-bezier(.65,.01,.05,.99), opacity .3s ease; will-change: transform; }
.kinetic-menu-title strong:nth-child(2) { opacity: 0; transform: translateY(105%) rotateX(-80deg); transform-origin: center top; }
.kinetic-menu-link:hover .kinetic-menu-title strong:first-child { opacity: 0; transform: translateY(-105%) rotateX(80deg); }
.kinetic-menu-link:hover .kinetic-menu-title strong:nth-child(2) { opacity: 1; transform: translateY(0) rotateX(0); }
.kinetic-menu-link > span { font-size: 28px; font-weight: 300; transition: transform .3s ease; }
.kinetic-menu-link:hover > span { transform: rotate(45deg); }
.kinetic-menu-link-accent strong { color: var(--lime); }
.kinetic-menu-link-accent:hover strong { color: var(--ink); }
.kinetic-menu-cta strong { color: var(--lime); transition: color .25s ease; }
.kinetic-menu-cta:hover strong { color: var(--ink); }
.kinetic-menu-cta { overflow: visible; }
.kinetic-menu-cta::before { display: none; }
.kinetic-menu-cta .kinetic-menu-cta-track {
  position: absolute;
  z-index: 2;
  top: -5px;
  right: auto;
  bottom: -5px;
  left: 2px;
  width: 40px;
  height: auto;
  justify-content: space-between;
  gap: 0;
  padding: 0 8px;
  border-radius: 10px;
  transform: none;
  will-change: width;
  transition: width .65s cubic-bezier(.16,1,.3,1), border-radius .45s ease, box-shadow .45s ease;
}
.kinetic-menu-cta:hover .kinetic-menu-cta-track {
  width: calc(100% - 4px);
  border-radius: 14px;
  transform: none;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.4), inset 0 -2px 5px rgba(0,0,0,.12), 0 8px 24px rgba(0,0,0,.2);
}
.kinetic-menu-cta .anti-metal-button__chevron {
  width: 24px;
  height: 28px;
  flex: 0 0 24px;
  transition: width .65s cubic-bezier(.16,1,.3,1), height .65s cubic-bezier(.16,1,.3,1), flex-basis .65s cubic-bezier(.16,1,.3,1), opacity .22s ease;
}
.kinetic-menu-cta .anti-metal-button__chevron:not(:first-child) {
  opacity: 0;
}
.kinetic-menu-cta:hover .anti-metal-button__chevron {
  width: 84px;
  height: 100%;
  flex-basis: 84px;
  opacity: 1;
}
.kinetic-menu-contact { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; padding: 18px 2px 0; }
.kinetic-menu-contact a { min-height: 56px; display: inline-flex; flex: 1 1 245px; align-items: center; gap: 12px; padding: 7px 16px 7px 9px; border: 1px solid rgba(255,255,255,.14); border-radius: 16px; background: rgba(255,255,255,.055); color: rgba(255,255,255,.82); font: 700 15px/1 "DM Sans",sans-serif; white-space: nowrap; transition: color .2s ease, border-color .2s ease, background .2s ease, transform .2s ease; }
.kinetic-contact-icon { position: static !important; width: 40px; height: 40px; display: grid; place-items: center; flex: 0 0 40px; border-radius: 12px; background: var(--lime); color: var(--ink); }
.kinetic-contact-icon svg { width: 21px; height: 21px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.kinetic-menu-contact a:hover { border-color: rgba(201,255,61,.4); background: rgba(201,255,61,.1); color: white; transform: translateY(-2px); }
.kinetic-menu-contact a:focus-visible { outline: 2px solid var(--lime); outline-offset: 3px; }
.kinetic-menu-foot { grid-column: 1 / -1; display: flex; justify-content: space-between; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.38); font: 700 9px/1 "Manrope",sans-serif; letter-spacing: 1.5px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 16px; min-height: 56px; padding: 0 24px; border-radius: 999px; border: 0; font-weight: 700; cursor: pointer; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button span { font-size: 18px; }
.button b, .text-link b { font: inherit; }
.button-small { min-height: 44px; padding: 0 20px; font-size: 14px; }
.button-dark { background: white; color: var(--ink); }
.button-primary { background: var(--lime); color: var(--ink); box-shadow: 0 12px 34px rgba(201,255,61,.19); }
.button-primary:hover { background: var(--lime-bright); box-shadow: 0 16px 38px rgba(201,255,61,.27); }
.section-dark { position: relative; overflow: hidden; background: var(--ink); color: white; }
.hero { height: 220vh; min-height: 1500px; padding: 0; overflow: clip; background: #111; }
.hero-sticky { position: sticky; top: 0; height: 100vh; min-height: 650px; overflow: hidden; isolation: isolate; background: radial-gradient(circle at 50% 45%, #282828 0%, #171717 45%, #101010 100%); }
.hero-expand-media { position: absolute; z-index: 2; top: 50%; left: 50%; width: min(340px, 82vw); height: min(440px, 66vh); overflow: hidden; border: 1px solid rgba(255,255,255,.18); border-radius: 30px; transform: translate(-50%, -50%); box-shadow: 0 28px 80px rgba(0,0,0,.44); will-change: width, height, border-radius, box-shadow; }
.hero-expand-media video { width: 100%; height: 100%; object-fit: cover; object-position: center; filter: saturate(1.04); transform: scale(1.01); }
.hero-expand-scrim { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(10,10,10,.55) 0%, rgba(10,10,10,.12) 54%, transparent 100%), linear-gradient(0deg, rgba(10,10,10,.34), transparent 45%, rgba(10,10,10,.12)); }
.hero-split-title { position: absolute; inset: 0; z-index: 3; pointer-events: none; }
.hero-title-left, .hero-title-right { position: absolute; top: 50%; width: min(550px, 42vw); margin: 0; font-size: clamp(48px, 6vw, 82px); font-weight: 700; line-height: .98; letter-spacing: -4.5px; will-change: transform, opacity; text-shadow: 0 8px 40px rgba(0,0,0,.4); }
.hero-title-left { right: calc(50% + 205px); text-align: right; transform: translateY(-50%); }
.hero-title-right { left: calc(50% + 205px); transform: translateY(-50%); }
.hero-title-right em { color: var(--lime); font-style: normal; }
.hero-scroll-hint { position: absolute; z-index: 4; left: 50%; bottom: 28px; display: flex; align-items: center; gap: 12px; transform: translateX(-50%); color: rgba(255,255,255,.68); font-size: 11px; font-weight: 700; letter-spacing: .8px; text-transform: uppercase; white-space: nowrap; will-change: opacity, transform; }
.hero-scroll-hint i { width: 34px; height: 34px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.25); border-radius: 50%; color: var(--lime); font-style: normal; animation: hero-scroll-bounce 1.8s ease-in-out infinite; }
@keyframes hero-scroll-bounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(4px); } }
.hero-expanded-panel { position: absolute; z-index: 4; top: 48%; left: max(38px, calc((100vw - 1180px) / 2)); width: min(600px, 48vw); opacity: 0; transform: translateY(-40%); pointer-events: none; will-change: opacity, transform; }
.hero-expanded-panel .hero-lead { text-shadow: 0 3px 22px rgba(0,0,0,.75); }
.hero-expanded-panel .hero-actions { margin-bottom: 34px; }
.hero-sticky .hero-trust-strip { position: absolute; right: 0; bottom: 0; left: 0; z-index: 5; opacity: 0; transform: translateY(18px); pointer-events: none; will-change: opacity, transform; }
.hero-glow { position: absolute; border-radius: 50%; filter: blur(2px); opacity: .45; }
.hero-glow-one { width: 580px; height: 580px; right: -160px; top: 30px; background: radial-gradient(circle, rgba(201,255,61,.2), transparent 66%); }
.hero-glow-two { width: 400px; height: 400px; left: 25%; bottom: -250px; background: radial-gradient(circle, rgba(255,255,255,.08), transparent 68%); }
.eyebrow, .kicker { text-transform: uppercase; letter-spacing: 2.2px; font-size: 12px; font-weight: 700; }
.eyebrow { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,.65); }
.eyebrow span { width: 24px; height: 2px; background: var(--lime); }
h1, h2, h3 { font-family: "Manrope", sans-serif; margin-top: 0; }
h1 { font-size: clamp(48px, 6vw, 78px); line-height: .98; letter-spacing: -4.2px; margin: 28px 0 26px; max-width: 770px; }
h1 em { color: var(--lime); font-style: normal; }
.hero-lead { color: rgba(255,255,255,.66); font-size: 18px; line-height: 1.7; max-width: 590px; }
.hero-actions { display: flex; align-items: center; gap: 28px; margin: 38px 0 46px; }
.text-link { display: inline-flex; align-items: center; gap: 12px; font-weight: 700; font-size: 15px; }
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translateY(3px); }
.hero-proof { display: flex; gap: 0; border-top: 1px solid rgba(255,255,255,.12); padding-top: 25px; max-width: 650px; }
.hero-proof div { display: flex; flex-direction: column; min-width: 150px; padding-right: 25px; margin-right: 25px; border-right: 1px solid rgba(255,255,255,.12); }
.hero-proof div:last-child { border-right: 0; }
.hero-proof strong { color: var(--lime); font: 700 19px/1.2 "Manrope", sans-serif; }
.hero-proof span { color: rgba(255,255,255,.45); font-size: 11px; text-transform: uppercase; letter-spacing: .9px; margin-top: 7px; }

.hero-visual { position: relative; height: 560px; display: grid; place-items: center; }
.orbit { position: absolute; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; }
.orbit-one { width: 480px; height: 480px; }
.orbit-two { width: 350px; height: 350px; border-color: rgba(201,255,61,.18); }
.phone-card { width: 285px; min-height: 478px; border: 7px solid #303030; border-radius: 38px; background: #faf9f4; color: var(--ink); padding: 24px 20px 18px; transform: rotate(3deg); box-shadow: 0 40px 80px rgba(0,0,0,.38); position: relative; z-index: 2; }
.phone-card::before { content: ""; position: absolute; top: 10px; left: 50%; width: 74px; height: 18px; border-radius: 20px; transform: translateX(-50%); background: #303030; }
.phone-top { display: flex; justify-content: space-between; align-items: center; margin: 22px 0 35px; }
.mini-brand { display: flex; align-items: center; gap: 7px; font-size: 11px; font-weight: 700; }
.mini-brand span { display: grid; place-items: center; width: 22px; height: 22px; border-radius: 7px 7px 7px 2px; background: var(--lime); }
.online-dot { color: #387c23; background: #e4f7db; padding: 5px 8px; border-radius: 20px; font-size: 9px; font-weight: 700; }
.phone-card > p { color: var(--muted); font-size: 11px; margin: 0 0 5px; }
.earnings { font: 800 35px/1 "Manrope", sans-serif; letter-spacing: -1.8px; }
.earnings small { font-size: 14px; color: var(--muted); letter-spacing: 0; }
.chart { height: 120px; display: flex; align-items: end; justify-content: space-between; gap: 8px; margin-top: 25px; padding-top: 10px; border-bottom: 1px solid #dddcd6; background: repeating-linear-gradient(to bottom, #ecebe5 0 1px, transparent 1px 40px); }
.chart i { width: 19px; height: var(--h); display: block; border-radius: 6px 6px 1px 1px; background: #d8d7d1; }
.chart i:nth-last-child(-n+2) { background: var(--ink); }
.chart i.today { background: var(--lime); }
.chart-days { display: flex; justify-content: space-between; color: #aaa89f; font-size: 9px; padding: 7px 4px; }
.payout-row { background: var(--ink); color: white; padding: 17px; border-radius: 17px; margin-top: 18px; display: flex; justify-content: space-between; align-items: center; }
.payout-row div { display: flex; flex-direction: column; gap: 4px; }
.payout-row span { color: rgba(255,255,255,.52); font-size: 9px; }
.payout-row strong { font-size: 13px; }
.payout-row b { color: var(--lime); font-size: 20px; }
.float-card { position: absolute; z-index: 3; background: white; color: var(--ink); border-radius: 16px; padding: 13px 15px; box-shadow: 0 18px 55px rgba(0,0,0,.25); display: flex; align-items: center; gap: 11px; }
.float-card-top { right: 2px; top: 110px; }
.float-card-bottom { left: 5px; bottom: 103px; }
.float-icon { width: 34px; height: 34px; border-radius: 11px; background: var(--lime); display: grid; place-items: center; font-weight: 800; }
.float-icon.dark { background: var(--ink); color: var(--lime); }
.float-card div { display: flex; flex-direction: column; gap: 3px; }
.float-card small { color: var(--muted); font-size: 9px; }
.float-card strong { font-size: 11px; }
.trust-strip { position: relative; z-index: 3; overflow: hidden; border-top: 1px solid rgba(255,255,255,.1); background: #0d0d0d; color: white; box-shadow: 0 -18px 45px rgba(0,0,0,.22); }
.text-marquee { height: 190px; display: grid; align-content: center; overflow: hidden; }
.text-marquee-row { width: 100%; overflow: hidden; }
.text-marquee-track { display: flex; width: max-content; will-change: transform; }
.text-marquee-group { display: flex; flex: 0 0 auto; align-items: center; gap: 30px; padding: 0 15px; white-space: nowrap; }
.text-marquee-group span { font: 800 clamp(43px, 5.2vw, 72px)/.92 "Manrope", sans-serif; letter-spacing: -.07em; }
.text-marquee-group i { color: var(--lime); font: 400 29px/1 "Manrope", sans-serif; }
.marquee-left { animation: marquee-left 23s linear infinite; }
.marquee-right { transform: translateX(-50%); animation: marquee-right 23s linear infinite; }
@keyframes marquee-left { to { transform: translateX(-50%); } }
@keyframes marquee-right { to { transform: translateX(0); } }

.section { padding: 120px 0; }
.section-heading { display: flex; justify-content: space-between; align-items: end; gap: 40px; margin-bottom: 56px; }
.section-heading h2, .commission h2, .faq h2, .registration h2 { font-size: clamp(36px, 4.5vw, 58px); line-height: 1.08; letter-spacing: -2.7px; margin: 18px 0 0; }
.section-heading > p { max-width: 420px; color: var(--muted); line-height: 1.7; margin: 0 0 7px; }
.kicker { color: #758c36; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.step-card { position: relative; min-height: 310px; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: white; }
.step-card.featured { background: var(--cream); border-color: transparent; transform: translateY(-12px); }
.step-number { color: #a6a49c; font: 700 11px/1 "Manrope", sans-serif; letter-spacing: 1px; }
.step-icon { display: grid; place-items: center; width: 62px; height: 62px; border-radius: 18px; margin: 52px 0 27px; background: var(--lime); font-size: 26px; }
.step-card.featured .step-icon { background: var(--ink); color: var(--lime); }
.step-card h3 { font-size: 22px; margin-bottom: 10px; letter-spacing: -.8px; }
.step-card p { color: var(--muted); font-size: 14px; line-height: 1.65; margin: 0; }

.process { overflow: clip; background: white; }
.process-heading { margin-bottom: 76px; }
.journey-shell { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(350px, .92fr); gap: clamp(50px, 7vw, 100px); align-items: start; }
.journey-stage-column { position: relative; height: 100%; align-self: stretch; }
.journey-stage { position: sticky; top: 92px; height: min(680px, calc(100vh - 116px)); min-height: 530px; overflow: hidden; border-radius: 34px; background: #0c0c0c; color: white; box-shadow: 0 35px 85px rgba(0,0,0,.2); isolation: isolate; }
.journey-stage::before { content: ""; position: absolute; z-index: -1; width: 70%; aspect-ratio: 1; left: 15%; top: 15%; border-radius: 50%; background: radial-gradient(circle, rgba(201,255,61,.16), transparent 66%); filter: blur(8px); }
.journey-stage-head { position: absolute; z-index: 8; top: 0; right: 0; left: 0; height: 68px; display: flex; align-items: center; justify-content: space-between; padding: 0 23px; border-bottom: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.58); font: 700 10px/1 "Manrope", sans-serif; letter-spacing: 1.5px; }
.journey-stage-head > span { display: flex; align-items: center; gap: 9px; }
.journey-stage-head > span i { width: 8px; height: 8px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 5px rgba(201,255,61,.12); }
.journey-stage-head b { font: inherit; }
.journey-stage-head em { color: var(--lime); font-style: normal; }
.journey-scenes { position: absolute; inset: 68px 0 48px; }
.journey-scene { position: absolute; inset: 0; overflow: hidden; visibility: hidden; opacity: 0; transform: scale(.965); pointer-events: none; transition: opacity .5s ease, transform .7s cubic-bezier(.2,.75,.2,1); }
.journey-scene.active { visibility: visible; opacity: 1; transform: scale(1); }
.journey-ai-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; background: #0c0c0c; }
.journey-stage-foot { position: absolute; z-index: 8; right: 22px; bottom: 17px; display: flex; gap: 7px; }
.journey-stage-foot span { width: 7px; height: 7px; border-radius: 20px; background: rgba(255,255,255,.28); transition: width .3s ease, background .3s ease; }
.journey-stage-foot span.active { width: 28px; background: var(--lime); }

.preview-browser { position: absolute; top: 50%; left: 50%; width: min(87%, 560px); height: min(84%, 470px); overflow: hidden; border: 1px solid rgba(255,255,255,.12); border-radius: 16px; background: #f7f7f2; color: var(--ink); transform: translate(-50%,-50%); box-shadow: 0 32px 70px rgba(0,0,0,.4); }
.preview-browser-bar { height: 35px; display: grid; grid-template-columns: 68px 1fr 68px; align-items: center; padding: 0 13px; border-bottom: 1px solid #deded8; background: #e9e9e3; }
.preview-browser-bar > span { display: flex; gap: 5px; }
.preview-browser-bar > span i { width: 7px; height: 7px; border-radius: 50%; background: #b9b8b2; }
.preview-browser-bar > span i:first-child { background: #ff6a5f; }
.preview-browser-bar b { overflow: hidden; padding: 6px 15px; border-radius: 7px; background: #f7f7f3; color: #8b8b85; font: 600 8px/1 "Manrope", sans-serif; text-align: center; text-overflow: ellipsis; white-space: nowrap; }
.commission-form-demo, .application-form-demo { position: relative; height: calc(100% - 35px); padding: 20px 26px; background: #fbfbf8; }
.demo-brand { display: flex; align-items: center; justify-content: space-between; min-height: 24px; }
.demo-brand img { width: 84px; height: auto; }
.demo-brand > span { color: #96958e; font: 700 8px/1 "Manrope", sans-serif; letter-spacing: .7px; text-transform: uppercase; }
.demo-form-progress { height: 3px; margin: 15px 0 24px; overflow: hidden; border-radius: 4px; background: #e6e6df; }
.demo-form-progress span { display: block; width: 66%; height: 100%; background: var(--lime); }
.commission-form-demo > p { margin: 0 0 5px; font: 750 22px/1.05 "Manrope", sans-serif; letter-spacing: -.7px; }
.commission-form-demo > small { display: block; color: #85847d; font-size: 9px; }
.demo-commission-options { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 19px; }
.demo-commission-option { min-height: 103px; display: flex; gap: 11px; align-items: flex-start; padding: 14px; border: 1px solid #deded7; border-radius: 13px; background: white; transition: border-color .2s ease, background .2s ease, box-shadow .2s ease; }
.demo-commission-option > i { flex: 0 0 auto; width: 13px; height: 13px; margin-top: 2px; border: 1px solid #b7b7b0; border-radius: 50%; background: white; }
.demo-commission-option > span { display: flex; min-width: 0; flex-direction: column; gap: 7px; }
.demo-commission-option b { font: 800 20px/1 "Manrope", sans-serif; letter-spacing: -.7px; }
.demo-commission-option small { color: #85847d; font: 600 8px/1.35 "Manrope", sans-serif; }
.scene-plan.active .demo-fixed-option { animation: commission-card-left 5.2s cubic-bezier(.16,1,.3,1) infinite; }
.scene-plan.active .demo-percent-option { animation: commission-card-right 5.2s cubic-bezier(.16,1,.3,1) infinite; }
.scene-plan.active .demo-fixed-option > i { animation: commission-radio-left 5.2s ease infinite; }
.scene-plan.active .demo-percent-option > i { animation: commission-radio-right 5.2s ease infinite; }
.demo-continue, .demo-application-submit { position: absolute; right: 26px; bottom: 18px; min-width: 116px; display: flex; align-items: center; justify-content: space-between; padding: 11px 14px; border-radius: 9px; background: var(--ink); color: white; font: 750 9px/1 "Manrope", sans-serif; }
.demo-continue span, .demo-application-submit span { color: var(--lime); font-size: 13px; }
.demo-cursor { position: absolute; z-index: 10; width: 16px; height: 22px; clip-path: polygon(0 0, 0 100%, 28% 70%, 49% 100%, 66% 90%, 47% 62%, 82% 62%); background: #111; filter: drop-shadow(0 2px 2px rgba(0,0,0,.25)); }
.demo-cursor span { position: absolute; width: 18px; height: 18px; border: 2px solid rgba(20,20,20,.35); border-radius: 50%; opacity: 0; transform: translate(-45%,-45%); }
.commission-cursor { left: 22%; top: 49%; }
.scene-plan.active .commission-cursor { animation: commission-cursor 5.2s cubic-bezier(.45,0,.2,1) infinite; }
.scene-plan.active .commission-cursor span { animation: cursor-click 5.2s ease infinite; }
@keyframes commission-card-left { 0%,8%,31%,100% { border-color: #deded7; background: white; box-shadow: none; } 12%,26% { border-color: #161616; background: #f3ffd5; box-shadow: 0 9px 22px rgba(20,20,20,.08); } }
@keyframes commission-card-right { 0%,37%,67%,100% { border-color: #deded7; background: white; box-shadow: none; } 42%,62% { border-color: #161616; background: #f3ffd5; box-shadow: 0 9px 22px rgba(20,20,20,.08); } }
@keyframes commission-radio-left { 0%,8%,31%,100% { box-shadow: none; } 12%,26% { border-color: #111; box-shadow: inset 0 0 0 3px white; background: #111; } }
@keyframes commission-radio-right { 0%,37%,67%,100% { box-shadow: none; } 42%,62% { border-color: #111; box-shadow: inset 0 0 0 3px white; background: #111; } }
@keyframes commission-cursor { 0%,8% { left: 12%; top: 38%; } 12%,27% { left: 24%; top: 52%; } 38% { left: 44%; top: 43%; } 43%,63% { left: 69%; top: 52%; } 74%,91% { left: 82%; top: 88%; } 100% { left: 12%; top: 38%; } }
@keyframes cursor-click { 0%,10%,20%,40%,50%,73%,83%,100% { opacity: 0; transform: translate(-45%,-45%) scale(.5); } 12%,18%,42%,48%,75%,81% { opacity: 1; transform: translate(-45%,-45%) scale(1.35); } }

.application-form-demo { padding: 17px 23px; }
.application-form-demo .demo-brand img { width: 76px; }
.demo-step-row { display: flex; gap: 12px; margin: 15px 0 13px; }
.demo-step-row > b { width: 30px; height: 30px; display: grid; place-items: center; border-radius: 9px; background: var(--lime); font: 800 9px/1 "Manrope", sans-serif; }
.demo-step-row > span { display: flex; flex-direction: column; gap: 3px; }
.demo-step-row strong { font: 750 15px/1.1 "Manrope", sans-serif; letter-spacing: -.4px; }
.demo-step-row small { color: #8b8a84; font-size: 8px; }
.demo-field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }
.demo-field-grid label { min-width: 0; color: #76756e; font: 700 7px/1 "Manrope", sans-serif; }
.demo-field-grid label > span { display: block; margin-bottom: 5px; }
.demo-field-grid i { height: 37px; display: flex; align-items: center; overflow: hidden; padding: 0 10px; border: 1px solid #deded7; border-radius: 9px; background: white; color: var(--ink); font: 650 9px/1 "Manrope", sans-serif; white-space: nowrap; }
.typed-value { opacity: 1; }
.scene-form.active .typed-value { animation: field-type 5.2s steps(8,end) infinite; }
.scene-form.active .value-last { animation-delay: .45s; }
.scene-form.active .value-phone { animation-delay: .9s; }
.scene-form.active .value-city { animation-delay: 1.35s; }
.form-cursor { left: 27%; top: 48%; }
.scene-form.active .form-cursor { animation: form-cursor 5.2s cubic-bezier(.45,0,.2,1) infinite; }
.scene-form.active .form-cursor span { animation: form-cursor-click 5.2s ease infinite; }
.scene-form.active .demo-application-submit { animation: form-submit-press 5.2s ease infinite; }
@keyframes field-type { 0%,7% { clip-path: inset(0 95% 0 0); } 25%,82% { clip-path: inset(0); } 100% { clip-path: inset(0 95% 0 0); } }
@keyframes form-cursor { 0%,7% { left: 10%; top: 30%; } 12%,20% { left: 27%; top: 50%; } 28%,36% { left: 70%; top: 50%; } 44%,52% { left: 27%; top: 70%; } 60%,69% { left: 70%; top: 70%; } 78%,92% { left: 80%; top: 89%; } 100% { left: 10%; top: 30%; } }
@keyframes form-cursor-click { 0%,77%,88%,100% { opacity: 0; transform: translate(-45%,-45%) scale(.5); } 79%,86% { opacity: 1; transform: translate(-45%,-45%) scale(1.35); } }
@keyframes form-submit-press { 0%,77%,87%,100% { transform: scale(1); background: var(--ink); } 80%,85% { transform: scale(.96); background: #35430f; } }

.phone-demo { position: absolute; top: 50%; left: 50%; width: auto; height: 91%; max-height: 510px; aspect-ratio: .52; padding: 7px; border-radius: 39px; background: #050505; transform: translate(-50%,-50%); box-shadow: 0 35px 75px rgba(0,0,0,.5); }
.phone-demo::before { content: ""; position: absolute; z-index: 5; top: 13px; left: 50%; width: 78px; height: 20px; border-radius: 18px; background: #050505; transform: translateX(-50%); }
.phone-screen { position: relative; height: 100%; overflow: hidden; border-radius: 32px; }
.phone-status { position: relative; z-index: 4; height: 38px; display: flex; align-items: center; padding: 0 18px; color: white; font: 750 8px/1 "Manrope", sans-serif; }
.phone-status span { margin-right: auto; }
.phone-status i { width: 3px; height: 7px; margin-left: 2px; border-radius: 2px; background: white; }
.phone-status i + i { height: 9px; }
.phone-status b { width: 14px; height: 7px; margin-left: 5px; border: 1px solid white; border-radius: 2px; }
.phone-home-bar { position: absolute; z-index: 7; right: 33%; bottom: 6px; left: 33%; height: 4px; border-radius: 5px; background: currentColor; opacity: .72; }
.activation-screen { color: white; background: linear-gradient(145deg, rgba(0,0,0,.08), rgba(0,0,0,.5)), url("./assets/images/czech-coverage.webp") center/cover; }
.activation-screen::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8,12,8,.24), rgba(5,10,4,.58)); pointer-events: none; }
.lock-date { position: relative; z-index: 3; display: flex; flex-direction: column; align-items: center; padding-top: 13px; text-shadow: 0 2px 10px rgba(0,0,0,.35); }
.lock-date span { font: 650 9px/1 "Manrope", sans-serif; }
.lock-date strong { margin-top: 5px; font: 450 48px/.9 "Manrope", sans-serif; letter-spacing: -3px; }
.bolt-notification { position: absolute; z-index: 4; top: 120px; right: 10px; left: 10px; display: grid; grid-template-columns: 31px 1fr; gap: 9px; padding: 10px; border-radius: 15px; background: rgba(247,247,244,.94); color: #151515; box-shadow: 0 14px 35px rgba(0,0,0,.25); backdrop-filter: blur(14px); }
.bolt-notification > img { width: 31px; height: 31px; object-fit: contain; padding: 5px; border-radius: 8px; background: #2f3130; }
.bolt-notification > div { min-width: 0; }
.bolt-notification div > span { display: flex; justify-content: space-between; color: #6d6d68; font: 650 7px/1 "Manrope", sans-serif; }
.bolt-notification div > span b { color: #333; }
.bolt-notification time { font: inherit; }
.bolt-notification div > strong { display: block; margin: 5px 0 3px; font: 750 9px/1.2 "Manrope", sans-serif; }
.bolt-notification p { margin: 0; color: #4f4f4b; font-size: 7px; line-height: 1.35; }
.scene-activation.active .activation-phone { animation: phone-arrive 4.8s cubic-bezier(.16,1,.3,1) infinite; }
.scene-activation.active .bolt-notification { animation: notification-arrive 4.8s cubic-bezier(.16,1,.3,1) infinite; }
@keyframes phone-arrive { 0%,7% { transform: translate(-50%,-47%) scale(.96); filter: brightness(.75); } 17%,92% { transform: translate(-50%,-50%) scale(1); filter: brightness(1); } 100% { transform: translate(-50%,-47%) scale(.96); filter: brightness(.75); } }
@keyframes notification-arrive { 0%,18% { opacity: 0; transform: translateY(-35px) scale(.97); filter: blur(5px); } 28%,88% { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); } 100% { opacity: 0; transform: translateY(-12px); } }

.journey-commercial { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; transform: scale(1.02); }
.journey-commercial-scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.14), rgba(0,0,0,.42)), radial-gradient(circle at center, transparent 20%, rgba(0,0,0,.25) 100%); }
.start-riding-title { position: absolute; z-index: 2; top: 50%; left: 50%; display: flex; flex-direction: column; align-items: center; color: white; transform: translate(-50%,-50%); text-align: center; text-shadow: 0 8px 30px rgba(0,0,0,.45); }
.start-riding-title span, .start-riding-title strong { font: 800 clamp(43px,6.2vw,82px)/.83 "Manrope", sans-serif; letter-spacing: -4px; white-space: nowrap; }
.start-riding-title strong { color: var(--lime); }
.commercial-live-badge { position: absolute; z-index: 3; top: 18px; right: 18px; display: flex; align-items: center; gap: 7px; padding: 9px 11px; border-radius: 8px; background: rgba(15,15,15,.7); color: white; font: 750 7px/1 "Manrope", sans-serif; letter-spacing: .8px; backdrop-filter: blur(8px); }
.commercial-live-badge i { width: 6px; height: 6px; border-radius: 50%; background: var(--lime); }

.payout-phone { width: auto; }
.payout-screen { padding: 0 16px; color: var(--ink); background: #f7f7f2; }
.payout-status { margin: 0 -16px; padding-inline: 23px; color: var(--ink); }
.payout-status i { background: var(--ink); }
.payout-status b { border-color: var(--ink); }
.payout-app-head { display: flex; align-items: center; justify-content: space-between; padding: 8px 0 14px; border-bottom: 1px solid #dfdfd8; }
.payout-app-head img { width: 77px; }
.payout-app-head span { color: #85847d; font: 700 7px/1 "Manrope", sans-serif; text-transform: uppercase; letter-spacing: .8px; }
.payout-period { display: flex; justify-content: space-between; padding: 15px 0 8px; }
.payout-period span, .payout-period small { color: #8b8a83; font: 750 7px/1 "Manrope", sans-serif; letter-spacing: .7px; }
.payout-total { padding: 14px; border-radius: 13px; background: var(--ink); color: white; }
.payout-total small { display: block; color: rgba(255,255,255,.58); font-size: 7px; }
.payout-total strong { display: block; margin: 7px 0 6px; color: var(--lime); font: 800 28px/1 "Manrope", sans-serif; letter-spacing: -1.3px; }
.payout-total span { font: 650 7px/1 "Manrope", sans-serif; }
.payout-stats { padding: 9px 0; }
.payout-stats div { display: flex; justify-content: space-between; padding: 8px 2px; border-bottom: 1px solid #e2e2db; font: 650 8px/1 "Manrope", sans-serif; }
.payout-stats span { color: #77766f; }
.payout-stats b { font: 750 8px/1 "Manrope", sans-serif; }
.payout-pickup-button { display: flex; justify-content: space-between; align-items: center; padding: 12px 13px; border-radius: 10px; background: var(--lime); font: 800 8px/1 "Manrope", sans-serif; }
.payout-pickup-button span { font-size: 12px; }
.payout-confirmation { position: absolute; z-index: 6; right: 13px; bottom: 26px; left: 13px; display: flex; align-items: center; gap: 9px; padding: 11px; border-radius: 12px; background: var(--ink); color: white; box-shadow: 0 14px 35px rgba(0,0,0,.24); }
.payout-confirmation > i { width: 25px; height: 25px; display: grid; place-items: center; border-radius: 50%; background: var(--lime); color: var(--ink); font: 800 11px/1 "Manrope", sans-serif; }
.payout-confirmation > span { display: flex; flex-direction: column; gap: 3px; }
.payout-confirmation b { font: 750 8px/1 "Manrope", sans-serif; }
.payout-confirmation small { color: rgba(255,255,255,.6); font-size: 6px; }
.payout-cursor { left: 74%; top: 82%; }
.scene-payout.active .payout-cursor { animation: payout-cursor 4.8s cubic-bezier(.45,0,.2,1) infinite; }
.scene-payout.active .payout-cursor span { animation: payout-cursor-click 4.8s ease infinite; }
.scene-payout.active .payout-pickup-button { animation: payout-button-press 4.8s ease infinite; }
.scene-payout.active .payout-confirmation { animation: payout-confirm 4.8s cubic-bezier(.16,1,.3,1) infinite; }
@keyframes payout-cursor { 0%,38% { left: 62%; top: 69%; opacity: 0; } 48%,68% { left: 76%; top: 82%; opacity: 1; } 78%,100% { left: 76%; top: 82%; opacity: 0; } }
@keyframes payout-cursor-click { 0%,53%,64%,100% { opacity: 0; transform: translate(-45%,-45%) scale(.5); } 56%,62% { opacity: 1; transform: translate(-45%,-45%) scale(1.35); } }
@keyframes payout-button-press { 0%,53%,64%,100% { transform: scale(1); } 56%,61% { transform: scale(.96); background: #b4e438; } }
@keyframes payout-confirm { 0%,63% { opacity: 0; transform: translateY(18px); filter: blur(4px); } 72%,93% { opacity: 1; transform: translateY(0); filter: blur(0); } 100% { opacity: 0; transform: translateY(8px); } }

.journey-steps { min-width: 0; }
.journey-step { min-height: max(560px, 72vh); display: flex; flex-direction: column; justify-content: center; padding: 70px 0; opacity: .25; transform: translateY(18px); cursor: pointer; transition: opacity .4s ease, transform .45s ease; }
.journey-step.active { opacity: 1; transform: translateY(0); }
.journey-number { color: #a4a199; font: 700 11px/1 "Manrope", sans-serif; letter-spacing: 1.5px; }
.journey-step-icon { width: 58px; height: 58px; display: grid; place-items: center; margin: 33px 0 25px; border-radius: 18px; background: var(--lime); color: var(--ink); font: 800 17px/1 "Manrope", sans-serif; }
.journey-step h3 { max-width: 520px; margin: 0 0 17px; font-size: clamp(35px, 4vw, 55px); line-height: 1.04; letter-spacing: -2.6px; }
.journey-step p { max-width: 480px; margin: 0; color: var(--muted); font-size: 16px; line-height: 1.72; }

.section-lime { background: var(--lime); }
.commission-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 70px; align-items: center; }
.dark-kicker { color: rgba(21,21,21,.55); }
.commission-copy > p { line-height: 1.7; max-width: 490px; color: rgba(21,21,21,.67); }
.plan-options { margin-top: 36px; display: flex; gap: 12px; }
.plan-option { flex: 1; min-height: 105px; display: flex; align-items: center; gap: 14px; text-align: left; padding: 18px; border: 1px solid rgba(21,21,21,.2); border-radius: 20px; background: rgba(255,255,255,.18); cursor: pointer; transition: background .2s ease, border-color .2s ease; }
.plan-option.active { background: var(--ink); color: white; border-color: var(--ink); }
.radio-dot { width: 20px; height: 20px; flex: 0 0 auto; border: 2px solid currentColor; border-radius: 50%; position: relative; opacity: .55; }
.plan-option.active .radio-dot::after { content: ""; position: absolute; inset: 4px; border-radius: 50%; background: var(--lime); }
.plan-option > span:last-child { display: flex; flex-direction: column; }
.plan-option small { opacity: .55; font-size: 10px; text-transform: uppercase; letter-spacing: .7px; margin-bottom: 4px; }
.plan-option strong { font: 800 20px/1.2 "Manrope", sans-serif; }
.plan-option em { font-style: normal; font: 500 10px/1 "DM Sans", sans-serif; opacity: .55; }
.calculator-card { background: white; border-radius: 32px; padding: 34px; box-shadow: 0 28px 60px rgba(37,55,0,.13); }
.calculator-head { display: flex; justify-content: space-between; gap: 20px; }
.card-label { color: var(--muted); text-transform: uppercase; letter-spacing: 1.4px; font-size: 9px; font-weight: 700; }
.calculator-head h3 { font-size: 20px; margin: 7px 0 0; }
.calculator-badge { height: fit-content; background: var(--cream); color: var(--muted); font-size: 9px; padding: 6px 9px; border-radius: 20px; }
.income-value { font: 800 48px/1 "Manrope", sans-serif; letter-spacing: -2px; margin: 38px 0 24px; }
.income-value small { color: var(--muted); font-size: 17px; letter-spacing: 0; }
input[type="range"] { width: 100%; height: 6px; border-radius: 10px; appearance: none; background: linear-gradient(90deg, var(--lime) 0 28.5%, #e8e7e1 28.5% 100%); outline: none; }
input[type="range"]::-webkit-slider-thumb { appearance: none; width: 25px; height: 25px; background: var(--ink); border: 6px solid var(--lime); box-shadow: 0 0 0 2px var(--ink); border-radius: 50%; cursor: pointer; }
.range-labels { display: flex; justify-content: space-between; color: #aaa89f; font-size: 9px; margin-top: 9px; }
.calculation-results { margin-top: 32px; border-top: 1px solid var(--line); }
.result-row { display: flex; justify-content: space-between; align-items: center; padding: 18px 5px; border-bottom: 1px solid var(--line); color: var(--muted); }
.result-row > span { display: flex; align-items: center; gap: 10px; font-size: 13px; }
.result-row i { width: 8px; height: 8px; border-radius: 50%; background: #d0cfc9; }
.result-row strong { color: var(--ink); font-size: 15px; }
.result-row.best { color: var(--ink); }
.result-row.best i { background: var(--lime); box-shadow: 0 0 0 4px rgba(201,255,61,.3); }
.recommendation { display: flex; gap: 12px; background: #f3f8e7; border-radius: 15px; padding: 14px 16px; margin-top: 20px; }
.recommendation p { margin: 0; color: #53622f; font-size: 12px; line-height: 1.5; }

.benefits { background: var(--cream); }
.section-heading.centered { justify-content: center; text-align: center; }
.benefit-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.benefit-card { min-height: 360px; border-radius: var(--radius); background: white; padding: 30px; position: relative; overflow: hidden; }
.benefit-wide { display: grid; grid-template-columns: .95fr 1.05fr; align-items: center; }
.dark-card { background: var(--ink); color: white; }
.benefit-tag { display: inline-block; text-transform: uppercase; letter-spacing: 1.3px; font-size: 9px; font-weight: 700; color: var(--muted); background: rgba(127,127,127,.12); padding: 7px 10px; border-radius: 20px; }
.dark-card .benefit-tag { color: var(--lime); background: rgba(201,255,61,.1); }
.benefit-card h3 { font-size: 27px; line-height: 1.2; letter-spacing: -1px; margin: 24px 0 12px; }
.benefit-card p { color: var(--muted); font-size: 14px; line-height: 1.65; max-width: 390px; }
.dark-card p { color: rgba(255,255,255,.55); }
.calendar-visual { justify-self: end; width: 210px; height: 235px; border-radius: 22px; background: var(--lime); color: var(--ink); display: flex; flex-direction: column; align-items: center; justify-content: center; transform: rotate(5deg); box-shadow: 0 25px 45px rgba(0,0,0,.25); }
.calendar-visual span { font: 700 12px/1 "Manrope", sans-serif; letter-spacing: 2px; }
.calendar-visual strong { font: 800 94px/.9 "Manrope", sans-serif; letter-spacing: -7px; }
.calendar-visual small { font-size: 8px; letter-spacing: 1px; margin-top: 13px; }
.round-icon { width: 70px; height: 70px; border-radius: 50%; background: var(--lime); display: grid; place-items: center; font-size: 33px; margin: 74px 0 35px; }
.map-visual { position: absolute; width: 230px; right: -12px; top: 35px; color: #e2e1da; }
.map-visual svg { fill: currentColor; }
.map-dot { position: absolute; width: 10px; height: 10px; border: 3px solid white; border-radius: 50%; background: var(--lime); z-index: 2; box-shadow: 0 3px 8px rgba(0,0,0,.15); }
.dot-1 { left: 38px; top: 62px; }.dot-2 { left: 105px; top: 81px; }.dot-3 { right: 52px; top: 70px; }.dot-4 { left: 125px; top: 38px; }
.benefit-card:nth-child(3) h3 { margin-top: 165px; }
.support-card { background: #dedbd1; }
.chat-visual { align-self: center; display: flex; flex-direction: column; gap: 12px; padding-left: 15px; }
.chat-line { max-width: 240px; padding: 15px 17px; border-radius: 16px; font-size: 12px; box-shadow: 0 8px 25px rgba(0,0,0,.08); }
.chat-line.left { background: white; border-bottom-left-radius: 4px; }
.chat-line.right { background: var(--lime); align-self: flex-end; border-bottom-right-radius: 4px; }
.chat-status { margin-top: 20px; font-size: 10px; color: var(--muted); text-align: center; }
.chat-status span { display: inline-block; width: 7px; height: 7px; border-radius: 50%; background: #6bb647; margin-right: 4px; }

.story-section { overflow: clip; background: var(--cream); }
.story-heading { display: flex; align-items: end; justify-content: space-between; gap: 50px; margin-bottom: 78px; }
.story-heading h2 { max-width: 720px; margin: 18px 0 0; font-size: clamp(40px, 5vw, 66px); line-height: 1.02; letter-spacing: -3.5px; }
.story-heading > p { max-width: 400px; margin: 0 0 9px; color: var(--muted); font-size: 16px; line-height: 1.7; }
.story-shell { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr); gap: clamp(50px, 7vw, 100px); align-items: start; }
.story-visual-column { position: relative; align-self: stretch; height: 100%; }
.story-visual-sticky { position: sticky; top: 92px; height: min(720px, calc(100vh - 116px)); min-height: 530px; overflow: hidden; border-radius: 34px; background: #0d0d0d; box-shadow: 0 35px 80px rgba(0,0,0,.18); isolation: isolate; }
.story-image-stack, .story-image { position: absolute; inset: 0; margin: 0; }
.story-image { opacity: 0; transform: scale(1.035); transition: opacity .65s ease, transform 1s cubic-bezier(.2,.75,.2,1); }
.story-image.active { opacity: 1; transform: scale(1); }
.story-image img { width: 100%; height: 100%; display: block; object-fit: cover; }
.story-image::after { content: ""; position: absolute; z-index: 1; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.08), transparent 48%, rgba(0,0,0,.38)); pointer-events: none; }
.story-ui-frame { display: grid; place-items: center; padding: clamp(28px, 5vw, 58px); background: radial-gradient(circle at 75% 20%, rgba(201,255,61,.18), transparent 34%), #11130f; }
.story-ui-frame::before { content: ""; position: absolute; inset: 0; opacity: .2; 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: 42px 42px; pointer-events: none; }
.story-ui-frame::after { background: linear-gradient(180deg, rgba(0,0,0,.03), transparent 58%, rgba(0,0,0,.25)); }
.story-app-window, .story-chat-app, .story-lowest-card { position: relative; z-index: 2; width: min(100%, 500px); color: var(--ink); box-shadow: 0 28px 65px rgba(0,0,0,.4); }
.story-app-window { overflow: hidden; border-radius: 18px; background: #f7f7f2; }
.story-app-bar { min-height: 64px; display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 0 20px; border-bottom: 1px solid #dfdfd8; }
.story-app-bar img { width: 106px; height: auto; }
.story-app-bar span { color: #77766f; font: 700 9px/1 "Manrope", sans-serif; letter-spacing: 1px; text-transform: uppercase; }
.story-plan-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 28px 24px 16px; }
.story-plan { position: relative; min-height: 190px; display: flex; flex-direction: column; justify-content: flex-end; padding: 20px; border: 1px solid #d8d7cf; border-radius: 14px; background: white; }
.story-plan small { margin-bottom: auto; color: #8b8a83; font: 800 8px/1 "Manrope", sans-serif; letter-spacing: 1px; }
.story-plan strong { font: 800 clamp(30px, 4vw, 48px)/.9 "Manrope", sans-serif; letter-spacing: -.04em; }
.story-plan span { margin-top: 8px; color: #77766f; font-size: 11px; }
.story-plan-selected { border-color: var(--ink); background: #efffc7; box-shadow: 0 14px 28px rgba(68,82,31,.11); }
.story-plan-selected > i { position: absolute; top: 16px; right: 16px; width: 27px; height: 27px; display: grid; place-items: center; border-radius: 50%; background: var(--ink); color: var(--lime); font: 800 12px/1 "Manrope", sans-serif; }
.story-app-note { display: flex; align-items: center; gap: 9px; margin: 0 24px 24px; padding: 13px 15px; border-radius: 10px; background: #ebeae4; color: #686761; font-size: 10px; }
.story-app-note i { width: 7px; height: 7px; flex: 0 0 auto; border-radius: 50%; background: #7fa600; }
.story-photo-frame img { filter: saturate(.88) contrast(1.02); }
.story-photo-card { position: absolute; z-index: 2; min-width: 205px; padding: 16px 17px; border-radius: 14px; background: rgba(247,247,242,.94); color: var(--ink); box-shadow: 0 18px 45px rgba(0,0,0,.28); backdrop-filter: blur(13px); }
.story-photo-card small { display: block; margin-bottom: 9px; color: #6e6d66; font: 800 8px/1 "Manrope", sans-serif; letter-spacing: 1.1px; }
.story-photo-card strong { display: block; font: 800 25px/1 "Manrope", sans-serif; letter-spacing: -.04em; }
.story-photo-card > span { display: flex; align-items: center; gap: 7px; margin-top: 9px; color: #696861; font-size: 9px; }
.story-photo-card > span > i:not(:only-child) { width: 7px; height: 7px; border-radius: 50%; background: #75a200; }
.story-payout-card { right: 24px; bottom: 24px; }
.story-coverage-card { right: 24px; bottom: 24px; max-width: 270px; }
.story-coverage-card strong { font-size: 20px; }
.story-registration-card { top: 76px; left: 24px; }
.story-registration-card strong { font-size: 34px; font-variant-numeric: tabular-nums; }
.story-registration-card > span > i { width: 18px; height: 18px; display: grid; place-items: center; border-radius: 50%; background: var(--lime); color: var(--ink); font: 800 9px/1 "Manrope", sans-serif; }
.story-chat-app { overflow: hidden; border-radius: 18px; background: #f1f0e9; }
.story-chat-head { min-height: 72px; display: grid; grid-template-columns: 42px 1fr auto; align-items: center; gap: 11px; padding: 0 16px; border-bottom: 1px solid #d8d7cf; background: #fbfbf8; }
.story-chat-logo { width: 40px; height: 40px; overflow: hidden; border-radius: 12px 12px 12px 4px; background: var(--lime); }
.story-chat-logo img { width: 100%; height: 100%; object-fit: cover; }
.story-chat-head > span:nth-child(2) { display: flex; min-width: 0; flex-direction: column; gap: 6px; }
.story-chat-head strong { font: 800 13px/1 "Manrope", sans-serif; }
.story-chat-head small { display: flex; align-items: center; gap: 6px; color: #7b7a73; font: 700 8px/1 "Manrope", sans-serif; }
.story-chat-head small i { width: 6px; height: 6px; border-radius: 50%; background: #71a000; }
.story-chat-head > b { padding: 7px 8px; border-radius: 8px; background: var(--ink); color: var(--lime); font: 800 8px/1 "Manrope", sans-serif; letter-spacing: 1px; }
.story-chat-date { margin: 14px 0 12px; color: #99978f; font: 700 7px/1 "Manrope", sans-serif; letter-spacing: .8px; text-align: center; text-transform: uppercase; }
.story-chat-bubble { max-width: 76%; margin: 8px 14px; padding: 12px 14px; border-radius: 15px; font-size: 11px; line-height: 1.5; box-shadow: 0 7px 16px rgba(20,20,20,.06); }
.story-chat-user { margin-left: auto; border-bottom-right-radius: 4px; background: var(--lime); }
.story-chat-ai { border-bottom-left-radius: 4px; background: white; }
.story-chat-confirm { width: calc(76% - 14px); display: flex; align-items: center; gap: 10px; margin: 10px 14px 16px; padding: 11px 12px; border: 1px solid #d9d8d1; border-radius: 12px; background: #fafaf6; }
.story-chat-confirm > span:first-child { width: 25px; height: 25px; display: grid; flex: 0 0 auto; place-items: center; border-radius: 50%; background: var(--lime); font: 800 10px/1 "Manrope", sans-serif; }
.story-chat-confirm > span:last-child { display: flex; flex-direction: column; gap: 4px; }
.story-chat-confirm b { font: 800 9px/1 "Manrope", sans-serif; }
.story-chat-confirm small { color: #84827b; font-size: 8px; }
.story-chat-compose { min-height: 48px; display: flex; align-items: center; justify-content: space-between; margin: 0 12px 12px; padding: 0 7px 0 14px; border: 1px solid #d5d4cd; border-radius: 12px; background: white; color: #9a9891; font-size: 9px; }
.story-chat-compose b { width: 32px; height: 32px; display: grid; place-items: center; border-radius: 9px; background: var(--ink); color: var(--lime); font: 800 14px/1 "Manrope", sans-serif; }
.story-lowest-card { overflow: hidden; padding: 22px; border-radius: 18px; background: #f7f7f2; }
.story-lowest-top { display: flex; align-items: center; justify-content: space-between; padding-bottom: 17px; border-bottom: 1px solid #dcdbd4; }
.story-lowest-top img { width: 105px; }
.story-lowest-top span { color: #7b7a73; font: 800 8px/1 "Manrope", sans-serif; letter-spacing: .8px; text-transform: uppercase; }
.story-lowest-value { display: flex; align-items: flex-start; justify-content: center; margin: 35px 0 0; }
.story-lowest-value strong { font: 800 clamp(110px, 18vw, 190px)/.75 "Manrope", sans-serif; letter-spacing: -.08em; }
.story-lowest-value span { margin: 2px 0 0 8px; color: #718d23; font: 800 42px/1 "Manrope", sans-serif; }
.story-lowest-card > p { margin: 17px 0 28px; color: #6f6e67; font-size: 11px; text-align: center; }
.story-lowest-proof { display: flex; align-items: center; gap: 12px; padding: 14px; border-radius: 12px; background: var(--ink); color: white; }
.story-lowest-proof > i { width: 32px; height: 32px; display: grid; flex: 0 0 auto; place-items: center; border-radius: 50%; background: var(--lime); color: var(--ink); font: 800 13px/1 "Manrope", sans-serif; }
.story-lowest-proof > span { display: flex; flex-direction: column; gap: 5px; }
.story-lowest-proof b { font: 800 10px/1 "Manrope", sans-serif; }
.story-lowest-proof small { color: rgba(255,255,255,.58); font-size: 8px; }
.story-counter { position: absolute; z-index: 4; top: 22px; left: 22px; display: flex; align-items: center; gap: 10px; min-height: 39px; padding: 0 14px; border: 1px solid rgba(255,255,255,.17); border-radius: 999px; background: rgba(9,9,9,.62); color: white; backdrop-filter: blur(12px); font: 700 11px/1 "Manrope", sans-serif; }
.story-counter i { width: 26px; height: 1px; background: rgba(255,255,255,.35); }
.story-counter b { color: rgba(255,255,255,.48); font: inherit; }
.story-progress { position: absolute; z-index: 4; right: 22px; bottom: 22px; display: flex; gap: 7px; padding: 9px; border-radius: 999px; background: rgba(9,9,9,.62); backdrop-filter: blur(12px); }
.story-progress span { width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,.32); transition: width .35s ease, background .35s ease; }
.story-progress span.active { width: 27px; border-radius: 9px; background: var(--lime); }
.story-steps { min-width: 0; }
.story-step { min-height: max(600px, 78vh); display: flex; flex-direction: column; justify-content: center; padding: 74px 0; opacity: .3; transform: translateY(18px); transition: opacity .4s ease, transform .45s ease; }
.story-step.active { opacity: 1; transform: translateY(0); }
.story-step-number { margin-bottom: 34px; color: #9d9b93; font: 700 12px/1 "Manrope", sans-serif; letter-spacing: 1.4px; }
.story-tag { width: fit-content; padding: 8px 11px; border-radius: 999px; background: rgba(201,255,61,.26); color: #637827; font-size: 10px; font-weight: 800; letter-spacing: 1.4px; text-transform: uppercase; }
.story-step h3 { max-width: 520px; margin: 23px 0 17px; font-size: clamp(36px, 4vw, 56px); line-height: 1.04; letter-spacing: -2.7px; }
.story-step > p { max-width: 490px; margin: 0; color: var(--muted); font-size: 16px; line-height: 1.75; }
.story-fact { width: fit-content; display: flex; align-items: baseline; gap: 13px; margin-top: 34px; padding-top: 22px; border-top: 1px solid var(--line); }
.story-fact strong { color: var(--ink); font: 800 25px/1 "Manrope", sans-serif; letter-spacing: -1px; }
.story-fact span { color: var(--muted); font-size: 11px; text-transform: uppercase; letter-spacing: 1px; }
.story-languages { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 34px; }
.story-languages span { width: 44px; height: 44px; display: grid; place-items: center; border: 1px solid #d8d6ce; border-radius: 50%; background: white; font: 700 10px/1 "Manrope", sans-serif; }

.faq {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 18%, rgba(201,255,61,.15), transparent 32%),
    radial-gradient(circle at 88% 86%, rgba(126,164,29,.12), transparent 34%),
    linear-gradient(135deg, #10180d 0%, #151515 48%, #080b08 100%);
  color: #e1e0cc;
}
.faq::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: .3;
  background-image:
    linear-gradient(rgba(225,224,204,.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(225,224,204,.12) 1px, transparent 1px);
  background-size: 46px 46px;
  -webkit-mask-image: linear-gradient(105deg, #000, transparent 72%);
  mask-image: linear-gradient(105deg, #000, transparent 72%);
  pointer-events: none;
}
.faq::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 720px;
  height: 720px;
  top: -430px;
  right: -270px;
  border: 118px solid rgba(201,255,61,.08);
  border-radius: 50%;
  box-shadow: 0 0 90px rgba(201,255,61,.07), inset 0 0 70px rgba(201,255,61,.05);
  transform: rotate(-12deg);
  pointer-events: none;
}
.faq-grid { position: relative; z-index: 1; display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; align-items: start; }
.faq-intro { position: sticky; top: 120px; }
.faq-intro .kicker { color: var(--lime); }
.faq-intro h2 { max-width: 600px; margin: 0 0 22px; font-size: clamp(48px, 5.5vw, 72px); line-height: 1.02; letter-spacing: -3.5px; }
.faq-intro p { max-width: 450px; color: rgba(225,224,204,.64); line-height: 1.65; }
.faq .dark-link { margin-top: 17px; color: #e1e0cc; }
.faq .dark-link span { color: var(--lime); }
.faq-chat { padding: 18px; border: 1px solid rgba(225,224,204,.18); border-radius: 30px; background: #e1e0cc; color: var(--ink); box-shadow: 0 30px 90px rgba(0,0,0,.38), inset 0 1px rgba(255,255,255,.58); }
.faq-chat-meta { min-height: 58px; display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-bottom: 18px; padding: 0 4px 14px; border-bottom: 1px solid rgba(20,20,20,.12); }
.faq-chat-meta > time { position: relative; display: flex; align-items: center; gap: 10px; min-height: 38px; padding: 7px 12px; overflow: hidden; border: 1px solid rgba(201,255,61,.3); border-radius: 13px; background: linear-gradient(135deg, #171914, #090a08); color: #f4f3e7; box-shadow: 0 8px 20px rgba(20,20,20,.16), inset 0 1px rgba(255,255,255,.08); white-space: nowrap; }
.faq-chat-meta > time::after { content: ""; position: absolute; inset: 0; background: linear-gradient(110deg, transparent 20%, rgba(255,255,255,.09) 47%, transparent 70%); transform: translateX(-120%); animation: prague-clock-shine 5s ease-in-out infinite; pointer-events: none; }
.prague-time span { color: rgba(244,243,231,.72); font: 800 10px/1 "Manrope", sans-serif; letter-spacing: 1.25px; text-transform: uppercase; }
.prague-time strong { color: var(--lime); font: 800 14px/1 "Manrope", sans-serif; letter-spacing: .35px; font-variant-numeric: tabular-nums; text-shadow: 0 0 12px rgba(201,255,61,.25); }
@keyframes prague-clock-shine { 0%, 72%, 100% { transform: translateX(-120%); } 86% { transform: translateX(120%); } }
.faq-chat-agent { display: flex; align-items: center; gap: 11px; }
.faq-chat-agent > span:last-child { display: flex; flex-direction: column; gap: 5px; }
.faq-chat-agent b { font: 800 13px/1 "Manrope", sans-serif; }
.faq-chat-agent small { display: flex; align-items: center; gap: 5px; color: rgba(20,20,20,.5); font: 700 9px/1 "Manrope", sans-serif; text-transform: uppercase; letter-spacing: .7px; }
.faq-chat-agent small i { width: 6px; height: 6px; border-radius: 50%; background: #77a300; box-shadow: 0 0 0 3px rgba(119,163,0,.13); }
.faq-chat-avatar { width: 40px; height: 40px; display: grid; place-items: center; overflow: hidden; border-radius: 13px 13px 13px 4px; background: var(--lime); color: var(--ink); font: 900 17px/1 "Manrope", sans-serif; transform: rotate(-3deg); box-shadow: 0 7px 18px rgba(80,103,18,.18); }
.faq-chat-avatar img { display: block; width: 100%; height: 100%; object-fit: cover; }
.accordion { display: flex; flex-direction: column; gap: 10px; }
.accordion details { border: 0; }
.accordion summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: flex-start; gap: 12px; outline: none; }
.accordion summary::-webkit-details-marker { display: none; }
.faq-question-bubble { position: relative; min-height: 48px; display: flex; align-items: center; max-width: calc(100% - 54px); padding: 13px 16px; border: 1px solid rgba(20,20,20,.09); border-radius: 17px 17px 17px 5px; background: #f8f7ef; box-shadow: 0 7px 18px rgba(20,20,20,.06); transition: background .25s ease, border-color .25s ease, transform .25s ease; }
.faq-question-bubble b { font: 700 15px/1.42 "Manrope", sans-serif; }
.accordion summary:hover .faq-question-bubble { transform: translateY(-1px); border-color: rgba(108,138,25,.23); background: #f5f6e8; }
.accordion details[open]:not(.is-closing) .faq-question-bubble { border-color: rgba(108,138,25,.28); background: rgba(201,255,61,.24); }
.faq-toggle { position: relative; width: 34px; height: 34px; flex: 0 0 auto; border: 1px solid rgba(20,20,20,.12); border-radius: 50%; background: rgba(255,255,255,.55); transition: background .25s ease, color .25s ease, transform .25s ease; }
.faq-toggle::before, .faq-toggle::after { content: ""; position: absolute; top: 50%; left: 50%; width: 12px; height: 1.5px; border-radius: 2px; background: currentColor; transform: translate(-50%, -50%); transition: transform .25s ease, opacity .25s ease; }
.faq-toggle::after { transform: translate(-50%, -50%) rotate(90deg); }
.accordion details[open]:not(.is-closing) .faq-toggle { background: var(--lime); transform: rotate(3deg); }
.accordion details[open]:not(.is-closing) .faq-toggle::after { opacity: 0; transform: translate(-50%, -50%) rotate(0); }
.faq-answer-wrap { max-width: min(470px, calc(100% - 44px)); margin: 7px 0 3px clamp(28px, 9%, 64px); }
.faq-answer-wrap p { position: relative; margin: 0; padding: 14px 16px; border-radius: 19px 19px 5px 19px; background: var(--lime); color: var(--ink); font-size: 14px; line-height: 1.55; box-shadow: 0 12px 27px rgba(112,146,18,.18); }
.faq-sticker { position: absolute; z-index: 2; top: -11px; width: 25px; height: 25px; display: grid; place-items: center; border: 2px solid #e1e0cc; border-radius: 50%; background: var(--lime); color: var(--ink); font-size: 11px; box-shadow: 0 5px 12px rgba(20,20,20,.14); }
.faq-sticker-right { right: -8px; transform: rotate(7deg); }
.faq-sticker-left { left: -8px; transform: rotate(-7deg); }

.cinematic-footer-reveal { position: relative; z-index: 0; height: 100svh; min-height: 680px; overflow: clip; clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); background: #0d0d0d; }
.site-footer { position: fixed; z-index: 0; bottom: 0; left: 0; width: 100%; height: 100svh; min-height: 680px; display: flex; flex-direction: column; justify-content: space-between; overflow: hidden; isolation: isolate; padding: 0 40px 28px; background: #0d0d0d; color: white; font-family: "Manrope", sans-serif; }
.footer-aurora { position: absolute; z-index: -3; top: 48%; left: 50%; width: min(920px, 82vw); height: min(620px, 65vh); border-radius: 50%; background: radial-gradient(circle, rgba(201,255,61,.2) 0, rgba(201,255,61,.07) 38%, transparent 72%); filter: blur(65px); transform: translate(-50%, -50%); animation: footer-breathe 8s ease-in-out infinite alternate; pointer-events: none; }
.footer-grid { position: absolute; z-index: -2; inset: 0; opacity: .8; background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px); background-size: 58px 58px; -webkit-mask-image: linear-gradient(transparent, #000 25%, #000 78%, transparent); mask-image: linear-gradient(transparent, #000 25%, #000 78%, transparent); pointer-events: none; }
.footer-giant-word { position: absolute; z-index: -1; left: 50%; bottom: -4vw; color: transparent; font-size: clamp(150px, 25vw, 460px); font-weight: 800; line-height: .72; letter-spacing: -.08em; white-space: nowrap; transform: translateX(-50%); -webkit-text-stroke: 1px rgba(201,255,61,.15); background: linear-gradient(180deg, rgba(201,255,61,.06) 0%, rgba(201,255,61,.32) 48%, #c9ff3d 100%); -webkit-background-clip: text; background-clip: text; filter: drop-shadow(0 0 38px rgba(201,255,61,.1)); user-select: none; }
.footer-marquee { position: absolute; z-index: 3; top: 120px; left: -5%; width: 110%; overflow: hidden; border-block: 1px solid rgba(201,255,61,.28); background: rgba(13,13,13,.72); box-shadow: 0 18px 50px rgba(0,0,0,.35); backdrop-filter: blur(18px); transform: rotate(-2deg); }
.footer-marquee-track { display: flex; width: max-content; padding: 19px 0; animation: footer-marquee 40s linear infinite; will-change: transform; }
.footer-marquee-group { display: flex; align-items: center; flex-shrink: 0; gap: 38px; padding-right: 38px; color: rgba(255,255,255,.68); font-size: 13px; font-weight: 800; letter-spacing: .22em; text-transform: uppercase; white-space: nowrap; }
.footer-marquee-group i { color: var(--lime); font-size: 16px; font-style: normal; }
.footer-center { position: relative; z-index: 2; width: min(980px, 100%); margin: auto; padding-top: 120px; text-align: center; }
.footer-center h2 { margin: 0; background: linear-gradient(180deg, #fff 15%, #797979 125%); color: transparent; font-size: clamp(54px, 8vw, 116px); font-weight: 800; line-height: .92; letter-spacing: -.07em; -webkit-background-clip: text; background-clip: text; filter: drop-shadow(0 0 30px rgba(255,255,255,.08)); }
.footer-lead { max-width: 520px; margin: 24px auto 34px; color: rgba(255,255,255,.47); font-size: 14px; line-height: 1.65; }
.footer-actions { display: flex; flex-direction: column; align-items: center; gap: 12px; perspective: 800px; }
.footer-navigation-row, .footer-secondary-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.footer-pill, .footer-credit, .footer-to-top { border: 1px solid rgba(255,255,255,.11); background: linear-gradient(145deg, rgba(255,255,255,.07), rgba(255,255,255,.025)); box-shadow: inset 0 1px rgba(255,255,255,.12), 0 14px 35px rgba(0,0,0,.28); backdrop-filter: blur(16px); transition: border-color .3s ease, background .3s ease, color .3s ease, box-shadow .3s ease, transform .35s cubic-bezier(.2,.8,.2,1); will-change: transform; }
.footer-pill { min-height: 50px; display: inline-flex; align-items: center; justify-content: center; gap: 12px; padding: 0 23px; border-radius: 999px; color: rgba(255,255,255,.58); font-size: 12px; font-weight: 700; }
.footer-pill-secondary { min-height: 40px; padding-inline: 18px; color: rgba(255,255,255,.42); font-size: 10px; }
.footer-start-button { height: 50px; border-radius: 999px; }
.footer-start-button .anti-metal-button__label { padding-left: 64px; line-height: 50px; }
.footer-start-button .anti-metal-button__track { border-radius: 999px; }
.footer-pill svg, .footer-credit svg, .footer-to-top svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.footer-pill:hover, .footer-credit:hover, .footer-to-top:hover { border-color: rgba(201,255,61,.42); background: linear-gradient(145deg, rgba(201,255,61,.12), rgba(255,255,255,.035)); color: white; box-shadow: inset 0 1px rgba(255,255,255,.16), 0 18px 45px rgba(0,0,0,.38), 0 0 28px rgba(201,255,61,.08); }
.footer-pill-primary { border-color: var(--lime); background: var(--lime); color: var(--ink); box-shadow: 0 12px 35px rgba(201,255,61,.19); }
.footer-pill-primary:hover { border-color: var(--lime-bright); background: var(--lime-bright); color: var(--ink); }
.footer-bottom { position: relative; z-index: 4; width: 100%; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 24px; color: rgba(255,255,255,.3); }
.footer-copyright { justify-self: start; font-size: 9px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.footer-credit { min-height: 42px; display: inline-flex; align-items: center; gap: 7px; padding: 0 17px; border-radius: 999px; color: rgba(255,255,255,.46); font-size: 9px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.footer-credit i { color: #ff4d5e; font-size: 13px; font-style: normal; animation: footer-heart 2s cubic-bezier(.25,1,.5,1) infinite; }
.footer-credit strong { color: white; font-size: 11px; letter-spacing: 0; text-transform: none; }
.footer-credit svg { width: 14px; height: 14px; margin-left: 2px; }
.footer-to-top { justify-self: end; width: 46px; height: 46px; display: grid; place-items: center; padding: 0; border-radius: 50%; color: rgba(255,255,255,.52); cursor: pointer; }
.footer-to-top:hover svg { transform: translateY(-2px); }
.footer-to-top svg { transition: transform .3s ease; }
@keyframes footer-breathe { 0% { transform: translate(-50%,-50%) scale(1); opacity: .6; } 100% { transform: translate(-50%,-50%) scale(1.1); opacity: 1; } }
@keyframes footer-marquee { from { transform: translateX(0); } to { transform: translateX(-33.333333%); } }
@keyframes footer-heart { 0%, 100% { transform: scale(1); filter: drop-shadow(0 0 5px rgba(255,77,94,.5)); } 15%, 45% { transform: scale(1.2); filter: drop-shadow(0 0 10px rgba(255,77,94,.8)); } 30% { transform: scale(1); } }

.reveal { opacity: 0; transform: translateY(25px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay { transition-delay: .12s; }
.reveal-delay-2 { transition-delay: .22s; }

@media (max-width: 980px) {
  .language-picker { display: none; }
  .hero-title-left, .hero-title-right { width: min(420px, 38vw); font-size: clamp(42px, 6.2vw, 64px); letter-spacing: -3.5px; }
  .hero-title-left { right: calc(50% + 175px); }
  .hero-title-right { left: calc(50% + 175px); }
  .hero-expanded-panel { left: 34px; width: min(560px, 61vw); }
  .hero-grid { grid-template-columns: 1fr; padding-top: 110px; }
  .hero-copy { text-align: center; }
  .eyebrow, .hero-actions { justify-content: center; }
  .hero-lead, .hero-proof { margin-left: auto; margin-right: auto; }
  .hero-media video { object-position: 70% center; }
  .hero-media-scrim { background: linear-gradient(90deg, rgba(15,15,15,.68), rgba(15,15,15,.18)), linear-gradient(0deg, rgba(15,15,15,.4), transparent 60%, rgba(15,15,15,.2)); }
  .hero-visual { display: none; }
  .text-marquee { height: 170px; }
  .marquee-left, .marquee-right { animation-duration: 20s; }
  .commission-grid, .faq-grid { grid-template-columns: 1fr; gap: 55px; }
  .faq-intro, .registration-copy { position: static; }
  .faq-chat { width: 100%; max-width: 760px; }
  .benefit-wide { grid-template-columns: 1fr; }
  .process-heading { margin-bottom: 55px; }
  .journey-shell { display: block; }
  .journey-stage-column { position: sticky; top: 72px; z-index: 4; height: 46vh; min-height: 340px; pointer-events: none; }
  .journey-stage { position: relative; top: auto; height: 100%; min-height: 0; border-radius: 28px; }
  .journey-steps { position: relative; z-index: 2; margin-top: -46vh; }
  .journey-step { min-height: 96vh; justify-content: flex-start; padding: calc(46vh + 62px) 10px 76px; }
  .story-heading { align-items: start; }
  .story-shell { display: block; }
  .story-visual-column { position: sticky; top: 72px; z-index: 3; height: 44vh; min-height: 330px; pointer-events: none; }
  .story-visual-sticky { position: relative; top: auto; height: 100%; min-height: 0; border-radius: 28px; }
  .story-steps { position: relative; z-index: 2; margin-top: -44vh; }
  .story-step { min-height: 100vh; justify-content: flex-start; padding: calc(44vh + 58px) 10px 80px; }
  .calendar-visual { position: absolute; right: 20px; bottom: -85px; width: 170px; height: 190px; opacity: .85; }
  .chat-visual { margin-top: 20px; padding-left: 0; }
  .site-footer { padding-inline: 24px; }
}

@media (max-width: 760px) {
  .container { width: min(100% - 28px, 620px); }
  .site-header { top: 7px; height: 56px; }
  .nav-wrap { width: calc(100% - 14px); padding: 6px 8px 6px 11px; gap: 8px; }
  .brand-logo { width: 62px; height: 40px; }
  .nav-actions { margin-left: auto; margin-right: 5px; }
  .language-picker { display: block; }
  .language-trigger { height: 36px; padding: 0 9px; }
  .language-trigger-label { display: none; }
  .language-menu { right: -46px; left: auto; }
  .nav-cta-group { display: flex; }
  .nav-cta { display: none; }
  .kinetic-menu-inner { width: calc(100% - 34px); grid-template-columns: 1fr; grid-template-rows: 1fr auto; padding: 82px 0 20px; }
  .kinetic-menu-meta { display: none; }
  .kinetic-menu-shapes { inset: 0; opacity: .48; }
  .kinetic-shape { width: 135vw; height: 135vw; }
  .kinetic-menu-links { align-self: center; }
  .kinetic-menu-link { grid-template-columns: 25px 1fr 30px; gap: 10px; padding: 15px 2px; }
  .kinetic-menu-link strong { font-size: clamp(34px,11vw,54px); }
  .kinetic-menu-link > span { font-size: 22px; }
  .kinetic-menu-contact { padding-top: 12px; }
  .kinetic-menu-contact a { min-height: 50px; gap: 8px; padding: 6px 10px 6px 7px; font-size: 13px; }
  .kinetic-contact-icon { width: 36px; height: 36px; flex-basis: 36px; border-radius: 10px; }
  .kinetic-contact-icon svg { width: 19px; height: 19px; }
  .kinetic-menu-foot { grid-column: 1; }
  .hero { height: 190vh; min-height: 1280px; }
  .hero-sticky { min-height: 600px; }
  .hero-expand-media video { object-position: 58% center; }
  .hero-expand-scrim { background: linear-gradient(0deg, rgba(10,10,10,.62) 0%, rgba(10,10,10,.1) 62%, rgba(10,10,10,.14) 100%); }
  .hero-split-title { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px; padding: 0 17px; }
  .hero-title-left, .hero-title-right { position: relative; top: auto; right: auto; left: auto; width: 100%; max-width: 520px; font-size: clamp(39px, 11vw, 52px); line-height: .96; letter-spacing: -3px; text-align: center; transform: none; }
  .hero-expanded-panel { top: 45%; left: 16px; width: calc(100% - 32px); text-align: center; }
  .hero-expanded-panel .eyebrow, .hero-expanded-panel .hero-actions { justify-content: center; }
  .hero-expanded-panel .hero-lead { max-width: 520px; margin-right: auto; margin-left: auto; font-size: 15px; line-height: 1.55; }
  .hero-expanded-panel .hero-actions { margin: 26px 0 27px; }
  .hero-expanded-panel .hero-proof { max-width: 520px; }
  .hero-scroll-hint { bottom: 20px; font-size: 9px; letter-spacing: .5px; }
  .hero-scroll-hint i { width: 30px; height: 30px; }
  .hero-grid { padding-top: 105px; padding-bottom: 20px; }
  .hero-media video { object-position: 68% center; filter: saturate(1.02); }
  .hero-media-scrim { background: linear-gradient(0deg, rgba(15,15,15,.68) 0%, rgba(15,15,15,.3) 50%, rgba(15,15,15,.34) 100%), linear-gradient(90deg, rgba(15,15,15,.18), transparent); }
  h1 { font-size: 47px; letter-spacing: -3px; }
  .hero-lead { font-size: 16px; }
  .hero-actions { flex-direction: column; margin-bottom: 35px; }
  .hero-proof { justify-content: center; }
  .hero-proof div { min-width: 0; flex: 1; padding: 0 8px; margin: 0; }
  .hero-proof span { font-size: 8px; }
  .hero-visual { height: 500px; transform: scale(.86); margin-left: -25px; margin-right: -25px; }
  .float-card-top { right: -15px; }
  .float-card-bottom { left: -10px; }
  .text-marquee { height: 132px; }
  .text-marquee-group { gap: 18px; padding: 0 9px; }
  .text-marquee-group span { font-size: clamp(31px, 9.2vw, 40px); }
  .text-marquee-group i { font-size: 19px; }
  .marquee-left, .marquee-right { animation-duration: 17s; }
  .section { padding: 85px 0; }
  .section-heading { display: block; }
  .section-heading h2, .commission h2, .faq h2, .registration h2 { font-size: 37px; letter-spacing: -2px; }
  .faq-intro h2 { font-size: 46px; line-height: 1.02; letter-spacing: -2.5px; }
  .section-heading > p { margin-top: 20px; }
  .steps-grid { grid-template-columns: 1fr; }
  .step-card.featured { transform: none; }
  .step-card { min-height: 270px; }
  .step-icon { margin-top: 37px; }
  .process-heading { margin-bottom: 46px; }
  .journey-stage-column { top: 70px; height: 39vh; min-height: 300px; }
  .journey-stage { border-radius: 23px; }
  .journey-stage-head { height: 52px; padding: 0 15px; font-size: 8px; }
  .journey-scenes { inset: 52px 0 37px; }
  .journey-stage-foot { right: 15px; bottom: 12px; }
  .journey-steps { margin-top: -39vh; }
  .journey-step { min-height: 88vh; padding: calc(39vh + 48px) 4px 62px; }
  .journey-step-icon { width: 50px; height: 50px; margin: 25px 0 21px; border-radius: 15px; }
  .journey-step h3 { font-size: 37px; letter-spacing: -2.1px; }
  .journey-step p { font-size: 14px; line-height: 1.65; }
  .motion-plan-card { border-radius: 18px; }
  .motion-plan-card strong { margin-top: 11px; font-size: 50px; letter-spacing: -4px; }
  .motion-choice { width: 38px; height: 38px; font-size: 6px; }
  .motion-phone-form { width: 47%; height: 88%; padding: 12px 10px; border-width: 4px; border-radius: 21px; }
  .motion-phone-top { margin-bottom: 12px; }
  .motion-form-line { height: 27px; margin-bottom: 7px; border-radius: 7px; }
  .motion-form-line::after { height: 5px; margin: 10px 8px; }
  .motion-upload { height: 33px; gap: 7px; padding: 0 8px; border-radius: 7px; }
  .motion-upload span { font-size: 16px; }.motion-upload i { height: 5px; }
  .motion-submit { right: 9px; bottom: 9px; left: 9px; height: 29px; font-size: 14px; }
  .motion-speed { right: 7%; top: 13%; width: 61px; height: 61px; }
  .motion-speed strong { font-size: 26px; }.motion-speed span { margin-top: 4px; font-size: 6px; }
  .motion-document { padding: 12px; border-radius: 14px; }
  .motion-document i { width: 27px; height: 27px; margin-bottom: 18px; }
  .motion-document span { height: 5px; margin-top: 8px; }
  .motion-approval { bottom: 4%; width: 68px; height: 68px; box-shadow: 0 0 0 9px rgba(201,255,61,.12); }
  .motion-approval strong { font-size: 30px; }.approval-ring { inset: -9px; }
  .motion-rider { display: none; }
  .motion-online { top: 12px; right: 12px; padding: 8px 10px; font-size: 7px; }
  .motion-calendar { left: 7%; width: 39%; gap: 5px; padding: 49px 13px 13px; border-radius: 18px; }
  .motion-calendar::before { height: 39px; border-radius: 18px 18px 0 0; }
  .motion-calendar span { top: 8px; left: 14px; font-size: 21px; }
  .motion-calendar i { border-radius: 4px; }
  .motion-wallet { right: 6%; width: 39%; border-radius: 19px; }
  .motion-coin { width: 32px; height: 32px; font-size: 7px; animation-name: coin-drop-mobile; }
  @keyframes coin-drop-mobile { 0% { transform: translateY(-20px) rotate(0); opacity: 0; } 18% { opacity: 1; } 80% { transform: translateY(135px) rotate(240deg); opacity: 1; } 100% { transform: translateY(155px) rotate(280deg); opacity: 0; } }
  .commission-grid { gap: 42px; }
  .plan-options { flex-direction: column; }
  .calculator-card { padding: 25px 20px; }
  .calculator-head h3 { font-size: 17px; }
  .income-value { font-size: 42px; }
  .benefit-layout { grid-template-columns: 1fr; }
  .benefit-card { min-height: 330px; }
  .story-heading { display: block; margin-bottom: 48px; }
  .story-heading h2 { font-size: 39px; letter-spacing: -2.3px; }
  .story-heading > p { margin-top: 20px; font-size: 14px; }
  .story-visual-column { top: 70px; height: 40vh; min-height: 300px; }
  .story-visual-sticky { border-radius: 23px; }
  .story-steps { margin-top: -40vh; }
  .story-step { min-height: 92vh; padding: calc(40vh + 46px) 4px 66px; }
  .story-step-number { margin-bottom: 24px; }
  .story-step h3 { margin-top: 18px; font-size: 37px; letter-spacing: -2.1px; }
  .story-step > p { font-size: 14px; line-height: 1.65; }
  .story-counter { top: 14px; left: 14px; }
  .story-progress { right: 14px; bottom: 14px; }
  .story-ui-frame { padding: 42px 18px 18px; }
  .story-app-window, .story-chat-app, .story-lowest-card { max-width: 390px; transform: scale(.78); }
  .story-photo-card { padding: 12px 13px; border-radius: 12px; }
  .story-payout-card, .story-coverage-card { right: 14px; bottom: 14px; }
  .story-registration-card { top: 58px; left: 14px; }
  .map-visual { opacity: .8; }
  .faq-grid { gap: 35px; }
  .faq-chat { padding: 14px; border-radius: 24px; }
  .faq-chat-meta { margin-bottom: 14px; padding-bottom: 12px; }
  .faq-chat-meta > time { font-size: 8px; letter-spacing: .3px; }
  .faq-question-bubble { max-width: calc(100% - 46px); min-height: 44px; padding: 11px 13px; border-radius: 15px 15px 15px 5px; }
  .faq-question-bubble b { font-size: 13px; line-height: 1.4; }
  .faq-toggle { width: 32px; height: 32px; }
  .faq-answer-wrap { max-width: calc(100% - 25px); margin-left: 25px; }
  .faq-answer-wrap p { padding: 12px 14px; font-size: 13px; }
  .cinematic-footer-reveal, .site-footer { min-height: 700px; }
  .site-footer { padding: 0 18px 20px; }
  .footer-marquee { top: 92px; }
  .footer-marquee-track { padding-block: 16px; }
  .footer-marquee-group { gap: 28px; padding-right: 28px; font-size: 11px; }
  .footer-marquee-group i { font-size: 14px; }
  .footer-center { padding-top: 118px; }
  .footer-center h2 { font-size: clamp(47px, 15vw, 72px); }
  .footer-lead { max-width: 340px; margin: 18px auto 26px; }
  .footer-actions { gap: 10px; }
  .footer-navigation-row, .footer-secondary-row { gap: 8px; }
  .footer-pill { min-height: 46px; padding-inline: 18px; font-size: 11px; }
  .footer-start-button { width: 100%; max-width: 340px; }
  .footer-navigation-row { width: 100%; }
  .footer-navigation-row .footer-pill { flex: 1; min-width: 92px; padding-inline: 12px; }
  .footer-pill-secondary { min-height: 38px; padding-inline: 13px; font-size: 9px; }
  .footer-bottom { grid-template-columns: 1fr auto; gap: 14px; }
  .footer-copyright { max-width: 175px; line-height: 1.6; }
  .footer-credit { grid-column: 1 / -1; grid-row: 1; justify-self: center; }
  .footer-to-top { grid-column: 2; grid-row: 2; }
}

/* Compact onboarding checklist: intentionally different from the benefits scrollytelling. */
.process-heading { margin-bottom: 48px; }
.onboarding-board {
  --journey-progress: 20%;
  display: grid;
  grid-template-columns: minmax(360px, .88fr) minmax(0, 1.12fr);
  grid-template-areas: "checklist preview";
  gap: 14px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 36px;
  background: #f3f1ea;
  box-shadow: 0 28px 75px rgba(20,20,20,.08);
}
.onboarding-board .journey-stage-column {
  grid-area: preview;
  position: relative;
  top: auto;
  height: auto;
  min-height: 650px;
  pointer-events: auto;
}
.onboarding-board .journey-stage {
  position: relative;
  top: auto;
  height: 100%;
  min-height: 650px;
  border-radius: 25px;
  box-shadow: none;
}
.onboarding-board .journey-steps {
  grid-area: checklist;
  display: flex;
  flex-direction: column;
  gap: 7px;
  min-width: 0;
  margin: 0;
  padding: 18px;
  border: 1px solid rgba(20,20,20,.07);
  border-radius: 25px;
  background: white;
}
.onboarding-list-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  min-height: 67px;
  margin: 0 4px 14px;
  padding: 0 2px 13px;
  border-bottom: 1px solid var(--line);
  color: #8e8c84;
  font: 800 10px/1 "Manrope", sans-serif;
  letter-spacing: 1.4px;
}
.onboarding-list-head > span { display: flex; align-items: center; gap: 9px; }
.onboarding-list-head > span i { width: 9px; height: 9px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 5px rgba(201,255,61,.2); }
.onboarding-list-head b { color: #a3a098; font: inherit; }
.onboarding-list-head em { color: var(--ink); font-style: normal; }
.onboarding-progress { position: absolute; right: 0; bottom: -1px; left: 0; height: 3px; overflow: hidden; border-radius: 4px; background: #eceae3; }
.onboarding-progress span { display: block; width: var(--journey-progress); height: 100%; border-radius: inherit; background: var(--lime); transition: width .45s cubic-bezier(.2,.75,.2,1); }
.onboarding-board .journey-step {
  width: 100%;
  min-height: 0;
  display: grid;
  grid-template-columns: 28px 48px minmax(0,1fr) 30px;
  align-items: center;
  gap: 13px;
  padding: 16px 14px;
  border: 1px solid transparent;
  border-radius: 18px;
  background: transparent;
  color: var(--ink);
  text-align: left;
  opacity: 1;
  transform: none;
  cursor: pointer;
  transition: background .25s ease, border-color .25s ease, transform .25s ease;
}
.onboarding-board .journey-step:hover { background: #f8f7f2; transform: translateX(3px); }
.onboarding-board .journey-step.active { border-color: rgba(20,20,20,.08); background: #f2f2ec; transform: none; }
.onboarding-board .journey-number { color: #aaa79f; font-size: 9px; }
.onboarding-board .journey-step-icon {
  width: 46px;
  height: 46px;
  margin: 0;
  border-radius: 14px;
  background: #efede6;
  color: #85827a;
  font-size: 13px;
  transition: background .25s ease, color .25s ease;
}
.onboarding-board .journey-step.active .journey-step-icon { background: var(--lime); color: var(--ink); }
.journey-step-copy { display: flex; min-width: 0; flex-direction: column; gap: 6px; }
.journey-step-copy strong { font: 750 16px/1.2 "Manrope", sans-serif; letter-spacing: -.45px; }
.journey-step-copy > span { color: var(--muted); font-size: 11px; line-height: 1.45; }
.journey-step-status { width: 25px; height: 25px; display: grid; place-items: center; border: 1px solid #d9d7cf; border-radius: 50%; color: transparent; font: 800 11px/1 "Manrope", sans-serif; }
.onboarding-board .journey-step.complete .journey-step-status { border-color: var(--ink); background: var(--ink); color: var(--lime); }
.onboarding-board .journey-step.active .journey-step-status { border: 7px solid var(--lime); background: white; }
.onboarding-board .journey-scenes { inset: 68px 0 48px; }

@media (max-width: 980px) {
  .onboarding-board { grid-template-columns: 1fr; grid-template-areas: "preview" "checklist"; }
  .onboarding-board .journey-stage-column,
  .onboarding-board .journey-stage { height: 520px; min-height: 520px; }
  .onboarding-board .journey-steps { margin: 0; }
}

@media (max-width: 620px) {
  .process-heading { margin-bottom: 34px; }
  .onboarding-board { gap: 9px; padding: 8px; border-radius: 26px; }
  .onboarding-board .journey-stage-column { position: sticky; z-index: 4; top: 70px; }
  .onboarding-board .journey-stage-column,
  .onboarding-board .journey-stage { height: 330px; min-height: 330px; border-radius: 20px; }
  .onboarding-board .journey-scenes { inset: 52px 0 37px; }
  .onboarding-board .journey-steps { gap: 4px; padding: 11px; border-radius: 20px; }
  .onboarding-list-head { min-height: 56px; margin-bottom: 8px; }
  .onboarding-board .journey-step { grid-template-columns: 22px 42px minmax(0,1fr) 25px; gap: 10px; padding: 13px 10px; border-radius: 15px; }
  .onboarding-board .journey-step-icon { width: 42px; height: 42px; border-radius: 12px; }
  .journey-step-copy strong { font-size: 14px; }
  .journey-step-copy > span { display: none; }
  .onboarding-board .journey-step.active .journey-step-copy > span { display: block; margin-top: 2px; font-size: 10px; }
  .journey-step-status { width: 22px; height: 22px; }
}

@media (max-width: 460px) {
  .onboarding-board .preview-browser { width: 520px; max-width: none; height: 390px; transform: translate(-50%,-50%) scale(.54); }
  .phone-demo { aspect-ratio: .66; }
  .bolt-notification { right: 6px; left: 6px; grid-template-columns: 24px 1fr; gap: 7px; padding: 8px; }
  .bolt-notification > img { width: 24px; height: 24px; padding: 4px; border-radius: 7px; }
  .bolt-notification div > strong { font-size: 7.5px; }
  .bolt-notification p { font-size: 6.4px; }
}

/* MotionSites-inspired content that appears after the existing hero expansion. */
.hero-expanded-panel {
  top: auto;
  right: max(26px, calc((100vw - 1180px) / 2));
  bottom: clamp(28px, 4.5vh, 58px);
  left: max(26px, calc((100vw - 1180px) / 2));
  width: auto;
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(270px, .72fr);
  align-items: end;
  gap: clamp(28px, 5vw, 76px);
  transform: translateY(24px);
}
.hero-final-title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: none;
  margin: 0 0 -.02em;
  color: #e1e0cc;
  font-size: clamp(92px, 12.5vw, 202px);
  font-weight: 600;
  line-height: .7;
  letter-spacing: -.085em;
  text-shadow: 0 8px 50px rgba(0,0,0,.38);
}
.hero-final-word { display: block; position: relative; transform: translateY(28px); opacity: 0; transition: transform .9s cubic-bezier(.16,1,.3,1), opacity .7s ease; }
.hero-final-word:nth-child(2) { margin-left: .32em; transition-delay: .09s; }
.hero-expanded-panel.shown .hero-final-word { transform: translateY(0); opacity: 1; }
.hero-final-accent { color: var(--lime); }
.hero-final-aside { max-width: 375px; padding-bottom: 9px; }
.hero-partner-logo {
  --partner-logo-width: clamp(82px, 8.5vw, 118px);
  display: block;
  width: var(--partner-logo-width);
  height: auto;
  margin: calc(var(--partner-logo-width) * -.214) 0 calc(12px - var(--partner-logo-width) * .212) calc(var(--partner-logo-width) * -.214);
  filter: drop-shadow(0 4px 18px rgba(0,0,0,.28));
}
.hero-final-aside .hero-lead { margin: 0; color: rgba(225,224,204,.76); font-size: 14px; line-height: 1.45; }
.hero-lab-cta { margin-top: 25px; }
.hero-sticky .hero-trust-strip { display: none; }
.post-manifesto-marquee {
  border-top: 1px solid rgba(20,20,20,.16);
  border-bottom: 1px solid rgba(20,20,20,.16);
  background: var(--lime);
  color: var(--ink);
  box-shadow: none;
}
.post-manifesto-marquee .text-marquee-group i { color: rgba(20,20,20,.48); }
.post-manifesto-marquee .text-marquee-row + .text-marquee-row { opacity: .72; }

.manifesto-section { position: relative; padding: 18px 0; overflow: clip; background: #050505; color: #e1e0cc; }
.manifesto-card {
  min-height: min(82vh, 820px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(70px, 10vw, 130px) clamp(24px, 7vw, 100px);
  border: 1px solid rgba(225,224,204,.07);
  border-radius: 34px;
  background: #101010;
  text-align: center;
  box-shadow: inset 0 1px rgba(255,255,255,.025);
}
.manifesto-kicker { margin-bottom: 34px; color: var(--lime); font: 700 10px/1 "Manrope", sans-serif; letter-spacing: 2px; text-transform: uppercase; }
.manifesto-card h2 { max-width: 980px; margin: 0; font-size: clamp(38px, 6vw, 76px); font-weight: 500; line-height: .94; letter-spacing: -.055em; }
.manifesto-card h2 > span,
.manifesto-card h2 > em { display: block; }
.manifesto-card h2 > em { margin-top: .08em; color: var(--lime); font-family: Georgia, "Times New Roman", serif; font-weight: 400; }
.manifesto-reveal { max-width: 890px; margin: clamp(54px, 7vw, 88px) auto 0; color: #dedbc8; font: 500 clamp(21px, 2.55vw, 35px)/1.35 "Manrope", sans-serif; letter-spacing: -.035em; }
.reveal-word { display: inline-block; white-space: nowrap; }
.reveal-letter { opacity: .17; transition: opacity .08s linear; }

@media (max-width: 980px) {
  .hero-expanded-panel { grid-template-columns: minmax(0, 1.6fr) minmax(240px, .8fr); gap: 28px; }
  .hero-final-title { font-size: clamp(86px, 13.5vw, 138px); }
  .hero-final-aside .hero-lead { font-size: 12px; }
}

@media (max-width: 760px) {
  .hero-expanded-panel { right: 17px; bottom: 32px; left: 17px; display: flex; flex-direction: column; align-items: flex-start; gap: 28px; text-align: left; }
  .hero-final-title { width: 100%; font-size: clamp(72px, 22vw, 108px); line-height: .72; }
  .hero-final-word:nth-child(2) { margin-left: .22em; }
  .hero-final-aside { max-width: 520px; padding-bottom: 0; }
  .hero-final-aside .hero-actions { justify-content: flex-start; }
  .hero-partner-logo {
    --partner-logo-width: 82px;
    margin-bottom: calc(8px - var(--partner-logo-width) * .212);
  }
  .hero-final-aside .hero-lead { max-width: 430px; margin: 0; font-size: 13px; text-align: left; }
  .hero-lab-cta { margin-top: 20px; }
  .manifesto-section { padding: 9px 0; }
  .manifesto-card { min-height: 76vh; padding: 70px 22px; border-radius: 25px; }
  .manifesto-kicker { margin-bottom: 25px; }
  .manifesto-card h2 { font-size: clamp(36px, 10.7vw, 55px); }
  .manifesto-reveal { margin-top: 48px; font-size: clamp(19px, 5.5vw, 27px); }
}

/* Shared animated CTA, adapted from the supplied AntiMetalButton component. */
.anti-metal-button {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  width: max-content;
  min-width: 144px;
  max-width: 100%;
  height: 44px;
  align-items: center;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: 12px;
  background: linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%);
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 4px 12px rgba(0,0,0,.18);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -.02em;
  cursor: pointer;
  transition: transform .2s ease;
}
.anti-metal-button:hover { transform: translateY(-1px); }
.anti-metal-button:active { transform: scale(.98); }
.anti-metal-button:focus-visible { outline: 0; box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 4px 12px rgba(0,0,0,.18), 0 0 0 3px rgba(201,255,61,.62); }
.anti-metal-button__label {
  position: relative;
  z-index: 0;
  display: block;
  width: 100%;
  padding: 0 16px 0 58px;
  color: #fff;
  line-height: 44px;
  text-align: right;
  white-space: nowrap;
}
.anti-metal-button__track {
  position: absolute;
  z-index: 1;
  top: 4px;
  bottom: 4px;
  left: 4px;
  display: flex;
  width: 36px;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  overflow: hidden;
  padding: 0 10px 0 12px;
  border-radius: 7px;
  background: linear-gradient(180deg, #d6f54a 0%, #c5ea2c 100%);
  color: #0f0f0f;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.4), inset 0 -2px 4px rgba(0,0,0,.12), 0 2px 4px rgba(0,0,0,.08);
  will-change: width;
  transition: width .45s cubic-bezier(.16,1,.3,1);
}
.anti-metal-button:hover .anti-metal-button__track,
.anti-metal-button:focus-visible .anti-metal-button__track { width: calc(100% - 8px); }
.anti-metal-button__chevron { width: 14px; height: 16px; flex: 0 0 14px; overflow: visible; }
.anti-metal-button__dot {
  transform-box: fill-box;
  transform-origin: center;
  animation: anti-metal-dot-wave 1.4s ease-in-out infinite;
}
@keyframes anti-metal-dot-wave {
  0%, 70%, 100% { opacity: .25; transform: scale(.85); }
  35% { opacity: 1; transform: scale(1); }
}

.kinetic-menu-link.anti-metal-button {
  align-self: flex-start;
  display: inline-flex;
  grid-template-columns: none;
  gap: 0;
  margin-top: clamp(18px, 3vh, 34px);
  padding: 0;
  border-bottom: 0;
  opacity: 0;
  color: #fff;
  transition: transform .55s cubic-bezier(.2,.8,.2,1), opacity .45s ease;
}
.kinetic-menu-link.anti-metal-button::before { display: none; }
.kinetic-menu-link.anti-metal-button:hover { padding: 0; color: #fff; }
.kinetic-menu-link.anti-metal-button:hover > span { transform: none; }
.kinetic-menu-link.anti-metal-button .anti-metal-button__label { font: 600 14px/44px "DM Sans", sans-serif; letter-spacing: -.02em; }
.kinetic-menu-link.anti-metal-button .anti-metal-button__track { font-size: 0; }

@media (max-width: 760px) {
  .anti-metal-button.nav-cta { display: none; }
  .kinetic-menu-link.anti-metal-button { margin-top: 22px; }
  .hero-lab-cta { margin-top: 20px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .hero-media video { display: none; }
  .hero-reduced-motion { height: 100vh; min-height: 650px; }
  .text-marquee-track { animation: none; }
  .journey-scene *, .journey-scene::before, .journey-scene::after { animation: none !important; }
  .scene-plan .demo-percent-option { border-color: #161616; background: #f3ffd5; }
  .scene-plan .demo-percent-option > i { border-color: #111; box-shadow: inset 0 0 0 3px white; background: #111; }
  .scene-payout .demo-cursor, .scene-plan .demo-cursor, .scene-form .demo-cursor { display: none; }
  .kinetic-menu *, .kinetic-menu *::before, .kinetic-menu *::after { transition-duration: .01ms !important; }
  .anti-metal-button__dot { animation: none !important; opacity: 1; }
}

/* Grounded Aapni Fleet assistant */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.fleet-assistant {
  position: fixed;
  z-index: 90;
  right: 22px;
  bottom: 22px;
  font-family: "DM Sans", sans-serif;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity .28s ease, transform .38s cubic-bezier(.16,1,.3,1), visibility 0s linear .38s;
}

.fleet-assistant.ready {
  opacity: 1;
  visibility: visible;
  transform: none;
  pointer-events: auto;
  transition-delay: 0s;
}

.fleet-assistant-launcher {
  min-height: 58px;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 7px 17px 7px 7px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  background: #11120f;
  color: #fff;
  box-shadow: 0 18px 50px rgba(0,0,0,.28), inset 0 1px rgba(255,255,255,.08);
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease;
}

.fleet-assistant-launcher:hover { transform: translateY(-2px); box-shadow: 0 22px 58px rgba(0,0,0,.34), inset 0 1px rgba(255,255,255,.08); }
.fleet-assistant-launcher:focus-visible, .fleet-assistant-close:focus-visible, .fleet-assistant-suggestions button:focus-visible, .fleet-assistant-form input:focus-visible, .fleet-assistant-form button:focus-visible { outline: 3px solid rgba(201,255,61,.72); outline-offset: 2px; }
.fleet-assistant.open .fleet-assistant-launcher { transform: scale(.96); opacity: 0; pointer-events: none; }

.fleet-assistant-launcher-logo {
  position: relative;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  overflow: visible;
  border-radius: 50%;
  background: var(--lime);
}

.fleet-assistant-launcher-logo img { display: block; width: 100%; height: 100%; border-radius: inherit; object-fit: cover; }
.fleet-assistant-launcher-logo i { position: absolute; right: 0; bottom: 1px; width: 11px; height: 11px; border: 2px solid #11120f; border-radius: 50%; background: #83bd19; }
.fleet-assistant-launcher-label { font: 700 13px/1 "Manrope", sans-serif; white-space: nowrap; }

.fleet-assistant-panel {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(390px, calc(100vw - 24px));
  height: min(610px, calc(100svh - 40px));
  display: grid;
  grid-template-rows: auto 1fr auto auto auto;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 28px;
  background: #e1e0cc;
  color: var(--ink);
  box-shadow: 0 28px 90px rgba(0,0,0,.4), inset 0 1px rgba(255,255,255,.62);
  opacity: 0;
  transform: translateY(18px) scale(.96);
  transform-origin: right bottom;
  pointer-events: none;
  transition: opacity .24s ease, transform .36s cubic-bezier(.16,1,.3,1);
}

.fleet-assistant.open .fleet-assistant-panel { opacity: 1; transform: none; pointer-events: auto; }
.fleet-assistant-head { min-height: 76px; display: flex; align-items: center; gap: 11px; padding: 14px 15px; border-bottom: 1px solid rgba(20,20,20,.1); background: #171914; color: #f4f3e7; }
.fleet-assistant-avatar { width: 44px; height: 44px; flex: 0 0 auto; overflow: hidden; border-radius: 14px 14px 14px 5px; background: var(--lime); transform: rotate(-3deg); }
.fleet-assistant-avatar img { display: block; width: 100%; height: 100%; object-fit: cover; }
.fleet-assistant-identity { min-width: 0; display: flex; flex: 1; flex-direction: column; gap: 6px; }
.fleet-assistant-identity strong { overflow: hidden; font: 800 14px/1 "Manrope", sans-serif; text-overflow: ellipsis; white-space: nowrap; }
.fleet-assistant-identity small { display: flex; align-items: center; gap: 6px; color: rgba(244,243,231,.6); font: 700 9px/1 "Manrope", sans-serif; letter-spacing: .55px; text-transform: uppercase; }
.fleet-assistant-identity small i { width: 7px; height: 7px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 4px rgba(201,255,61,.12); }
.fleet-assistant-close { width: 38px; height: 38px; display: grid; flex: 0 0 auto; place-items: center; padding: 0 0 2px; border: 1px solid rgba(255,255,255,.14); border-radius: 50%; background: rgba(255,255,255,.06); color: #fff; font-size: 25px; line-height: 1; cursor: pointer; }

.fleet-assistant-messages { display: flex; flex-direction: column; gap: 9px; min-height: 0; overflow-y: auto; overscroll-behavior: contain; padding: 16px 14px 8px; scrollbar-width: thin; scrollbar-color: rgba(20,20,20,.22) transparent; }
.fleet-assistant-message { max-width: 86%; padding: 11px 13px; border-radius: 17px; font-size: 13px; line-height: 1.5; overflow-wrap: anywhere; animation: fleet-message-in .28s cubic-bezier(.16,1,.3,1) both; }
.fleet-assistant-message-bot { align-self: flex-start; border: 1px solid rgba(20,20,20,.08); border-bottom-left-radius: 5px; background: #f8f7ef; box-shadow: 0 7px 18px rgba(20,20,20,.06); }
.fleet-assistant-message-user { align-self: flex-end; border-bottom-right-radius: 5px; background: var(--lime); box-shadow: 0 9px 20px rgba(112,146,18,.16); }
.fleet-assistant-message-error { color: #752c22; background: #fff1ed; border-color: rgba(117,44,34,.15); }
.fleet-assistant-message-typing { display: flex; align-items: center; gap: 5px; width: fit-content; color: rgba(20,20,20,.54); }
.fleet-assistant-message-typing i { width: 5px; height: 5px; border-radius: 50%; background: currentColor; animation: fleet-typing 1s ease-in-out infinite; }
.fleet-assistant-message-typing i:nth-child(2) { animation-delay: .13s; }
.fleet-assistant-message-typing i:nth-child(3) { animation-delay: .26s; }
@keyframes fleet-message-in { from { opacity: 0; transform: translateY(6px) scale(.98); } }
@keyframes fleet-typing { 0%, 60%, 100% { opacity: .35; transform: translateY(0); } 30% { opacity: 1; transform: translateY(-3px); } }

.fleet-assistant-suggestions { display: flex; gap: 7px; overflow-x: auto; padding: 8px 14px 9px; scrollbar-width: none; }
.fleet-assistant-suggestions::-webkit-scrollbar { display: none; }
.fleet-assistant-suggestions button { flex: 0 0 auto; max-width: 230px; padding: 8px 11px; overflow: hidden; border: 1px solid rgba(20,20,20,.13); border-radius: 999px; background: rgba(255,255,255,.52); color: rgba(20,20,20,.75); font: 700 10px/1.2 "Manrope", sans-serif; text-overflow: ellipsis; white-space: nowrap; cursor: pointer; transition: border-color .2s ease, background .2s ease; }
.fleet-assistant-suggestions button:hover { border-color: rgba(108,138,25,.32); background: rgba(201,255,61,.24); }

.fleet-assistant-form { position: relative; display: flex; gap: 8px; padding: 0 14px 10px; }
.fleet-assistant-form input[type="text"]:not(.fleet-assistant-trap) { min-width: 0; height: 48px; flex: 1; padding: 0 50px 0 14px; border: 1px solid rgba(20,20,20,.13); border-radius: 15px; outline: 0; background: #fffef9; color: var(--ink); font-size: 13px; }
.fleet-assistant-form input::placeholder { color: rgba(20,20,20,.42); }
.fleet-assistant-form button { position: absolute; right: 19px; top: 5px; width: 38px; height: 38px; display: grid; place-items: center; padding: 0; border: 0; border-radius: 12px; background: #171914; color: var(--lime); font-size: 20px; cursor: pointer; }
.fleet-assistant-form button:disabled { opacity: .4; cursor: wait; }
.fleet-assistant-trap { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; opacity: 0 !important; }
.fleet-assistant-note { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 0 15px 13px; color: rgba(20,20,20,.48); font-size: 9px; line-height: 1.35; }
.fleet-assistant-note span { max-width: 210px; }
.fleet-assistant-note a { flex: 0 0 auto; color: var(--ink); font-weight: 800; text-decoration: underline; text-decoration-color: rgba(20,20,20,.25); text-underline-offset: 3px; }

html[lang="ur"] body { font-family: "Noto Naskh Arabic", "Segoe UI", Tahoma, sans-serif; }
html[dir="rtl"] .language-menu { right: 0; left: auto; }
html[dir="rtl"] .language-option { text-align: right; }
html[dir="rtl"] .language-check { margin-right: auto; margin-left: 0; }
html[dir="rtl"] .nav-menu-icon i:nth-child(2) { margin-right: auto; margin-left: 0; }
html[dir="rtl"] .hero-expanded-panel { text-align: right; }
html[dir="rtl"] .hero-proof div { margin-right: 0; margin-left: 25px; padding-right: 0; padding-left: 25px; border-right: 0; border-left: 1px solid rgba(255,255,255,.12); }
html[dir="rtl"] .hero-proof div:last-child { margin-left: 0; padding-left: 0; border-left: 0; }
html[dir="rtl"] .anti-metal-button__chevron,
html[dir="rtl"] .text-link > span,
html[dir="rtl"] .footer-pill svg { transform: scaleX(-1); }
html[dir="rtl"] .fleet-assistant-panel { transform-origin: left bottom; }
html[dir="rtl"] .fleet-assistant-message-bot { border-radius: 17px 17px 5px 17px; }
html[dir="rtl"] .fleet-assistant-message-user { border-radius: 17px 17px 17px 5px; }
html[dir="rtl"] .fleet-assistant-form input[type="text"]:not(.fleet-assistant-trap) { padding-right: 14px; padding-left: 50px; text-align: right; }
html[dir="rtl"] .fleet-assistant-form button { right: auto; left: 19px; transform: scaleX(-1); }
html[dir="rtl"] .fleet-assistant-trap { right: -9999px !important; left: auto !important; }

@media (max-width: 760px) {
  html[dir="rtl"] .hero-expanded-panel { align-items: flex-end; text-align: right; }
}

@media (max-width: 620px) {
  .fleet-assistant { right: 12px; bottom: 12px; }
  .fleet-assistant-panel { width: calc(100vw - 24px); height: min(620px, calc(100svh - 24px)); border-radius: 24px; }
  .fleet-assistant-launcher { min-height: 54px; }
  .fleet-assistant-launcher-logo { width: 40px; height: 40px; }
  .fleet-assistant-note span { max-width: 185px; }
}
