*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --black: #000000;
    --white: #F5F5F2;
    --mint: #4DFFAE;
    --aqua: #33D9D9;
    --blue: #072ACB;
    --gray: #6E6E6E;
    --info-blue: #6EA8FF;
    --dark: #0A0A0A;
    --font-d: 'Fustat', sans-serif;
    --font-b: 'Poppins', sans-serif;
    --font-u: 'Fustat', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--black);
    color: var(--white);
    font-family: var(--font-b);
    font-weight: 300;
    overflow-x: hidden;
}

a {
    color: inherit;
}

/* ── NAV ── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 0 3rem;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background 0.4s, backdrop-filter 0.4s;
}

nav.scrolled {
    background: rgba(0, 0, 0, 0.88);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.wordmark {
    font-family: var(--font-d);
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: -0.02em;
    color: var(--white);
    text-decoration: none;
}

.wordmark img {
    height: 52px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    flex-shrink: 0;
}

.nav-links a {
    font-family: var(--font-d);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(245, 245, 242, 0.78);
    text-decoration: none;
    transition: color 0.2s;
    white-space: nowrap;
}

.nav-links a:hover {
    color: var(--mint);
}

.nav-cta {
    font-family: var(--font-d);
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--black);
    background: var(--mint);
    padding: 0.55rem 1.4rem;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
    white-space: nowrap;
}

.nav-cta:hover {
    background: var(--aqua);
    transform: translateY(-1px);
}

/* ── HERO ── */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 9rem 3rem 5rem;
    position: relative;
    overflow: hidden;
}

.hero-eyebrow {
    font-family: var(--font-u);
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--mint);
    margin-bottom: 1.75rem;
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.hero-headline {
    font-family: var(--font-d);
    font-weight: 800;
    font-size: clamp(3rem, 7.4vw, 7.8rem);
    line-height: 1.05;
    letter-spacing: -0.035em;
    color: var(--white);
    max-width: 16ch;
    margin-bottom: 1.5rem;
}

.hero-headline em {
    font-style: normal;
    color: var(--aqua);
}

.hero-headline .accent {
    font-style: normal;
    font-weight: 800;
    background: linear-gradient(100deg, #4DFFAE 0%, #33D9D9 45%, #3A7BFF 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.hero-sub {
    margin-top: 0;
    font-size: 1.15rem;
    font-weight: 300;
    line-height: 1.6;
    color: rgba(245, 245, 242, 0.65);
    max-width: 52ch;
}

.hero-sub strong {
    color: var(--white);
    font-weight: 500;
}

.hero-actions {
    margin-top: 2.75rem;
    display: flex;
    gap: 1.5rem;
    align-items: center;
    flex-wrap: wrap;
}

.btn-primary {
    font-family: var(--font-u);
    font-weight: 700;
    font-size: 0.92rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: var(--mint);
    color: var(--black);
    padding: 1.05rem 2.25rem;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    white-space: nowrap;
}

.btn-primary:hover {
    background: var(--aqua);
    transform: translateY(-2px);
}

.hero-gallery {
    margin-top: 3.25rem;
    display: flex;
    gap: 0.9rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.hero-gallery image-slot {
    display: block;
}

.btn-ghost {
    font-family: var(--font-u);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white);
    text-decoration: none;
    padding: 1.05rem 2.25rem;
    border: 1px solid rgba(245, 245, 242, 0.22);
    transition: border-color 0.2s, color 0.2s;
    white-space: nowrap;
}

.btn-ghost:hover {
    border-color: var(--mint);
    color: var(--mint);
}

/* Hero ribbon SVG */
.hero-ribbon-wrap {
    position: absolute;
    bottom: -90px;
    left: -10%;
    width: 120%;
    height: 400px;
    pointer-events: none;
}

.ribbon-svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}

.ribbon-path-1 {
    animation: flowRibbon 14s ease-in-out infinite;
}

.ribbon-path-2 {
    animation: flowRibbon 18s ease-in-out infinite reverse;
    opacity: 0.45;
}

.ribbon-path-3 {
    animation: flowRibbon 10s ease-in-out infinite;
    opacity: 0.18;
}

@keyframes flowRibbon {
    0% {
        transform: translateX(0) translateY(0);
    }

    33% {
        transform: translateX(-40px) translateY(20px);
    }

    66% {
        transform: translateX(30px) translateY(-10px);
    }

    100% {
        transform: translateX(0) translateY(0);
    }
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* ── MARQUEE ── */
/* ── MARQUEE ── */
.marquee-wrap {
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    padding: 1.1rem 0;
    background: var(--dark);
}

.marquee-track {
    display: flex;
    gap: 0;
    width: max-content;
    will-change: transform; /* Optimización de aceleración por GPU */
}

.marquee-item {
    font-family: var(--font-u);
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(245, 245, 242, 0.62);
    white-space: nowrap;
    padding: 0 2rem;
}

.marquee-item span {
    color: var(--mint);
    margin-right: 2rem;
}

/* ── SECTIONS ── */
section {
    padding: 7rem 3rem;
    position: relative;
}

.section-label {
    font-family: var(--font-u);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--mint);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.section-title {
    font-family: var(--font-d);
    font-weight: 800;
    font-size: clamp(2.4rem, 5.5vw, 5rem);
    line-height: 1.05;
    letter-spacing: -0.025em;
    margin-bottom: 1.5rem;
}

.section-title .accent,
.section-title em {
    font-style: normal;
    background: linear-gradient(100deg, #4DFFAE 0%, #33D9D9 45%, #3A7BFF 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.grad-text {
    background: linear-gradient(100deg, #4DFFAE 0%, #33D9D9 45%, #3A7BFF 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

/* ── IMAGE SLOT dark-mode override ── */
image-slot {
    background: rgba(255, 255, 255, 0.05) !important;
    outline: 1px dashed rgba(77, 255, 174, 0.22);
    color: rgba(245, 245, 242, 0.45) !important;
}

/* ── WORK / BILLBOARDS ── */
.work-section {
    background: var(--dark);
}

.work-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.work-link {
    font-family: var(--font-u);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(245, 245, 242, 0.45);
    text-decoration: none;
    border-bottom: 1px solid rgba(245, 245, 242, 0.2);
    padding-bottom: 2px;
    transition: color 0.2s;
}

.work-link:hover {
    color: var(--mint);
    border-color: var(--mint);
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.work-card {
    display: flex;
    flex-direction: column;
}

.work-thumb {
    overflow: hidden;
    position: relative;
}

.work-thumb image-slot {
    display: block;
    width: 100%;
    transition: transform 0.7s cubic-bezier(.2, .7, .2, 1);
}

.work-card:hover .work-thumb image-slot {
    transform: scale(1.06);
}

.work-card:hover .work-card-name {
    color: var(--mint);
}

.work-card-name {
    transition: color 0.3s ease;
}

.work-card-meta {
    margin-top: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.work-card-name {
    font-family: var(--font-d);
    font-weight: 600;
    font-size: 1.05rem;
    letter-spacing: -0.01em;
}

.work-card-type {
    font-family: var(--font-u);
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gray);
}

.work-intro {
    font-family: var(--font-b);
    font-weight: 300;
    font-size: 1.05rem;
    line-height: 1.55;
    color: rgba(245, 245, 242, 0.6);
    max-width: 46ch;
    margin-top: 0;
}


.why-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: flex-end;
}

.why-left {
    position: sticky;
    top: 8rem;
}

.why-lead {
    font-family: var(--font-d);
    font-size: 1.5rem;
    line-height: 1.45;
    color: rgba(245, 245, 242, 0.75);
    margin-top: 0;
    max-width: 38ch;
    font-weight: 400;
}

.why-lead strong {
    color:#F5F5F2
}

.why-checks {
    display: flex;
    flex-direction: column;
}

.why-visual {
    margin-top: 2.25rem;
}

.why-visual image-slot {
    display: block;
    width: 100%;
}

.why-check {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.why-check:last-child {
    border-bottom: none;
}

.check-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border: 1.5px solid var(--mint);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--mint);
}

.check-icon svg {
    width: 18px;
    height: 18px;
}

.check-content h4 {
    font-family: var(--font-d);
    font-weight: 600;
    font-size: 1.25rem;
    letter-spacing: -0.01em;
    margin-bottom: 0.35rem;
}

.check-content p {
    font-size: 0.92rem;
    color: rgba(245, 245, 242, 0.55);
    line-height: 1.55;
    font-weight: 300;
}

/* ── WHAT WE DO ── */
.do-section {
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

.do-lines {
    position: absolute;
    top: 4rem;
    left: -10%;
    width: 130%;
    height: auto;
    z-index: 0;
    opacity: 0.2;
    pointer-events: none;
    animation: driftLines 22s ease-in-out infinite;
    will-change: transform;
}

@keyframes driftLines {
    0% {
        transform: translate(0, 0) scale(1);
    }

    30% {
        transform: translate(-34px, 14px) scale(1.02);
    }

    60% {
        transform: translate(26px, -10px) scale(1.01);
    }

    100% {
        transform: translate(0, 0) scale(1);
    }
}

.do-header {
    position: relative;
    z-index: 1;
    max-width: 70rem;
    margin-bottom: 4rem;
}

.do-lead {
    font-family: var(--font-d);
    font-size: 1.5rem;
    line-height: 1.45;
    color: rgba(245, 245, 242, 0.75);
    margin-top: 1.5rem;
    font-weight: 400;
    max-width: 58ch;
}

.do-lead strong {
    color: var(--white);
    font-weight: 600;
}

.do-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: #1c1c1c;
    border: 1px solid #1c1c1c;
}

.do-card {
    background: var(--dark);
    padding: 2.5rem;
    transition: background 0.3s;
    cursor: default;
}

.do-card:hover {
    background: #0F0F0F;
}

.do-card:hover .do-num {
    color: var(--mint);
}

.do-num {
    font-family: var(--font-u);
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gray);
    margin-bottom: 1.5rem;
    transition: color 0.3s;
}

.do-name {
    font-family: var(--font-d);
    font-weight: 700;
    font-size: 1.65rem;
    letter-spacing: -0.015em;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.do-desc {
    font-size: 0.95rem;
    color: rgba(245, 245, 242, 0.55);
    line-height: 1.65;
    font-weight: 300;
    max-width: 38ch;
}

/* ── FOUR POSITIONS ── */
.positions-section {
    padding-bottom: 4rem;
}

.positions-list {
    display: flex;
    flex-direction: column;
    margin-top: 1rem;
}

.position {
    display: grid;
    grid-template-columns: 100px 1fr 1.2fr;
    gap: 3rem;
    align-items: start;
    padding: 3rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: padding-left 0.3s;
}

.position:hover {
    padding-left: 1.5rem;
}

.position:hover .position-num {
    color: var(--mint);
}

.position:hover .position-num::before {
    width: 36px;
    background: linear-gradient(90deg, var(--mint), var(--blue));
}

.position-num {
    font-family: var(--font-u);
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.22em;
    color: var(--gray);
    display: flex;
    align-items: center;
    transition: color 0.3s;
}

@media (max-width: 768px) {
    .position-num {
        display: none;
    }
}

.position-num::before {
    content: '';
    width: 22px;
    height: 1px;
    background: rgba(255, 255, 255, 0.15);
    margin-right: 0.85rem;
    transition: width 0.3s, background 0.3s;
}

.position-title {
    font-family: var(--font-d);
    font-weight: 700;
    font-size: clamp(1.6rem, 2.6vw, 2.4rem);
    line-height: 1.05;
    letter-spacing: -0.02em;
}

.position-body {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(245, 245, 242, 0.6);
    font-weight: 300;
    max-width: 48ch;
}

/* ── LET'S RIDE — road section ── */
/* Shared glow zone: ride + stats live in one clipping container so the
       cursor orb crosses between them without a visible cut */
.glow-zone {
    position: relative;
    overflow: hidden;
    background: var(--dark);
}

.ride-section {
    background: none;
    padding: 4rem 1rem 3rem;
}

.ride-header {
    text-align: center;
    max-width: 50rem;
    margin: 0 auto 5rem;
}

.ride-title {
    font-family: var(--font-d);
    font-weight: 800;
    font-size: clamp(3rem, 8vw, 7rem);
    line-height: 1.05;
    letter-spacing: -0.035em;
}

.ride-title .accent {
    color: transparent;
    background: linear-gradient(90deg, var(--mint), var(--aqua), var(--blue));
    -webkit-background-clip: text;
    background-clip: text;
    font-style: normal;
}

.ride-tagline {
    font-family: var(--font-d);
    font-size: 1.3rem;
    color: rgba(245, 245, 242, 0.7);
    margin-top: 1.5rem;
    font-weight: 400;
}

.ride-road-wrap {
    position: relative;
    max-width: 1440px;
    margin: 0 auto;
    min-height: 540px;
}

/* Full-width road behind the stops */
.ride-road {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.ride-road svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}

.ride-stops {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding-top: 2rem;
}

.ride-stop {
    position: relative;
    padding: 2.25rem 1.75rem;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(4px);
    min-height: 460px;
    display: flex;
    flex-direction: column;
    align-self: start;
}

.ride-stop-img {
    margin: 1.5rem 0 1rem;
}

.ride-stop-img image-slot {
    display: block;
    width: 100%;
}

.ride-stop:nth-child(1) {
    margin-top: 200px;
}

.ride-stop:nth-child(2) {
    margin-top: 110px;
}

.ride-stop:nth-child(3) {
    margin-top: 20px;
}

.ride-marker {
    position: absolute;
    top: -22px;
    left: 1.75rem;
    width: 44px;
    height: 44px;
    background: var(--mint);
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-u);
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
}

.ride-stop:nth-child(2) .ride-marker {
    background: var(--aqua);
}

.ride-stop:nth-child(3) .ride-marker {
    background: var(--blue);
    color: var(--white);
}

.ride-stop h4 {
    font-family: var(--font-d);
    font-weight: 700;
    font-size: 1.6rem;
    letter-spacing: -0.02em;
    margin: 1rem 0 1rem;
    line-height: 1.05;
}

.ride-stop p {
    font-size: 0.92rem;
    line-height: 1.6;
    color: rgba(245, 245, 242, 0.6);
    font-weight: 300;
}

/* ── STATS ── */
.stats-section {
    background: none;
    padding: 7rem 3rem;
    position: relative;
}

.stats-eyebrow {
    font-family: var(--font-u);
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--mint);
    text-align: center;
    margin-bottom: 3rem;
}

.stats-statement {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(2.5rem, 6vw, 5.5rem);
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.stat-figure {
    display: flex;
    align-items: stretch;
    gap: 1.1rem;
}

.stat-number {
    font-family: var(--font-d);
    font-weight: 800;
    font-size: clamp(11rem, 20vw, 17rem);
    line-height: 1;
    letter-spacing: -0.05em;
    /* negative tracking pulls the last glyph past the box edge;
         pad it back in so background-clip:text paints the full "5" */
    padding-right: 0.07em;
    margin-right: -0.07em;
    background: linear-gradient(100deg, #4DFFAE 0%, #33D9D9 45%, #3A7BFF 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.stats-statement:hover .stat-number {
    transform: scale(1.03);
}

.stat-label {
    font-family: var(--font-u);
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(245, 245, 242, 0.55);
    writing-mode: vertical-lr;
    text-orientation: upright;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.1em 0 2.4em;
}

.stat-divider {
    width: 1px;
    align-self: stretch;
    min-height: 140px;
    background: linear-gradient(180deg, transparent, var(--mint) 30%, var(--aqua) 70%, transparent);
}

.stat-headline {
    font-family: var(--font-d);
    font-weight: 800;
    font-size: clamp(2.6rem, 5.2vw, 4.6rem);
    line-height: 1.02;
    letter-spacing: -0.03em;
    color: var(--white);
    margin: 0;
}

.stat-headline .accent {
    background: linear-gradient(100deg, #4DFFAE 0%, #33D9D9 45%, #3A7BFF 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

/* ── ABOUT ── */
.about-section {
    background: var(--black);
    overflow: hidden;
}

.about-inner {
    width: 100%;
}

.about-top {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    grid-template-rows: auto auto;
    column-gap: clamp(3rem, 8vw, 7rem);
    row-gap: 0;
    align-items: start;
    padding-bottom: 5.5rem;
}

.about-top .section-label {
    grid-column: 1;
    grid-row: 1;
}

.about-quote {
    grid-column: 1;
    grid-row: 2;
    font-family: var(--font-d);
    font-weight: 800;
    font-size: clamp(2.2rem, 4.4vw, 4rem);
    line-height: 1.08;
    letter-spacing: -0.03em;
    margin: 0;
    color: var(--white);
}

.about-quote .accent,
.about-quote em {
    font-style: normal;
    background: linear-gradient(100deg, #4DFFAE 0%, #33D9D9 45%, #3A7BFF 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.about-right {
    grid-column: 2;
    grid-row: 2;
    padding-top: 0.45rem;
}

.about-body {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-body p {
    font-size: 1.02rem;
    font-weight: 300;
    line-height: 1.7;
    color: rgba(245, 245, 242, 0.7);
    margin: 0;
}

.about-body p strong {
    color: var(--white);
    font-weight: 600;
}

/* stats row */
.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.about-stat {
    padding: 3rem 2.5rem;
    border-left: 1px solid rgba(245, 245, 242, 0.14);
}

.about-stat:first-child {
    border-left: 0;
    padding-left: 0;
}

.about-stat:last-child {
    padding-right: 0;
}

.about-stat-number {
    font-family: var(--font-d);
    font-weight: 800;
    font-size: clamp(2.4rem, 4.4vw, 3.9rem);
    line-height: 1;
    letter-spacing: -0.03em;
    margin-bottom: 1.1rem;
}

.about-stat:nth-child(1) .about-stat-number { color: #4DFFAE; }
.about-stat:nth-child(2) .about-stat-number { color: #33D9D9; }
.about-stat:nth-child(3) .about-stat-number { color: #3A7BFF; }

.about-stat-label {
    font-family: var(--font-u);
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(245, 245, 242, 0.45);
}

/* ── INDUSTRIES ── */
.industries-section {
    background: var(--dark);
    padding: 7rem 3rem;
}

.industries-lead {
    font-family: var(--font-d);
    font-size: 1.5rem;
    color: rgba(245, 245, 242, 0.75);
    margin-top: 1rem;
    max-width: 48ch;
    font-weight: 400;
    line-height: 1.5;
}

.industries-grid {
    margin-top: 4rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.07);
}

.industry-cell {
    background: var(--dark);
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    transition: background 0.3s;
}

.industry-cell:hover {
    background: #0F0F0F;
}

.industry-name {
    font-family: var(--font-d);
    font-weight: 600;
    font-size: 1.2rem;
    letter-spacing: -0.01em;
}

.industry-tag {
    font-family: var(--font-u);
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--info-blue);
}

/* ── TEAM ── */
.team-section {
    padding: 0rem 3rem;
}

.team-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.team-lead {
    font-family: var(--font-d);
    font-size: 1.2rem;
    color: rgba(245, 245, 242, 0.7);
    max-width: 40ch;
    font-weight: 400;
    line-height: 1.55;
}

/*.team-layout {*/
/*    display: grid;*/
/*    grid-template-columns: 1.4fr 2fr;*/
/*    gap: 2.5rem;*/
/*    align-items: flex-start;*/
/*}*/

.team-group image-slot {
    display: block;
    width: 100%;
}

.team-carousel-wrap {
    position: relative;
    min-width: 0;
}

.team-carousel {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding-bottom: 0.25rem;
}

.team-carousel::-webkit-scrollbar {
    display: none;
}

.team-card {
    flex: 0 0 200px;
    scroll-snap-align: start;
}

.team-carousel-nav {
    display: flex;
    gap: 0.6rem;
    margin-top: 1.25rem;
}

.team-carousel-btn {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: transparent;
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.2s, color 0.2s;
}

.team-carousel-btn:hover {
    border-color: var(--mint);
    color: var(--mint);
}

.team-card-meta {
    margin-top: 0.9rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 0.35rem;
}

/*@media (max-width: 900px) {*/
/*    .team-layout {*/
/*        grid-template-columns: 1fr;*/
/*    }*/
/*}*/

/* Desktop: grid 4x2 instead of carousel */
@media (min-width: 901px) {
    .team-carousel {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem 1.5rem;
        overflow-x: visible;
        scroll-snap-type: none;
    }

    .team-card {
        flex: none;
        scroll-snap-align: none;
    }

    .team-carousel-nav {
        display: none;
    }

    /*.team-card-meta {*/
    /*    flex-direction: column;*/
    /*    justify-content: flex-start;*/
    /*    align-items: flex-start;*/
    /*    gap: 0.35rem;*/
    /*    margin-top: 0.9rem;*/
    /*}*/
}

.team-card-name {
    font-family: var(--font-d);
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: -0.01em;
}

.team-card-role {
    font-family: var(--font-u);
    font-weight: 600;
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gray);
}

/* ── CTA ── */
.cta-section {
    background: var(--black);
    position: relative;
    overflow: hidden;
    text-align: center;
    padding: 6rem 3rem;
}

.cta-eyebrow {
    font-family: var(--font-u);
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--mint);
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.cta-headline {
    font-family: var(--font-d);
    font-weight: 800;
    font-size: clamp(3.4rem, 9vw, 9rem);
    line-height: 1.05;
    letter-spacing: -0.035em;
    color: var(--white);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.cta-headline .accent {
    font-style: normal;
}

.cta-sub {
    font-family: var(--font-b);
    font-weight: 300;
    font-size: clamp(1.05rem, 1.6vw, 1.4rem);
    line-height: 1.5;
    color: rgba(245, 245, 242, 0.72);
    max-width: 42ch;
    margin: 0 auto 2.75rem;
    position: relative;
    z-index: 2;
}

.cta-actions {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.cta-ribbon-wrap {
    position: absolute;
    top: 50%;
    left: -5%;
    transform: translateY(-50%);
    width: 110%;
    height: 320px;
    pointer-events: none;
    opacity: 0.22;
    z-index: 1;
}

.cta-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0.28;
}

.cta-bg image-slot {
    display: block;
    width: 100%;
    height: 100%;
}

/* ── FOOTER ── */
footer {
    background: var(--dark);
    padding: 3rem 3rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-wordmark {
    font-family: var(--font-u);
    font-weight: 800;
    font-size: 1.4rem;
    letter-spacing: -0.01em;
    color: var(--white);
}

.footer-wordmark img {
    height: 54px;
    width: auto;
    display: block;
}

.footer-wordmark span {
    color: var(--mint);
}

.footer-tagline {
    font-family: var(--font-d);
    font-size: 0.95rem;
    color: rgba(245, 245, 242, 0.5);
    margin-top: 0.5rem;
    max-width: 32ch;
    line-height: 1.5;
}

.footer-cols {
    display: flex;
    gap: 4rem;
}

.footer-col h5 {
    font-family: var(--font-u);
    font-weight: 700;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(245, 245, 242, 0.4);
    margin-bottom: 0.85rem;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.footer-col a {
    font-family: var(--font-u);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    color: rgba(245, 245, 242, 0.75);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: var(--mint);
}

.footer-bottom {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-info {
    font-family: var(--font-u);
    font-weight: 600;
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(245, 245, 242, 0.3);
}

/* ── REVEAL ── */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-d0 {
    transition-delay: 0.1s;
}

.reveal-d1 {
    transition-delay: 0.2s;
}

.reveal-d2 {
    transition-delay: 0.3s;
}

.reveal-d3 {
    transition-delay: 0.4s;
}

/* ── ANIMATIONS & MICROINTERACTIONS ── */
html {
    scroll-behavior: smooth;
}

/* ── MOBILE MENU ── */
.nav-burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: none;
    border: 1px solid rgba(245, 245, 242, 0.22);
    cursor: pointer;
    padding: 0 10px;
    margin-left: 0.75rem;
}

.nav-burger span {
    display: block;
    height: 2px;
    width: 100%;
    background: var(--white);
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.2s;
}

.nav-burger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-burger.open span:nth-child(2) {
    opacity: 0;
}

.nav-burger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

#mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 95;
    /* below nav (100) so the burger stays tappable to close */
    background: rgba(5, 5, 5, 0.7);
    -webkit-backdrop-filter: blur(24px) saturate(1.3);
    backdrop-filter: blur(24px) saturate(1.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.2rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 5.5rem 1.5rem 2rem;
}

@media (max-height: 500px) {
    #mobile-menu {
        gap: 1.1rem;
        justify-content: flex-start;
    }

    #mobile-menu a {
        font-size: 1.4rem;
    }
}

#mobile-menu.open {
    opacity: 1;
    pointer-events: auto;
}

#mobile-menu a {
    font-family: var(--font-d);
    font-weight: 800;
    font-size: 2rem;
    letter-spacing: -0.02em;
    color: var(--white);
    text-decoration: none;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), color 0.25s;
}

#mobile-menu.open a {
    opacity: 1;
    transform: translateY(0);
}

#mobile-menu a:hover {
    color: var(--mint);
}

#mobile-menu a.mm-cta {
    color: var(--mint);
}

#mobile-menu.open a:nth-child(1) {
    transition-delay: 0.08s;
}

#mobile-menu.open a:nth-child(2) {
    transition-delay: 0.14s;
}

#mobile-menu.open a:nth-child(3) {
    transition-delay: 0.20s;
}

#mobile-menu.open a:nth-child(4) {
    transition-delay: 0.26s;
}

#mobile-menu.open a:nth-child(5) {
    transition-delay: 0.32s;
}

#mobile-menu.open a:nth-child(6) {
    transition-delay: 0.38s;
}

/* Custom scrollbar */
html {
    scrollbar-width: thin;
    /* Firefox */
    scrollbar-color: #33D9D9 #0A0A0A;
    /* Firefox: thumb / track */
}

::-webkit-scrollbar {
    width: 11px;
    height: 11px;
}

::-webkit-scrollbar-track {
    background: #060606;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #4DFFAE 0%, #33D9D9 50%, #3A7BFF 100%);
    border-radius: 8px;
    border: 2px solid #060606;
    background-clip: padding-box;
    min-height: 48px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #7BFFC6 0%, #5CE8E8 50%, #6496FF 100%);
    border: 2px solid #060606;
    background-clip: padding-box;
}

::-webkit-scrollbar-corner {
    background: #060606;
}

/* Glass panels (work modal) get a subtler thumb */
.work-modal-panel::-webkit-scrollbar {
    width: 8px;
}

.work-modal-panel::-webkit-scrollbar-track {
    background: transparent;
}

.work-modal-panel::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.22);
    border: none;
    border-radius: 8px;
}

.work-modal-panel::-webkit-scrollbar-thumb:hover {
    background: rgba(77, 255, 174, 0.5);
    border: none;
}

/* Scroll progress bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #4DFFAE, #33D9D9, #3A7BFF);
    transform-origin: left;
    transform: scaleX(0);
    z-index: 300;
    pointer-events: none;
}

/* Hero entrance */
@keyframes heroUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-eyebrow {
    animation: heroUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.1s both;
}

.hero-sub {
    animation: heroUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.38s both;
}

.hero-actions {
    animation: heroUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.5s both;
}

.hero-gallery {
    animation: heroUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.62s both;
}

/* Letter-by-letter entrance (hero + CTA headlines) */
@keyframes charUp {
    from {
        opacity: 0;
        transform: translateY(0.45em);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.split-target .word {
    display: inline-block;
    white-space: nowrap;
}

.split-target .char {
    display: inline-block;
    white-space: pre;
}

.split-target.presplit .char {
    opacity: 0;
}

.split-target.split .char {
    opacity: 1;
    animation: charUp 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
}

/* Hero mouse interaction: cursor glow + ribbon parallax */
.hero-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 300px;
    height: 300px;
    margin: -150px 0 0 -150px;
    border-radius: 50%;
    background: radial-gradient(circle,
            rgba(77, 255, 174, 0.14) 0%,
            rgba(51, 217, 217, 0.08) 35%,
            rgba(58, 123, 255, 0.04) 60%,
            transparent 72%);
    mix-blend-mode: screen;
    pointer-events: none;
    opacity: 0;
    will-change: transform, opacity;
    z-index: 1;
}

/* Glow opacity is driven by JS (fades near section edges so the orb
       never shows up clipped at a section boundary) */
/* Ride/Stats zone: empty dark background shows the orb's full extent,
       so it reads bigger than in the hero — size it down to match perception */
.glow-zone .hero-glow {
    width: 220px;
    height: 220px;
    margin: -110px 0 0 -110px;
}

.hero-ribbon-wrap {
    will-change: transform;
    transition: transform 0.15s linear;
}

@media (prefers-reduced-motion: reduce),
(pointer: coarse) {
    .hero-glow {
        display: none;
    }
}

/* Nav microinteractions */
.nav-links a {
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 1.5px;
    background: var(--mint);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}

.nav-links a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-cta:active {
    transform: translateY(-1px) scale(0.96);
}

/* Buttons: sheen sweep + press feedback */
.btn-primary {
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -80%;
    width: 50%;
    height: 100%;
    background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.45), transparent);
    transform: skewX(-20deg);
    transition: left 0.55s ease;
    pointer-events: none;
}

.btn-primary:hover::before {
    left: 130%;
}

.btn-primary:active {
    transform: translateY(-2px) scale(0.96);
}

.btn-ghost:active {
    transform: scale(0.96);
}

.btn-ghost {
    transition: border-color 0.2s, color 0.2s, transform 0.15s;
}

/* Marquee: pause on hover */
.marquee-wrap:hover .marquee-track {
    animation-play-state: paused;
}

/* Work cards: lift + arrow nudge */
.work-card {
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.work-card:hover {
    transform: translateY(-6px);
}

.work-link {
    transition: color 0.2s, border-color 0.2s;
}

.work-link:hover {
    letter-spacing: 0.02em;
}

/* Why checks: icon draw-in + row highlight */
.check-icon {
    transition: background 0.25s, transform 0.25s;
}

.check-icon svg polyline {
    stroke-dasharray: 24;
    stroke-dashoffset: 24;
    transition: stroke-dashoffset 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.35s;
}

.why-check.visible .check-icon svg polyline {
    stroke-dashoffset: 0;
}

.why-check {
    transition: opacity 0.7s ease, transform 0.7s ease, padding-left 0.25s ease;
}

.why-check:hover {
    padding-left: 0.5rem;
}

.why-check:hover .check-icon {
    background: rgba(77, 255, 174, 0.12);
    transform: scale(1.08);
}

/* Do cards: lift + top accent line */
.do-card {
    position: relative;
    transition: background 0.3s, transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.do-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--mint), var(--aqua));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.do-card:hover {
    transform: translateY(-5px);
}

.do-card:hover::after {
    transform: scaleX(1);
}

/* Positions: smooth accent */
.position {
    transition: opacity 0.7s ease, transform 0.7s ease, padding-left 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.position-title {
    transition: color 0.25s;
}

.position:hover .position-title {
    color: var(--mint);
}

/* Ride stops: lift + marker pop */
.ride-stop {
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.ride-stop:hover {
    transform: translateY(-6px);
}

.ride-marker {
    transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.ride-stop:hover .ride-marker {
    transform: scale(1.15) rotate(-4deg);
}

/* Industry cells: accent bar + slide */
.industry-cell {
    position: relative;
    transition: background 0.25s, transform 0.25s ease;
}

.industry-cell::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, var(--mint), var(--aqua));
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.industry-cell:hover {
    transform: translateX(6px);
}

.industry-cell:hover::before {
    transform: scaleY(1);
}

.industry-cell:hover .industry-tag {
    color: var(--mint);
}

.industry-tag {
    transition: color 0.25s;
}

/* Team cards: image zoom + lift */
.team-card,
.team-group {
    overflow: hidden;
}

.team-card image-slot,
.team-group image-slot {
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.team-card:hover image-slot,
.team-group:hover image-slot {
    transform: scale(1.05);
}

.team-card {
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.team-card:hover {
    transform: translateY(-5px);
}


/* Footer links: underline slide */
.footer-col a {
    position: relative;
}

.footer-col a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 100%;
    height: 1px;
    background: var(--mint);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.25s ease;
}

.footer-col a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* ── WORK MODAL (glassmorphism) ── */
#work-modal {
    position: fixed;
    inset: 0;
    z-index: 400;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2.5rem 1.5rem;
}

#work-modal[hidden] {
    display: none;
}

.work-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(5, 5, 5, 0.55);
    -webkit-backdrop-filter: blur(18px) saturate(1.3);
    backdrop-filter: blur(18px) saturate(1.3);
    opacity: 0;
    transition: opacity 0.45s ease;
}

#work-modal.open .work-modal-backdrop {
    opacity: 1;
}

.work-modal-panel {
    position: relative;
    width: min(1240px, 100%);
    max-height: 88vh;
    overflow-y: auto;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035));
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 22px;
    -webkit-backdrop-filter: blur(26px);
    backdrop-filter: blur(26px);
    box-shadow: 0 40px 90px rgba(0, 0, 0, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.18);
    padding: 3rem clamp(1.5rem, 4vw, 3.5rem) 3.5rem;
    clip-path: circle(0% at 88% 4%);
    opacity: 0;
    transition: clip-path 0.75s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s ease;
}

#work-modal.open .work-modal-panel {
    clip-path: circle(160% at 88% 4%);
    opacity: 1;
}

.work-modal-close {
    position: sticky;
    top: 0;
    float: right;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.3rem;
    line-height: 1;
    cursor: pointer;
    z-index: 2;
    transition: background 0.25s, transform 0.25s, border-color 0.25s;
}

.work-modal-close:hover {
    background: rgba(77, 255, 174, 0.18);
    border-color: var(--mint);
    transform: rotate(90deg);
}

.work-modal-eyebrow {
    font-family: var(--font-u);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--mint);
    margin-bottom: 0.9rem;
}

.work-modal-title {
    font-family: var(--font-d);
    font-weight: 800;
    font-size: clamp(2rem, 4vw, 3.2rem);
    letter-spacing: -0.03em;
    line-height: 1.05;
    color: var(--white);
    margin: 0 0 2.5rem;
}

.work-modal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.wm-tile {
    opacity: 0;
}

#work-modal.open .wm-tile {
    animation: heroUp 0.6s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.wm-thumb {
    overflow: hidden;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.wm-thumb image-slot {
    display: block;
    width: 100%;
    height: 210px;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.wm-tile:hover .wm-thumb image-slot {
    transform: scale(1.06);
}

.wm-meta {
    margin-top: 0.85rem;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1rem;
}

.wm-name {
    font-family: var(--font-d);
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: -0.01em;
    color: var(--white);
    transition: color 0.25s;
}

.wm-tile:hover .wm-name {
    color: var(--mint);
}

.wm-type {
    font-family: var(--font-u);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(245, 245, 242, 0.5);
    white-space: nowrap;
}

@media (max-width: 900px) {
    .work-modal-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .ride-section {
        overflow: hidden;
    }
    
    .ride-road svg {
        overflow: hidden;
    }
}

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

    .work-modal-panel {
        padding: 2rem 1.25rem 2.5rem;
    }
}

/* Reduced motion: kill decorative animation, keep content visible */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }

    .check-icon svg polyline {
        stroke-dashoffset: 0;
    }

    .scroll-progress {
        display: none;
    }
}

/* ── CAMPAIGN MODAL ── */
#campaign-modal {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
}

#campaign-modal[hidden] {
    display: none;
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.82);
    backdrop-filter: blur(6px);
    animation: backdropIn 0.3s ease;
}

@keyframes backdropIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.modal-sheet {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 820px;
    max-height: 92vh;
    background: #0D0D0D;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    overflow-y: auto;
    padding: 2.5rem 2.5rem 3rem;
    animation: sheetUp 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    scrollbar-width: none;
}

.modal-sheet::-webkit-scrollbar {
    display: none;
}

@keyframes sheetUp {
    from {
        transform: translateY(24px) scale(0.98);
        opacity: 0;
    }

    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: rgba(255, 255, 255, 0.06);
    border: none;
    color: rgba(245, 245, 242, 0.5);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    border-radius: 2px;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.modal-ribbon {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 70px;
    pointer-events: none;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
}

.modal-header {
    margin-top: 1.5rem;
    margin-bottom: 2rem;
}

.modal-eyebrow {
    font-family: var(--font-u);
    font-weight: 700;
    font-size: 0.72rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--mint);
    margin-bottom: 0.5rem;
}

.modal-title {
    font-family: var(--font-d);
    font-weight: 800;
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 0.95;
    letter-spacing: -0.03em;
    margin-bottom: 0.75rem;
}

.modal-subtitle {
    font-size: 0.95rem;
    color: rgba(245, 245, 242, 0.55);
    font-weight: 300;
    line-height: 1.6;
}

/* Steps indicator */
.modal-steps {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 2.25rem;
}

.modal-step {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.35;
    transition: opacity 0.3s;
}

.modal-step.active {
    opacity: 1;
}

.modal-step.done {
    opacity: 0.7;
}

.step-num {
    font-family: var(--font-u);
    font-weight: 700;
    font-size: 0.68rem;
    letter-spacing: 0.15em;
    color: var(--mint);
}

.step-label {
    font-family: var(--font-u);
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.step-connector {
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0 1rem;
}

/* Form steps */
fieldset {
    border: none;
    padding: 0;
    margin: 0;
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
}

.form-row {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-row.two-col {
    flex-direction: row;
}

.form-row.two-col .form-group {
    flex: 1;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

.form-group label {
    font-family: var(--font-u);
    font-weight: 600;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(245, 245, 242, 0.65);
}

.req {
    color: var(--mint);
}

.opt {
    color: var(--gray);
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
    font-size: 0.72rem;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select,
.form-group textarea {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-family: var(--font-b);
    font-size: 0.95rem;
    font-weight: 300;
    padding: 0.85rem 1rem;
    outline: none;
    transition: border-color 0.2s, background 0.2s;
    border-radius: 0;
    width: 100%;
    -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(245, 245, 242, 0.2);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--mint);
    background: rgba(77, 255, 174, 0.04);
}

.form-group select option {
    background: #1a1a1a;
}

.form-group textarea {
    resize: vertical;
    min-height: 110px;
}

/* Format checkboxes + optional campaign photo */
.format-row {
    display: flex;
    gap: 1.5rem;
    align-items: stretch;
}

.format-row .check-grid {
    flex: 1;
}

.format-image {
    width: 140px;
    flex-shrink: 0;
}

.format-image image-slot {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 160px;
}

@media (max-width: 600px) {
    .format-row {
        flex-direction: column;
    }

    .format-image {
        width: 100%;
        height: 140px;
    }
}

/* Checkbox pills */
.check-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.check-pill {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-family: var(--font-u);
    font-weight: 600;
    font-size: 0.82rem;
    letter-spacing: 0.06em;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s, color 0.2s;
    color: rgba(245, 245, 242, 0.65);
    user-select: none;
}

.check-pill:hover {
    border-color: rgba(77, 255, 174, 0.4);
    color: var(--white);
}

.check-pill input {
    display: none;
}

.check-pill:has(input:checked) {
    border-color: var(--mint);
    background: rgba(77, 255, 174, 0.1);
    color: var(--mint);
}

/* Radio pills */
.radio-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.radio-pill {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-family: var(--font-u);
    font-weight: 600;
    font-size: 0.82rem;
    letter-spacing: 0.06em;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s, color 0.2s;
    color: rgba(245, 245, 242, 0.65);
    user-select: none;
}

.radio-pill:hover {
    border-color: rgba(77, 255, 174, 0.4);
    color: var(--white);
}

.radio-pill input {
    display: none;
}

.radio-pill:has(input:checked) {
    border-color: var(--mint);
    background: rgba(77, 255, 174, 0.1);
    color: var(--mint);
}

/* Modal nav */
.modal-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.modal-nav-right {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.modal-step-counter {
    font-family: var(--font-u);
    font-weight: 600;
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gray);
}

.modal-btn-back {
    font-family: var(--font-u);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: none;
    border: none;
    color: rgba(245, 245, 242, 0.45);
    cursor: pointer;
    transition: color 0.2s;
    padding: 0;
}

.modal-btn-back:hover {
    color: var(--white);
}

.modal-btn-next,
.modal-btn-submit {
    font-family: var(--font-u);
    font-weight: 700;
    font-size: 0.88rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: var(--mint);
    color: var(--black);
    border: none;
    padding: 0.85rem 2rem;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    white-space: nowrap;
}

.modal-btn-next:hover,
.modal-btn-submit:hover {
    background: var(--aqua);
    transform: translateY(-1px);
}

/* Success state */
.modal-success {
    text-align: center;
    padding: 3rem 1rem 1rem;
}

.modal-success[hidden] {
    display: none;
}

.success-icon {
    margin-bottom: 1.5rem;
}

.success-title {
    font-family: var(--font-d);
    font-weight: 800;
    font-size: 2.5rem;
    letter-spacing: -0.025em;
    margin-bottom: 1rem;
}

.success-body {
    color: rgba(245, 245, 242, 0.6);
    font-weight: 300;
    line-height: 1.65;
    max-width: 36ch;
    margin: 0 auto;
}

@media (max-width: 600px) {
    .modal-sheet {
        padding: 2rem 1.25rem 2.5rem;
    }

    .form-row.two-col {
        flex-direction: column;
    }
}

#tweaks-panel {
    display: none;
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    background: rgba(10, 10, 10, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    padding: 1.5rem;
    z-index: 999;
    width: 250px;
    font-family: var(--font-u);
}

#tweaks-panel h3 {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--mint);
    margin-bottom: 1.25rem;
    font-weight: 700;
}

.tweak-row {
    margin-bottom: 1.1rem;
}

.tweak-row label {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(245, 245, 242, 0.5);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.tweak-options {
    display: flex;
    gap: 0.4rem;
}

.tweak-btn {
    flex: 1;
    font-family: var(--font-u);
    font-weight: 700;
    font-size: 0.68rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.45rem 0.4rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: transparent;
    color: rgba(245, 245, 242, 0.5);
    cursor: pointer;
    transition: all 0.2s;
}

.tweak-btn.active {
    background: var(--mint);
    color: var(--black);
    border-color: var(--mint);
}

#tweaks-close {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: none;
    border: none;
    color: rgba(245, 245, 242, 0.3);
    font-size: 1rem;
    cursor: pointer;
    line-height: 1;
}

#tweaks-close:hover {
    color: var(--white);
}

/* ── RESPONSIVE ── */
@media (max-width: 1200px) and (min-width: 901px) {
    nav {
        padding: 0 1.5rem;
    }

    .nav-links {
        gap: 1.4rem;
    }

    .nav-links a {
        font-size: 0.82rem;
    }

    .nav-cta {
        padding: 0.55rem 1rem;
        font-size: 0.72rem;
    }
}

@media (max-width: 900px) {
    nav {
        padding: 0 1.5rem;
    }

    .nav-links {
        display: none;
    }

    section {
        padding: 5rem 1.5rem;
    }

    .hero {
        padding: 7rem 1.5rem 4rem;
    }

    .why-inner,
    /*.about-split,*/
    .ride-stops,
    .industries-grid,
    .do-grid,
    .work-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem;
    }

    .nav-burger {
        display: flex;
    }

    /*.about-right {*/
    /*    min-height: 380px;*/
    /*}*/

    /*.about-left {*/
    /*    padding: 3rem 1.5rem;*/
    /*}*/
    
    .about-top {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        row-gap: 1.5rem;
        padding-bottom: 2.5rem;
    }
    
    .about-top .section-label,
    .about-quote,
    .about-right {
        grid-column: 1;
        grid-row: auto;
    }
    
    .about-quote {
        font-size: clamp(2rem, 8.5vw, 2.9rem);
        line-height: 1.1;
    }

    .about-right {
        padding-top: 0;
    }

    .about-body {
        gap: 1.15rem;
    }


    .about-stats {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .about-stat {
        border-left: 0;
        border-top: 1px solid rgba(245, 245, 242, 0.14);
        padding: 2rem 0;
    }

    .about-stat:first-child {
        border-top: 0;
        padding-left: 0;
    }

    .stats-statement {
        flex-direction: column;
        text-align: center;
        gap: 2.5rem;
    }

    .stat-divider {
        width: 120px;
        min-height: 1px;
        height: 1px;
        align-self: center;
        background: linear-gradient(90deg, transparent, var(--mint) 30%, var(--aqua) 70%, transparent);
    }

    .stat-headline {
        text-align: center;
    }

    .ride-stop:nth-child(n) {
        margin-top: 0 !important;
    }

    .position {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .why-left {
        position: static;
    }
    
    .team-card img {
        display: block;
        width: 100%;
    }
}

@media (max-width: 640px) {

    .nav-cta {
        display: none;
    }

    .wordmark img {
        height: 38px;
    }

    nav {
        height: 60px;
        padding: 0 1.25rem;
    }

    /* Hero ribbons: keep their wide proportions instead of squashing,
         sit lower, and leave the CTAs clear */
    .hero {
        padding-bottom: 6rem;
    }

    .hero-ribbon-wrap {
        width: 180%;          /* Zoom out: pasa de 300% a 180% para mostrar más trazo en pantalla */
        left: -40%;           /* Recentra el ribbon con su nuevo ancho */
        height: 280px;        /* Aumenta el alto visible del SVG */
        bottom: 20px;         /* Sube la animación pegándola justo debajo de los botones/texto */
        opacity: 0.85;
    }

    .hero-actions {
        position: relative;
        z-index: 2;
    }

    /* What We Do: background lines collide with the copy on narrow screens —
         dim them and fade them out toward the top where the text sits */
    .do-lines {
        opacity: 0.3;
        top: 12rem;
        -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 45%);
        mask-image: linear-gradient(180deg, transparent 0%, #000 45%);
    }
    
    .about-section .section-title {
        line-height: 1.25 !important;
        margin-bottom: 1.75rem !important;
    }
}
.footer-bbt{
    padding-top: 1.5em;
    padding-bottom: 0px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.footer-bbt .footer-bbt-main{
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-bbt .footer-bbt-main .footer-bbt-main__bbt img{
    width: 73px;
    object-fit: contain;
}
.footer-bbt .footer-bbt-main .footer-bbt-main__xpr img{
    width: 73px;
    object-fit: contain;
}
.footer-bbt .footer-bbt-main span{
    width: 15px;
}
.footer-bbt .footer-bbt-main span img{
    width: 100%;
    object-fit: contain;
}

.logo-text {
  
  font-family: var(--font-d);
  font-weight: 800; 
  font-size: 1.5rem;
  /*text-transform: uppercase;*/
  color: #ffffff; 
  text-decoration: none;
  letter-spacing: -0.02em;
}

@media (max-width: 768px) {
    .work-card-type {
        text-align: right;
        margin-left: auto;
    }
    
    .cta-ribbon-wrap {
        height: 180px !important;  
        width: 160% !important; 
        left: -30% !important;   
        opacity: 0.3 !important;
    }

    .cta-section .ribbon-path-1 {
        stroke-width: 45px !important; 
    }

    .cta-section .ribbon-path-2 {
        stroke-width: 20px !important; 
    }
    .industries-section {
        padding: 7rem 1rem;
    }
}

p,
.do-desc,
.about-body p,
.position-body,
.work-intro,
.check-content p,
.ride-stop p,
.why-lead,
.do-lead,
.industries-lead,
.team-lead,
.hero-sub,
.cta-sub,
.ride-tagline,
.modal-subtitle,
.success-body {
    font-family: var(--font-b);
    font-size: 1.125rem !important;
    line-height: 1.65 !important;
    font-weight: 300;
}

.team-card-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

@media (min-width: 1200px) {
  .team-card-img {
    height: 400px;
  }
}

@media (min-width: 1440px) {
  .team-card-img {
    height: 450px;
    object-position: top;
  }
}