 /* ═══════════════════════════════════════
        VARIABLES & RESET
═══════════════════════════════════════ */
 :root {
     --o: #F5A623;
     --o2: #FF6B35;
     --b: #2D9CDB;
     --g: #22C55E;
     --bg: #060813;
     --bg2: #0B0F1E;
     --card: #0F1629;
     --card2: #141C30;
     --border: rgba(255, 255, 255, 0.065);
     --border2: rgba(255, 255, 255, 0.12);
     --text: #EDF0FF;
     --muted: #7585AB;
     --dim: #2E3A52;
     --sh: 0 32px 80px rgba(0, 0, 0, 0.7);
     --font-h: "Poppins", sans-serif;
     --font-b: "Poppins", sans-serif;
 }

 [data-theme="light"] {
     --bg: #F2F4FB;
     --bg2: #E8ECFA;
     --card: #FFFFFF;
     --card2: #EEF2FF;
     --border: rgba(0, 0, 0, 0.07);
     --border2: rgba(0, 0, 0, 0.14);
     --text: #0D1126;
     --muted: #4A5980;
     --dim: #B0BECF;
     --sh: 0 20px 60px rgba(0, 0, 0, 0.10);
 }

 *,
 *::before,
 *::after {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 }

 html {
     font-size: 16px;
     scroll-behavior: smooth;
 }

 body {
     font-family: var(--font-b);
     background: var(--bg);
     color: var(--text);
     overflow-x: hidden;
     transition: background .4s, color .4s;
 }

 h1,
 h2,
 h3,
 h4,
 h5 {
     font-family: var(--font-h);
 }

 a {
     text-decoration: none;
     color: inherit;
 }

 button {
     cursor: pointer;
     border: none;
     background: none;
 }

 img {
     display: block;
     max-width: 100%;
 }

 ::-webkit-scrollbar {
     width: 3px;
 }

 ::-webkit-scrollbar-track {
     background: var(--bg);
 }

 ::-webkit-scrollbar-thumb {
     background: var(--o);
     border-radius: 3px;
 }

 ::selection {
     background: rgba(245, 166, 35, .3);
 }

 /* ═══════════════════════════════════════
   WEBGL CANVAS
═══════════════════════════════════════ */
 #webgl-canvas {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     z-index: 0;
     pointer-events: none;
 }

 /* ═══════════════════════════════════════
   SCROLL PROGRESS
═══════════════════════════════════════ */
 #progress-bar {
     position: fixed;
     top: 0;
     left: 0;
     height: 2px;
     background: linear-gradient(90deg, var(--o), var(--b), var(--g));
     z-index: 999;
     width: 0%;
     transition: width .08s linear;
     box-shadow: 0 0 8px var(--o);
 }

 /* ═══════════════════════════════════════
   PAGES
═══════════════════════════════════════ */
 .page {
     display: none;
     position: relative;
     z-index: 1;
 }

 .page.active {
     display: block;
 }

 #home-page {
     display: block;
 }

 /* ═══════════════════════════════════════
   NAV
═══════════════════════════════════════ */
 #nav {
     position: fixed;
     top: 0;
     left: 0;
     right: 0;
     z-index: 500;
     display: flex;
     align-items: center;
     justify-content: space-between;
     padding: 20px 48px;
     transition: all .4s cubic-bezier(.4, 0, .2, 1);
 }

 #nav.scrolled {
     background: rgba(6, 8, 19, 0.9);
     backdrop-filter: blur(28px) saturate(180%);
     border-bottom: 1px solid var(--border);
     padding: 13px 48px;
 }

 [data-theme="light"] #nav.scrolled {
     background: rgba(242, 244, 251, 0.92);
 }

 .nav-logo {
     display: flex;
     align-items: center;
     gap: 10px;
 }

 .nav-logo img {
     height: 36px;
     width: auto;
 }

 .nav-logo-text {
     font-family: var(--font-h);
     font-weight: 800;
     font-size: 17px;
     background: linear-gradient(135deg, var(--o), var(--b));
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
 }

 .nav-right {
     display: flex;
     align-items: center;
     gap: 12px;
 }

 .theme-toggle {
     width: 38px;
     height: 38px;
     border-radius: 50%;
     background: var(--card);
     border: 1px solid var(--border);
     color: var(--muted);
     font-size: 15px;
     display: flex;
     align-items: center;
     justify-content: center;
     transition: all .25s;
 }

 .theme-toggle:hover {
     border-color: var(--o);
     color: var(--o);
     transform: rotate(20deg);
 }

 .nav-cta {
     background: linear-gradient(135deg, var(--o), var(--o2));
     color: #fff;
     border-radius: 50px;
     padding: 10px 22px;
     font-family: var(--font-h);
     font-weight: 700;
     font-size: 13px;
     display: flex;
     align-items: center;
     gap: 6px;
     transition: all .3s;
     box-shadow: 0 4px 20px rgba(245, 166, 35, .3);
 }

 .nav-cta:hover {
     transform: translateY(-2px);
     box-shadow: 0 10px 32px rgba(245, 166, 35, .5);
 }

 /* ═══════════════════════════════════════
   FULL-PAGE SCROLL SECTIONS
═══════════════════════════════════════ */
 .fp-section {
     position: relative;
     min-height: 100vh;
     display: flex;
     align-items: center;
     overflow: hidden;
 }

 /* Sticky image panels */
 .fp-sticky {
     position: sticky;
     top: 0;
     height: 100vh;
     overflow: hidden;
 }

 /* ═══════════════════════════════════════
   PARALLAX LAYERS
═══════════════════════════════════════ */
 .px-layer {
     position: absolute;
     pointer-events: none;
     will-change: transform;
 }

 .px-slow {
     --px-speed: 0.2;
 }

 .px-med {
     --px-speed: 0.45;
 }

 .px-fast {
     --px-speed: 0.7;
 }

 /* ═══════════════════════════════════════
   SECTION 1 — HERO
═══════════════════════════════════════ */
 #s-hero {
     min-height: 100vh;
     padding: 0 6vw;
     padding-top: 90px;
     display: grid;
     grid-template-columns: 1fr 1fr;
     align-items: center;
     gap: 40px;
 }

 .hero-eyebrow {
     display: inline-flex;
     align-items: center;
     gap: 8px;
     background: rgba(245, 166, 35, .08);
     border: 1px solid rgba(245, 166, 35, .2);
     border-radius: 50px;
     padding: 6px 16px;
     font-size: 12px;
     color: var(--o);
     font-weight: 600;
     letter-spacing: .5px;
     margin-bottom: 24px;
 }

 .eyebrow-pulse {
     width: 5px;
     height: 5px;
     background: var(--o);
     border-radius: 50%;
     animation: pulse 2s infinite;
 }

 @keyframes pulse {

     0%,
     100% {
         opacity: 1;
         transform: scale(1)
     }

     50% {
         opacity: .3;
         transform: scale(1.8)
     }
 }

 .hero-title {
     font-size: clamp(48px, 6.5vw, 88px);
     font-weight: 900;
     line-height: .97;
     letter-spacing: -3px;
     margin-bottom: 28px;
 }

 .hero-title .line {
     display: block;
     overflow: hidden;
 }

 .hero-title .word {
     display: inline-block;
     opacity: 0;
     transform: translateY(100%);
     animation: wordReveal .9s cubic-bezier(.16, 1, .3, 1) forwards;
 }

 .hero-title .word:nth-child(1) {
     animation-delay: .1s
 }

 .hero-title .word:nth-child(2) {
     animation-delay: .22s
 }

 .hero-title .word:nth-child(3) {
     animation-delay: .34s
 }

 .hero-title .word:nth-child(4) {
     animation-delay: .46s
 }

 @keyframes wordReveal {
     to {
         opacity: 1;
         transform: translateY(0)
     }
 }

 .accent-grad {
     background: linear-gradient(135deg, var(--o) 0%, var(--o2) 40%, var(--b) 100%);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
 }

 .hero-desc {
     font-size: 17px;
     color: var(--muted);
     line-height: 1.8;
     max-width: 480px;
     margin-bottom: 40px;
     opacity: 0;
     animation: fadeUp .8s .6s forwards;
 }

 @keyframes fadeUp {
     to {
         opacity: 1;
         transform: translateY(0)
     }

     from {
         opacity: 0;
         transform: translateY(20px)
     }
 }

 .hero-actions {
     display: flex;
     gap: 14px;
     flex-wrap: wrap;
     margin-bottom: 56px;
     opacity: 0;
     animation: fadeUp .8s .75s forwards;
 }

 .btn-primary {
     background: linear-gradient(135deg, var(--o), var(--o2));
     color: #fff;
     border-radius: 14px;
     padding: 15px 34px;
     font-family: var(--font-h);
     font-weight: 700;
     font-size: 15px;
     display: inline-flex;
     align-items: center;
     gap: 8px;
     transition: all .3s;
     box-shadow: 0 8px 28px rgba(245, 166, 35, .4);
 }

 .btn-primary:hover {
     transform: translateY(-3px);
     box-shadow: 0 16px 44px rgba(245, 166, 35, .55);
 }

 .btn-ghost {
     background: transparent;
     color: var(--text);
     border: 1.5px solid var(--border2);
     border-radius: 14px;
     padding: 15px 34px;
     font-family: var(--font-h);
     font-weight: 600;
     font-size: 15px;
     display: inline-flex;
     align-items: center;
     gap: 8px;
     transition: all .3s;
 }

 .btn-ghost:hover {
     border-color: var(--b);
     color: var(--b);
     transform: translateY(-3px);
 }

 .hero-stats {
     display: flex;
     gap: 44px;
     flex-wrap: wrap;
     opacity: 0;
     animation: fadeUp .8s .9s forwards;
 }

 .hstat {}

 .hstat-n {
     font-family: var(--font-h);
     font-size: 36px;
     font-weight: 900;
     background: linear-gradient(135deg, var(--o), var(--b));
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     line-height: 1;
 }

 .hstat-l {
     font-size: 11px;
     color: var(--muted);
     margin-top: 4px;
     font-weight: 500;
     letter-spacing: .3px;
 }

 /* HERO RIGHT — phone + floaters */
 .hero-right {
     position: relative;
     height: 620px;
     opacity: 0;
     animation: fadeUp .9s .3s forwards;
 }

 .hero-phone {
     position: absolute;
     right: 0;
     top: 50%;
     transform: translateY(-50%);
     width: 270px;
     will-change: transform;
 }

 .phone-frame {
     background: var(--card2);
     border: 2px solid var(--border2);
     border-radius: 46px;
     overflow: hidden;
     box-shadow: 0 40px 100px rgba(0, 0, 0, .7), 0 0 0 1px rgba(255, 255, 255, .04), inset 0 0 0 1px rgba(255, 255, 255, .04);
 }

 .phone-notch {
     width: 90px;
     height: 26px;
     background: var(--bg);
     border-radius: 0 0 16px 16px;
     margin: 0 auto 14px;
 }

 .phone-map-area {
     height: 190px;
     background: linear-gradient(135deg, rgba(45, 156, 219, .06), rgba(245, 166, 35, .04));
     margin: 0 14px;
     border-radius: 18px;
     overflow: hidden;
     position: relative;
 }

 .pm-grid {
     position: absolute;
     inset: 0;
     background-image:
         linear-gradient(rgba(45, 156, 219, .07) 1px, transparent 1px),
         linear-gradient(90deg, rgba(45, 156, 219, .07) 1px, transparent 1px);
     background-size: 24px 24px;
 }

 .pm-route {
     position: absolute;
     top: 42%;
     left: 18%;
     right: 12%;
     height: 2px;
     background: linear-gradient(90deg, var(--o), var(--b));
     border-radius: 2px;
 }

 .pm-dot {
     position: absolute;
     width: 10px;
     height: 10px;
     border-radius: 50%;
     border: 2px solid #fff;
 }

 .pm-dot.a {
     background: var(--o);
     top: calc(42%-5px);
     left: 16%;
 }

 .pm-dot.b {
     background: var(--b);
     top: calc(42%-5px);
     right: 10%;
 }

 .pm-rider {
     position: absolute;
     width: 18px;
     height: 18px;
     background: linear-gradient(135deg, var(--o), var(--b));
     border-radius: 50%;
     border: 2px solid #fff;
     top: calc(42%-9px);
     left: 50%;
     box-shadow: 0 0 12px var(--o);
     animation: riderSlide 3.5s ease-in-out infinite;
 }

 @keyframes riderSlide {
     0% {
         left: 20%
     }

     50% {
         left: 65%
     }

     100% {
         left: 20%
     }
 }

 .phone-cards {
     padding: 14px;
     display: flex;
     flex-direction: column;
     gap: 10px;
 }

 .phone-card {
     background: var(--bg);
     border: 1px solid var(--border);
     border-radius: 14px;
     padding: 11px 14px;
     display: flex;
     align-items: center;
     justify-content: space-between;
 }

 .pc-l {
     font-size: 10px;
     color: var(--muted);
 }

 .pc-v {
     font-size: 12px;
     font-weight: 700;
 }

 .pc-badge {
     font-size: 9px;
     font-weight: 700;
     padding: 3px 8px;
     border-radius: 50px;
 }

 .pc-badge.g {
     background: rgba(34, 197, 94, .12);
     color: var(--g);
 }

 .pc-badge.o {
     background: rgba(245, 166, 35, .12);
     color: var(--o);
 }

 /* Float cards around phone */
 .fc {
     position: absolute;
     background: var(--card);
     border: 1px solid var(--border2);
     border-radius: 20px;
     padding: 14px 18px;
     box-shadow: var(--sh);
     will-change: transform;
 }

 .fc1 {
     left: -110px;
     top: 70px;
     min-width: 170px;
     animation: floatA 5s ease-in-out infinite;
 }

 .fc2 {
     left: -90px;
     bottom: 90px;
     min-width: 190px;
     animation: floatB 6s ease-in-out infinite 1.2s;
 }

 .fc3 {
     right: -10px;
     top: 30px;
     min-width: 150px;
     animation: floatA 4.5s ease-in-out infinite 0.8s;
 }

 @keyframes floatA {

     0%,
     100% {
         transform: translateY(0)
     }

     50% {
         transform: translateY(-14px)
     }
 }

 @keyframes floatB {

     0%,
     100% {
         transform: translateY(0)
     }

     50% {
         transform: translateY(12px)
     }
 }

 .fc-ico {
     font-size: 20px;
     margin-bottom: 7px;
 }

 .fc-lbl {
     font-size: 10px;
     color: var(--muted);
 }

 .fc-val {
     font-size: 17px;
     font-weight: 700;
     font-family: var(--font-h);
 }

 .fc-val.o {
     color: var(--o);
 }

 .fc-val.b {
     color: var(--b);
 }

 .fc-val.g {
     color: var(--g);
 }

 /* ═══════════════════════════════════════
   SECTION 2 — JOURNEY (sticky horizontal)
═══════════════════════════════════════ */
 #s-journey {
     position: relative;
     height: 500vh;
 }

 .journey-sticky {
     position: sticky;
     top: 0;
     height: 100vh;
     overflow: hidden;
 }

 .journey-panels {
     display: flex;
     width: 500%;
     height: 100%;
     will-change: transform;
 }

 .journey-panel {
     width: 20%;
     height: 100%;
     flex-shrink: 0;
     display: grid;
     grid-template-columns: 1fr 1fr;
     align-items: center;
     padding: 80px 5vw 80px 7vw;
     box-sizing: border-box;
     gap: 40px;
 }

 /* LEFT: text content */
 .panel-content {
     display: flex;
     flex-direction: column;
     justify-content: center;
     z-index: 2;
 }

 .panel-step {
     font-size: 11px;
     font-weight: 700;
     letter-spacing: 3px;
     text-transform: uppercase;
     color: var(--o);
     margin-bottom: 18px;
     display: flex;
     align-items: center;
     gap: 10px;
 }

 .panel-step::before {
     content: "";
     width: 28px;
     height: 2px;
     background: linear-gradient(90deg, var(--o), var(--b));
     flex-shrink: 0;
 }

 .panel-h {
     font-size: clamp(32px, 3.5vw, 54px);
     font-weight: 800;
     letter-spacing: -1.5px;
     line-height: 1.12;
     margin-bottom: 18px;
 }

 .panel-p {
     font-size: 15px;
     color: var(--muted);
     line-height: 1.85;
     margin-bottom: 28px;
     font-weight: 400;
 }

 .panel-tags {
     display: flex;
     flex-wrap: wrap;
     gap: 8px;
 }

 .ptag {
     font-size: 11px;
     font-weight: 600;
     padding: 5px 14px;
     border-radius: 50px;
 }

 .ptag-o {
     background: rgba(245, 166, 35, .1);
     border: 1px solid rgba(245, 166, 35, .2);
     color: var(--o);
 }

 .ptag-b {
     background: rgba(45, 156, 219, .1);
     border: 1px solid rgba(45, 156, 219, .2);
     color: var(--b);
 }

 .ptag-g {
     background: rgba(34, 197, 94, .1);
     border: 1px solid rgba(34, 197, 94, .2);
     color: var(--g);
 }

 /* RIGHT: SVG illustration */
 .panel-scene {
     display: flex;
     align-items: center;
     justify-content: center;
     height: 100%;
     pointer-events: none;
 }

 .panel-scene svg {
     width: 100%;
     max-width: 520px;
     height: auto;
     max-height: 75vh;
 }

 /* Journey progress dots */
 .journey-progress {
     position: absolute;
     bottom: 32px;
     left: 50%;
     transform: translateX(-50%);
     display: flex;
     gap: 10px;
     z-index: 10;
 }

 .jp-dot {
     width: 8px;
     height: 8px;
     border-radius: 50%;
     background: var(--dim);
     transition: all .4s;
 }

 .jp-dot.active {
     background: var(--o);
     transform: scale(1.5);
     box-shadow: 0 0 8px var(--o);
 }

 /* Big background step counter */
 .journey-counter {
     position: absolute;
     bottom: 20px;
     right: 5vw;
     font-family: var(--font-h);
     font-size: 160px;
     font-weight: 900;
     color: rgba(245, 166, 35, .04);
     line-height: 1;
     z-index: 0;
     pointer-events: none;
     user-select: none;
 }

 /* ═══════════════════════════════════════
   SECTION 3 — HOW IT WORKS
═══════════════════════════════════════ */
 #s-hiw {
     padding: 140px 6vw;
 }

 .hiw-inner {
     max-width: 1300px;
     margin: 0 auto;
 }

 .sec-eyebrow {
     font-size: 11px;
     font-weight: 700;
     letter-spacing: 3.5px;
     text-transform: uppercase;
     color: var(--o);
     margin-bottom: 16px;
     display: flex;
     align-items: center;
     gap: 10px;
 }

 .sec-eyebrow::before {
     content: "";
     width: 24px;
     height: 2px;
     background: linear-gradient(90deg, var(--o), var(--b));
     display: block;
 }

 .sec-title {
     font-size: clamp(34px, 4.5vw, 60px);
     font-weight: 900;
     letter-spacing: -2px;
     line-height: 1.04;
     margin-bottom: 20px;
 }

 .sec-sub {
     font-size: 17px;
     color: var(--muted);
     line-height: 1.8;
     max-width: 520px;
 }

 .hiw-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 24px;
     margin-top: 72px;
 }

 .hiw-card {
     background: var(--card);
     border: 1px solid var(--border);
     border-radius: 28px;
     padding: 38px;
     position: relative;
     overflow: hidden;
     transition: all .4s cubic-bezier(.4, 0, .2, 1);
 }

 .hiw-card::after {
     content: "";
     position: absolute;
     inset: 0;
     background: linear-gradient(135deg, rgba(245, 166, 35, .05), transparent);
     opacity: 0;
     transition: opacity .4s;
 }

 .hiw-card:hover {
     transform: translateY(-10px);
     box-shadow: var(--sh);
     border-color: rgba(245, 166, 35, .2);
 }

 .hiw-card:hover::after {
     opacity: 1;
 }

 .hiw-num {
     font-family: var(--font-h);
     font-size: 72px;
     font-weight: 900;
     line-height: 1;
     margin-bottom: 20px;
     background: linear-gradient(135deg, rgba(245, 166, 35, .3), rgba(45, 156, 219, .2));
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
 }

 .hiw-icon {
     font-size: 40px;
     margin-bottom: 18px;
 }

 .hiw-card h3 {
     font-size: 21px;
     font-weight: 700;
     margin-bottom: 12px;
 }

 .hiw-card p {
     font-size: 14px;
     color: var(--muted);
     line-height: 1.8;
 }

 .hiw-tags {
     display: flex;
     flex-wrap: wrap;
     gap: 7px;
     margin-top: 22px;
 }

 /* ═══════════════════════════════════════
   SECTION 4 — LIVE TRACKING DEMO
═══════════════════════════════════════ */
 #s-tracking {
     padding: 140px 6vw;
 }

 .tracking-inner {
     max-width: 1300px;
     margin: 0 auto;
     display: grid;
     grid-template-columns: 1.1fr 0.9fr;
     gap: 80px;
     align-items: center;
 }

 /* Canvas map panel */
 .track-panel {
     position: relative;
     border-radius: 32px;
     overflow: hidden;
     background: var(--card);
     border: 1px solid var(--border);
     box-shadow: var(--sh);
 }

 .track-panel canvas {
     width: 100%;
     height: 480px;
     display: block;
 }

 .track-panel-overlay {
     position: absolute;
     bottom: 0;
     left: 0;
     right: 0;
     background: linear-gradient(0deg, rgba(15, 22, 41, .98) 0%, transparent 100%);
     padding: 24px;
     display: flex;
     gap: 12px;
     flex-wrap: wrap;
 }

 .t-chip {
     background: rgba(15, 22, 41, .8);
     backdrop-filter: blur(12px);
     border: 1px solid var(--border);
     border-radius: 12px;
     padding: 9px 15px;
 }

 .t-chip-l {
     font-size: 9px;
     color: var(--muted);
     font-weight: 700;
     text-transform: uppercase;
     letter-spacing: 1px;
 }

 .t-chip-v {
     font-size: 13px;
     font-weight: 700;
     font-family: var(--font-h);
 }

 /* Tracking feature list */
 .track-feats {}

 .tf {
     display: flex;
     gap: 22px;
     align-items: flex-start;
     padding: 26px 0;
     border-bottom: 1px solid var(--border);
 }

 .tf:last-child {
     border-bottom: none;
 }

 .tf-n {
     font-family: var(--font-h);
     font-size: 32px;
     font-weight: 900;
     color: var(--dim);
     min-width: 44px;
     line-height: 1;
 }

 .tf-c h4 {
     font-size: 17px;
     font-weight: 700;
     margin-bottom: 7px;
 }

 .tf-c p {
     font-size: 14px;
     color: var(--muted);
     line-height: 1.75;
 }

 /* ═══════════════════════════════════════
   SECTION 5 — STATUS LIFECYCLE
═══════════════════════════════════════ */
 #s-lifecycle {
     padding: 140px 6vw;
     text-align: center;
 }

 .lc-inner {
     max-width: 1300px;
     margin: 0 auto;
 }

 .lc-track {
     display: flex;
     align-items: flex-start;
     justify-content: center;
     gap: 0;
     margin-top: 72px;
     overflow-x: auto;
     padding-bottom: 20px;
 }

 .lc-step {
     display: flex;
     flex-direction: column;
     align-items: center;
     gap: 12px;
     flex: 1;
     min-width: 88px;
     position: relative;
     cursor: pointer;
 }

 .lc-step:not(:last-child)::after {
     content: "";
     position: absolute;
     top: 27px;
     left: calc(50% + 27px);
     width: calc(100% - 54px);
     height: 2px;
     background: linear-gradient(90deg, var(--o), var(--b));
     z-index: 0;
     opacity: .25;
 }

 .lc-dot {
     width: 54px;
     height: 54px;
     border-radius: 50%;
     background: var(--card);
     border: 2px solid var(--border);
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 20px;
     z-index: 1;
     position: relative;
     transition: all .4s;
 }

 .lc-step.on .lc-dot {
     background: linear-gradient(135deg, var(--o), var(--b));
     border-color: transparent;
     box-shadow: 0 0 0 8px rgba(245, 166, 35, .1), 0 8px 28px rgba(245, 166, 35, .4);
     transform: scale(1.18);
 }

 .lc-label {
     font-size: 10px;
     font-weight: 600;
     color: var(--muted);
     text-align: center;
     line-height: 1.5;
 }

 .lc-step.on .lc-label {
     color: var(--text);
 }

 .lc-demo {
     max-width: 660px;
     margin: 48px auto 0;
     background: var(--card);
     border: 1px solid var(--border);
     border-radius: 24px;
     padding: 28px 36px;
 }

 .lc-demo-title {
     font-size: 13px;
     color: var(--muted);
     margin-bottom: 14px;
 }

 .lc-bar {
     height: 5px;
     background: var(--card2);
     border-radius: 5px;
     overflow: hidden;
 }

 .lc-fill {
     height: 100%;
     width: 11%;
     background: linear-gradient(90deg, var(--o), var(--b));
     border-radius: 5px;
     transition: width .6s cubic-bezier(.4, 0, .2, 1);
 }

 .lc-meta {
     display: flex;
     justify-content: space-between;
     margin-top: 10px;
     font-size: 11px;
     color: var(--muted);
 }

 /* ═══════════════════════════════════════
   SECTION 6 — BENTO GRID
═══════════════════════════════════════ */
 #s-bento {
     padding: 140px 6vw;
 }

 .bento-inner {
     max-width: 1300px;
     margin: 0 auto;
 }

 .bento-grid {
     display: grid;
     grid-template-columns: repeat(12, 1fr);
     gap: 18px;
     margin-top: 72px;
 }

 .b {
     background: var(--card);
     border: 1px solid var(--border);
     border-radius: 26px;
     padding: 32px;
     position: relative;
     overflow: hidden;
     transition: all .4s;
 }

 .b::before {
     content: "";
     position: absolute;
     inset: 0;
     background: linear-gradient(135deg, rgba(245, 166, 35, .05), transparent);
     opacity: 0;
     transition: .3s;
 }

 .b:hover {
     transform: translateY(-7px);
     box-shadow: var(--sh);
     border-color: rgba(245, 166, 35, .18);
 }

 .b:hover::before {
     opacity: 1;
 }

 .c7 {
     grid-column: span 7
 }

 .c5 {
     grid-column: span 5
 }

 .c4 {
     grid-column: span 4
 }

 .c6 {
     grid-column: span 6
 }

 .c8 {
     grid-column: span 8
 }

 .c12 {
     grid-column: span 12
 }

 .b-ico {
     font-size: 34px;
     margin-bottom: 16px;
 }

 .b h3 {
     font-size: 19px;
     font-weight: 700;
     margin-bottom: 10px;
 }

 .b p {
     font-size: 13px;
     color: var(--muted);
     line-height: 1.8;
 }

 .b-tags {
     display: flex;
     flex-wrap: wrap;
     gap: 7px;
     margin-top: 18px;
 }

 /* Mini map in bento */
 .b-map-mini {
     height: 130px;
     margin-top: 18px;
     border-radius: 16px;
     background: linear-gradient(135deg, rgba(45, 156, 219, .05), rgba(245, 166, 35, .03));
     border: 1px solid var(--border);
     position: relative;
     overflow: hidden;
 }

 .bmm-grid {
     position: absolute;
     inset: 0;
     background-image: linear-gradient(rgba(45, 156, 219, .06) 1px, transparent 1px), linear-gradient(90deg, rgba(45, 156, 219, .06) 1px, transparent 1px);
     background-size: 20px 20px;
 }

 .bmm-line {
     position: absolute;
     height: 2px;
     background: linear-gradient(90deg, var(--o), var(--b));
     top: 50%;
     left: 15%;
     right: 15%;
     transform: translateY(-50%) rotate(-5deg);
     border-radius: 2px;
 }

 .bmm-dot {
     position: absolute;
     width: 9px;
     height: 9px;
     border-radius: 50%;
     border: 2px solid #fff;
 }

 .bmm-dot.a {
     background: var(--o);
     top: calc(50% - 5px);
     left: 13%;
 }

 .bmm-dot.b {
     background: var(--b);
     top: calc(50% - 5px);
     right: 13%;
 }

 /* Earnings chart */
 .earn-bars {
     display: flex;
     align-items: flex-end;
     gap: 7px;
     height: 70px;
     margin-top: 18px;
 }

 .eb {
     flex: 1;
     border-radius: 5px 5px 0 0;
     min-height: 18px;
 }

 .eb:nth-child(odd) {
     background: linear-gradient(to top, var(--o), rgba(245, 166, 35, .25));
 }

 .eb:nth-child(even) {
     background: linear-gradient(to top, var(--b), rgba(45, 156, 219, .25));
 }

 /* ═══════════════════════════════════════
   SECTION 7 — CTA
═══════════════════════════════════════ */
 #s-cta {
     min-height: 80vh;
     display: flex;
     align-items: center;
     justify-content: center;
     padding: 120px 6vw;
     text-align: center;
     position: relative;
     overflow: hidden;
 }

 .cta-orb {
     position: absolute;
     border-radius: 50%;
     pointer-events: none;
     animation: orbPulse 5s ease-in-out infinite;
 }

 .cta-orb1 {
     width: 700px;
     height: 700px;
     top: 50%;
     left: 50%;
     transform: translate(-50%, -50%);
     background: radial-gradient(circle, rgba(245, 166, 35, .09), transparent 70%);
 }

 .cta-orb2 {
     width: 400px;
     height: 400px;
     top: 30%;
     left: 30%;
     background: radial-gradient(circle, rgba(45, 156, 219, .07), transparent 70%);
     animation-delay: 1.5s;
 }

 @keyframes orbPulse {

     0%,
     100% {
         transform: translate(-50%, -50%) scale(1)
     }

     50% {
         transform: translate(-50%, -50%) scale(1.12)
     }
 }

 .cta-orb2 {
     animation: orbPulse2 6s ease-in-out infinite 1.5s;
 }

 @keyframes orbPulse2 {

     0%,
     100% {
         transform: scale(1)
     }

     50% {
         transform: scale(1.2)
     }
 }

 .cta-inner {
     max-width: 800px;
     position: relative;
     z-index: 1;
 }

 .cta-inner h2 {
     font-size: clamp(42px, 6vw, 76px);
     font-weight: 900;
     letter-spacing: -2.5px;
     line-height: 1.02;
     margin-bottom: 22px;
 }

 .cta-inner p {
     font-size: 18px;
     color: var(--muted);
     margin-bottom: 50px;
     line-height: 1.75;
 }

 .store-row {
     display: flex;
     gap: 14px;
     justify-content: center;
     flex-wrap: wrap;
 }

 .store-btn {
     display: flex;
     align-items: center;
     gap: 14px;
     background: var(--card);
     border: 1px solid var(--border2);
     border-radius: 18px;
     padding: 15px 26px;
     transition: all .35s;
 }

 .store-btn:hover {
     border-color: var(--o);
     transform: translateY(-5px);
     box-shadow: 0 24px 60px rgba(0, 0, 0, .35);
 }

 .sb-icon {
     font-size: 28px;
 }

 .sb-t small {
     font-size: 10px;
     color: var(--muted);
     display: block;
     letter-spacing: .5px;
 }

 .sb-t strong {
     font-size: 15px;
     font-family: var(--font-h);
     font-weight: 700;
 }

 /* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
 footer {
     position: relative;
     z-index: 1;
     border-top: 1px solid var(--border);
     padding: 64px 6vw 40px;
 }

 .footer-grid {
     max-width: 1300px;
     margin: 0 auto;
     display: grid;
     grid-template-columns: 2.5fr 1fr 1fr 1fr;
     gap: 48px;
     margin-bottom: 48px;
 }

 .footer-brand p {
     color: var(--muted);
     font-size: 14px;
     line-height: 1.8;
     margin-top: 14px;
     max-width: 280px;
 }

 .footer-col h5 {
     font-family: var(--font-h);
     font-size: 11px;
     font-weight: 700;
     text-transform: uppercase;
     letter-spacing: 3px;
     color: var(--dim);
     margin-bottom: 18px;
 }

 .footer-col a {
     display: block;
     color: var(--muted);
     font-size: 14px;
     padding: 6px 0;
     transition: color .2s;
     cursor: pointer;
 }

 .footer-col a:hover {
     color: var(--o);
 }

 .footer-bot {
     max-width: 1300px;
     margin: 0 auto;
     display: flex;
     justify-content: space-between;
     align-items: center;
     padding-top: 30px;
     border-top: 1px solid var(--border);
     flex-wrap: wrap;
     gap: 14px;
 }

 .footer-bot p {
     font-size: 13px;
     color: var(--dim);
 }

 /* ═══════════════════════════════════════
   INNER PAGES
═══════════════════════════════════════ */
 .pg-hdr {
     padding: 130px 6vw 60px;
     text-align: center;
     position: relative;
     z-index: 1;
 }

 .pg-hdr h1 {
     font-size: clamp(36px, 5.5vw, 68px);
     font-weight: 900;
     letter-spacing: -2px;
     margin-bottom: 16px;
 }

 .pg-hdr p {
     font-size: 16px;
     color: var(--muted);
     max-width: 540px;
     margin: 0 auto;
 }

 .pg-body {
     max-width: 820px;
     margin: 0 auto;
     padding: 0 6vw 100px;
     position: relative;
     z-index: 1;
 }

 .pg-body h2 {
     font-size: 26px;
     font-weight: 800;
     margin: 48px 0 16px;
     letter-spacing: -.8px;
 }

 .pg-body h3 {
     font-size: 16px;
     font-weight: 700;
     margin: 26px 0 10px;
     color: var(--o);
 }

 .pg-body p {
     color: var(--muted);
     line-height: 1.9;
     margin-bottom: 16px;
     font-size: 15px;
 }

 .pg-body ul {
     color: var(--muted);
     padding-left: 22px;
     line-height: 2.2;
     font-size: 15px;
 }

 .hl-box {
     background: var(--card);
     border: 1px solid var(--border);
     border-left: 4px solid var(--o);
     border-radius: 0 16px 16px 0;
     padding: 20px 28px;
     margin: 28px 0;
     font-size: 15px;
     color: var(--muted);
     line-height: 1.75;
 }

 /* Contact */
 .contact-wrap {
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 6vw 100px;
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 56px;
     position: relative;
     z-index: 1;
 }

 .ci-row {
     display: flex;
     gap: 18px;
     padding: 22px 0;
     border-bottom: 1px solid var(--border);
 }

 .ci-icon {
     width: 46px;
     height: 46px;
     background: var(--card);
     border: 1px solid var(--border);
     border-radius: 14px;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 19px;
     flex-shrink: 0;
 }

 .ci-t h4 {
     font-size: 14px;
     font-weight: 700;
     margin-bottom: 5px;
 }

 .ci-t p {
     font-size: 13px;
     color: var(--muted);
 }

 .cf {
     background: var(--card);
     border: 1px solid var(--border);
     border-radius: 28px;
     padding: 38px;
 }

 .cf h3 {
     font-size: 22px;
     font-weight: 800;
     margin-bottom: 26px;
 }

 .fg {
     margin-bottom: 18px;
 }

 .fg label {
     display: block;
     font-size: 11px;
     font-weight: 700;
     letter-spacing: .5px;
     text-transform: uppercase;
     color: var(--muted);
     margin-bottom: 8px;
 }

 .fg input,
 .fg textarea,
 .fg select {
     width: 100%;
     background: var(--bg);
     border: 1px solid var(--border);
     border-radius: 12px;
     padding: 13px 16px;
     color: var(--text);
     font-family: var(--font-b);
     font-size: 14px;
     transition: border-color .25s;
     outline: none;
     appearance: none;
 }

 .fg input:focus,
 .fg textarea:focus,
 .fg select:focus {
     border-color: var(--o);
 }

 .fg textarea {
     resize: vertical;
     min-height: 120px;
 }

 .fg-row {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 14px;
 }

 .f-submit {
     width: 100%;
     padding: 15px;
     border: none;
     border-radius: 14px;
     background: linear-gradient(135deg, var(--o), var(--o2));
     color: #fff;
     font-family: var(--font-h);
     font-weight: 800;
     font-size: 15px;
     transition: all .3s;
 }

 .f-submit:hover {
     transform: translateY(-2px);
     box-shadow: 0 14px 36px rgba(245, 166, 35, .4);
 }

 /* FAQ */
 .faq-wrap {
     max-width: 800px;
     margin: 0 auto;
     padding: 0 6vw 100px;
     position: relative;
     z-index: 1;
 }

 .faq-sec-title {
     font-size: 15px;
     font-weight: 700;
     color: var(--o);
     margin: 36px 0 12px;
 }

 .faq-item {
     background: var(--card);
     border: 1px solid var(--border);
     border-radius: 16px;
     margin-bottom: 8px;
     overflow: hidden;
     transition: border-color .25s;
 }

 .faq-item.open {
     border-color: rgba(245, 166, 35, .3);
 }

 .faq-q {
     display: flex;
     justify-content: space-between;
     align-items: center;
     padding: 18px 22px;
     cursor: pointer;
     font-weight: 600;
     font-size: 14px;
 }

 .faq-arr {
     color: var(--o);
     font-size: 20px;
     transition: transform .3s;
     flex-shrink: 0;
 }

 .faq-item.open .faq-arr {
     transform: rotate(180deg);
 }

 .faq-a {
     max-height: 0;
     overflow: hidden;
     transition: max-height .35s ease;
 }

 .faq-item.open .faq-a {
     max-height: 350px;
 }

 .faq-a p {
     padding: 0 22px 20px;
     color: var(--muted);
     line-height: 1.8;
     font-size: 14px;
 }

 /* ═══════════════════════════════════════
   REVEAL ANIMATIONS
═══════════════════════════════════════ */
 .rv {
     opacity: 0;
     transform: translateY(40px);
     transition: opacity .75s ease, transform .75s ease;
 }

 .rv-l {
     opacity: 0;
     transform: translateX(-50px);
     transition: opacity .75s ease, transform .75s ease;
 }

 .rv-r {
     opacity: 0;
     transform: translateX(50px);
     transition: opacity .75s ease, transform .75s ease;
 }

 .rv.in,
 .rv-l.in,
 .rv-r.in {
     opacity: 1;
     transform: none;
 }

 .d1 {
     transition-delay: .1s
 }

 .d2 {
     transition-delay: .2s
 }

 .d3 {
     transition-delay: .3s
 }

 .d4 {
     transition-delay: .4s
 }

 .d5 {
     transition-delay: .5s
 }

 /* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
 @media(max-width:1100px) {
     #s-hero {
         grid-template-columns: 1fr;
         padding-top: 110px;
     }

     .hero-right {
         height: 420px;
         max-width: 440px;
         margin: 0 auto;
     }

     .tracking-inner {
         grid-template-columns: 1fr;
     }

     .hiw-grid {
         grid-template-columns: 1fr;
     }

     .bento-grid .c7,
     .bento-grid .c5,
     .bento-grid .c4,
     .bento-grid .c6,
     .bento-grid .c8 {
         grid-column: span 12;
     }

     .footer-grid {
         grid-template-columns: 1fr 1fr;
     }

     .contact-wrap {
         grid-template-columns: 1fr;
     }

     .journey-panel {
         grid-template-columns: 1fr;
         padding: 100px 6vw 60px;
         overflow-y: auto;
     }

     .panel-scene {
         display: none;
     }

     .panel-content {
         max-width: 100%;
     }

     /* Blog featured post mobile */
     #blog-page [style*="grid-template-columns:1fr 1fr"] {
         grid-template-columns: 1fr !important;
     }

     /* Riders earnings grid mobile */
     #riders-page [style*="grid-template-columns:repeat(3,1fr)"] {
         grid-template-columns: 1fr !important;
     }
 }

 @media(max-width:768px) {
     #nav {
         padding: 12px 20px;
     }

     #nav.scrolled {
         padding: 10px 20px;
     }

     .hero-phone {
         width: 230px;
         right: -10px;
     }

     .fc1,
     .fc2 {
         display: none;
     }

     .footer-grid {
         grid-template-columns: 1fr;
     }

     .fg-row {
         grid-template-columns: 1fr;
     }

     .lc-step {
         min-width: 70px;
     }
 }

 @media(max-width:480px) {
     .nav-logo-text {
         display: none;
     }

     .hero-title {
         font-size: 40px;
     }

     .fc3 {
         display: none;
     }
 }