/* ============================================
   CODE ON THROTTLE — Hanle Black + Gold
   Clean portfolio layout
   ============================================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --bg: #0a0a0a;
    --bg-card: #111;
    --bg-card-hover: #161616;
    --border: #1e1e1e;
    --gold: #c9a84c;
    --gold-light: #dfc06a;
    --gold-dim: #8a7233;
    --gold-glow: rgba(201,168,76,0.06);
    --white: #f0f0f0;
    --light: #bbb;
    --silver: #888;
    --mid: #555;
    --dark: #333;
    --muted: #2a2a2a;
}

html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background: var(--bg); color: var(--silver); line-height: 1.6; overflow-x: hidden; }

/* ===== LOADERS (shared) ===== */
.loader {
    position: fixed; inset: 0; z-index: 10000;
    background: #050505;
    display: flex; align-items: center; justify-content: center;
    transition: opacity 0.8s ease, visibility 0.8s;
}
.loader.done { opacity: 0; visibility: hidden; pointer-events: none; }
.loader.hidden { display: none; }
.loader-inner { text-align: center; }

/* ===== CLI TERMINAL LOADER (Engineer) ===== */
.cli-loader {
    width: 480px; max-width: 90vw;
    background: #0c0c0c;
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    text-align: left;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.cli-header {
    display: flex; align-items: center; gap: 6px;
    padding: 0.75rem 1rem;
    background: #161616;
    border-bottom: 1px solid var(--border);
}
.cli-dot { width: 10px; height: 10px; border-radius: 50%; }
.cli-title {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.6rem; color: var(--mid);
    margin-left: 0.5rem;
}
.cli-body {
    padding: 1.2rem;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.72rem;
    line-height: 1.9;
    min-height: 220px;
    color: var(--silver);
}
.cli-body .prompt { color: var(--gold); }
.cli-body .cmd { color: var(--light); }
.cli-body .output { color: var(--mid); }
.cli-body .success { color: #50c878; }
.cli-body .cursor-blink {
    display: inline-block; width: 7px; height: 14px;
    background: var(--gold); vertical-align: middle; margin-left: 2px;
    animation: cliBlink 1s step-end infinite;
}
@keyframes cliBlink { 0%,50% { opacity: 1; } 51%,100% { opacity: 0; } }

/* ===== BIKE LOADER (Rider) ===== */
.loader-bike-wrap {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}
.loader-bike {
    width: clamp(180px, 60vw, 420px); height: auto;
    filter: brightness(0.85);
    animation: bikeIdle 0.15s ease-in-out infinite alternate paused;
}
.loader-bike.cranking {
    animation-play-state: running;
    animation-duration: 0.08s;
}
.loader-bike.running {
    animation: bikeRun 0.04s ease-in-out infinite alternate;
}
.loader-bike.rideoff {
    animation: rideOff 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
@keyframes bikeIdle {
    from { transform: translateY(0) rotate(0deg); }
    to { transform: translateY(-1px) rotate(0.2deg); }
}
@keyframes bikeRun {
    from { transform: translateY(0) rotate(0deg); }
    to { transform: translateY(-1.5px) rotate(0.3deg); }
}
@keyframes rideOff {
    0% { transform: translateX(0) scale(1); opacity: 1; }
    100% { transform: translateX(120vw) scale(0.8); opacity: 0; }
}

/* Exhaust smoke */
.exhaust {
    position: absolute;
    left: -10px;
    bottom: 20%;
    display: flex;
    gap: 4px;
    opacity: 0;
    transition: opacity 0.3s;
}
.exhaust.active { opacity: 1; }
.exhaust span {
    width: 6px; height: 6px;
    background: rgba(180,180,180,0.15);
    border-radius: 50%;
    animation: smoke 0.8s ease-out infinite;
}
.exhaust span:nth-child(2) { animation-delay: 0.15s; width: 8px; height: 8px; }
.exhaust span:nth-child(3) { animation-delay: 0.3s; width: 10px; height: 10px; }
.exhaust span:nth-child(4) { animation-delay: 0.45s; width: 7px; height: 7px; }
.exhaust span:nth-child(5) { animation-delay: 0.6s; width: 5px; height: 5px; }
@keyframes smoke {
    0% { transform: translateX(0) scale(1); opacity: 0.3; }
    100% { transform: translateX(-40px) translateY(-10px) scale(2.5); opacity: 0; }
}

.loader-text {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--mid);
    margin-bottom: 1.5rem;
    transition: color 0.3s;
}
.loader-text.gold { color: var(--gold); }

/* Loader status text */

.loader-status {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--mid);
    margin-bottom: 1.5rem;
    min-height: 1.2em;
    transition: color 0.3s;
}
.loader-status.gold { color: var(--gold); }
.loader-bar {
    width: 180px; height: 2px;
    background: var(--muted);
    margin: 0 auto;
    border-radius: 1px;
    overflow: hidden;
}
.loader-bar-fill {
    height: 100%; width: 0%;
    background: var(--gold);
    border-radius: 1px;
    transition: width 0.3s ease;
}

/* ===== NAV ===== */
nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 1rem 3rem;
    display: flex; justify-content: space-between; align-items: center;
    background: rgba(10,10,10,0.85); backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--border);
    transition: padding 0.3s;
}
nav.scrolled { padding: 0.8rem 3rem; }
.logo {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.85rem; font-weight: 700; color: var(--white);
    text-decoration: none;
}
.logo span { color: var(--gold); }
.nav-links { display: flex; gap: 2rem; list-style: none; align-items: center; }
.nav-links a {
    color: var(--silver); text-decoration: none;
    font-size: 0.8rem; font-weight: 500;
    transition: color 0.3s;
}
.nav-links a:hover { color: var(--gold); }
.nav-resume-btn {
    background: var(--gold) !important; color: var(--bg) !important;
    padding: 0.5rem 1.2rem; border-radius: 6px; font-weight: 700 !important;
    font-size: 0.75rem !important; letter-spacing: 0.5px;
    transition: all 0.3s !important;
}
.nav-resume-btn:hover { background: var(--gold-light) !important; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 0.5rem; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--white); margin: 5px 0; transition: all 0.3s; }

/* ===== SIDE NAV INDICATOR ===== */
.side-nav {
    position: fixed;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 900;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.side-nav-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    flex-direction: row-reverse;
}
.side-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 1.5px solid var(--mid);
    background: transparent;
    transition: all 0.3s;
    flex-shrink: 0;
}
.side-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.6rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: transparent;
    transition: all 0.3s;
    white-space: nowrap;
}
.side-nav-item:hover .side-label { color: var(--silver); }
.side-nav-item:hover .side-dot { border-color: var(--silver); }
.side-nav-item.active .side-dot {
    background: var(--gold);
    border-color: var(--gold);
    box-shadow: 0 0 8px rgba(201,168,76,0.4);
}
.side-nav-item.active .side-label { color: var(--gold); }

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex; align-items: center;
    padding: 4rem 3rem;
    position: relative;
}
.hero-content { max-width: 700px; }
.hero-greeting {
    font-size: 1rem; color: var(--gold);
    font-weight: 500; margin-bottom: 0.75rem;
}
.hero-name {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900; color: var(--white);
    letter-spacing: -2px; line-height: 1.05;
    margin-bottom: 0.5rem;
}
.hero-role {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    font-weight: 600; color: var(--gold);
    margin-bottom: 1.5rem;
}
.hero-desc {
    font-size: 1rem; color: var(--light);
    max-width: 550px; line-height: 1.8;
    margin-bottom: 2.5rem;
}
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-scroll {
    position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
}
.hero-scroll span { font-size: 0.6rem; letter-spacing: 3px; color: var(--mid); }
.scroll-line {
    width: 1px; height: 40px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2s ease infinite;
}
@keyframes scrollPulse {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ===== ENGINEER HERO ===== */
.engineer-hero {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 100vh;
    padding: 4rem 3rem;
    overflow: hidden;
}
.eng-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}
.eng-hero-photo {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 320px;
    height: 320px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--gold);
    box-shadow: 0 0 60px rgba(201,168,76,0.1);
    opacity: 0.85;
    z-index: 2;
}
.eng-hero-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.85) contrast(1.05);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.85rem 2rem; font-size: 0.85rem; font-weight: 600;
    border-radius: 8px; cursor: pointer; transition: all 0.3s;
    text-decoration: none; border: none; font-family: 'Inter', sans-serif;
}
.btn-gold { background: var(--gold); color: var(--bg); }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(201,168,76,0.15); }
.btn-ghost { background: transparent; color: var(--light); border: 1px solid var(--border); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

/* ===== SECTIONS ===== */
.section { padding: 6rem 3rem; max-width: 1000px; margin: 0 auto; }
.section-header { margin-bottom: 3rem; }
.section-title {
    font-family: 'JetBrains Mono', monospace;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700; color: var(--gold);
    margin-bottom: 0.5rem;
}
.section-subtitle { font-size: 0.95rem; color: var(--silver); }

/* ===== SKILLS ===== */
.skills-category { margin-bottom: 2.5rem; }
.skills-cat-title {
    font-size: 1rem; font-weight: 600; color: var(--white);
    margin-bottom: 1rem; padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border);
}
.skills-row { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.skill-chip {
    display: flex; align-items: center; gap: 0.6rem;
    background: var(--bg-card); border: 1px solid var(--border);
    padding: 0.6rem 1.2rem; border-radius: 8px;
    font-size: 0.85rem; color: var(--light);
    transition: all 0.3s;
}
.skill-chip:hover {
    border-color: var(--gold); background: var(--gold-glow);
    color: var(--white);
}
.skill-chip i {
    font-size: 1.3rem; color: var(--gold);
}
.skill-chip.text-only {
    background: transparent; border-color: var(--muted);
    font-size: 0.8rem; color: var(--silver);
}
.skill-chip.text-only:hover { border-color: var(--gold); color: var(--gold); }

/* ===== EXPERIENCE ===== */
.exp-group-title {
    font-size: 1.1rem; font-weight: 700; color: var(--white);
    margin-bottom: 1.5rem; padding-left: 1rem;
    border-left: 3px solid var(--gold);
}
.exp-card {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: 12px; padding: 2rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s;
}
.exp-card:hover { border-color: var(--gold); background: var(--bg-card-hover); }
.exp-card-header {
    display: flex; justify-content: space-between; align-items: flex-start;
    margin-bottom: 0.75rem; flex-wrap: wrap; gap: 0.5rem;
}
.exp-role { font-size: 1.1rem; font-weight: 700; color: var(--white); }
.exp-company { font-size: 0.85rem; color: var(--silver); margin-top: 0.2rem; }
.exp-meta { text-align: right; }
.exp-date {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem; color: var(--gold);
    display: block;
}
.exp-location { font-size: 0.7rem; color: var(--mid); margin-top: 0.15rem; }
.exp-tech {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem; color: var(--gold-dim);
    margin-bottom: 1rem; letter-spacing: 0.5px;
}
.exp-bullets { list-style: none; }
.exp-bullets li {
    padding: 0.35rem 0; font-size: 0.85rem; color: var(--light);
    line-height: 1.7; padding-left: 1.5rem; position: relative;
}
.exp-bullets li::before {
    content: '•'; color: var(--gold); position: absolute; left: 0;
}
.exp-bullets strong { color: var(--white); font-weight: 600; }

/* ===== MILESTONES ===== */
.milestones-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem; margin-top: 2rem;
}
.milestone-card {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: 12px; padding: 2rem;
    transition: all 0.3s;
}
.milestone-card:hover { border-color: var(--gold); transform: translateY(-3px); }
.milestone-card h4 {
    font-size: 1rem; font-weight: 700; color: var(--white);
    margin-bottom: 0.5rem;
}
.milestone-card p { font-size: 0.85rem; color: var(--silver); line-height: 1.7; }
.milestone-card strong { color: var(--gold); }

/* ===== CONTACT ===== */
.contact-section { text-align: center; }
.contact-actions { margin: 2rem 0; }
.contact-links {
    display: flex; justify-content: center; gap: 2rem;
    flex-wrap: wrap; margin-top: 2rem;
}
.contact-links a {
    color: var(--silver); text-decoration: none;
    font-size: 0.85rem; display: flex; align-items: center; gap: 0.5rem;
    transition: color 0.3s;
}
.contact-links a:hover { color: var(--gold); }
.contact-links i { font-size: 1.1rem; }

/* ===== FOOTER ===== */
footer {
    padding: 2.5rem 3rem; text-align: center;
    border-top: 1px solid var(--border);
    font-size: 0.8rem; color: var(--mid);
}

/* ===== REVEAL ===== */
.reveal { opacity: 0; transform: translateY(30px); transition: all 0.7s cubic-bezier(0.16,1,0.3,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .side-nav { display: none; }
    .eng-hero-photo { display: none; }
    .eng-canvas { opacity: 0.3; }
    nav { padding: 1rem 1.5rem; }
    .nav-links { 
        display: none; flex-direction: column; 
        position: absolute; top: 100%; left: 0; right: 0;
        background: rgba(10,10,10,0.95); backdrop-filter: blur(15px);
        padding: 1.5rem; gap: 1rem;
        border-bottom: 1px solid var(--border);
    }
    .nav-links.open { display: flex; }
    .nav-toggle { display: block; }
    .hero { padding: 7rem 1.5rem 3rem; }
    .section { padding: 4rem 1.5rem; }
    .exp-card-header { flex-direction: column; }
    .exp-meta { text-align: left; }
    .hero-scroll { display: none; }
    .contact-links { flex-direction: column; align-items: center; gap: 1rem; }
}

/* ===== MODE TOGGLE ===== */
.mode-toggle {
    position: fixed; top: 1.2rem; left: 50%; transform: translateX(-50%);
    z-index: 1001;
    display: flex; align-items: center;
    background: rgba(15,15,15,0.9); backdrop-filter: blur(15px);
    border: 1px solid var(--border); border-radius: 50px;
    padding: 4px; position: fixed;
}
.mode-btn {
    display: flex; align-items: center; gap: 0.4rem;
    padding: 0.5rem 1.2rem;
    background: none; border: none;
    color: var(--mid); font-family: 'Inter', sans-serif;
    font-size: 0.75rem; font-weight: 600;
    cursor: pointer; border-radius: 50px;
    transition: color 0.3s;
    position: relative; z-index: 2;
}
.mode-btn.active { color: var(--bg); }
.mode-btn:hover:not(.active) { color: var(--light); }
.mode-icon { font-size: 1rem; }
.mode-slider {
    position: absolute; top: 4px; left: 4px;
    height: calc(100% - 8px);
    width: calc(50% - 4px);
    background: var(--gold);
    border-radius: 50px;
    transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
    z-index: 1;
}
.mode-slider.right { transform: translateX(100%); }

/* Mode content visibility */
.mode-content { transition: opacity 0.4s ease; }
.mode-content.hidden { display: none; }
.mode-content.fade-out { opacity: 0; }

/* ===== RIDER HERO ===== */
.rider-hero {
    height: 110vh; position: relative; overflow: hidden;
    display: flex; align-items: center; justify-content: center;
}
.rider-hero-media { position: absolute; inset: 0; }
.rider-hero-media img, .rider-hero-media video {
    width: 100%; height: 100%; object-fit: cover;
    object-position: right center;
    filter: brightness(0.45) contrast(1.1) saturate(0.8);
}
.rider-hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.1) 40%, rgba(0,0,0,0.7) 80%, rgba(0,0,0,0.95) 100%);
}
.rider-hero-content {
    position: relative; z-index: 2; text-align: center; max-width: 700px; padding: 0 2rem;
}
.rider-hero-tag {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem; letter-spacing: 3px; color: var(--gold);
    margin-bottom: 1.5rem;
}
.rider-hero-content h1 {
    font-size: clamp(3rem, 7vw, 6rem); font-weight: 900;
    color: var(--white); line-height: 0.95; letter-spacing: -3px;
    margin-bottom: 1.5rem;
}
.rider-hero-content h1 span { color: var(--gold); }
.rider-hero-sub {
    font-size: 1rem; color: var(--light); line-height: 1.8;
    max-width: 500px; margin: 0 auto;
}
.rider-hero-stats {
    position: absolute; bottom: 4rem; left: 0; right: 0;
    display: flex; justify-content: center; gap: 4rem;
    z-index: 2;
}
.rh-stat { text-align: center; }
.rh-val {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.8rem; font-weight: 700; color: var(--white);
    display: block;
}
.rh-val em { color: var(--gold); font-style: normal; font-size: 0.9rem; }
.rh-key { font-size: 0.6rem; letter-spacing: 2px; text-transform: uppercase; color: var(--mid); }

/* ===== RIDER BIKE SECTION ===== */
.rider-bike-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 4rem; align-items: center;
}
.rider-bike-img img { width: 100%; filter: brightness(0.9); }
.rider-bike-info h2 {
    font-size: 2.2rem; font-weight: 700; color: var(--white);
    letter-spacing: -1px; margin-bottom: 1rem;
}
.rider-bike-info h2 span { color: var(--gold); }
.rider-bike-info p { font-size: 0.9rem; color: var(--silver); line-height: 1.8; margin-bottom: 2rem; }
.rider-spec-grid { display: flex; gap: 2rem; flex-wrap: wrap; }
.rider-spec { text-align: center; }
.rs-val {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.4rem; font-weight: 700; color: var(--white); display: block;
}
.rs-val em { color: var(--gold); font-style: normal; font-size: 0.8rem; }
.rs-key { font-size: 0.6rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--mid); margin-top: 0.2rem; display: block; }

/* ===== RIDER VIDEO SECTION ===== */
.rider-video-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #000;
}
.rider-video-section video, .rider-video-img {
    width: 100%;
    display: block;
    filter: brightness(0.7) contrast(1.05);
}
.rider-video-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 40%, rgba(0,0,0,0.3) 100%);
}
.rider-video-text {
    position: absolute;
    bottom: 4rem; right: 4rem;
    z-index: 2;
    text-align: right;
}
.rider-video-text h2 {
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    font-weight: 700; color: var(--white);
    letter-spacing: -1px;
}
.rider-video-text h2 span { color: var(--gold); }
.rider-video-text p {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem; color: var(--silver);
    letter-spacing: 1px; margin-top: 0.5rem;
}

/* ===== RIDER GALLERY GRID ===== */
.rider-gallery-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1rem; margin-top: 2rem;
}
.rider-gal-item {
    position: relative; border-radius: 10px; overflow: hidden;
    aspect-ratio: 4/3; cursor: pointer;
}
.rider-gal-item img {
    width: 100%; height: 100%; object-fit: cover;
    filter: brightness(0.6); transition: all 0.4s;
}
.rider-gal-item:hover img { filter: brightness(0.8); transform: scale(1.05); }
.rider-gal-item span {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 1rem; background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    font-size: 0.8rem; font-weight: 600; color: var(--white);
}

/* ===== RIDER RIDE CARDS ===== */
.rider-rides-list { display: flex; flex-direction: column; gap: 1rem; margin-top: 2rem; }
.rider-ride-card {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: 12px; padding: 2rem; transition: all 0.3s;
}
.rider-ride-card:hover { border-color: var(--gold); }
.rrc-badge {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.6rem; font-weight: 700; letter-spacing: 1.5px;
    text-transform: uppercase; color: var(--gold);
    background: var(--gold-glow); border: 1px solid rgba(201,168,76,0.2);
    padding: 0.3rem 0.8rem; border-radius: 20px;
    display: inline-block; margin-bottom: 0.75rem;
}
.rrc-badge.done { color: #50c878; background: rgba(80,200,120,0.08); border-color: rgba(80,200,120,0.2); }
.rider-ride-card h4 { font-size: 1.1rem; font-weight: 700; color: var(--white); margin-bottom: 0.3rem; }
.rider-ride-card p { font-size: 0.85rem; color: var(--silver); margin-bottom: 0.75rem; }
.rrc-meta { display: flex; gap: 1.5rem; font-size: 0.75rem; color: var(--mid); flex-wrap: wrap; }

/* ===== RIDER RESPONSIVE ===== */
@media (max-width: 768px) {
    .mode-toggle { top: auto; bottom: 1rem; }
    .rider-hero-stats { gap: 2rem; bottom: 2rem; }
    .rider-hero-media img, .rider-hero-media video { object-position: center center; }
    .rider-bike-grid { grid-template-columns: 1fr; }
    .rider-gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .rider-video-text { right: 1.5rem; bottom: 1.5rem; }
}
