:root {
    /* Color Palette */
    --bg-dark: #000000;
    --bg-navy: #0a0a0a;
    --bg-navy-light: #141414;

    --accent-gold: #D4AF37;
    --accent-gold-hover: #F3CA40;
    --accent-amber: #FFB800;

    --text-light: #F8F9FA;
    --text-muted: #A0AABF;

    /* Typography */
    --font-sans: "Neue Montreal", "Manrope", "Segoe UI", sans-serif;
    --font-heading: "Neue Montreal", "Manrope", "Segoe UI", sans-serif;
    --font-serif: "Canela", "Cormorant Garamond", Georgia, serif;

    /* Spacing & Layout */
    --container-max: 1200px;
    --section-pad: 5rem 2rem;
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --button-radius: 1.65rem;
}

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

html {
    scroll-behavior: auto;
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg-navy);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    width: 100%;
}

.highlight {
    color: var(--accent-gold);
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.82rem 1.7rem;
    border-radius: var(--button-radius);
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all var(--transition-smooth);
    border: 2px solid transparent;
    letter-spacing: -0.02em;
    min-height: 3.35rem;
}

.btn-primary {
    background-color: var(--accent-gold);
    color: var(--bg-dark);
}

.btn-primary:hover {
    background-color: var(--accent-gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.08);
    color: var(--text-light);
    border-color: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.btn-outline {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
    background: transparent;
}

.btn-outline:hover {
    background-color: var(--accent-gold);
    color: var(--bg-dark);
}

.btn-block {
    width: 100%;
    padding: 1rem;
}

.accent-cta {
    --main-size: 0.92rem;
    --color-text: #101010;
    --color-background: #d4af37;
    --color-background-hover: #f3ca40;
    --color-outline: rgba(243, 202, 64, 0.25);
    --color-shadow: rgba(0, 0, 0, 0.3);
    cursor: pointer;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    border: none;
    border-radius: var(--button-radius);
    padding: 0.88em 0 0.88em 1.2em;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: var(--main-size);
    letter-spacing: -0.02em;
    color: var(--color-text);
    background: var(--color-background);
    box-shadow: 0 0 0.2em 0 var(--color-background);
    transition: transform 0.25s ease, box-shadow 0.5s ease, background 0.5s ease, outline-offset 0.5s ease;
    min-height: 3.35rem;
}

.accent-cta:active {
    transform: scale(0.95);
}

.accent-cta:hover {
    outline: 0.1em solid transparent;
    outline-offset: 0.2em;
    box-shadow: 0 0 1em 0 var(--color-background);
    animation:
        nav-ripple 1s linear infinite,
        nav-colorize 1s infinite;
}

.accent-cta span {
    margin-right: 0.45em;
    transition: text-shadow 0.5s ease;
}

.accent-cta:hover span {
    text-shadow: 5px 5px 5px var(--color-shadow);
}

.accent-cta:active span {
    text-shadow: none;
}

.accent-cta svg {
    height: 0.8em;
    fill: var(--color-text);
    margin-right: -0.16em;
    position: relative;
    transition: margin-right 0.5s ease, filter 0.5s ease;
}

.accent-cta:hover svg {
    margin-right: 0.66em;
    filter: drop-shadow(5px 5px 2.5px var(--color-shadow));
}

.accent-cta:active svg {
    filter: none;
}

.accent-cta svg polygon:nth-child(1) {
    transition: 0.4s;
    transform: translateX(-60%);
}

.accent-cta svg polygon:nth-child(2) {
    transition: 0.5s;
    transform: translateX(-30%);
}

.accent-cta:hover svg polygon:nth-child(1) {
    transform: translateX(0%);
    animation: nav-opacity 1s infinite 0.6s;
}

.accent-cta:hover svg polygon:nth-child(2) {
    transform: translateX(0%);
    animation: nav-opacity 1s infinite 0.4s;
}

.accent-cta:hover svg polygon:nth-child(3) {
    animation: nav-opacity 1s infinite 0.2s;
}

.nav-join-button {
    flex-shrink: 0;
}

.submit-cta {
    width: 100%;
    min-height: 3.9rem;
    padding-left: 1.35em;
    padding-right: 1.1em;
    justify-content: center;
}

@keyframes nav-opacity {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes nav-colorize {
    0% {
        background: var(--color-background);
    }

    50% {
        background: var(--color-background-hover);
    }

    100% {
        background: var(--color-background);
    }
}

@keyframes nav-ripple {
    0% {
        outline: 0 solid transparent;
        outline-offset: -0.1em;
    }

    50% {
        outline: 0.2em solid var(--color-outline);
        outline-offset: 0.2em;
    }

    100% {
        outline: 0.4em solid transparent;
        outline-offset: 0.4em;
    }
}

/* --- Navbar --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 100;
    padding: 1rem 1.5rem 0;
    transition: background var(--transition-smooth), padding var(--transition-smooth), transform var(--transition-smooth), opacity var(--transition-smooth);
    background: linear-gradient(180deg, rgba(6, 6, 6, 0.72) 0%, rgba(6, 6, 6, 0.18) 72%, rgba(6, 6, 6, 0) 100%);
}

.nav-pill {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    width: min(1200px, 100%);
    padding: 0.86rem 0.95rem 0.86rem 1.05rem;
    gap: 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--button-radius);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.035) 0%, rgba(255, 255, 255, 0.01) 30%, rgba(255, 255, 255, 0.015) 100%),
        rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.04),
        0 18px 40px rgba(0, 0, 0, 0.26);
    transition: background var(--transition-smooth), border-color var(--transition-smooth), box-shadow var(--transition-smooth), transform var(--transition-smooth), opacity var(--transition-smooth);
    will-change: transform, opacity;
}

.nav-brand {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    line-height: 1;
    position: relative;
    z-index: 1;
}

.nav-brand-left {
    min-width: 0;
    gap: 0.72rem;
    justify-self: start;
}

.mobility-logo-image,
.logo-image {
    display: block;
    width: auto;
    max-width: none;
}

.mobility-logo-image {
    width: 2.88rem;
    height: 2.88rem;
    object-fit: cover;
    object-position: center;
    transform: scale(1.36);
    transform-origin: center;
    opacity: 0.98;
    margin-top: 0;
    margin-left: 0;
    flex-shrink: 0;
    border-radius: 0.85rem;
    box-shadow: 0 10px 18px rgba(0, 0, 0, 0.2);
}

.logo-image {
    height: 3.25rem;
    max-width: none;
    margin-top: 0.06rem;
    margin-left: 0;
    transform: scale(1.25);
    transform-origin: center;
}

.nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.45rem;
    position: relative;
    z-index: 1;
}

.nav-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.85rem;
    min-width: 0;
    justify-self: end;
    position: relative;
    z-index: 1;
}

.mobile-menu-toggle,
.mobile-menu {
    display: none;
}

.mobile-menu-toggle {
    appearance: none;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    width: 3rem;
    height: 3rem;
    border-radius: var(--button-radius);
    padding: 0;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0.28rem;
    cursor: pointer;
    flex-shrink: 0;
}

.mobile-menu-toggle span {
    display: block;
    width: 1rem;
    height: 2px;
    border-radius: 999px;
    background: var(--text-light);
    transition: transform var(--transition-smooth), opacity var(--transition-smooth);
}

.mobile-menu-toggle.is-open span:nth-child(1) {
    transform: translateY(0.38rem) rotate(45deg);
}

.mobile-menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-0.38rem) rotate(-45deg);
}

.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 95;
    background: rgba(0, 0, 0, 0.56);
    backdrop-filter: blur(12px);
    padding: 5.5rem 1rem 1rem;
}

.mobile-menu.is-open {
    display: block;
}

.mobile-menu-panel {
    width: min(100%, 28rem);
    margin: 0 auto;
    padding: 1.1rem;
    border-radius: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(12, 12, 12, 0.94);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.34);
    display: grid;
    gap: 0.75rem;
}

.mobile-menu-panel a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 3.35rem;
    border-radius: var(--button-radius);
    font-weight: 700;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.mobile-menu-panel .btn {
    width: 100%;
}

.mobile-menu-panel .accent-cta {
    width: 100%;
    background: var(--color-background);
    color: var(--color-text);
    border: none;
    box-shadow: 0 0 0.45em 0 rgba(212, 175, 55, 0.45);
}

.nav-links-pill {
    padding: 0.4rem 0.72rem 0.4rem 0.92rem;
    border-radius: calc(var(--button-radius) - 0.1rem);
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.045);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025);
}

.nav-links a:not(.btn) {
    position: relative;
    font-size: 0.92rem;
    font-weight: 600;
    color: rgba(248, 249, 250, 0.72);
    padding: 0.4rem 0.02rem;
    border-radius: 0;
}

.nav-links a:not(.btn):hover {
    color: var(--text-light);
    background: transparent;
}

.nav-links a:not(.btn)::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.8rem;
    width: 100%;
    height: 2px;
    background: var(--accent-gold);
    opacity: 0;
    transform: scaleX(0.45);
    transform-origin: center;
    transition: var(--transition-smooth);
}

.nav-links a:not(.btn):hover::after {
    opacity: 1;
    transform: scaleX(1);
}

.nav-cta {
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.btn-pill {
    padding: 0.74rem 1.25rem;
    min-width: 0;
    border-radius: var(--button-radius);
}

.navbar.is-scrolled {
    padding-top: 0.7rem;
    background: linear-gradient(180deg, rgba(6, 6, 6, 0.92) 0%, rgba(6, 6, 6, 0.55) 82%, rgba(6, 6, 6, 0.12) 100%);
}

.navbar.is-scrolled .nav-pill {
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.012) 24%, rgba(255, 255, 255, 0.022) 100%),
        rgba(8, 8, 8, 0.86);
    border-color: rgba(255, 255, 255, 0.09);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.04),
        0 20px 42px rgba(0, 0, 0, 0.3);
}

.navbar.is-hidden {
    pointer-events: none;
}

.navbar.is-hidden .nav-pill {
    transform: translate3d(0, -140%, 0);
    opacity: 0;
}

/* --- Hero Section --- */
.interactive-hero {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: stretch;
    justify-content: center;
    padding: 0;
}

.hero-bg-wrapper {
    position: absolute;
    inset: -4%;
    z-index: 0;
}

.hero-media,
.hero-image {
    width: 100%;
    height: 100%;
}

.hero-media {
    display: block;
}

.hero-image {
    display: block;
    object-fit: cover;
    object-position: center right;
    transform: scale(1.04);
    will-change: auto;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-image.is-interactive {
    will-change: transform;
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(90deg, rgba(2, 2, 2, 0.88) 0%, rgba(4, 4, 4, 0.72) 42%, rgba(5, 5, 5, 0.42) 72%, rgba(5, 5, 5, 0.58) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.55) 100%);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        radial-gradient(circle at 18% 22%, rgba(212, 175, 55, 0.18), transparent 34%),
        radial-gradient(circle at 85% 82%, rgba(255, 184, 0, 0.1), transparent 28%);
    pointer-events: none;
}

.hero-shell {
    position: relative;
    z-index: 2;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8.75rem 2rem 4rem;
}

.interactive-hero .hero-content {
    text-align: left;
    max-width: 660px;
    padding-bottom: 1rem;
}

.editorial-headline {
    font-size: clamp(3.3rem, 6vw, 5.4rem);
    line-height: 0.94;
    margin-bottom: 1.1rem;
    perspective: 1000px;
    letter-spacing: -0.05em;
    max-width: 10ch;
}

.hero-title-primary {
    font-weight: 700;
    color: var(--text-light);
}

.hero-title-secondary {
    font-weight: 600;
    color: rgba(248, 249, 250, 0.95);
}

.hero-title-accent-word {
    color: var(--accent-gold);
}

.line-wrapper {
    display: block;
    overflow: hidden;
}

.interactive-hero .line {
    display: block;
    transform-origin: left bottom;
}

.reveal-ready {
    opacity: 0;
    transform: translate3d(0, 28px, 0);
    transition:
        opacity 700ms cubic-bezier(0.16, 1, 0.3, 1) var(--reveal-delay, 0ms),
        transform 700ms cubic-bezier(0.16, 1, 0.3, 1) var(--reveal-delay, 0ms);
}

.reveal-ready.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.benefits-image.reveal-ready {
    transform: translate3d(36px, 0, 0);
}

.benefits-image.reveal-ready.is-visible {
    transform: translate3d(0, 0, 0);
}

/* .glow-text removed in favor of editorial-serif */

.interactive-hero .hero-subtitle {
    font-size: clamp(1rem, 1.3vw, 1.08rem);
    color: rgba(248, 249, 250, 0.68);
    margin: 0 0 1.8rem 0;
    max-width: 33rem;
}

.center-actions {
    justify-content: flex-start;
    display: flex;
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.magnetic-btn {
    position: relative;
    overflow: hidden;
    transition: transform 0.25s ease;
}

.magnetic-btn .btn-text {
    position: relative;
    z-index: 2;
    pointer-events: none;
    display: inline-block;
    transition: transform 0.25s ease;
}

.hero-proof-line {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem 1.1rem;
    max-width: 42rem;
    color: rgba(248, 249, 250, 0.5);
    font-size: 0.86rem;
    font-weight: 500;
}

.hero-proof-line span {
    position: relative;
    padding-left: 0.85rem;
}

.hero-proof-line span::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 0.32rem;
    height: 0.32rem;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.72);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: #fff;
    border-radius: 2px;
    animation: scroll-wheel 2s infinite;
}

@keyframes scroll-wheel {
    0% {
        top: 10px;
        opacity: 1;
    }

    100% {
        top: 25px;
        opacity: 0;
    }
}

/* --- Sections --- */
.section {
    padding: var(--section-pad);
}

.dark-section {
    background-color: var(--bg-dark);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* --- How It Works --- */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.4rem;
    align-items: stretch;
    max-width: 1120px;
    margin: 0 auto;
    padding: 1.75rem 0 0;
}

#how-it-works {
    position: relative;
    overflow: hidden;
}

#how-it-works::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 11rem;
    width: 32rem;
    height: 32rem;
    transform: translateX(-50%);
    background: radial-gradient(circle, rgba(212, 175, 55, 0.14) 0%, rgba(212, 175, 55, 0.05) 38%, transparent 72%);
    filter: blur(18px);
    pointer-events: none;
}

.step-card {
    appearance: none;
    -webkit-appearance: none;
    background: none;
    border: 0;
    padding: 0;
    position: relative;
    min-height: 360px;
    border-radius: 0;
    text-align: left;
    cursor: pointer;
    outline: none;
    overflow: hidden;
}

.step-card-inner {
    display: block;
    position: relative;
    width: 100%;
    min-height: 360px;
    border-radius: inherit;
    overflow: hidden;
}

.step-face {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    padding: 1.6rem;
    border-radius: 0;
    min-height: 360px;
}

.step-face-front {
    background: linear-gradient(180deg, rgba(18, 18, 20, 0.84) 0%, rgba(12, 12, 14, 0.96) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        0 24px 40px rgba(0, 0, 0, 0.22);
    transition:
        border-color 320ms ease,
        box-shadow 320ms ease,
        transform 420ms cubic-bezier(0.16, 1, 0.3, 1),
        opacity 320ms ease,
        visibility 320ms ease;
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.step-face-back {
    background: linear-gradient(180deg, rgba(212, 175, 55, 0.94) 0%, rgba(186, 143, 31, 0.94) 100%);
    color: #101010;
    border: 1px solid rgba(255, 220, 120, 0.36);
    box-shadow:
        inset 0 1px 0 rgba(255, 245, 214, 0.3),
        0 18px 32px rgba(0, 0, 0, 0.18);
    justify-content: space-between;
    opacity: 0;
    visibility: hidden;
    transform: translateY(18px) scale(0.985);
    pointer-events: none;
    transition:
        transform 500ms cubic-bezier(0.16, 1, 0.3, 1),
        opacity 280ms ease,
        visibility 280ms ease;
    z-index: 2;
}

.step-card.is-flipped .step-face-back {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.step-card-side {
    opacity: 0.92;
}

.step-card:hover .step-face-front {
    border-color: rgba(212, 175, 55, 0.18);
    transform: translateY(-4px);
}

.step-card.is-flipped .step-face-front {
    border-color: rgba(212, 175, 55, 0.22);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        0 18px 32px rgba(0, 0, 0, 0.24);
    transform: translateY(-18px) scale(0.985);
    opacity: 0;
    visibility: hidden;
}

.step-card:focus-visible .step-face-front {
    border-color: rgba(243, 202, 64, 0.4);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        0 0 0 2px rgba(243, 202, 64, 0.22),
        0 24px 40px rgba(0, 0, 0, 0.22);
}

.step-mini-label {
    display: inline-block;
    color: rgba(248, 249, 250, 0.72);
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: -0.02em;
}

.step-arrow {
    position: absolute;
    top: 1.45rem;
    right: 1.45rem;
    width: 3.15rem;
    height: 3.15rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: rgba(248, 249, 250, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.16);
}

.step-arrow svg {
    width: 1.6rem;
    height: 1.6rem;
    transition: transform 360ms cubic-bezier(0.16, 1, 0.3, 1);
}

.step-card.is-flipped .step-arrow svg {
    transform: rotate(90deg);
}

.step-title {
    display: block;
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 0.95;
    margin-top: auto;
    margin-bottom: 0;
    color: var(--text-light);
    font-weight: 500;
    letter-spacing: -0.05em;
}

.step-back-number {
    display: inline-block;
    color: rgba(16, 16, 16, 0.72);
    font-size: 0.92rem;
    font-weight: 700;
}

.step-back-copy {
    display: block;
    margin-top: auto;
    color: rgba(16, 16, 16, 0.86);
    font-size: 1rem;
    line-height: 1.55;
    max-width: 16ch;
    font-weight: 500;
}

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

.form-success {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 220ms ease, transform 220ms ease;
}

.form-success.is-visible {
    opacity: 1;
    transform: translateY(0);
}

#how-it-works .section-header p::after {
    content: "";
    display: block;
    width: 42px;
    height: 2px;
    margin: 0.9rem auto 0;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.2) 0%, rgba(212, 175, 55, 0.9) 50%, rgba(212, 175, 55, 0.2) 100%);
}

/* --- Benefits --- */
.benefits-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.benefits-text h2 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    margin-bottom: 1.5rem;
}

.benefits-text>p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
}

.benefits-list {
    list-style: none;
}

.benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.check-icon {
    background: rgba(212, 175, 55, 0.1);
    color: var(--accent-gold);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.8rem;
    font-weight: bold;
    margin-top: 2px;
}

.benefits-list strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    color: var(--text-light);
}

.benefits-list span {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.image-placeholder {
    width: 100%;
    aspect-ratio: 4/5;
    background: linear-gradient(135deg, var(--bg-navy-light) 0%, var(--bg-dark) 100%);
    border-radius: var(--radius-lg);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
    contain: paint;
}

.benefits-video-frame {
    aspect-ratio: auto;
    overflow: hidden;
    background: #050505;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.04),
        0 24px 46px rgba(0, 0, 0, 0.34);
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefits-video {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    aspect-ratio: auto;
}

.gradient-glow::after {
    content: '';
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    z-index: -1;
    border-radius: 50%;
}

/* --- Form Section --- */
.enroll-split {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.enroll-text-content {
    max-width: 500px;
}

.form-header h2 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    margin-bottom: 1rem;
}

.form-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.enroll-perks {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.perk-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.perk-icon {
    font-size: 2rem;
    background: rgba(212, 175, 55, 0.1);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    flex-shrink: 0;
}

.perk-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
    color: var(--text-light);
}

.perk-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.enroll-form-wrapper {
    position: relative;
}

.enroll-form {
    background: linear-gradient(145deg, rgba(20, 20, 20, 0.9) 0%, rgba(10, 10, 10, 0.95) 100%);
    padding: 3.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(212, 175, 55, 0.15);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    contain: paint;
}

.form-row {
    margin-bottom: 1.5rem;
}

.split-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group.floating {
    position: relative;
    margin-bottom: 1rem;
}

.form-group.floating input,
.form-group.floating select {
    width: 100%;
    padding: 1.5rem 0 0.5rem;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-light);
    font-family: var(--font-sans);
    font-size: 1.1rem;
    transition: var(--transition-smooth);
    border-radius: 0;
}

.form-group.floating label {
    position: absolute;
    top: 1.2rem;
    left: 0;
    font-size: 1rem;
    color: var(--text-muted);
    transition: var(--transition-smooth);
    pointer-events: none;
}

.form-group.floating input:focus,
.form-group.floating select:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 1px 0 var(--accent-gold);
}

/* Floating label effect */
.form-group.floating input:focus~label,
.form-group.floating input:not(:placeholder-shown)~label,
.form-group.floating select:focus~label,
.form-group.floating select:valid~label {
    top: -0.2rem;
    font-size: 0.8rem;
    color: var(--accent-gold);
}

/* Custom styling for select to hide default arrow and use our own */
.form-group.floating select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23A0AABF%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpolyline%20points%3D%226%209%2012%2015%2018%209%22%3E%3C%2Fpolyline%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-position: right 0 top 60%;
    background-size: 1rem auto;
    cursor: pointer;
}

.form-group.floating select:focus {
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23D4AF37%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpolyline%20points%3D%226%209%2012%2015%2018%209%22%3E%3C%2Fpolyline%3E%3C%2Fsvg%3E");
}

.btn-large {
    padding: 1.25rem 2rem;
    font-size: 1.1rem;
    margin-top: 1rem;
}

.form-success {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(46, 213, 115, 0.1);
    border: 1px solid rgba(46, 213, 115, 0.3);
    color: #2ed573;
    border-radius: var(--radius-sm);
    text-align: center;
    font-weight: 600;
}

/* --- Footer --- */
.footer {
    position: relative;
    background:
        radial-gradient(circle at 50% 58%, rgba(212, 175, 55, 0.12), transparent 34%),
        linear-gradient(180deg, #070707 0%, #000 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    content-visibility: auto;
    contain-intrinsic-size: 1px 720px;
    overflow: hidden;
}

.footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.09) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.09) 1px, transparent 1px);
    background-size: min(6.8vw, 96px) min(6.8vw, 96px);
    background-position: center center;
    opacity: 0.42;
    pointer-events: none;
}

.footer::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 28%, rgba(255, 255, 255, 0.025), transparent 26%),
        radial-gradient(circle at 72% 62%, rgba(255, 255, 255, 0.018), transparent 30%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.01), rgba(255, 255, 255, 0));
    opacity: 0.18;
    pointer-events: none;
}

.footer-stage {
    min-height: auto;
    padding: 4rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    align-items: flex-start;
    gap: 4.5rem;
    position: relative;
    z-index: 2;
}

.footer-brand h3 {
    font-size: 1.65rem;
    margin-bottom: 1rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 800;
}

.footer-brand-subtle {
    font-size: 0.7em;
    letter-spacing: 0.18em;
    color: rgba(248, 249, 250, 0.5);
    font-weight: 500;
}

.footer-brand p {
    color: rgba(248, 249, 250, 0.66);
    font-size: 1rem;
    line-height: 1.6;
    max-width: 26rem;
}

.footer-links-primary {
    display: grid;
    gap: 0.9rem;
    justify-items: start;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-socials {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.footer-social {
    width: 3.25rem;
    height: 3.25rem;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.02);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(248, 249, 250, 0.82);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.footer-social svg {
    width: 1.18rem;
    height: 1.18rem;
    fill: currentColor;
}

.footer-social:hover {
    color: var(--accent-gold);
    border-color: rgba(212, 175, 55, 0.35);
    transform: translateY(-2px);
}

.footer-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(12rem, 1fr));
    gap: 1.5rem 2.75rem;
    justify-items: start;
    align-items: start;
    justify-self: end;
    width: 100%;
    max-width: 40rem;
}

.footer-group {
    display: grid;
    gap: 1rem;
    justify-items: start;
    width: 100%;
}

.footer-group-label {
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(248, 249, 250, 0.82);
}

.footer-links-primary,
.footer-links-external {
    display: grid;
    gap: 0.9rem;
    justify-items: start;
}

.footer-links a {
    color: rgba(248, 249, 250, 0.62);
    font-weight: 500;
    font-size: 0.95rem;
    line-height: 1.35;
}

.footer-links a:hover {
    color: var(--accent-gold);
}

.footer-bottom {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-top: 2.2rem;
    padding-top: 1.6rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: rgba(248, 249, 250, 0.48);
    font-size: 0.85rem;
}



/* --- Responsive --- */
@media (max-width: 900px) {
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding-top: 1.5rem;
    }

    .step-card-featured {
        transform: none;
    }

    .nav-pill {
        grid-template-columns: minmax(0, 1fr) auto;
        padding: 0.75rem 0.9rem;
    }

    .nav-brand-left {
        gap: 0.6rem;
    }

    .nav-right {
        gap: 0.65rem;
    }

    .mobility-logo-image {
        width: 2.46rem;
        height: 2.46rem;
    }

    .logo-image {
        height: 2.95rem;
    }

    .hero-shell {
        padding-top: 8rem;
        padding-bottom: 4.5rem;
    }

    .benefits-content,
    .enroll-split {
        grid-template-columns: 1fr;
    }

    .benefits-image {
        order: -1;
    }

    .image-placeholder {
        aspect-ratio: 16/9;
    }

    .enroll-text-content {
        max-width: 100%;
        text-align: center;
    }

    .enroll-perks {
        align-items: center;
    }

    .perk-item {
        text-align: left;
    }

    .footer-stage {
        padding: 3.4rem 1.5rem 1.8rem;
    }

    .footer-nav {
        max-width: 100%;
        grid-template-columns: 1fr;
        gap: 1.2rem;
        justify-items: start;
        justify-self: start;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 0.72rem 0.85rem 0;
    }

    .nav-pill {
        grid-template-columns: auto auto;
        padding: 0.56rem 0.68rem;
        gap: 0.6rem;
        justify-content: space-between;
    }

    .nav-brand-left {
        gap: 0.42rem;
        min-width: 0;
        max-width: calc(100% - 4rem);
        overflow: visible;
        flex: 1 1 auto;
    }

    .mobility-logo-image {
        width: 2rem;
        height: 2rem;
        transform: scale(1.68);
    }

    .logo-image {
        height: 2.2rem;
        margin-top: 0.04rem;
        transform: scale(1.48);
        transform-origin: left center;
        max-width: min(8.8rem, calc(100vw - 9rem));
    }

    .nav-right {
        display: none;
    }

    .mobile-menu-toggle {
        display: inline-flex;
        margin-left: auto;
        width: 2.75rem;
        height: 2.75rem;
    }

    .mobile-menu {
        display: none;
    }

    .interactive-hero {
        align-items: center;
    }

    .hero-image {
        object-position: 64% center;
    }

    .hero-shell {
        padding: 6.25rem 1.25rem 3.2rem;
        min-height: 100vh;
    }

    .interactive-hero .hero-content {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        padding-bottom: 0.5rem;
    }

    .editorial-headline {
        max-width: 100%;
        font-size: clamp(2.7rem, 12.4vw, 4rem);
        line-height: 0.92;
        margin-bottom: 0.9rem;
    }

    .interactive-hero .hero-subtitle {
        max-width: 100%;
        font-size: 0.95rem;
        line-height: 1.55;
        margin-bottom: 1.35rem;
    }

    .hero-proof-line {
        flex-direction: column;
        gap: 0.45rem;
        font-size: 0.82rem;
        margin-top: 0.1rem;
    }

    .center-actions {
        flex-direction: column;
        width: 100%;
        max-width: 100%;
        gap: 0.8rem;
        margin-bottom: 1rem;
    }

    .center-actions .btn {
        width: 100%;
        min-height: 3.95rem;
        font-size: 1rem;
    }

    .center-actions .btn-secondary {
        background-color: rgba(255, 255, 255, 0.06);
        border-color: rgba(255, 255, 255, 0.1);
    }

    .scroll-indicator {
        display: none;
    }

    .step-card,
    .step-card-inner,
    .step-face {
        min-height: 300px;
    }

    .step-face {
        padding: 1.35rem;
    }

    .step-arrow {
        top: 1.15rem;
        right: 1.15rem;
        width: 2.75rem;
        height: 2.75rem;
    }

    .enroll-form {
        padding: 2rem 1.5rem;
    }

    .split-row {
        grid-template-columns: 1fr;
    }

    .footer-stage {
        padding: 3rem 1.25rem 1.6rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: left;
        gap: 1.6rem;
    }

    .footer-brand h3 {
        font-size: 1.2rem;
    }

    .footer-brand p {
        font-size: 0.88rem;
    }

    .footer-nav {
        grid-template-columns: 1fr;
        justify-items: start;
        max-width: 100%;
        gap: 1.25rem;
    }

    .footer-socials {
        gap: 0.8rem;
        margin-top: 1.5rem;
    }

    .footer-social {
        width: 2.9rem;
        height: 2.9rem;
    }

    .footer-group {
        gap: 0.55rem;
    }

    .footer-links-primary {
        margin-top: 0.9rem;
    }

    .footer-links a {
        font-size: 0.83rem;
    }
}

@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;
    }

    .hero-bg,
    .hero-image,
    .step-face-front,
    .step-face-back,
    .btn,
    .btn-text,
    .nav-pill,
    .reveal-ready,
    .benefits-image.reveal-ready {
        transform: none !important;
    }

    .reveal-ready {
        opacity: 1 !important;
    }

    .step-card.is-flipped .step-face-front,
    .step-card.is-flipped .step-face-back {
        opacity: 1 !important;
    }
}
