:root {
    --sky: #72cff4;
    --asphalt: #161616;
    --truck: #d83a21;
    --sign: #ffb446;
    --paper: #f7fbfe;
    --white: #ffffff;
    --text: #10212a;
    --muted: #4a6472;
    --line: rgba(16, 33, 42, 0.12);
    --shadow-lg: 0 28px 60px rgba(16, 33, 42, 0.16);
    --shadow-md: 0 16px 38px rgba(16, 33, 42, 0.10);
    --radius-xl: 1.75rem;
    --radius-lg: 1.15rem;
    --asphalt-texture: radial-gradient(circle at 20% 20%, rgba(255,255,255,.05) 0 1px, transparent 1.5px), radial-gradient(circle at 78% 35%, rgba(255,255,255,.04) 0 1px, transparent 1.5px), radial-gradient(circle at 42% 78%, rgba(255,255,255,.035) 0 1px, transparent 1.5px), repeating-linear-gradient(45deg, rgba(255,255,255,.02) 0 2px, transparent 2px 6px);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background: radial-gradient(circle at 15% 10%, rgba(255,255,255,.38), transparent 18%), radial-gradient(circle at 80% 15%, rgba(255,180,70,.16), transparent 16%), linear-gradient(180deg, #7bd4f6 0%, var(--sky) 22%, #7fd8f9 100%);
    overflow-x: hidden;
}

.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1040;
    background: rgba(114, 207, 244, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(22,22,22,.08);
    transition: background-color .28s ease, box-shadow .28s ease;
}

    .site-nav.scrolled {
        background: rgba(114, 207, 244, 0.97);
        box-shadow: 0 10px 28px rgba(16,33,42,.18);
    }

    .site-nav .nav-link {
        color: var(--asphalt);
        font-weight: 700;
        letter-spacing: -.01em;
    }

        .site-nav .nav-link:hover,
        .site-nav .nav-link:focus {
            color: var(--truck);
        }

.logo-badge {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -155px;
    z-index: 1045;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: .6rem;
    border-radius: 50%;
    background: rgba(255,255,255,.16);
    box-shadow: 0 12px 28px rgba(0,0,0,.12);
    backdrop-filter: blur(8px);
    transition: bottom .3s ease, padding .3s ease, background-color .3s ease, box-shadow .3s ease, opacity .25s ease;
}

    .logo-badge img {
        width: min(180px, 34vw);
        min-width: 0;
        height: auto;
        display: block;
        filter: drop-shadow(0 16px 24px rgba(22,22,22,.22));
        transition: width .3s ease, filter .3s ease;
    }

.site-nav.scrolled .logo-badge {
    bottom: -56px;
    padding: .45rem;
    background: rgba(255,255,255,.28);
    box-shadow: 0 8px 20px rgba(0,0,0,.16);
}

    .site-nav.scrolled .logo-badge img {
        width: 80px;
        filter: drop-shadow(0 10px 18px rgba(22,22,22,.2));
    }

.btn-road {
    background: var(--asphalt);
    color: var(--white);
    border: none;
    font-weight: 700;
    box-shadow: var(--shadow-md);
}

    .btn-road:hover,
    .btn-road:focus {
        background: #000;
        color: var(--white);
    }

.btn-truck {
    background: var(--truck);
    color: var(--white);
    border: none;
    font-weight: 700;
    box-shadow: 0 14px 32px rgba(216, 58, 33, 0.25);
}

    .btn-truck:hover,
    .btn-truck:focus {
        background: #c93219;
        color: var(--white);
    }

.btn-sign {
    background: var(--sign);
    color: var(--asphalt);
    border: none;
    font-weight: 800;
    box-shadow: 0 14px 32px rgba(255, 180, 70, 0.25);
}

    .btn-sign:hover,
    .btn-sign:focus {
        background: #f0a632;
        color: var(--asphalt);
    }

.hero {
    position: relative;
    padding: 13.5rem 0 5rem;    
}

    .hero::before {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        height: 178px;
        background: var(--asphalt-texture), linear-gradient(180deg, transparent 0 32%, rgba(0,0,0,.04) 32% 34%, transparent 34% 100%), linear-gradient(180deg, #262626 0%, var(--asphalt) 100%);
        clip-path: polygon(0 42%, 100% 0, 100% 100%, 0 100%);
        z-index: 0;
    }

    .hero::after {
        content: "";
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        bottom: 34px;
        width: min(84vw, 100%);
        height: 13px;
        background: repeating-linear-gradient(90deg, var(--sign) 0 78px, transparent 78px 130px);
        border-radius: 999px;
        z-index: 1;
        opacity: .95;
    }

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    padding: .65rem 1rem;
    border-radius: 999px;
    background: rgba(255,255,255,.7);
    border: 1px solid rgba(16,33,42,.08);
    color: var(--truck);
    font-size: .88rem;
    font-weight: 800;
    letter-spacing: .02em;
}

.hero-copy-panel,
.hero-form-card,
.surface-card,
.route-card,
.speaker-card,
.pricing-card,
.testimonial-card,
.admin-card,
.travel-card {
    position: relative;
    background: rgba(255,255,255,.86);
    border: 1px solid rgba(16,33,42,.08);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.hero-copy-panel {
    padding: 2.15rem;
}

.hero-title {
    font-size: clamp(2rem, 3.4vw, 3.55rem);
    line-height: 1.01;
    letter-spacing: -.045em;
    font-weight: 900;
    color: var(--asphalt);
    max-width: 13ch;
}

    .hero-title .accent {
        color: var(--truck);
    }

.hero-copy {
    color: var(--muted);
    font-size: .98rem;
    line-height: 1.75;
}

.section-copy,
.muted-copy {
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.8;
}

.hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .9rem;
    margin-top: 1.5rem;
}

.metric-pill {
    padding: .95rem 1rem;
    background: rgba(255,255,255,.72);
    border-radius: 1rem;
    border: 1px solid rgba(16,33,42,.08);
    box-shadow: var(--shadow-md);
}

.metric-value {
    display: block;
    font-size: 1.55rem;
    line-height: 1;
    font-weight: 900;
    color: var(--asphalt);
    letter-spacing: -.05em;
    font-variant-numeric: tabular-nums;
    font-feature-settings: "tnum";
}

.metric-label {
    display: block;
    color: var(--muted);
    font-size: .82rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-weight: 700;
    margin-top: .35rem;
}

.countdown-kicker {
    font-size: .8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--truck);
    margin-top: 1.25rem;
    margin-bottom: .6rem;
}

.hero-form-card {
    margin-top: 1.4rem;
}

.form-topbar {
    background: var(--asphalt);
    color: var(--white);
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    font-weight: 800;
}

    .form-topbar .badge {
        background: rgba(255,180,70,.18);
        color: var(--sign);
        border: 1px solid rgba(255,180,70,.25);
    }

.register-form-card {
    background: var(--white);
    border: 1px solid rgba(16,33,42,.08);
    box-shadow: var(--shadow-lg);
}

    .register-form-card .form-topbar {
        background: rgba(255,255,255,.94);
        color: var(--asphalt);
        border-bottom: 1px solid rgba(16,33,42,.1);
    }

        .register-form-card .form-topbar .badge {
            background: rgba(216,58,33,.1);
            color: var(--truck);
            border: 1px solid rgba(216,58,33,.18);
        }

    .register-form-card .form-body {
        background: var(--white);
    }

.form-body {
    padding: 1.35rem;
}

.form-label {
    font-weight: 700;
    color: var(--asphalt);
    font-size: .92rem;
}

.form-control,
.form-select {
    border-radius: .95rem;
    border: 1px solid rgba(16,33,42,.12);
    min-height: 3.15rem;
    padding-left: 1rem;
    color: var(--text);
}

    .form-control:focus,
    .form-select:focus {
        box-shadow: 0 0 0 .25rem rgba(114, 207, 244, .35);
        border-color: rgba(16,33,42,.18);
    }

.offer-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1rem;
    padding: .95rem 1rem;
    border-radius: 1rem;
    background: linear-gradient(135deg, rgba(255,180,70,.26), rgba(255,255,255,.85));
    border: 1px solid rgba(16,33,42,.08);
}

.offer-code {
    display: inline-flex;
    align-items: center;
    padding: .55rem .8rem;
    border-radius: .8rem;
    background: var(--white);
    border: 1px dashed rgba(22,22,22,.18);
    font-weight: 900;
    letter-spacing: .08em;
    color: var(--truck);
}

.section-register {
    background: var(--asphalt-texture), linear-gradient(180deg, rgba(25,25,25,.98), rgba(14,14,14,1));
    color: rgba(255,255,255,.92);
    overflow: hidden;
    z-index: 1;
}

    .section-register::before {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        top: 20px;
        height: 14px;
        background: repeating-linear-gradient(90deg, var(--sign) 0 58px, transparent 58px 100px);
        opacity: .88;
    }

.register-intro {
    max-width: 780px;
}

    .register-intro .section-title,
    .register-intro .section-copy {
        color: rgba(255,255,255,.94);
    }

.register-shell {
    margin-top: 0;
    padding: .9rem;
    border-radius: var(--radius-xl);
    background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
    border: 1px solid rgba(255,255,255,.1);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.03);
}

.register-form-card {
    max-width: 100%;
    margin: 0;
    background: var(--white);
    border: 1px solid rgba(16,33,42,.09);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    color: #333;
}

.register-form-card .form-label {
    color: #333;
    font-weight: 600;
}

.register-form-card .form-check-label {
    color: #333;
    font-size: .875rem;
}

.register-form-card .form-check-input {
    width: 1.15em;
    height: 1.15em;
    border: 2px solid #999;
}

.register-form-card .form-check-input:checked {
    background-color: #d83a21;
    border-color: #d83a21;
}

.register-form-card h6,
.register-form-card .fw-bold {
    color: #333;
}

.register-form-card .attendee-title {
    color: var(--asphalt);
}

.register-form-card .attendee-item .row {
    align-items: end;
}

.register-form-card .form-check {
    padding-top: 0;
    padding-bottom: 0.25rem;
}

.section-register .form-body {
    overflow: visible;
}

.btn-road {
    background: var(--asphalt);
    color: var(--white);
    border: none;
    font-weight: 700;
    box-shadow: var(--shadow-md);
}

    .btn-road:hover,
    .btn-road:focus {
        background: #000;
        color: var(--white);
    }

.btn-truck {
    background: var(--truck);
    color: var(--white);
    border: none;
    font-weight: 700;
    box-shadow: 0 14px 32px rgba(216, 58, 33, 0.25);
}

    .btn-truck:hover,
    .btn-truck:focus {
        background: #c93219;
        color: var(--white);
    }

.btn-sign {
    background: var(--sign);
    color: var(--asphalt);
    border: none;
    font-weight: 800;
    box-shadow: 0 14px 32px rgba(255, 180, 70, 0.25);
}

    .btn-sign:hover,
    .btn-sign:focus {
        background: #f0a632;
        color: var(--asphalt);
    }

.hero {
    position: relative;
    padding: 13.5rem 0 5rem;    
}

    .hero::before {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        height: 178px;
        background: var(--asphalt-texture), linear-gradient(180deg, transparent 0 32%, rgba(0,0,0,.04) 32% 34%, transparent 34% 100%), linear-gradient(180deg, #262626 0%, var(--asphalt) 100%);
        clip-path: polygon(0 42%, 100% 0, 100% 100%, 0 100%);
        z-index: 0;
    }

    .hero::after {
        content: "";
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        bottom: 34px;
        width: min(84vw, 100%);
        height: 13px;
        background: repeating-linear-gradient(90deg, var(--sign) 0 78px, transparent 78px 130px);
        border-radius: 999px;
        z-index: 1;
        opacity: .95;
    }

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    padding: .65rem 1rem;
    border-radius: 999px;
    background: rgba(255,255,255,.7);
    border: 1px solid rgba(16,33,42,.08);
    color: var(--truck);
    font-size: .88rem;
    font-weight: 800;
    letter-spacing: .02em;
}

.hero-copy-panel,
.hero-form-card,
.surface-card,
.route-card,
.speaker-card,
.pricing-card,
.testimonial-card,
.admin-card,
.travel-card {
    position: relative;
    background: rgba(255,255,255,.86);
    border: 1px solid rgba(16,33,42,.08);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.hero-copy-panel {
    padding: 2.15rem;
}

.hero-title {
    font-size: clamp(2rem, 3.4vw, 3.55rem);
    line-height: 1.01;
    letter-spacing: -.045em;
    font-weight: 900;
    color: var(--asphalt);
    max-width: 13ch;
}

    .hero-title .accent {
        color: var(--truck);
    }

.hero-copy {
    color: var(--muted);
    font-size: .98rem;
    line-height: 1.75;
}

.section-copy,
.muted-copy {
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.8;
}

.hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .9rem;
    margin-top: 1.5rem;
}

.metric-pill {
    padding: .95rem 1rem;
    background: rgba(255,255,255,.72);
    border-radius: 1rem;
    border: 1px solid rgba(16,33,42,.08);
    box-shadow: var(--shadow-md);
}

.metric-value {
    display: block;
    font-size: 1.55rem;
    line-height: 1;
    font-weight: 900;
    color: var(--asphalt);
    letter-spacing: -.05em;
    font-variant-numeric: tabular-nums;
    font-feature-settings: "tnum";
}

.metric-label {
    display: block;
    color: var(--muted);
    font-size: .82rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-weight: 700;
    margin-top: .35rem;
}

.countdown-kicker {
    font-size: .8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--truck);
    margin-top: 1.25rem;
    margin-bottom: .6rem;
}

.hero-form-card {
    margin-top: 1.4rem;
}

.form-topbar {
    background: var(--asphalt);
    color: var(--white);
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    font-weight: 800;
}

    .form-topbar .badge {
        background: rgba(255,180,70,.18);
        color: var(--sign);
        border: 1px solid rgba(255,180,70,.25);
    }

.register-form-card {
    background: var(--white);
    border: 1px solid rgba(16,33,42,.08);
    box-shadow: var(--shadow-lg);
}

    .register-form-card .form-topbar {
        background: rgba(255,255,255,.94);
        color: var(--asphalt);
        border-bottom: 1px solid rgba(16,33,42,.1);
    }

        .register-form-card .form-topbar .badge {
            background: rgba(216,58,33,.1);
            color: var(--truck);
            border: 1px solid rgba(216,58,33,.18);
        }

    .register-form-card .form-body {
        background: var(--white);
    }

.form-body {
    padding: 1.35rem;
}

.form-label {
    font-weight: 700;
    color: var(--asphalt);
    font-size: .92rem;
}

.form-control,
.form-select {
    border-radius: .95rem;
    border: 1px solid rgba(16,33,42,.12);
    min-height: 3.15rem;
    padding-left: 1rem;
    color: var(--text);
}

    .form-control:focus,
    .form-select:focus {
        box-shadow: 0 0 0 .25rem rgba(114, 207, 244, .35);
        border-color: rgba(16,33,42,.18);
    }

.offer-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1rem;
    padding: .95rem 1rem;
    border-radius: 1rem;
    background: linear-gradient(135deg, rgba(255,180,70,.26), rgba(255,255,255,.85));
    border: 1px solid rgba(16,33,42,.08);
}

.offer-code {
    display: inline-flex;
    align-items: center;
    padding: .55rem .8rem;
    border-radius: .8rem;
    background: var(--white);
    border: 1px dashed rgba(22,22,22,.18);
    font-weight: 900;
    letter-spacing: .08em;
    color: var(--truck);
}

.section-register {
    background: var(--asphalt-texture), linear-gradient(180deg, rgba(25,25,25,.98), rgba(14,14,14,1));
    color: rgba(255,255,255,.92);
    overflow: hidden;
    z-index: 1;
}

    .section-register::before {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        top: 20px;
        height: 14px;
        background: repeating-linear-gradient(90deg, var(--sign) 0 58px, transparent 58px 100px);
        opacity: .88;
    }

.register-intro {
    max-width: 780px;
}

    .register-intro .section-title,
    .register-intro .section-copy {
        color: rgba(255,255,255,.94);
    }

.register-shell {
    margin-top: 0;
    padding: .9rem;
    border-radius: var(--radius-xl);
    background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
    border: 1px solid rgba(255,255,255,.1);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.03);
}

.register-form-card {
    max-width: 100%;
    margin: 0;
    background: var(--white);
    border: 1px solid rgba(16,33,42,.09);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    color: #333;
}

.register-form-card .form-label {
    color: #333;
    font-weight: 600;
}

.register-form-card .form-check-label {
    color: #333;
    font-size: .875rem;
}

.register-form-card .form-check-input {
    width: 1.15em;
    height: 1.15em;
    border: 2px solid #999;
}

.register-form-card .form-check-input:checked {
    background-color: #d83a21;
    border-color: #d83a21;
}

.register-form-card h6,
.register-form-card .fw-bold {
    color: #333;
}

.register-form-card .attendee-title {
    color: var(--asphalt);
}

.register-form-card .attendee-item .row {
    align-items: end;
}

.register-form-card .form-check {
    padding-top: 0;
    padding-bottom: 0.25rem;
}

.section-register .form-body {
    overflow: visible;
}

.attendee-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .5rem;
    margin-bottom: .55rem;
}

.attendee-title {
    font-weight: 800;
    color: var(--asphalt);
    margin-bottom: 0;
    font-size: .84rem;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.attendee-remove {
    color: var(--white);
    background: var(--truck);
    border: 0;
    padding: 4px 8px;
    line-height: 1;
    font-size: 1rem;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

    .attendee-remove:hover,
    .attendee-remove:focus {
        background: #b82f1a;
        transform: scale(1.1);
    }

.surface-card,
.travel-card,
.admin-card {
    height: 100%;
    padding: 1.5rem;
}

    .surface-card h5,
    .travel-card h5,
    .admin-card h5,
    .speaker-card h5,
    .pricing-card h5 {
        font-weight: 800;
        color: var(--asphalt);
    }

.section-road {
    background: linear-gradient(180deg, rgba(255,255,255,.14), rgba(255,255,255,.06));
}

    .section-road::before {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        height: 14px;
        background: repeating-linear-gradient(90deg, rgb(255 255 255 / 98%) 0 58px, #000000eb 58px 100px);
        opacity: 1;
    }

.section-speakers {
    background: var(--asphalt-texture), linear-gradient(180deg, rgba(25,25,25,.98), rgba(14,14,14,1));
}

    .section-speakers .eyebrow {
        background: rgba(255,255,255,.08);
        color: var(--sign);
        border-color: rgba(255,255,255,.2);
    }

    .section-speakers .section-title {
        color: rgba(255,255,255,.95);
    }

    .section-speakers .section-copy {
        color: rgba(255,255,255,.82);
    }

.section-gallery {
    background: var(--asphalt-texture), linear-gradient(180deg, rgba(23,23,23,.98), rgba(12,12,12,1));
    height: 1200px;
    overflow: hidden;
}

    .section-gallery::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        height: 5px;
        background: repeating-linear-gradient(90deg, var(--sign) 0 58px, transparent 58px 100px);
        opacity: .88;
    }

    .section-gallery .container {
        height: 100%;
        display: flex;
        flex-direction: column;
    }

    .section-gallery .section-title,
    .section-gallery .section-copy {
        color: rgba(255,255,255,.92);
    }

    .section-gallery .eyebrow {
        background: rgba(255,255,255,.08);
        color: var(--sign);
        border-color: rgba(255,255,255,.2);
    }

.gallery-layout {
    margin-top: 1.4rem;
    flex: 1;
    min-height: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: .95rem;
}

.gallery-content-col {
    position: relative;
    min-height: 0;
    height: 100%;
    flex: 1;
}

.gallery-content-scroll {
    height: 100%;
    min-height: 0;
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: .1rem;
    padding-bottom: 2.6rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

    .gallery-content-scroll::-webkit-scrollbar {
        display: none;
    }

.gallery-scroll-indicator {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 2.1rem 0 .45rem;
    text-align: center;
    font-size: .72rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    font-weight: 800;
    color: rgba(255,255,255,.86);
    background: linear-gradient(180deg, rgba(12,12,12,0), rgba(12,12,12,.88));
    pointer-events: none;
    transition: opacity .2s ease, visibility .2s ease;
}

.gallery-scroll-indicator.is-hidden {
    opacity: 0;
    visibility: hidden;
}

.gallery-scroll-indicator i {
    margin-right: .35rem;
}

.gallery-year-rail {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: .7rem;
    padding-left: 0;
    width: 100%;
    min-height: 84px;
}

.gallery-year-rail::before {
    content: "";
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(255,180,70,.85), rgba(255,180,70,.35));
}

.year-tab {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 94px;
    height: 78px;
    text-decoration: none;
    color: #fff;
    font-weight: 900;
    letter-spacing: .04em;
    border-radius: .8rem;
    border: 2px solid #fff;
    background: linear-gradient(180deg, #224f9f 0%, #1e4284 100%);
    box-shadow: 0 12px 22px rgba(0,0,0,.28);
    z-index: 1;
    padding: 0;
}

.year-tab::before {
    content: "Roadshow";
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    height: 15px;
    border-radius: .7rem .7rem 0 0;
    background: #d83a21;
    border-bottom: 1px solid rgba(255,255,255,.65);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: .5rem;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.year-tab span {
    position: relative;
    z-index: 1;
    margin-top: .25rem;
    font-size: 1rem;
}

.year-tab.active {
    transform: scale(1.03);
    box-shadow: 0 16px 28px rgba(0,0,0,.34);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: .8rem;
    grid-auto-rows: 92px;
    height: 100%;
    align-content: start;
}

.gallery-panel {
    display: none;
    height: 100%;
}

.gallery-panel.active {
    display: grid;
}

.gallery-photo {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: .55rem;
    object-fit: cover;
    border: 2px solid rgba(255,255,255,.1);
    box-shadow: 0 14px 24px rgba(0,0,0,.3);
}

.gallery-photo.photo-a {
    grid-column: 1;
    grid-row: span 3;
}

.gallery-photo.photo-b {
    grid-column: 2;
    grid-row: span 2;
}

.gallery-photo.photo-c {
    grid-column: 3;
    grid-row: span 4;
}

.gallery-photo.photo-d {
    grid-column: 4;
    grid-row: span 2;
}

.gallery-photo.photo-e {
    grid-column: 1;
    grid-row: span 2;
}

.gallery-photo.photo-f {
    grid-column: 2;
    grid-row: span 3;
}

.gallery-photo.photo-g {
    grid-column: 4;
    grid-row: span 3;
}

.route-card {
    padding: 1.6rem;
    background: linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.82));
}

.route-shell {
    position: relative;
    padding-left: 3.8rem;
}

.route-shell::before {
    content: "";
    position: absolute;
    left: 1.1rem;
    top: .35rem;
    bottom: .35rem;
    width: 12px;
    border-radius: 999px;
    background: var(--sign);
    box-shadow: 0 0 0 10px rgba(255,180,70,.18);
}

.route-stop {
    position: relative;
    padding: 1.15rem 1.15rem 1.15rem 1.25rem;
    border-radius: 1.1rem;
    background: rgba(255,255,255,.8);
    border: 1px solid rgba(16,33,42,.08);
    margin-bottom: 1rem;
}

.route-stop:last-child {
    margin-bottom: 0;
}

.route-stop::before {
    content: "";
    position: absolute;
    width: 22px;
    height: 22px;
    left: -2.95rem;
    top: 1.22rem;
    border-radius: .35rem;
    background: var(--sign);
    border: 3px solid var(--asphalt);
    box-shadow: 0 0 0 6px rgba(255,180,70,.2);
    transform: rotate(45deg);
}

.route-stop::after {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    left: -2.52rem;
    top: 1.66rem;
    border-radius: 50%;
    background: var(--asphalt);
    z-index: 1;
}

.route-kicker {
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: .09em;
    font-weight: 800;
    color: var(--truck);
    margin-bottom: .2rem;
}

.route-title {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--asphalt);
    margin-bottom: .2rem;
}

.evening-experience {
    display: flex;
    align-items: flex-start;
    gap: .55rem;
    margin-top: .85rem;
    padding: .7rem .9rem;
    border-radius: .75rem;
    background: linear-gradient(135deg, rgba(255,180,70,.18), rgba(216,58,33,.10));
    border: 1px solid rgba(255,180,70,.45);
    border-left: 3px solid var(--sign);
    font-size: .9rem;
    line-height: 1.4;
    color: var(--asphalt);
}

    .evening-experience > i {
        flex-shrink: 0;
        color: var(--truck);
        font-size: 1rem;
        line-height: 1.4;
        margin-top: .05rem;
    }

    .evening-experience .evening-label {
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: .04em;
        font-size: .78rem;
        color: var(--truck);
        margin-right: .25rem;
    }

    .evening-experience .evening-copy {
        color: var(--asphalt);
        opacity: .85;
    }

@media (max-width: 575.98px) {
    .evening-experience {
        flex-wrap: wrap;
        gap: .35rem .5rem;
        padding: .65rem .75rem;
        font-size: .85rem;
    }

        .evening-experience > i {
            margin-top: .15rem;
        }

        .evening-experience .evening-label {
            flex: 1 1 auto;
            min-width: 0;
            margin-right: 0;
        }

        .evening-experience .evening-copy {
            flex: 1 1 100%;
        }
}

.agenda-coming-soon {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .55rem 1.1rem;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(255,180,70,.22), rgba(216,58,33,.12));
    border: 1px dashed rgba(216,58,33,.45);
    color: var(--truck);
    font-weight: 800;
    font-size: .85rem;
    text-transform: uppercase;
    letter-spacing: .06em;
}

    .agenda-coming-soon > i {
        font-size: 1rem;
        color: var(--truck);
        animation: agenda-coming-soon-spin 3.5s ease-in-out infinite;
    }

@keyframes agenda-coming-soon-spin {
    0%, 60%, 100% { transform: rotate(0deg); }
    70% { transform: rotate(180deg); }
    80%, 95% { transform: rotate(180deg); }
}

.speaker-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    max-width: 320px;
    margin-inline: auto;
}

.speaker-visual {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5;
    max-height: 380px;
    overflow: hidden;
    background: radial-gradient(circle at 18% 20%, rgba(255,255,255,.42), transparent 18%), linear-gradient(135deg, rgba(114,207,244,.50), rgba(255,180,70,.28), rgba(216,58,33,.20));
}

.speaker-visual img,
.speaker-visual-placeholder {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform .4s ease;
}

.speaker-card:hover .speaker-visual img {
    transform: scale(1.04);
}

.speaker-visual::before {
    content: none;
}

.speaker-visual::after {
    content: none;
}

.speaker-bio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(16,33,42,.65) 0%, rgba(16,33,42,.92) 100%);
    color: #fff;
    padding: 1.4rem 1.4rem 1.2rem;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity .25s ease, transform .25s ease;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    pointer-events: none;
    backdrop-filter: blur(2px);
}

.speaker-card.has-bio:hover .speaker-bio-overlay,
.speaker-card.has-bio:focus-within .speaker-bio-overlay {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.speaker-bio-inner {
    width: 100%;
    max-height: 100%;
    overflow-y: auto;
}

.speaker-bio-name {
    font-weight: 800;
    font-size: 1.05rem;
    margin-bottom: .4rem;
    letter-spacing: .01em;
}

.speaker-bio-text {
    font-size: .9rem;
    line-height: 1.5;
    margin: 0;
    color: rgba(255,255,255,.92);
}

.speaker-body {
    padding: 1.4rem;
}

.btn-speakers-toggle {
    background: rgba(255,255,255,.1);
    color: rgba(255,255,255,.85);
    border: 1px solid rgba(255,255,255,.2);
    font-weight: 800;
    font-size: .88rem;
    letter-spacing: .01em;
    border-radius: 999px;
    padding: .7rem 1.6rem;
    transition: background-color .15s ease, color .15s ease;
}

.btn-speakers-toggle:hover,
.btn-speakers-toggle:focus {
    background: rgba(255,255,255,.18);
    color: #fff;
}

.tag {
    display: inline-flex;
    align-items: center;
    padding: .45rem .75rem;
    border-radius: 999px;
    background: rgba(216,58,33,.12);
    color: var(--truck);
    font-size: .8rem;
    font-weight: 800;
    letter-spacing: .03em;
}

.pricing-card {
    height: 100%;
    padding: 1.6rem;
}

    .pricing-card.featured {
        background: linear-gradient(180deg, rgba(255,255,255,.95), rgba(255,247,232,.95));
        border: 2px solid rgba(255,180,70,.5);
        transform: translateY(-8px);
        box-shadow: 0 26px 54px rgba(16,33,42,.14);
    }

.price {
    font-size: 3rem;
    line-height: 1;
    letter-spacing: -.06em;
    font-weight: 900;
    color: var(--asphalt);
    margin: 1rem 0;
}

    .price small {
        font-size: 1rem;
        font-weight: 700;
        color: var(--muted);
    }

.check-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

    .check-list li {
        margin-bottom: .9rem;
        color: var(--muted);
    }

    .check-list i {
        color: var(--truck);
        margin-right: .55rem;
    }

.road-sign-banner {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 4px solid var(--asphalt);
    background: linear-gradient(135deg, rgba(255,180,70,.96), rgba(255,198,98,.92));
    box-shadow: var(--shadow-lg);
}

    .road-sign-banner::before,
    .road-sign-banner::after {
        content: none;
    }

.road-sign-inner {
    padding: 1.8rem 3.5rem;
}

.register-offer-banner {
    background: linear-gradient(135deg, #f4bc58 0%, #f0b24a 55%, #e8a73f 100%);
    border-radius: 1.85rem;
    border-width: 3px;
    box-shadow: 0 24px 50px rgba(16,33,42,.26);
}

    .register-offer-banner .road-sign-inner {
        padding: 2.2rem 3.2rem 2rem;
    }

.offer-pill {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    background: rgba(255,255,255,.72);
    color: var(--truck);
    font-weight: 900;
    font-size: .95rem;
    letter-spacing: .01em;
    border-radius: 999px;
    padding: .5rem 1rem;
    border: 1px solid rgba(16,33,42,.08);
    margin-bottom: .95rem;
    box-shadow: 0 2px 8px rgba(0,0,0,.06);
}

.offer-price {
    color: #1a1a1a;
    font-size: clamp(2.6rem, 5.4vw, 3.6rem);
    line-height: 1;
    letter-spacing: -.05em;
    font-weight: 900;
    margin-bottom: .5rem;
    text-shadow: 0 1px 0 rgba(255,255,255,.35);
}

.offer-price-per {
    display: inline-block;
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #3d4f58;
    margin-left: .55rem;
    vertical-align: middle;
    line-height: 1;
    position: relative;
    top: -.35em;
}

.register-offer-banner .offer-credit {
    display: block;
    background: rgba(255,255,255,.55);
    border: 1px solid rgba(16,33,42,.12);
    border-radius: .85rem;
    padding: .65rem .9rem .65rem 2.3rem;
    font-size: .95rem;
    font-weight: 500;
    color: #1a1a1a;
    line-height: 1.45;
    position: relative;
}

    .register-offer-banner .offer-credit i {
        color: var(--truck);
        font-size: 1.1rem;
        position: absolute;
        left: .85rem;
        top: .75rem;
    }

    .register-offer-banner .offer-credit strong {
        color: #1a1a1a;
        font-weight: 900;
    }

/* ── Golden ticket styling for register banner ── */
.register-offer-banner.golden-ticket {
    background:
        radial-gradient(circle at 8% 18%, rgba(255,255,255,.32) 0%, transparent 45%),
        linear-gradient(135deg, #f7cc5b 0%, #f0b84a 40%, #e5a632 70%, #dfa02e 100%);
    border-color: #c8912a;
    border-left: none;
    border-right: none;
    border-radius: 1.85rem;
    box-shadow:
        0 24px 50px rgba(16,33,42,.22),
        inset 0 1px 0 rgba(255,255,255,.45),
        inset 0 -1px 0 rgba(0,0,0,.08);
    overflow: visible;
}

/* Scalloped left edge */
.register-offer-banner.golden-ticket::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: -2px;
    width: 16px;
    background: radial-gradient(circle 8px at 0 50%, var(--asphalt) 97%, transparent 100%);
    background-size: 16px 28px;
    background-repeat: repeat-y;
    background-position: left center;
    border-radius: 0;
    transform: none;
    z-index: 2;
}

/* Scalloped right edge */
.register-offer-banner.golden-ticket::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: -2px;
    width: 16px;
    background: radial-gradient(circle 8px at 100% 50%, var(--asphalt) 97%, transparent 100%);
    background-size: 16px 28px;
    background-repeat: repeat-y;
    background-position: right center;
    border-radius: 0;
    transform: none;
    z-index: 2;
}

/* Shimmer line */
.register-offer-banner.golden-ticket .road-sign-inner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 2rem;
    right: 2rem;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.6) 30%, rgba(255,255,255,.6) 70%, transparent);
}

.register-offer-banner.golden-ticket .road-sign-inner {
    position: relative;
}

.register-offer-banner .offer-price,
.register-offer-banner .offer-credit,
.register-offer-banner .offer-credit strong {
    color: var(--asphalt);
}

.register-offer-banner .tier-urgency-label strong {
    color: var(--sign);
}

.footer {
    position: relative;
    background: var(--asphalt-texture), linear-gradient(180deg, rgba(12,12,12,1), rgba(23,23,23,.98));
    color: rgba(255,255,255,.84);
    padding: 4.5rem 0 2rem;
    overflow: hidden;
}

    .footer::before {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        height: 10px;
        background: repeating-linear-gradient(90deg, var(--sign) 0 58px, transparent 58px 100px);
        opacity: .88;
    }

.footer-card {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: var(--radius-lg);
    padding: 1.4rem;
    height: 100%;
}

.footer a {
    color: rgba(255,255,255,.82);
    text-decoration: none;
}

    .footer a:hover {
        color: var(--sign);
    }

.sticky-cta {
    position: fixed;
    right: 1.2rem;
    bottom: 1.2rem;
    z-index: 1035;
}

    .sticky-cta .btn {
        box-shadow: 0 20px 42px rgba(16,33,42,.24);
    }

@media (max-width: 767.98px) {
    .sticky-cta {
        display: none;
    }
}

.footer-social {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--bs-white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.footer-social a i {
    font-size: 1.25rem;
}

@media (max-width: 1199.98px) {
    .logo-badge img {
        width: min(250px, 30vw);
    }
}

@media (max-width: 991.98px) {
    .logo-badge {
        bottom: -72px;
    }

    .site-nav.scrolled .logo-badge {
        bottom: -42px;
    }

    .logo-badge img {
        width: 220px;
    }

    .site-nav.scrolled .logo-badge img {
        width: 80px;
    }

    .site-nav .navbar-collapse {
        margin-top: .75rem;
        padding: .25rem 0 .75rem;
        border-top: 1px solid rgba(22,22,22,.1);
    }

        .site-nav .navbar-collapse .navbar-nav {
            gap: 0;
        }

            .site-nav .navbar-collapse .navbar-nav .nav-item:not(:last-child) {
                border-bottom: 1px solid rgba(22,22,22,.08);
            }

            .site-nav .navbar-collapse .navbar-nav .nav-link {
                padding: .9rem .25rem;
                font-size: 1.05rem;
            }

            .site-nav .navbar-collapse .navbar-nav .btn-truck {
                display: block;
                margin-top: .9rem;
                padding-top: .75rem;
                padding-bottom: .75rem;
                text-align: center;
            }

    .hero {
        padding-top: 12rem;
    }

    .pricing-card.featured {
        transform: none;
    }

    .hero-metrics {
        grid-template-columns: repeat(3, 1fr);
    }

    .gallery-year-rail {
        width: 100%;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: flex-start;
        gap: .65rem;
        padding-left: 0;
        min-height: 78px;
        overflow-x: auto;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

        .gallery-year-rail::-webkit-scrollbar {
            display: none;
        }

        .gallery-year-rail::before {
            left: .5rem;
            right: .5rem;
        }

    .year-tab {
        width: auto;
        min-width: 90px;
        height: auto;
        padding: .4rem .85rem;
        flex: 0 0 auto;
    }

    .section-gallery {
        height: 1000px;
    }

    .gallery-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        grid-auto-rows: 96px;
    }
}

@media (max-width: 767.98px) {
    .logo-badge {
        top: 4px;
        bottom: auto;
        padding: .35rem;
    }

    .logo-badge img {
        width: 110px;
    }

    .site-nav.scrolled .logo-badge {
        top: 50%;
        bottom: auto;
        transform: translate(-50%, -50%);
        padding: .2rem;
        background: rgba(255,255,255,.35);
        box-shadow: 0 4px 12px rgba(0,0,0,.18);
    }

        .site-nav.scrolled .logo-badge img {
            width: 44px;
            filter: drop-shadow(0 4px 8px rgba(22,22,22,.18));
        }

    .site-nav:has(.navbar-collapse.show) .logo-badge,
    .site-nav:has(.navbar-collapse.collapsing) .logo-badge {
        opacity: 0;
        pointer-events: none;
    }

    .hero {
        padding-top: 11rem;
    }

    .hero-title {
        font-size: 2.45rem;
    }

    .hero::before {
        height: 132px;
    }

    .hero::after {
        width: calc(100% - 1.4rem);
        bottom: 24px;
    }

    .hero-metrics {
        grid-template-columns: 1fr;
    }

    .road-sign-inner {
        padding: 1.45rem 1.2rem;
    }

    .register-shell {
        padding: .65rem;
    }

    .register-form-card {
        margin-top: 0;
    }

    .sticky-cta {
        left: .9rem;
        right: .9rem;
        bottom: .9rem;
    }

        .sticky-cta .btn {
            width: 100%;
        }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 98px;
    }

    .gallery-photo {
        grid-column: auto !important;
        grid-row: span 2 !important;
    }

        .gallery-photo.photo-c,
        .gallery-photo.photo-b {
            grid-row: span 3 !important;
        }

    .section-gallery {
        height: 900px;
    }
}

.section {
    position: relative;
    padding: 5rem 0;
    overflow: hidden;
    z-index: 1;
}

/* ── Urgency countdown block ── */
.tier-urgency {
    margin: 1.4rem -1rem -.6rem;
    padding: .9rem 1.1rem 1rem;
    border-radius: 1rem;
    background: linear-gradient(180deg, rgba(16,33,42,.94), rgba(16,33,42,.88));
    border: 1px solid rgba(0,0,0,.25);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.08),
        0 6px 18px rgba(16,33,42,.18);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .7rem;
    text-align: center;
}

.tier-urgency-label {
    color: rgba(255,255,255,.85);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    margin-bottom: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: .4rem;
}

    .tier-urgency-label i {
        color: var(--sign);
        font-size: .9rem;
    }

    .tier-urgency-label strong {
        color: #fff;
        font-weight: 900;
        font-size: 1rem;
        letter-spacing: 0;
        text-transform: none;
    }

.tier-countdown {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: .45rem;
}

.countdown-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .2rem;
    min-width: 3.2rem;
    padding: .5rem .55rem .45rem;
    border-radius: .65rem;
    background: linear-gradient(180deg, #fff, #eef0f3);
    border: 1px solid rgba(0,0,0,.18);
    box-shadow:
        inset 0 -2px 0 rgba(0,0,0,.06),
        0 2px 3px rgba(0,0,0,.22);
}

.countdown-value {
    font-size: 1.7rem;
    font-weight: 900;
    line-height: 1;
    color: #111;
    letter-spacing: -.02em;
    font-variant-numeric: tabular-nums;
    font-feature-settings: "tnum";
}

.countdown-label {
    font-size: .62rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: #6b7782;
    margin-top: .15rem;
}

.countdown-sep {
    display: none;
}

/* ── Missing styles (restored) ── */

.section-title {
    font-size: clamp(1.85rem, 3.2vw, 2.85rem);
    line-height: 1.08;
    letter-spacing: -.04em;
    font-weight: 900;
    color: var(--asphalt);
}

.section-title .accent {
    color: var(--truck);
}

.section-intro {
    margin-bottom: 2.5rem;
}

.icon-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: .85rem;
    background: var(--truck);
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 1rem;
    box-shadow: 0 8px 20px rgba(216, 58, 33, .2);
}

.experience-facts {
    background: rgba(255,255,255,.82);
    border: 1px solid rgba(16,33,42,.08);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    box-shadow: var(--shadow-md);
}

.experience-facts-title {
    font-size: .82rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--truck);
    margin-bottom: .85rem;
}

.expect-intro {
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}

.expect-intro h3 {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 900;
    color: var(--asphalt);
    letter-spacing: -.03em;
    margin-bottom: .5rem;
}

/* ── Experience section refinements ── */
#experience .section-title {
    text-wrap: balance;
    max-width: 22ch;
}

#experience .section-intro .section-copy {
    max-width: 62ch;
}

#experience .experience-facts {
    padding: 1.65rem 1.5rem;
}

#experience .experience-facts .check-list li {
    font-size: .98rem;
    line-height: 1.55;
    padding: .25rem 0;
}

#experience .expect-intro {
    margin-top: 3.5rem;
    margin-bottom: 2rem;
}

#experience .expect-intro h3 {
    text-wrap: balance;
}

#experience .expect-intro .section-copy {
    max-width: 70ch;
}

#experience .expect-cards .surface-card {
    display: flex;
    flex-direction: column;
    padding: 1.65rem 1.5rem;
    border-top: 3px solid var(--truck);
    transition: transform .2s ease, box-shadow .2s ease;
}

#experience .expect-cards .surface-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl, 0 18px 40px rgba(16, 33, 42, .14));
}

#experience .expect-cards .card-head {
    display: flex;
    align-items: center;
    gap: .85rem;
    margin-bottom: .9rem;
}

#experience .expect-cards .card-head .icon-chip {
    flex: 0 0 auto;
    width: 44px;
    height: 44px;
    font-size: 1.15rem;
    margin-bottom: 0;
    border-radius: .75rem;
}

#experience .expect-cards .surface-card h5 {
    flex: 1 1 auto;
    font-size: 1.05rem;
    line-height: 1.25;
    text-wrap: balance;
    margin-bottom: 0;
}

#experience .expect-cards .surface-card .muted-copy {
    font-size: .98rem;
    line-height: 1.65;
}

.quote-mark {
    font-size: 1.75rem;
    color: var(--truck);
    opacity: .5;
}

/* ── Video Section ── */
.section-video {
    background: linear-gradient(180deg, #d4952a 0%, #c8891f 100%);
}

.video-showcase {
    background: rgba(255,255,255,.92);
    border: 1px solid rgba(16,33,42,.08);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    max-width: none;
    margin: 0 auto;
}

.video-copy {
    padding: 2.5rem 2.5rem 2.5rem 3rem;
}

.video-kicker {
    font-size: .82rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--truck);
    margin-bottom: .75rem;
}

.video-title {
    font-size: clamp(1.6rem, 2.8vw, 2.2rem);
    font-weight: 900;
    line-height: 1.12;
    letter-spacing: -.03em;
    color: var(--asphalt);
    margin-bottom: .75rem;
}

.video-frame-wrap {
    padding: 1.5rem 1.5rem 1.5rem 0;
}

.video-frame {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(0,0,0,.22);
}

.venue-map-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(16,33,42,.12);
    box-shadow: var(--shadow-md);
    background: #fff;
}

.venue-map-wrap iframe {
    width: 100%;
    height: 320px;
    border: 0;
    display: block;
}

@media (max-width: 991.98px) {
    .video-copy {
        padding: 2rem 1.5rem;
    }

    .video-frame-wrap {
        padding: 0 1.5rem 1.5rem;
    }
}

@media (max-width: 767.98px) {
    .video-copy {
        padding: 1.5rem 1.25rem;
    }

    .video-frame-wrap {
        padding: 0 1.25rem 1.25rem;
    }
}

.testimonial-card {
    overflow: visible;
    padding: 2rem 1.75rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.registration-closed-card .form-topbar {
    background: linear-gradient(90deg, var(--asphalt), #1d2d38);
    color: #fff;
}

.closed-logo,
.completion-logo {
    width: min(220px, 68vw);
    height: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
    filter: drop-shadow(0 10px 22px rgba(0, 0, 0, .22));
}

.completion-badge {
    display: inline-flex;
    align-items: center;
    font-weight: 800;
    color: var(--truck);
    background: rgba(216, 58, 33, .1);
    border: 1px solid rgba(216, 58, 33, .24);
    border-radius: 999px;
    padding: .55rem 1rem;
}

.completion-title {
    font-size: clamp(1.6rem, 2.4vw, 2.1rem);
    font-weight: 900;
    letter-spacing: -.02em;
    color: var(--asphalt);
}

.registration-hotel-callout {
    background: linear-gradient(180deg, rgba(255,255,255,.95), rgba(255,246,229,.95));
    border: 1px solid rgba(255,180,70,.45);
    border-radius: var(--radius-lg);
    padding: 1rem 1.1rem;
    box-shadow: 0 10px 22px rgba(16,33,42,.12);
}

.registration-hotel-title {
    font-size: .95rem;
    font-weight: 900;
    letter-spacing: .02em;
    text-transform: uppercase;
    color: var(--truck);
}