@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@700&family=Roboto:wght@300;400&display=swap');

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

/* Base body styles for generic pages */
body {
    font-family: Arial, Helvetica, sans-serif;
    background: #f2f2f2;
    color: #222;
}

/* Generic layout */
.navbar {
    background: #222;
    color: white;
    padding: 15px 20px;
    font-size: 1.2rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.content {
    padding: 40px;
}

.center-box {
    max-width: 900px;
    margin: 150px auto;
    text-align: center;
}

.title {
    font-size: 5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.angry {
    font-size: 3rem;
    color: #d00000;
    font-weight: 700;
}

/* Coming soon page */
body.coming-soon {
    background-color: #121212;
    color: #e0e0e0;
    font-family: 'Roboto', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    text-align: center;
    overflow: hidden;
}

body.coming-soon .content {
    padding: 2rem;
}

.footer-text {
    position: absolute;
    bottom: 10px;
    width: 100%;
    text-align: center;
    color: #444;
    font-size: 0.8rem;
}

.coming-soon .container {
    max-width: 700px;
}

.coming-soon .title {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #00aaff;
    margin-bottom: 0.5rem;
}

.coming-soon .subtitle {
    font-size: 1.25rem;
    font-weight: 300;
    color: #b0b0b0;
    margin-bottom: 3rem;
}

#countdown {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    font-family: 'Orbitron', sans-serif;
}

.time-box {
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    min-width: 100px;
}

.time-value {
    font-size: 3rem;
    font-weight: 700;
}

.time-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: #888;
}

/* Ride landing page */
body.ride-landing {
    background: #0c1118;
    color: #e5edf5;
    font-family: 'Roboto', sans-serif;
    min-height: 100vh;
}

body.ride-landing::before {
    content: "";
    position: fixed;
    inset: 0;
    background:
        radial-gradient(circle at top left, rgba(0, 170, 255, 0.18), transparent 55%),
        radial-gradient(circle at 70% 20%, rgba(0, 208, 132, 0.16), transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.04), transparent 45%);
    pointer-events: none;
    z-index: 0;
}

body.ride-landing .content {
    padding: 0;
    position: relative;
    z-index: 1;
}

body.ride-landing h1,
body.ride-landing h2,
body.ride-landing h3,
body.ride-landing h4 {
    font-family: 'Orbitron', sans-serif;
    color: #eaf6ff;
}

.ride-page {
    max-width: 1220px;
    margin: 0 auto;
    padding: 32px 24px 96px;
    position: relative;
    isolation: isolate;
}

.ride-page::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background-image:
        linear-gradient(rgba(0, 170, 255, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 170, 255, 0.06) 1px, transparent 1px);
    background-size: 46px 46px;
    mask-image: radial-gradient(circle at 50% 40%, #000 20%, transparent 88%);
    pointer-events: none;
}

.ride-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 14px 18px;
    margin-bottom: 30px;
    border: 1px solid rgba(45, 62, 84, 0.6);
    border-radius: 20px;
    background: rgba(10, 16, 24, 0.72);
    backdrop-filter: blur(8px);
    position: sticky;
    top: 16px;
    z-index: 5;
}

.ride-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.35rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #00aaff;
}

.logo-mark {
    width: 18px;
    height: 18px;
    border-radius: 6px;
    background: linear-gradient(135deg, #00aaff, #00d084);
    box-shadow: 0 0 18px rgba(0, 170, 255, 0.6);
}

.ride-links {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.ride-links a {
    color: #b7c6d8;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s ease, text-shadow 0.2s ease;
}

.ride-links a:hover {
    color: #00aaff;
    text-shadow: 0 0 12px rgba(0, 170, 255, 0.45);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 999px;
    border: 1px solid transparent;
    padding: 12px 22px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    background: #00aaff;
    color: #0b111a;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 22px rgba(0, 170, 255, 0.2);
}

.btn.ghost {
    background: transparent;
    border-color: #2a3a4e;
    color: #e5edf5;
    box-shadow: none;
}

.btn.ghost:hover {
    border-color: #00aaff;
    color: #00aaff;
    box-shadow: none;
}

.btn.small {
    padding: 8px 16px;
    font-size: 0.85rem;
}

.btn.mini {
    padding: 6px 12px;
    font-size: 0.75rem;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.75rem;
    color: #00aaff;
    font-weight: 600;
    margin-bottom: 12px;
}

.ride-hero {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 40px;
    align-items: center;
    padding: 16px 0 56px;
}

.hero-text {
    animation: fadeUp 0.9s ease both;
}

.hero-text h1 {
    font-size: 3.1rem;
    line-height: 1.1;
    margin-bottom: 18px;
}

.hero-lede {
    font-size: 1.1rem;
    color: #b7c6d8;
    line-height: 1.7;
}

.hero-proof {
    margin-top: 14px;
    max-width: 58ch;
    color: #9fb4c8;
    line-height: 1.7;
    font-size: 0.98rem;
}

.hero-chips {
    margin-top: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hero-chip {
    border-radius: 999px;
    border: 1px solid rgba(0, 170, 255, 0.4);
    background: rgba(11, 17, 26, 0.55);
    color: #cde7ff;
    padding: 7px 13px;
    font-size: 0.78rem;
    letter-spacing: 0.4px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin: 26px 0 12px;
    flex-wrap: wrap;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 24px;
}

.stat {
    background: linear-gradient(150deg, rgba(15, 24, 36, 0.75), rgba(12, 19, 29, 0.6));
    border: 1px solid rgba(39, 57, 79, 0.9);
    border-radius: 16px;
    padding: 14px 16px;
}

.stat-value {
    display: block;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.4rem;
    color: #00d084;
}

.stat-label {
    font-size: 0.8rem;
    color: #97a8ba;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-visual {
    display: flex;
    flex-direction: column;
    gap: 18px;
    animation: fadeUp 0.9s ease both;
    animation-delay: 0.1s;
}

.hero-card {
    background: linear-gradient(140deg, rgba(10, 16, 24, 0.84), rgba(13, 26, 40, 0.76));
    border: 1px solid rgba(37, 57, 80, 0.9);
    border-radius: 28px;
    padding: 22px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(8px);
    animation: fadeUp 0.9s ease both;
}

.hero-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #9ab3c6;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.launch-countdown {
    margin-top: 12px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    padding: 12px;
    border-radius: 16px;
    background: rgba(12, 18, 28, 0.7);
    border: 1px solid #1f2b3d;
}

.launch-time {
    display: grid;
    gap: 4px;
    text-align: center;
}

.launch-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    color: #00d084;
}

.launch-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    color: #8da0b4;
    letter-spacing: 1px;
}

.pulse-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #00d084;
    box-shadow: 0 0 12px rgba(0, 208, 132, 0.8);
    animation: pulse 1.6s ease infinite;
}

.hero-media {
    position: relative;
    margin: 18px 0;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid #1f2b3d;
    background: linear-gradient(140deg, rgba(0, 170, 255, 0.18), rgba(0, 208, 132, 0.12));
    box-shadow: 0 18px 32px rgba(0, 0, 0, 0.35);
}

.hero-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(9, 16, 25, 0.1) 38%, rgba(9, 16, 25, 0.45) 100%);
    pointer-events: none;
}

.hero-video {
    width: 100%;
    display: block;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    background: #091019;
    filter: saturate(1.08) contrast(1.04);
    pointer-events: none;
}

.hero-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: #c6d3e1;
    font-size: 0.9rem;
}

.hero-card-footer strong {
    display: block;
    color: #eaf6ff;
}

.hero-card-footer span {
    display: block;
    color: #91a4b8;
    font-size: 0.8rem;
}

.hero-badges {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.badge {
    background: rgba(15, 24, 36, 0.9);
    border: 1px solid #1f2b3d;
    border-radius: 18px;
    padding: 16px;
}

.badge-title {
    font-weight: 600;
    color: #eaf6ff;
}

.badge-desc {
    display: block;
    margin-top: 6px;
    font-size: 0.85rem;
    color: #94a6b8;
}

.ride-partners {
    margin-top: 6px;
    margin-bottom: 8px;
    padding: 18px 20px;
    border: 1px solid rgba(37, 57, 80, 0.9);
    border-radius: 20px;
    background: rgba(10, 16, 24, 0.52);
}

.partners-label {
    font-size: 0.78rem;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: #8ea6bc;
}

.rollout-groups {
    margin-top: 14px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.rollout-group {
    border: 1px solid rgba(38, 57, 80, 0.82);
    border-radius: 14px;
    padding: 12px;
    background: rgba(12, 20, 30, 0.65);
}

.rollout-group h3 {
    font-size: 0.92rem;
    margin-bottom: 10px;
    letter-spacing: 0.4px;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}

.partners-grid span {
    text-align: center;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.78rem;
    color: #cce3f8;
    border: 1px solid rgba(38, 57, 80, 0.82);
    border-radius: 12px;
    padding: 8px 9px;
    background: rgba(12, 20, 30, 0.75);
}

.ride-snapshot {
    padding: 44px 0 18px;
}

.snapshot-grid {
    margin-top: 24px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.snapshot-card {
    border-radius: 18px;
    border: 1px solid rgba(37, 57, 80, 0.9);
    background: linear-gradient(145deg, rgba(10, 16, 24, 0.86), rgba(16, 30, 44, 0.62));
    padding: 18px;
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.22);
}

.snapshot-value {
    display: block;
    font-family: 'Orbitron', sans-serif;
    color: #00d084;
    font-size: 1.3rem;
    letter-spacing: 0.3px;
}

.snapshot-label {
    display: block;
    margin-top: 4px;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: #8fa8bf;
}

.snapshot-card p {
    margin-top: 12px;
    color: #b9cbdd;
    font-size: 0.88rem;
    line-height: 1.6;
}

.ride-ops {
    padding: 34px 0 10px;
}

.ops-layout {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 22px;
    align-items: stretch;
}

.ops-text {
    border-radius: 24px;
    border: 1px solid rgba(37, 57, 80, 0.9);
    background: rgba(10, 16, 24, 0.63);
    padding: 26px;
}

.ops-text p {
    color: #b7c6d8;
    line-height: 1.7;
}

.ops-list {
    margin-top: 16px;
    list-style: none;
    display: grid;
    gap: 11px;
}

.ops-list li {
    color: #c8d9ea;
    position: relative;
    padding-left: 20px;
    line-height: 1.55;
}

.ops-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #00aaff;
    box-shadow: 0 0 10px rgba(0, 170, 255, 0.55);
}

.ops-actions {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.ops-board {
    border-radius: 24px;
    border: 1px solid rgba(37, 57, 80, 0.9);
    background: linear-gradient(150deg, rgba(10, 16, 24, 0.85), rgba(14, 28, 40, 0.72));
    padding: 24px;
}

.ops-board h3 {
    margin-bottom: 16px;
}

.ops-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: 12px;
}

.ops-name {
    color: #d2e4f5;
    font-size: 0.9rem;
}

.ops-meta {
    font-size: 0.78rem;
    color: #90b7d7;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.ops-bar {
    margin-top: 8px;
    height: 8px;
    border-radius: 999px;
    background: rgba(13, 22, 33, 0.9);
    border: 1px solid rgba(34, 52, 73, 0.9);
    overflow: hidden;
}

.ops-bar span {
    display: block;
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(90deg, #00aaff, #00d084);
}

.ops-note {
    margin-top: 16px;
    border-top: 1px solid rgba(36, 54, 75, 0.9);
    padding-top: 14px;
    color: #9ab0c6;
    font-size: 0.82rem;
}

.ops-note strong {
    color: #00d084;
}

.ride-panels {
    padding: 48px 0;
}

.panel {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 40px;
    align-items: center;
    background: rgba(12, 18, 28, 0.7);
    border: 1px solid #1f2b3d;
    border-radius: 28px;
    padding: 32px;
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.25);
    animation: fadeUp 0.9s ease both;
}

.panel.reverse .panel-text {
    order: 2;
}

.panel.reverse .panel-image {
    order: 1;
}

.panel-text p {
    color: #b7c6d8;
    line-height: 1.7;
    margin-bottom: 16px;
}

.feature-list {
    list-style: none;
    margin: 20px 0;
    display: grid;
    gap: 12px;
}

.feature-list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    color: #c8d6e6;
}

.feature-list li::before {
    content: "+";
    color: #00d084;
    font-weight: 700;
    margin-top: 2px;
}

.panel-meta {
    margin: 10px 0 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.panel-meta span {
    font-size: 0.76rem;
    color: #c8def1;
    border-radius: 999px;
    border: 1px solid rgba(0, 170, 255, 0.42);
    background: rgba(9, 16, 25, 0.6);
    padding: 7px 12px;
    letter-spacing: 0.3px;
}

.panel-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.panel-image {
    background: rgba(10, 16, 24, 0.6);
    border-radius: 24px;
    border: 1px solid #1f2b3d;
    padding: 16px;
}

.panel-illustration {
    width: 100%;
    height: auto;
}

.ride-experience {
    padding: 56px 0 20px;
}

.experience-grid {
    margin-top: 24px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.experience-card {
    border-radius: 22px;
    border: 1px solid rgba(37, 57, 80, 0.9);
    background: linear-gradient(140deg, rgba(12, 19, 29, 0.85), rgba(14, 28, 40, 0.62));
    padding: 24px;
    box-shadow: 0 18px 32px rgba(0, 0, 0, 0.22);
    animation: fadeUp 0.9s ease both;
}

.experience-card.featured {
    border-color: rgba(0, 170, 255, 0.58);
    box-shadow: 0 20px 38px rgba(0, 170, 255, 0.12);
}

.tier-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 68px;
    border-radius: 999px;
    border: 1px solid rgba(0, 208, 132, 0.6);
    color: #d8fff0;
    background: rgba(0, 208, 132, 0.12);
    font-size: 0.73rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 5px 11px;
    margin-bottom: 12px;
}

.experience-card h3 {
    margin-bottom: 8px;
}

.experience-card p {
    color: #b7c6d8;
    line-height: 1.6;
}

.tier-list {
    margin: 16px 0 20px;
    list-style: none;
    display: grid;
    gap: 10px;
}

.tier-list li {
    position: relative;
    padding-left: 20px;
    color: #c7d7e8;
    font-size: 0.9rem;
}

.tier-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #00aaff;
    box-shadow: 0 0 10px rgba(0, 170, 255, 0.6);
}

.ride-steps {
    padding: 56px 0;
}

.section-title {
    max-width: 560px;
}

.section-title h2 {
    line-height: 1.2;
}

.rollout-group,
.snapshot-card,
.panel,
.experience-card,
.step-card,
.safety-item,
.story-card,
.faq-item,
.ops-board,
.ops-text,
.cta-card {
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.rollout-group:hover,
.snapshot-card:hover,
.experience-card:hover,
.step-card:hover,
.safety-item:hover,
.story-card:hover,
.faq-item:hover,
.ops-board:hover,
.ops-text:hover,
.cta-card:hover {
    transform: translateY(-3px);
    border-color: rgba(0, 170, 255, 0.5);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.22);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin-top: 24px;
}

.step-card {
    background: rgba(12, 18, 28, 0.7);
    border: 1px solid #1f2b3d;
    border-radius: 20px;
    padding: 22px;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.2);
    animation: fadeUp 0.9s ease both;
}

.step-card:nth-child(2) {
    animation-delay: 0.08s;
}

.step-card:nth-child(3) {
    animation-delay: 0.16s;
}

.step-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    color: #00aaff;
}

.step-card h3 {
    margin: 12px 0 8px;
}

.step-card p {
    color: #b7c6d8;
    line-height: 1.6;
}

.ride-safety {
    padding: 40px 0 60px;
}

.safety-card {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 32px;
    align-items: center;
    background: linear-gradient(120deg, rgba(12, 18, 28, 0.9), rgba(15, 36, 51, 0.7));
    border: 1px solid #1f2b3d;
    border-radius: 28px;
    padding: 32px;
}

.safety-text p {
    color: #b7c6d8;
    line-height: 1.7;
}

.safety-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 20px;
}

.safety-item {
    background: rgba(10, 16, 24, 0.7);
    border: 1px solid #1f2b3d;
    border-radius: 18px;
    padding: 16px;
}

.safety-item h4 {
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.safety-item p {
    font-size: 0.85rem;
}

.safety-image {
    display: flex;
    justify-content: center;
}

.shield-illustration {
    width: 100%;
    max-width: 260px;
    height: auto;
}

.ride-stories {
    padding: 18px 0 52px;
}

.stories-grid {
    margin-top: 24px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.story-card {
    border: 1px solid rgba(37, 57, 80, 0.9);
    border-radius: 20px;
    padding: 22px;
    background: rgba(10, 16, 24, 0.7);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2);
    animation: fadeUp 0.9s ease both;
}

.story-quote {
    color: #cde0f1;
    line-height: 1.75;
    font-size: 0.95rem;
}

.story-person {
    margin-top: 16px;
}

.story-person strong {
    display: block;
    color: #eaf6ff;
}

.story-person span {
    font-size: 0.82rem;
    color: #93a8be;
}

.ride-faq {
    padding: 0 0 20px;
}

.faq-layout {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 22px;
}

.faq-intro {
    border-radius: 22px;
    border: 1px solid rgba(37, 57, 80, 0.9);
    background: rgba(10, 16, 24, 0.68);
    padding: 26px;
}

.faq-intro p {
    color: #b7c6d8;
    line-height: 1.7;
}

.faq-list {
    display: grid;
    gap: 12px;
}

.faq-item {
    border: 1px solid rgba(37, 57, 80, 0.9);
    border-radius: 16px;
    background: rgba(10, 16, 24, 0.72);
    padding: 14px 18px;
}

.faq-item summary {
    cursor: pointer;
    list-style: none;
    font-family: 'Orbitron', sans-serif;
    color: #eaf6ff;
    font-size: 0.9rem;
    letter-spacing: 0.2px;
    padding-right: 18px;
    position: relative;
}

.faq-item summary::marker,
.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";
    position: absolute;
    right: 0;
    top: 0;
    color: #00aaff;
}

.faq-item[open] summary::after {
    content: "-";
}

.faq-item p {
    margin-top: 10px;
    color: #b9cadb;
    line-height: 1.65;
    font-size: 0.92rem;
}

.ride-cta {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 28px;
    align-items: center;
    margin-top: 24px;
    padding: 42px 32px;
    border-radius: 28px;
    border: 1px solid #1f2b3d;
    background: linear-gradient(120deg, rgba(12, 18, 28, 0.9), rgba(15, 36, 51, 0.8));
}

.cta-content p {
    color: #b7c6d8;
    line-height: 1.6;
}

.cta-list {
    margin-top: 16px;
    margin-left: 18px;
    display: grid;
    gap: 8px;
    color: #c8d8e8;
}

.cta-actions {
    margin-top: 20px;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.cta-card {
    background: rgba(10, 16, 24, 0.75);
    border: 1px solid #1f2b3d;
    border-radius: 24px;
    padding: 24px;
}

.cta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.cta-title {
    display: block;
    font-weight: 700;
    color: #eaf6ff;
    font-size: 1rem;
}

.cta-meta {
    display: block;
    font-size: 0.8rem;
    color: #91a4b8;
}

.cta-chip {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 10px;
    border-radius: 999px;
    background: #00d084;
    color: #0b111a;
    font-weight: 700;
}

.cta-store {
    margin-top: 20px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.ride-origin {
    margin-top: 18px;
    text-align: center;
}

.ride-origin p {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(38, 57, 80, 0.85);
    border-radius: 999px;
    background: rgba(10, 16, 24, 0.65);
    color: #bfd4e9;
    font-size: 0.88rem;
    letter-spacing: 0.4px;
    padding: 10px 18px;
}

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

@keyframes pulse {
    0% {
        transform: scale(0.95);
        opacity: 0.7;
    }
    70% {
        transform: scale(1.1);
        opacity: 1;
    }
    100% {
        transform: scale(0.95);
        opacity: 0.7;
    }
}

@media (max-width: 1024px) {
    .ride-hero,
    .panel,
    .safety-card,
    .ride-cta,
    .faq-layout,
    .ops-layout {
        grid-template-columns: 1fr;
    }

    .panel.reverse .panel-text,
    .panel.reverse .panel-image {
        order: initial;
    }

    .hero-visual {
        animation-delay: 0s;
    }

    .hero-badges {
        grid-template-columns: 1fr;
    }

    .safety-grid {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .partners-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .rollout-groups {
        grid-template-columns: 1fr;
    }

    .snapshot-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .experience-grid,
    .stories-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .ride-nav {
        flex-direction: column;
        align-items: flex-start;
        position: static;
    }

    .ride-links {
        flex-wrap: wrap;
        gap: 14px;
    }

    .hero-text h1 {
        font-size: 2.3rem;
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }

    .launch-countdown {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-chips {
        gap: 8px;
    }

    .partners-grid,
    .snapshot-grid,
    .experience-grid,
    .stories-grid {
        grid-template-columns: 1fr;
    }

    .ride-partners,
    .faq-intro,
    .faq-item {
        padding-left: 16px;
        padding-right: 16px;
    }
}
