/* Reset and Box Model */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

:root {
    --primary-orange: #e3511c;
    --primary-orange-hover: #f25a22;
    --bg-dark: #0b0c10;
    --bg-card: #12131a;
    --text-white: #ffffff;
    --text-gray: #b3b3b3;
    --text-muted: #666666;
    --font-heading: 'Barlow Condensed', sans-serif;
}

/* Scroll Snapping */
html {
    scroll-snap-type: y proximity;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    background-color: var(--bg-dark);
    font-family: 'Inter', sans-serif;
    color: var(--text-white);
    overflow-x: hidden;
    line-height: 1.6;
}

img {
    max-width: 100%;
    height: auto;
}

/* Hide scrollbars for a premium feel */
::-webkit-scrollbar {
    display: none !important;
}
html, body {
    -ms-overflow-style: none !important;
    scrollbar-width: none !important;
}

/* Snap targeting on main sections and footer to be smooth and full height */
section {
    scroll-snap-align: start;
    scroll-snap-stop: always;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.footer-wrapper {
    scroll-snap-align: start;
    scroll-snap-stop: always;
    min-height: auto;
}

/* Accessibility Skip Link */
.skip-link {
    position: absolute;
    top: -100px;
    left: 20px;
    background: var(--primary-orange);
    color: white;
    padding: 10px 20px;
    z-index: 1000;
    transition: top 0.3s;
    font-family: var(--font-heading);
    font-weight: 800;
    text-decoration: none;
    border-radius: 4px;
}
.skip-link:focus {
    top: 20px;
}

/* Navigation Bar */
.main-header-nav {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: linear-gradient(180deg, rgba(11, 12, 16, 0.9) 0%, rgba(11, 12, 16, 0) 100%);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 20px 8%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 900;
    letter-spacing: 1px;
    color: var(--text-white);
    text-decoration: none;
    font-style: italic;
    transition: color 0.3s;
}
.nav-brand:hover {
    color: var(--primary-orange);
}

.nav-links-wrapper {
    display: flex;
    gap: 30px;
}

.nav-link {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s;
}
.nav-link:hover {
    color: var(--primary-orange);
}

/* Global Container Utility */
.section-container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 120px 8% 100px 8%;
}

/* Global Section Title */
.section-title {
    font-family: var(--font-heading);
    font-size: clamp(36px, 4.5vw, 64px);
    font-weight: 900;
    letter-spacing: 1px;
    margin-bottom: 60px;
    text-transform: uppercase;
    line-height: 0.9;
}

.section-title .outline {
    color: transparent;
    -webkit-text-stroke: 1.5px var(--primary-orange);
}

/* Hero Section Container with PARALLAX effect */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 8%;
    background-image: url('Gemini_Generated_Image_qvahq1qvahq1qvah-clean.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed; /* Parallax effect */
    overflow: hidden;
}

/* Dark overlay to ensure readability */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(11, 12, 16, 0.8) 0%, rgba(11, 12, 16, 0.4) 45%, rgba(11, 12, 16, 0) 100%);
    pointer-events: none;
    z-index: 1;
}

/* Top Badges / Header area */
.top-badges {
    display: flex;
    align-items: center;
    gap: 20px;
}

.badge-item {
    display: flex;
    align-items: center;
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.badge-item:hover {
    opacity: 1;
}

.badge-icon {
    width: 24px;
    height: 24px;
    color: var(--text-white);
}

.trust-badge .badge-icon {
    color: #e5e5e5;
}

.security-badge {
    gap: 8px;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    padding-left: 15px;
}

.security-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.sec-title {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: var(--text-white);
}

.sec-sub {
    font-size: 8px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--text-gray);
    margin-top: 1px;
}

/* Background Outlined Texts */
.outlined-text {
    position: absolute;
    font-family: var(--font-heading);
    font-weight: 900;
    font-style: italic;
    color: transparent;
    -webkit-text-stroke: 1.5px var(--primary-orange);
    opacity: 0.25;
    pointer-events: none;
    z-index: 2;
    user-select: none;
    line-height: 0.8;
}

.text-track {
    font-size: 10vw;
    top: 20%;
    left: 48%;
    transform: translate(-10%, 0);
    letter-spacing: 4px;
}

.text-power {
    font-size: 11vw;
    bottom: 8%;
    right: 12%;
    letter-spacing: 6px;
}

/* Hero Content Area */
.hero-content {
    position: relative;
    z-index: 5;
    max-width: 650px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 80px;
}

/* Title Styling */
.hero-title {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: clamp(54px, 7vw, 98px);
    line-height: 0.85;
    letter-spacing: -1px;
    display: flex;
    flex-direction: column;
}

.title-line {
    color: var(--text-white);
}

.title-line.highlight {
    color: var(--primary-orange);
    text-shadow: 0px 4px 20px rgba(227, 81, 28, 0.3);
}

/* Description Styling */
.hero-description {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.desc-bold {
    font-size: clamp(16px, 1.6vw, 24px);
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--text-white);
    line-height: 1.3;
}

.desc-light {
    font-size: clamp(14px, 1.2vw, 17px);
    font-weight: 400;
    letter-spacing: 0.5px;
    color: var(--text-gray);
    line-height: 1.4;
}

/* Button Styling */
.cta-button {
    display: inline-block;
    background-color: var(--primary-orange);
    color: var(--text-white);
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: clamp(16px, 1.4vw, 20px);
    font-weight: 800;
    letter-spacing: 1px;
    padding: 16px 48px;
    border-radius: 4px;
    box-shadow: 0px 4px 25px rgba(227, 81, 28, 0.4);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid transparent;
}

.cta-button:hover {
    background-color: var(--primary-orange-hover);
    transform: translateY(-2px);
    box-shadow: 0px 6px 30px rgba(227, 81, 28, 0.6);
}

/* Specs Bento Grid Section */
.specs-section {
    background-color: #08090c;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* Mouse-tracking spotlight card glow */
.bento-card {
    position: relative;
    background-color: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 280px;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

/* Spotlight glow overlay */
.bento-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(300px circle at var(--mouse-x, 0px) var(--mouse-y, 0px), rgba(227, 81, 28, 0.15), transparent 80%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 3;
}

.bento-card:hover::after {
    opacity: 1;
}

.bento-card:hover {
    transform: translateY(-5px);
    border-color: rgba(227, 81, 28, 0.35);
}

.large-card {
    grid-column: span 2;
    min-height: 340px;
}

.card-bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(227, 81, 28, 0.08) 0%, rgba(0,0,0,0) 60%);
    pointer-events: none;
}

.card-label {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--primary-orange);
    margin-bottom: 10px;
    text-transform: uppercase;
}

.bento-card h3 {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.1;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 4;
}

.bento-card p {
    color: var(--text-gray);
    font-size: 15px;
    max-width: 480px;
    position: relative;
    z-index: 4;
}

.stat-highlight {
    font-family: var(--font-heading);
    font-size: 80px;
    font-weight: 900;
    line-height: 1;
    color: var(--text-white);
    margin-bottom: 15px;
    position: relative;
    z-index: 4;
}

.stat-highlight .unit {
    font-size: 32px;
    color: var(--primary-orange);
    font-weight: 700;
}

/* Performance Telemetry & Tabs Section */
.telemetry-section {
    background-color: var(--bg-dark);
}

.telemetry-tabs-wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.telemetry-nav {
    display: flex;
    gap: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 15px;
}

.tab-btn {
    background: transparent;
    border: none;
    color: var(--text-gray);
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 1px;
    cursor: pointer;
    padding: 10px 20px;
    transition: all 0.3s;
    border-bottom: 3px solid transparent;
}

.tab-btn:hover, .tab-btn.active {
    color: var(--primary-orange);
    border-bottom-color: var(--primary-orange);
}

.tabs-content-container {
    position: relative;
    min-height: 480px;
}

/* Tabs Transition Animations */
.tab-pane {
    display: none;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.3s ease-out, transform 0.3s ease-out;
}

.tab-pane.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.tab-pane.fade-out {
    opacity: 0;
    transform: translateY(-15px);
    display: block;
}

.tab-pane.fade-in {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.tab-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.tab-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tab-text h3 {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 900;
    line-height: 1.1;
}

.tab-text p {
    color: var(--text-gray);
    font-size: 16px;
}

.spec-bullet-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
}

.spec-bullet-list li {
    position: relative;
    padding-left: 20px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-white);
}

.spec-bullet-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background-color: var(--primary-orange);
    border-radius: 50%;
}

.tab-visual {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    aspect-ratio: 4 / 5;
}

.tab-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Fleet Showcase Grid */
.fleet-section {
    background-color: #08090c;
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.bike-card {
    background-color: var(--bg-card);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.bike-card:hover {
    transform: translateY(-5px);
    border-color: rgba(227, 81, 28, 0.35);
}

.bike-img-container {
    position: relative;
    width: 100%;
    height: 250px;
    background-color: #06070a;
    overflow: hidden;
}

.bike-image-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.bike-card:hover .bike-image-thumb {
    transform: scale(1.05);
}

.bike-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(18, 19, 26, 1) 100%);
    z-index: 2;
}

.bike-info {
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    flex-grow: 1;
}

.bike-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bike-header h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
}

.bike-price {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 800;
    color: var(--primary-orange);
}

.bike-desc {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.5;
}

.bike-specs {
    display: flex;
    gap: 10px;
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 600;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 15px;
}

.btn-secondary {
    display: block;
    text-align: center;
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--text-white);
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 1px;
    padding: 12px;
    border-radius: 4px;
    text-decoration: none;
    margin-top: 10px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: var(--primary-orange);
    border-color: var(--primary-orange);
    box-shadow: 0px 4px 15px rgba(227, 81, 28, 0.3);
}

/* Technology section - CONSTRAINED alignment */
.tech-section {
    background-color: var(--bg-dark);
}

.tech-split {
    display: flex;
    background-color: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    overflow: hidden;
}

.tech-content {
    width: 50%;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

.tech-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(32px, 3.5vw, 48px);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: 0.5px;
}

.tech-content p {
    color: var(--text-gray);
    font-size: 16px;
}

.tech-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}

.tech-feat-item h4 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 800;
    color: var(--primary-orange);
    margin-bottom: 5px;
}

.tech-feat-item p {
    font-size: 14px;
}

.tech-media {
    width: 50%;
    position: relative;
    overflow: hidden;
}

.media-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--bg-card) 0%, rgba(18, 19, 26, 0) 30%);
    z-index: 2;
}

.tech-side-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Timeline Section */
.history-section {
    background-color: #08090c;
}

.timeline-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.timeline-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50px;
    width: 2px;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.08);
}

.timeline-item {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    position: relative;
}

.timeline-marker {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 900;
    color: var(--primary-orange);
    background-color: #08090c;
    border: 2px solid var(--primary-orange);
    border-radius: 50%;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    z-index: 5;
    box-shadow: 0 0 15px rgba(227, 81, 28, 0.2);
}

.timeline-card {
    background-color: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 30px;
    flex-grow: 1;
}

.timeline-card h4 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.timeline-card p {
    color: var(--text-gray);
    font-size: 15px;
}

.timeline-card-highlight {
    background-color: var(--bg-card);
    border: 2px solid var(--primary-orange);
    border-radius: 8px;
    padding: 30px;
    flex-grow: 1;
    position: relative;
    box-shadow: 0px 4px 20px rgba(227, 81, 28, 0.15);
}

.timeline-card-highlight h4 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 900;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.timeline-card-highlight p {
    color: var(--text-white);
    font-size: 15px;
}

.highlight-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background-color: var(--primary-orange);
    color: var(--text-white);
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1px;
    padding: 4px 12px;
    border-radius: 4px;
}

/* Quote Section */
.quote-section {
    background-color: var(--bg-dark);
}

.quote-box {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    padding: 40px 0;
}

.quote-mark {
    font-family: var(--font-heading);
    font-size: 120px;
    color: var(--primary-orange);
    opacity: 0.15;
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    line-height: 1;
    pointer-events: none;
}

.quote-box blockquote {
    font-size: clamp(20px, 2.2vw, 32px);
    font-weight: 700;
    font-style: italic;
    line-height: 1.5;
    margin-bottom: 30px;
    color: var(--text-white);
}

.quote-author {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.quote-author strong {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 1px;
}

.quote-author span {
    font-size: 12px;
    color: var(--text-gray);
    text-transform: uppercase;
}

/* FAQ Section details/summary styling */
.faq-section {
    background-color: #08090c;
}

.faq-accordion-group {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background-color: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    overflow: hidden;
    transition: border-color 0.3s;
}

.faq-item[open] {
    border-color: rgba(227, 81, 28, 0.4);
}

.faq-item summary {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 0.5px;
    padding: 24px 30px;
    cursor: pointer;
    list-style: none;
    position: relative;
    user-select: none;
}

.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-orange);
    font-size: 24px;
    font-weight: 700;
    transition: transform 0.3s;
}

.faq-item[open] summary::after {
    content: '-';
    transform: translateY(-50%) rotate(180deg);
}

.faq-content {
    padding: 0 30px 24px 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    padding-top: 20px;
}

.faq-content p {
    color: var(--text-gray);
    font-size: 15px;
}

/* Redesigned JOIN THE GRID Section for Paddock VIP */
.newsletter-section {
    background-color: var(--bg-dark);
}

.newsletter-grid-wrap {
    display: grid;
    grid-template-columns: 1.2fr 1.5fr;
    background-color: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0px 10px 40px rgba(0,0,0,0.6);
}

.newsletter-visual-side {
    background-image: linear-gradient(180deg, rgba(18, 19, 26, 0.4) 0%, rgba(18, 19, 26, 0.95) 100%), url('motorcycle_dash_detail.jpg');
    background-size: cover;
    background-position: center;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 380px;
    position: relative;
}

.visual-badge {
    align-self: flex-start;
    background-color: var(--primary-orange);
    color: white;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 2px;
    padding: 6px 16px;
    border-radius: 4px;
    box-shadow: 0px 4px 10px rgba(227, 81, 28, 0.3);
}

.visual-caption h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 900;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
    line-height: 1.1;
}

.visual-caption p {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.5;
}

.newsletter-content-side {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

.newsletter-content-side h2 {
    font-family: var(--font-heading);
    font-size: 44px;
    font-weight: 900;
    letter-spacing: 1px;
}

.newsletter-content-side p {
    color: var(--text-gray);
    font-size: 16px;
    margin-bottom: 10px;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    width: 100%;
}

.input-glow-wrapper {
    flex-grow: 1;
    position: relative;
    min-width: 260px;
}

.newsletter-form input {
    width: 100%;
    background-color: #0b0c10;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    padding: 18px 20px;
    color: var(--text-white);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.4;
    letter-spacing: 0.5px;
    transition: all 0.3s;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary-orange);
    box-shadow: 0 0 15px rgba(227, 81, 28, 0.15);
}

.submit-btn-glow {
    background-color: var(--primary-orange);
    color: var(--text-white);
    border: none;
    border-radius: 4px;
    padding: 18px 40px;
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0px 4px 15px rgba(227, 81, 28, 0.3);
}

.submit-btn-glow:hover {
    background-color: var(--primary-orange-hover);
    box-shadow: 0px 6px 20px rgba(227, 81, 28, 0.5);
    transform: translateY(-1px);
}

/* Redesigned Floating Contained Footer (Matches grid width, no longer full screen width) */
.footer-wrapper {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 8% 50px 8%;
}

.main-footer {
    background-color: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 80px 60px 40px 60px;
}

.footer-top-row {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand-side {
    max-width: 380px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 900;
    letter-spacing: 1px;
    font-style: italic;
    color: var(--text-white);
}

.brand-pitch {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.6;
}

.footer-nav-groups {
    display: flex;
    gap: 80px;
}

.link-group h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 25px;
    color: var(--text-white);
}

.link-group ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.link-group ul li a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.link-group ul li a:hover {
    color: var(--primary-orange);
}

/* Massive brand title typography inside footer */
.footer-middle-branding {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    padding: 30px 0;
    margin-bottom: 30px;
    overflow: hidden;
}

.big-brand-title {
    font-family: var(--font-heading);
    font-size: 7.5vw;
    font-weight: 900;
    letter-spacing: 15px;
    color: rgba(255, 255, 255, 0.02);
    text-transform: uppercase;
    display: block;
    line-height: 1;
    user-select: none;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(255,255,255,0) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-bottom-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    color: var(--text-muted);
    font-size: 13px;
}

.back-to-top {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-gray);
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.back-to-top:hover {
    color: var(--primary-orange);
}

.back-to-top svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s;
}

.back-to-top:hover svg {
    transform: translateY(-3px);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .nav-container {
        padding: 20px 5%;
    }
    .hero-section {
        padding: 0 5%;
        background-position: 45% center;
    }
    .text-track {
        font-size: 12vw;
        left: 40%;
    }
    .text-power {
        font-size: 13vw;
        right: 5%;
    }
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .large-card {
        grid-column: span 2;
    }
    .tab-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .tab-visual {
        aspect-ratio: 16 / 9;
    }
    .fleet-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .tech-split {
        flex-direction: column;
    }
    .tech-content {
        width: 100%;
        padding: 40px;
    }
    .tech-media {
        width: 100%;
        height: 400px;
    }
    .media-overlay {
        background: linear-gradient(180deg, var(--bg-card) 0%, rgba(18, 19, 26, 0) 25%);
    }
    .timeline-wrapper::before {
        left: 40px;
    }
    .timeline-marker {
        width: 80px;
        height: 80px;
        font-size: 20px;
    }
    .newsletter-grid-wrap {
        grid-template-columns: 1fr;
    }
    .newsletter-visual-side {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        padding: 30px;
    }
    .newsletter-content-side {
        padding: 40px;
    }
    .newsletter-form {
        flex-direction: column;
    }
    .footer-wrapper {
        padding: 0 5% 30px 5%;
    }
    .main-footer {
        padding: 60px 40px 30px 40px;
    }
    .footer-top-row {
        flex-direction: column;
        gap: 40px;
    }
    .footer-nav-groups {
        gap: 50px;
    }
}

@media (max-width: 768px) {
    /* Disable snap on mobile to prevent rough scroll experience */
    html {
        scroll-snap-type: none;
    }
    .nav-links-wrapper {
        display: none;
    }
    .section-container {
        padding: 80px 5% 60px 5%;
    }
    .hero-section {
        justify-content: center;
        align-items: flex-end;
        padding-bottom: 80px;
        background-position: 35% center;
        background-attachment: scroll;
    }
    .hero-section::before {
        background: linear-gradient(180deg, rgba(11, 12, 16, 0.45) 0%, rgba(11, 12, 16, 0.9) 80%);
    }
    .hero-content {
        align-items: center;
        text-align: center;
    }
    .text-track, .text-power {
        opacity: 0.12;
    }
    .text-track {
        font-size: 16vw;
        top: 25%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    .text-power {
        font-size: 16vw;
        bottom: 40%;
        right: 50%;
        transform: translate(50%, 50%);
    }
    .bento-grid {
        grid-template-columns: 1fr;
    }
    .large-card {
        grid-column: span 1;
    }
    .telemetry-nav {
        flex-direction: column;
        gap: 5px;
    }
    .tab-btn {
        font-size: 16px;
        text-align: left;
        padding: 8px 10px;
    }
    .fleet-grid {
        grid-template-columns: 1fr;
    }
    .timeline-wrapper::before {
        left: 20px;
    }
    .timeline-marker {
        width: 60px;
        height: 60px;
        font-size: 16px;
    }
    .timeline-card, .timeline-card-highlight {
        padding: 20px;
    }
    .faq-item summary {
        padding: 18px 20px;
        font-size: 18px;
    }
    .faq-item summary::after {
        right: 20px;
        font-size: 20px;
    }
    .faq-content {
        padding: 0 20px 18px 20px;
    }
    .newsletter-form {
        flex-direction: column;
    }
    .main-footer {
        padding: 40px 20px 20px 20px;
    }
    .footer-nav-groups {
        flex-direction: column;
        gap: 30px;
    }
    .footer-bottom-row {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
}
