/* ═══════════════════════════════════════════════════════
   KULUE — Design System v2
   Colors: #FF4D00 · #FFA775 · #010101 · #FFFFFF
═══════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800;900&display=swap');

:root {
    --hot:     #FF4D00;
    --soft:    #FFA775;
    --bg:      #010101;
    --bg2:     #0a0a0a;
    --bg3:     #111111;
    --text:    #FFFFFF;
    --text-dim: rgba(255,255,255,0.5);
    --text-mid: rgba(255,255,255,0.75);
    --glass-bg:  rgba(255,255,255,0.04);
    --glass-brd: rgba(255,255,255,0.09);
    --shadow:  0 20px 60px rgba(0,0,0,0.7);
    --r:       20px;
    --font:    'Outfit', sans-serif;
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }

body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font);
    overflow-x: hidden;
    cursor: none;
    line-height: 1.65;
}

a { text-decoration: none; color: inherit; display: inline-block; }
img { display: block; max-width: 100%; }

/* ──── Custom Cursor ──── */
.cursor {
    position: fixed;
    top:0; left:0;
    width: 12px; height: 12px;
    background: var(--hot);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%,-50%);
    box-shadow: 0 0 20px var(--hot), 0 0 50px rgba(255,77,0,.25);
    transition: width .2s, height .2s, background .2s;
    mix-blend-mode: screen;
}
.cursor.big {
    width: 46px; height: 46px;
    background: rgba(255,255,255,.08);
    border: 1.5px solid rgba(255,255,255,.4);
    mix-blend-mode: normal;
    box-shadow: none;
}

/* ──── Typography ──── */
h1 {
    font-size: clamp(4rem, 8.5vw, 10rem);
    font-weight: 900;
    line-height: 1.0;
    letter-spacing: -0.04em;
    color: #fff;
}
h2 {
    font-size: clamp(2.8rem, 5vw, 5.5rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.025em;
    color: #fff;
}
h3 {
    font-size: clamp(1.3rem, 1.8vw, 1.7rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.25;
}
p { font-size: clamp(.95rem, 1.05vw, 1.1rem); color: var(--text-dim); font-weight: 300; }

.eyebrow {
    display: inline-block;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--hot);
    margin-bottom: .85rem;
}
.accent-hot { color: var(--hot); }

/* ──── Glass Card ──── */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--glass-brd);
    border-radius: var(--r);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

/* ──── Section Layout ──── */
section { position: relative; }

.section-header {
    max-width: 700px;
    margin: 0 auto 5rem;
    text-align: center;
}
.section-header p { margin-top: 1.25rem; font-size: 1.1rem; max-width: 480px; margin-left: auto; margin-right: auto; }
.section-header h2 { margin-top: .5rem; }

/* ──── HEADER ──── */
header {
    position: fixed;
    top: 0; left: 0; width: 100%;
    padding: 1.5rem 6vw;
    display: flex; align-items: center; justify-content: space-between;
    z-index: 200;
    background: rgba(1,1,1,.6);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255,255,255,.06);
    transition: padding .4s;
}
header.compact { padding: 1rem 6vw; }

.logo {
    font-size: 1.6rem; font-weight: 900;
    letter-spacing: .28em; color: #fff;
}
nav { display: flex; gap: 2.5rem; }
nav a {
    font-size: .8rem; font-weight: 600;
    letter-spacing: .1em; text-transform: uppercase;
    color: var(--text-mid);
    padding: .4rem .6rem;
    transition: color .3s;
}
nav a:hover { color: #fff; }

.btn-header {
    font-size: .78rem; font-weight: 700;
    letter-spacing: .1em; text-transform: uppercase;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 40px;
    padding: .65rem 1.6rem;
    color: var(--text-mid);
    transition: border-color .3s, color .3s, background .3s;
}
.btn-header:hover { border-color: #fff; color:#fff; background: rgba(255,255,255,.05); }

/* ──── HERO ──── */
.hero {
    min-height: 100vh;
    display: flex; flex-direction: column;
    justify-content: center;
    padding: 12vh 10vw 10vh;
    position: relative;
    overflow: hidden;
    background: radial-gradient(ellipse at 20% 50%, rgba(255,77,0,.06) 0%, transparent 55%),
                radial-gradient(ellipse at 80% 30%, rgba(255,167,117,.04) 0%, transparent 50%),
                var(--bg);
}

.hero-noise {
    position: absolute; inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.018'/%3E%3C/svg%3E");
    pointer-events: none; z-index: 0;
}

.hero-glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none; z-index: 0;
}
.g1 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(255,77,0,.12), transparent 70%);
    right: 5%; top: 20%;
}
.g2 {
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(255,167,117,.06), transparent 70%);
    right: 25%; bottom: -10%;
}

.hero-inner { position: relative; z-index: 2; max-width: 1100px; }
.hero-eyebrow {
    font-size: .78rem; font-weight: 700;
    letter-spacing: .22em; text-transform: uppercase;
    color: var(--soft);
    margin-bottom: 2.5rem;
    display: flex; align-items: center; gap: .8rem;
}
.hero-eyebrow::before {
    content: '';
    display: block;
    width: 36px; height: 1px;
    background: var(--soft);
}

.hero h1 { margin-bottom: 2.5rem; }

.hero-sub {
    font-size: clamp(1.1rem, 1.6vw, 1.4rem);
    color: var(--text-mid);
    font-weight: 300;
    margin-bottom: 4rem;
    max-width: 520px;
    line-height: 1.7;
}

.hero-stat-row {
    display: flex; gap: 4rem; flex-wrap: wrap;
    border-top: 1px solid rgba(255,255,255,.08);
    padding-top: 2.5rem;
}
.hero-stat { display: flex; flex-direction: column; gap: .35rem; }
.snum {
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    font-weight: 900;
    color: #fff;
    line-height: 1;
}
.snum em { color: var(--hot); font-style: normal; font-size: .75em; }
.slabel {
    font-size: .75rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: .1em;
    color: var(--text-dim);
}

.scroll-cue {
    position: absolute;
    bottom: 2.5rem; left: 10vw;
    display: flex; align-items: center; gap: .75rem;
    z-index: 2;
    font-size: .7rem; font-weight: 600; letter-spacing: .15em;
    text-transform: uppercase; color: var(--text-dim);
}
.scroll-cue-line {
    width: 30px; height: 1px;
    background: var(--text-dim);
    animation: scroll-pulse 2s ease-in-out infinite;
}
@keyframes scroll-pulse { 0%,100%{width:30px; opacity:.5;} 50%{width:50px; opacity:1;} }

/* ──── STATEMENT SECTION ──── */
.statement-section {
    padding: 12rem 10vw;
    background: var(--bg2);
}
.statement-inner {
    max-width: 900px;
    margin: 0 auto;
}
.statement-text {
    font-size: clamp(1.8rem, 3.2vw, 3.2rem);
    font-weight: 700;
    line-height: 1.5;
    color: rgba(255,255,255,.25);
    /* JS will highlight words as we scroll */
}
.statement-text .word-lit { color: #fff; }

/* ──── NETWORK SECTION ──── */
.network-section {
    padding: 10rem 8vw;
    background: var(--bg);
}

/* SVG Map — no background images, clean container */
.map-stage {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto 4rem;
    padding: 3rem;
    background: rgba(255,255,255,.025);
    border: 1px solid rgba(255,77,0,.12);
    border-radius: 28px;
}

.route-svg {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 0 8px rgba(255,77,0,.2));
}

/* State shapes */
.state-shape {
    fill: rgba(255,255,255,.02);
    stroke: rgba(255,255,255,.07);
    stroke-width: 1;
}

.region-lbl {
    fill: rgba(255,255,255,.15);
    font-family: var(--font);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Route lines */
.rline {
    fill: none;
    stroke: var(--hot);
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-dasharray: 6 14;
    animation: flow-dash 18s linear infinite;
}
.rline.dim {
    stroke: rgba(255,167,117,.35);
    stroke-width: 1;
    animation-duration: 28s;
}
@keyframes flow-dash { to { stroke-dashoffset: -400; } }

/* City nodes */
.city-node {
    fill: var(--text-mid);
    filter: drop-shadow(0 0 4px rgba(255,255,255,.4));
}
.city-node.hot  { fill: var(--hot); filter: drop-shadow(0 0 8px var(--hot)); animation: node-pop 3s ease-in-out infinite; }
.city-node.soft { fill: var(--soft); filter: drop-shadow(0 0 5px var(--soft)); }
@keyframes node-pop { 0%,100%{r:8;} 50%{r:12;} }

.city-lbl {
    fill: rgba(255,255,255,.45);
    font-family: var(--font);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

/* Map stat pills */
.map-pill {
    position: absolute;
    background: rgba(1,1,1,.85);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 12px;
    padding: .75rem 1.2rem;
    display: flex; flex-direction: column; gap: .2rem;
    backdrop-filter: blur(12px);
}
.pill-1 { top: 2rem; left: 2rem; }
.pill-2 { top: 2rem; right: 2rem; }
.pill-3 { bottom: 2rem; right: 2rem; }
.pill-num { font-size: 1.3rem; font-weight: 900; color: var(--hot); }
.pill-lbl { font-size: .7rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--text-dim); }

/* Network stats row */
.network-stats {
    display: flex; justify-content: center; gap: 4rem; flex-wrap: wrap;
    margin-top: 2rem;
}
.nstat {
    display: flex; flex-direction: column; gap: .3rem;
    text-align: center;
}
.nstat span { font-size: .8rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--text-dim); }
.nstat em  { font-size: 1.4rem; font-weight: 900; color: #fff; font-style: normal; }

/* ──── HOW IT WORKS ──── */
.how-section {
    padding: 10rem 10vw;
    background: var(--bg2);
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    position: relative;
}
.steps::before {
    content: '';
    position: absolute;
    top: 60px; left: calc(16.67% + 1.25rem); right: calc(16.67% + 1.25rem);
    height: 1px;
    background: linear-gradient(to right, var(--hot), transparent);
    opacity: .3;
    pointer-events: none;
}

.step {
    padding: 3rem 2.5rem;
    position: relative;
}
.step::before {
    content: attr(data-n);
    position: absolute;
    top: 2rem; right: 2rem;
    font-size: .7rem; font-weight: 800; letter-spacing: .15em;
    color: var(--hot); opacity: .5;
}
.step-icon {
    width: 56px; height: 56px;
    margin-bottom: 1.8rem;
}
.step-icon svg { width: 100%; height: 100%; }
.step h3 { margin-bottom: .75rem; }

/* ──── BENTO GRID ──── */
.solutions-section {
    padding: 10rem 8vw;
    background: var(--bg);
}

.bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 1.5rem;
}
.card {
    padding: 2.5rem;
    display: flex; flex-direction: column; gap: 1rem;
    transition: transform .4s cubic-bezier(.175,.885,.32,1.275), border-color .4s;
    cursor: none;
    /* z-index fix: ensure cards always stay above any parallax */
    z-index: 1;
}
.card:hover {
    transform: translateY(-12px);
    border-color: rgba(255,77,0,.3);
}
/* Accent line at top of card */
.card-accent-line {
    position: absolute;
    top: 0; left: 2rem; right: 2rem;
    height: 2px;
    background: linear-gradient(to right, var(--hot), transparent);
    border-radius: 1px;
    opacity: 0;
    transition: opacity .4s;
}
.card:hover .card-accent-line { opacity: 1; }

.icon-wrap { width: 100px; height: 100px; flex-shrink: 0; }
.icon-wrap.small { width: 80px; height: 80px; }
.icon-wrap img { width:100%; height:100%; object-fit:contain; filter: drop-shadow(0 8px 16px rgba(0,0,0,.5)); }

.card h3 { position: relative; z-index:1; margin-top: .5rem; }
.card p   { position: relative; z-index:1; }

.card-tag {
    display: inline-block;
    font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
    color: var(--hot);
    border: 1px solid rgba(255,77,0,.3);
    border-radius: 20px;
    padding: .3rem .85rem;
    margin-top: .5rem;
    width: fit-content;
    position: relative; z-index:1;
}

/* Big card spans 2 rows */
.big-card {
    grid-row: span 2;
    flex-direction: row;
    align-items: flex-start;
    gap: 2rem;
    flex-wrap: wrap;
}
.big-card .icon-wrap { width: 130px; height: 130px; flex-shrink: 0; }
.card-text { flex: 1; min-width: 180px; }
.card-text h3 { margin-top: 0; }

/* Wide card spans 2 columns */
.wide-card {
    grid-column: span 2;
}
.wide-card-inner {
    display: flex; align-items: center; gap: 3rem;
    position: relative; z-index:1;
}
.mini-chart { width: 200px; flex-shrink:0; opacity: .7; }
.mini-chart svg { width:100%; height:auto; }

/* Icon CSS animations */
.spin-y  { animation: spin-y 16s linear infinite; }
.float-y { animation: float-y 5s ease-in-out infinite; }
.pulse-s { animation: pulse-s 2.5s ease-in-out infinite; }
@keyframes spin-y  { from{transform:rotateY(0deg);} to{transform:rotateY(360deg);} }
@keyframes float-y { 0%,100%{transform:translateY(0);} 50%{transform:translateY(-14px);} }
@keyframes pulse-s { 0%,100%{transform:scale(1); filter:drop-shadow(0 0 8px rgba(255,77,0,.3));} 50%{transform:scale(1.1); filter:drop-shadow(0 0 24px var(--hot));} }

/* ──── DRIVER SECTION ──── */
.driver-section {
    padding: 10rem 8vw;
    position: relative;
    overflow: hidden;
    background: var(--bg2);
}

.driver-marquee-wrap {
    position: absolute;
    top: 50%; left: 0;
    width: 300vw;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}
.driver-marquee {
    font-size: clamp(5rem, 10vw, 12rem);
    font-weight: 900;
    text-transform: uppercase;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255,255,255,.04);
    white-space: nowrap;
    will-change: transform;
}

.driver-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    position: relative; z-index: 2;
}

.driver-img-wrap {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 4/5;
}
.driver-img-wrap img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center 15%;
    display: block;
    border-radius: 24px;
}
.driver-img-badge {
    position: absolute;
    bottom: -1rem; right: -1rem;
    background: var(--hot);
    border-radius: 14px;
    padding: 1.2rem 1.8rem;
    text-align: center;
    box-shadow: 0 16px 40px rgba(255,77,0,.4);
}
.badge-num { display: block; font-size: 2rem; font-weight: 900; color: #fff; line-height: 1; }
.badge-lbl { display: block; font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.8); margin-top: .3rem; }

.driver-copy { display: flex; flex-direction: column; gap: 2rem; }
.driver-copy h2 { margin-top: .75rem; }
.driver-copy p { font-size: 1.1rem; }

.driver-metrics {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    border-top: 1px solid rgba(255,255,255,.07);
    padding-top: 2rem;
}
.dm { display: flex; flex-direction: column; gap: .3rem; }
.dm-num {
    font-size: 2.2rem; font-weight: 900; color: #fff; line-height: 1;
}
.dm-num em { color: var(--hot); font-style: normal; font-size: .75em; }
.dm-lbl { font-size: .75rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: var(--text-dim); }

/* ──── TESTIMONIAL ──── */
.testimonial-section {
    padding: 10rem 10vw;
    background: var(--hot);
    overflow: hidden;
    position: relative;
}
.testimonial-section::before {
    content: '"';
    position: absolute;
    font-size: 40vw; font-weight: 900; line-height: 1;
    color: rgba(0,0,0,.08);
    top: -10%; right: -5%;
    pointer-events: none;
    z-index: 0;
}
.testimonial-inner { position: relative; z-index: 1; max-width: 820px; }
.quote-mark { font-size: 6rem; font-weight: 900; color: rgba(0,0,0,.2); line-height: .8; margin-bottom: 1rem; }
blockquote {
    font-size: clamp(1.5rem, 2.5vw, 2.2rem);
    font-weight: 700;
    line-height: 1.5;
    color: #fff;
    margin-bottom: 2rem;
}
.quote-attr { display: flex; align-items: center; gap: 1rem; }
.quote-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,.6); }
.quote-attr span { font-size: .85rem; font-weight: 600; letter-spacing: .06em; color: rgba(255,255,255,.8); }



/* ──── CTA SECTION ──── */
.cta-section {
    padding: 12rem 10vw;
    background: var(--bg2);
    overflow: hidden;
}
.cta-inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}
.cta-glow {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    width: 600px; height: 400px;
    background: radial-gradient(ellipse, rgba(255,77,0,.08), transparent 70%);
    pointer-events: none; z-index: 0;
}
.cta-inner .eyebrow { position: relative; z-index:1; }
.cta-inner h2 { margin: .5rem 0 1.5rem; position: relative; z-index:1; }
.cta-inner p  { font-size: 1.1rem; position: relative; z-index:1; margin-bottom: 3rem; }
.cta-actions { display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; position: relative; z-index:1; }

.btn-cta-hot {
    background: var(--hot);
    color: #fff;
    border-radius: 40px;
    padding: 1.1rem 2.8rem;
    font-size: .9rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
    box-shadow: 0 8px 32px rgba(255,77,0,.4);
    transition: background .3s, box-shadow .3s;
}
.btn-cta-hot:hover { background: #ff6620; box-shadow: 0 12px 40px rgba(255,77,0,.6); }

/* ──── JOIN WAITLIST FORM ──── */
.cta-form {
    margin-top: 3.5rem;
    position: relative; z-index: 2;
    display: flex; flex-direction: column; gap: 1.25rem;
    max-width: 650px; margin-left: auto; margin-right: auto;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }

.input-group { position: relative; }
.cta-form input, 
.cta-form select {
    width: 100%;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 14px;
    padding: 1.1rem 1.4rem;
    font-family: var(--font);
    font-size: 1rem;
    color: #fff;
    transition: border-color .3s, background .3s, box-shadow .3s;
    appearance: none;
}
.cta-form input::placeholder { color: rgba(255,255,255,0.3); }

.cta-form input:focus, 
.cta-form select:focus {
    outline: none;
    background: rgba(255,255,255,0.06);
    border-color: var(--hot);
    box-shadow: 0 0 15px rgba(255,77,0,0.15);
}

.cta-form select option { background: #111; color: #fff; }

.btn-cta-hot {
    position: relative;
    border: none;
    cursor: none;
    margin-top: 1rem;
}
.btn-cta-hot.loading .btn-text { opacity: 0; }
.btn-loader {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    width: 24px; height: 24px;
    border: 3px solid rgba(255,255,255,0.2);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin-loader 1s linear infinite;
    opacity: 0; pointer-events: none;
}
.btn-cta-hot.loading .btn-loader { opacity: 1; }
@keyframes spin-loader { to { transform: translate(-50%,-50%) rotate(360deg); } }

.form-status {
    font-size: .9rem; font-weight: 500; margin-top: 1.25rem;
    min-height: 1.5rem;
    opacity: 0; transition: opacity .3s;
}
.form-status.show { opacity: 1; }
.form-status.success { color: #00ff88; }
.form-status.error { color: #ff4d4d; }

@media (max-width: 600px) {
    .form-row { grid-template-columns: 1fr; }
}

/* ──── FOOTER ──── */
footer {
    background: #000;
    border-top: 1px solid rgba(255,255,255,.06);
    padding: 5rem 8vw 3rem;
}
.footer-top {
    display: flex; justify-content: space-between; align-items: flex-start;
    flex-wrap: wrap; gap: 3rem;
    margin-bottom: 4rem;
}
.footer-brand .footer-logo { font-size: 2rem; font-weight: 900; letter-spacing: .25em; color: #fff; margin-bottom: .75rem; }
.footer-brand p { max-width: 240px; }
.footer-links-grid { display: flex; gap: 5rem; flex-wrap: wrap; }
.flink-col { display: flex; flex-direction: column; gap: .9rem; }
.flink-head { font-size: .7rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--text-dim); margin-bottom: .25rem; }
.flink-col a { font-size: .85rem; color: var(--text-dim); transition: color .3s; }
.flink-col a:hover { color: #fff; }
.footer-bottom {
    display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
    border-top: 1px solid rgba(255,255,255,.05);
    padding-top: 2rem;
    font-size: .78rem; color: var(--text-dim);
}

/* ──── RESPONSIVE ──── */
@media (max-width: 1100px) {
    .bento { grid-template-columns: repeat(2, 1fr); }
    .big-card { grid-row: auto; }
    .wide-card { grid-column: auto; }
    .pillars { grid-template-columns: repeat(2, 1fr); }
    .pillar-hot { transform: scale(1); }
    @keyframes bob-2 { 0%,100%{transform:translateY(0);} 50%{transform:translateY(-20px);} }
    .steps { grid-template-columns: 1fr; }
    .steps::before { display: none; }
    .driver-layout { grid-template-columns: 1fr; }
    .driver-metrics { grid-template-columns: repeat(3,1fr); }
}
@media (max-width: 768px) {
    nav { display: none; }
    .bento { grid-template-columns: 1fr; }
    .pillars { grid-template-columns: 1fr; }
    .big-card { flex-direction: column; }
    .wide-card-inner { flex-direction: column; }
    .hero-stat-row { gap: 2.5rem; }
    .footer-top { flex-direction: column; }
    .footer-links-grid { gap: 2.5rem; }
    .network-stats { gap: 2rem; }
}

/* ════════════════════════════════════════════════
   CANVAS HERO — Apple scroll frame animation
════════════════════════════════════════════════ */

/* Scroll spacer — sets how long user scrolls through the animation */
.hero-scroll-container {
    position: relative;
    height: 700vh;   /* = ~6× viewport = ample travel for 240 frames */
    background: #000;
}

/* The sticky panel that stays in view during scroll */
.hero-sticky {
    position: sticky;
    top: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: #000;
}

/* Canvas fills the viewport exactly */
#heroCanvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Gradient overlay — bottom + left darkening for text */
.hero-canvas-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to right,  rgba(0,0,0,.72)  0%, rgba(0,0,0,.3) 55%, transparent 100%),
        linear-gradient(to top,    rgba(0,0,0,.6)   0%, transparent 40%),
        linear-gradient(to bottom, rgba(0,0,0,.5)   0%, transparent 25%);
    pointer-events: none;
    z-index: 2;
}

/* KULUE wordmark top-left whilst inside hero */
.hero-brand {
    position: absolute;
    top: 1.8rem;
    left: 9vw;
    display: flex;
    align-items: center;
    gap: .8rem;
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: .28em;
    color: #fff;
    z-index: 10;
    pointer-events: none;
}
.hero-brand-line {
    width: 30px;
    height: 2px;
    background: var(--hot);
    flex-shrink: 0;
}

/* ── Feature Overlays ── */
.hero-overlay {
    position: absolute;
    z-index: 5;
    pointer-events: none;
    /* Default: hidden & shifted */
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .55s cubic-bezier(.4,0,.2,1),
                transform .55s cubic-bezier(.4,0,.2,1);
    max-width: 540px;
}
.hero-overlay.hov-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Positions */
.hero-overlay:not(.hov-right):not(.hov-center) {   /* default = left */
    left: 9vw;
    bottom: 14vh;
}
.hov-right {
    right: 9vw;
    bottom: 14vh;
    text-align: right;
}
.hov-left {
    left: 9vw;
    bottom: 14vh;
}
.hov-center {
    left: 50%;
    transform: translateX(-50%) translateY(28px);
    bottom: 14vh;
    text-align: center;
}
.hov-center.hov-visible {
    transform: translateX(-50%) translateY(0);
}

/* Overlay typography */
.hov-eyebrow {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--hot);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: .7rem;
}
.hov-right .hov-eyebrow {
    justify-content: flex-end;
}
.hov-center .hov-eyebrow {
    justify-content: center;
}
.hov-eyebrow::before {
    content: '';
    display: block;
    width: 22px; height: 1.5px;
    background: var(--hot);
    flex-shrink: 0;
}
.hov-right .hov-eyebrow::before,
.hov-center .hov-eyebrow::before { display: none; }
.hov-right .hov-eyebrow::after,
.hov-center .hov-eyebrow::after {
    content: '';
    display: block;
    width: 22px; height: 1.5px;
    background: var(--hot);
    flex-shrink: 0;
}

.hov-title {
    font-size: clamp(2.5rem, 4.5vw, 5.5rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -.04em;
    color: #fff;
    margin: 0 0 1.2rem;
}

.hov-sub {
    font-size: clamp(.95rem, 1.15vw, 1.15rem);
    color: rgba(255,255,255,.72);
    font-weight: 300;
    line-height: 1.65;
    margin-bottom: 1.7rem;
}

/* Stats row (overlay 0 only) */
.hov-stats {
    display: flex;
    gap: 2.5rem;
    border-top: 1px solid rgba(255,255,255,.12);
    padding-top: 1.5rem;
}
.hov-stat {
    display: flex;
    flex-direction: column;
    gap: .2rem;
}
.hov-num {
    font-size: clamp(1.5rem, 2.5vw, 2.2rem);
    font-weight: 900;
    color: #fff;
    line-height: 1;
}
.hov-num em { color: var(--hot); font-style: normal; font-size: .8em; }
.hov-lbl {
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: rgba(255,255,255,.45);
}

/* Tag pills (overlays 1–4) */
.hov-tags {
    display: flex;
    flex-wrap: wrap;
    gap: .65rem;
    margin-top: .25rem;
}
.hov-right .hov-tags { justify-content: flex-end; }
.hov-center .hov-tags { justify-content: center; }
.hov-tag {
    display: inline-block;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #fff;
    border: 1px solid rgba(255,255,255,.25);
    border-radius: 30px;
    padding: .4rem 1rem;
    background: rgba(255,255,255,.06);
    backdrop-filter: blur(6px);
}

/* ── Progress bar (bottom center) ── */
.hero-progress {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 160px;
    height: 2px;
    background: rgba(255,255,255,.12);
    border-radius: 2px;
    z-index: 8;
    overflow: hidden;
}
.hero-progress-fill {
    height: 100%;
    width: 0%;
    background: var(--hot);
    border-radius: 2px;
    transition: width .08s linear;
    box-shadow: 0 0 8px var(--hot);
}

/* ── Scroll hint (fades once scrolling starts) ── */
.hero-scroll-hint {
    position: absolute;
    bottom: 4.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: .75rem;
    z-index: 8;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(255,255,255,.45);
    transition: opacity .5s ease;
}
.hero-scroll-hint.hidden { opacity: 0; pointer-events: none; }
.hsline {
    width: 28px;
    height: 1px;
    background: rgba(255,255,255,.45);
    animation: scroll-pulse 2s ease-in-out infinite;
}

/* ── Loading overlay while images load ── */
.hero-loading {
    position: absolute;
    inset: 0;
    background: #000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    z-index: 20;
    transition: opacity .8s ease;
}
.hero-loading.done { opacity: 0; pointer-events: none; }
.hero-load-bar {
    width: 200px;
    height: 2px;
    background: rgba(255,255,255,.1);
    border-radius: 2px;
    overflow: hidden;
}
.hero-load-fill {
    height: 100%;
    background: var(--hot);
    box-shadow: 0 0 8px var(--hot);
    border-radius: 2px;
    transition: width .15s linear;
}
.hero-load-text {
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: rgba(255,255,255,.3);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-scroll-container { height: 600vh; }
    .hov-right { right: auto; left: 5vw; text-align: left; }
    .hov-right .hov-eyebrow { justify-content: flex-start; }
    .hov-right .hov-eyebrow::before { display: block; }
    .hov-right .hov-eyebrow::after { display: none; }
    .hov-right .hov-tags { justify-content: flex-start; }
    .hov-center { left: 5vw; transform: translateX(0) translateY(28px); text-align: left; }
    .hov-center.hov-visible { transform: translateX(0) translateY(0); }
    .hov-center .hov-eyebrow { justify-content: flex-start; }
    .hov-center .hov-tags { justify-content: flex-start; }
    .hero-overlay { max-width: 90vw; bottom: 10vh; }
    .hov-title { font-size: clamp(2rem, 8vw, 3rem); }
    .hov-stats { gap: 1.5rem; }
}
