:root {
    --bg-color: #080b12;
    --surface-color: #141924;
    --surface-light: #1e2638;
    --accent-primary: #00d2ff;
    --accent-secondary: #00ff88;
    --text-main: #ffffff;
    --text-muted: #94a3b8;
    --font-main: 'Inter', sans-serif;

    --neo-shadow:
        10px 10px 20px rgba(0, 0, 0, 0.7),
        -10px -10px 20px rgba(255, 255, 255, 0.04);

    --neo-shadow-hover:
        15px 15px 30px rgba(0, 0, 0, 0.8),
        -15px -15px 30px rgba(255, 255, 255, 0.06);

    --neo-inset:
        inset 5px 5px 10px rgba(0, 0, 0, 0.7),
        inset -5px -5px 10px rgba(255, 255, 255, 0.04);

    --glass-bg: rgba(20, 25, 36, 0.7);
    --glass-border: rgba(255, 255, 255, 0.06);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
    color: inherit;
}

h1,
h2,
h3,
h4 {
    font-weight: 800;
    line-height: 1.2;
}


.hero-title {
    font-size: clamp(3rem, 8vw, 5rem);
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    text-align: center;
    margin-bottom: 3rem;
}

.section-title.left-align {
    text-align: left;
    margin-bottom: 1.5rem;
}

.accent-primary {
    color: var(--accent-primary);
}

.glow-text {
    text-shadow: 0 0 20px rgba(0, 210, 255, 0.6);
}

.highlight-text {
    color: var(--accent-primary);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-padding {
    padding: 8rem 0;
    position: relative;
    z-index: 1;
}

/* UI Elements */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background: var(--surface-color);
    color: var(--accent-primary);
    box-shadow: var(--neo-shadow);
    border: 1px solid transparent;
}

.btn-primary:hover {
    box-shadow: var(--neo-shadow-hover);
    color: #fff;
    text-shadow: 0 0 10px var(--accent-primary);
    border-color: rgba(0, 210, 255, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--text-main);
    box-shadow: var(--neo-shadow);
}

.btn-secondary:hover {
    box-shadow: var(--neo-inset);
}

.btn-outline {
    border: 1px solid var(--glass-border);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
}

.btn-outline:hover {
    background: var(--accent-primary);
    color: #000;
    box-shadow: 0 0 15px var(--accent-primary);
    border-color: var(--accent-primary);
}

.cta-group {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

.center-group {
    justify-content: center;
}

.mt-4 {
    margin-top: 3rem;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 1.5rem;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
}

/* ── Hamburger button (hidden on desktop) ── */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: var(--surface-color);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    cursor: pointer;
    padding: 8px;
    flex-shrink: 0;
    z-index: 1001;
    transition: background 0.3s ease;
}

.hamburger span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--accent-primary);
    border-radius: 2px;
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    transform-origin: center;
}

.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ── Mobile nav drawer ── */
.mobile-nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 998;
    opacity: 0;

    pointer-events: none;
    /* 🔥 ADD THIS */
}

.mobile-nav-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: min(300px, 82vw);
    height: 100dvh;
    background: rgba(12, 18, 28, 0.97);
    backdrop-filter: blur(20px);
    border-left: 1px solid var(--glass-border);
    z-index: 999;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.2rem;
    padding: 2rem;
    transition: right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.mobile-nav.open {
    right: 0;
}

.mobile-nav-link {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-main);
    text-decoration: none;
    letter-spacing: 0.01em;
    transition: color 0.25s ease;
}

.mobile-nav-link:hover {
    color: var(--accent-primary);
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 800;
}

.logo-box {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.5rem 1rem;
    border-radius: 16px;

    background: var(--surface-color);
    box-shadow: var(--neo-shadow);

    border: 1px solid rgba(255, 255, 255, 0.04);
}

.logo-box {
    cursor: pointer;
}

.logo-text {
    font-size: 1.6rem;
    /* bigger text */
    font-weight: 900;
    color: var(--accent-primary);
    letter-spacing: -0.02em;
}

.logo-img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--accent-primary);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 7rem;
    position: relative;
    overflow: hidden;

    background: url('Hero.png') center/cover no-repeat;

    /* ✅ NEW */
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.8),
        inset 0 -10px 30px rgba(255, 255, 255, 0.03);
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(8, 11, 18, 0.7);
    /* dark overlay */
    z-index: 1;
}

.hero-content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 4rem;
    position: relative;
    z-index: 2;
}

.hero-text {
    flex: 1;
    z-index: 2;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-muted);
    margin-top: 1rem;
}

.hero-image {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
}

.image-glow-wrapper {
    position: relative;
    width: 100%;
    max-width: 900px;
    /* 🔥 increase */
}

.image-glow-wrapper::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(0, 210, 255, 0.2) 0%, rgba(0, 0, 0, 0) 70%);
    z-index: -1;
    filter: blur(40px);
    animation: pulse 4s infinite alternate;
}

.floating-img {
    width: 100%;
    max-width: 100%;
    animation: float 6s ease-in-out infinite;
}

/* TIMELINE SPLIT LAYOUT */
.timeline-container {
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
    padding: 4rem 2rem 10rem 2rem;
}

/* Laser Track & Beam */
.laser-track {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 0;
    background: rgba(255, 255, 255, 0.05);
    z-index: 0;
    pointer-events: none;
}

.laser-beam {
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 150px;

    background: linear-gradient(to bottom, transparent 0%, rgba(0, 210, 255, 0.4) 40%, var(--accent-primary) 80%, #fff 100%);
    box-shadow: 0 0 10px var(--accent-primary);

    border-radius: 50%;
    opacity: 1;
    will-change: transform, opacity;
    z-index: 10;

    pointer-events: none;
    /* 🔥 ADD THIS (IMPORTANT) */
}

.laser-beam::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 10px #fff, 0 0 20px var(--accent-primary), 0 0 40px var(--accent-primary);
}

.timeline-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8rem;
    position: relative;
    z-index: 1;
}

/* Nodes on the timeline */
.timeline-row::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 16px;
    /* Inactive State: Dim hollow blue */
    background: var(--surface-color);
    border: 2px solid rgba(0, 210, 255, 0.3);
    border-radius: 50%;
    z-index: 2;
    box-shadow: 0 0 10px rgba(0, 210, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.timeline-row::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid var(--accent-primary);
    opacity: 0;
    pointer-events: none;
    z-index: 1;
}

/* Active and Passed State */
.timeline-row.active-node::before,
.timeline-row.passed-node::before {
    background: var(--accent-primary);
    border-color: var(--accent-primary);
    box-shadow: 0 0 20px var(--accent-primary), 0 0 40px rgba(0, 210, 255, 0.6);
    transform: translate(-50%, -50%) scale(1.4);
}

/* Moment of impact animations */
.timeline-row.active-node::before {
    animation: nodeVibrate 0.4s ease-in-out;
}

.timeline-row.active-node::after {
    animation: rippleBurst 1s ease-out;
}

@keyframes rippleBurst {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
        border-width: 4px;
    }

    100% {
        transform: translate(-50%, -50%) scale(4);
        opacity: 0;
        border-width: 1px;
    }
}

@keyframes nodeVibrate {
    0% {
        transform: translate(-50%, -50%) scale(1) translateX(0);
    }

    25% {
        transform: translate(-50%, -50%) scale(1.4) translateX(-2px);
    }

    50% {
        transform: translate(-50%, -50%) scale(1.4) translateX(2px);
    }

    75% {
        transform: translate(-50%, -50%) scale(1.4) translateX(-2px);
    }

    100% {
        transform: translate(-50%, -50%) scale(1.4) translateX(0);
    }
}

.timeline-col {
    width: 45%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Shared Panel Styling */
.neo-box {
    background: var(--surface-color);
    border-radius: 24px;
    padding: 1.8rem;
    box-shadow: var(--neo-shadow);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.02);

    /* 🔥 FINAL BALANCE */
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}


.security-box h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.security-box p {
    font-size: 0.95rem;
    line-height: 1.5;
}

.neo-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--neo-shadow-hover);
}

.glass-panel {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    padding: 3rem;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8);
    transition: all 0.3s ease;
}

.card-banner {
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: center;

    /* 🔥 MATCH neo-box EXACTLY */
    padding: 1.8rem;
    border-radius: 24px;
}

/* Active Node Glowing Panels */
.timeline-row.active-node .neo-box,
.timeline-row.active-node .glass-panel,
.timeline-row.active-node .icon-wrapper {
    border-color: rgba(0, 210, 255, 0.6);
    box-shadow: 0 0 12px rgba(0, 210, 255, 0.2), var(--neo-shadow);
    transform: translateY(-2px);
}

/* Feature specific styling */
.icon-wrapper {
    width: 112px;
    height: 112px;
    min-width: 112px;
    min-height: 112px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    background: var(--surface-color);
    box-shadow: var(--neo-shadow);
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.02);
}

.icon-wrapper .material-symbols-outlined {
    font-size: inherit;
    /* ensure the symbol inherits the 3.5rem */
}

.cyan-glow {
    box-shadow: var(--neo-shadow), inset 0 0 15px rgba(0, 210, 255, 0.1);
    border: 1px solid rgba(0, 210, 255, 0.2);
    text-shadow: 0 0 10px rgba(0, 210, 255, 0.8);
    color: var(--accent-primary);
}

.feature-list {
    list-style: none;
    margin-top: 1rem;
}

.feature-list li {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    color: var(--text-main);
}



.app-features li::before {
    content: '✓';
    color: var(--accent-primary);
    font-weight: bold;
    margin-right: 1rem;
    text-shadow: 0 0 5px var(--accent-primary);
}

.platforms {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--surface-color);
    box-shadow: var(--neo-inset);
    border-radius: 12px;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

/* Footer */
.footer {
    background: #05070a;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    padding-bottom: 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-brand h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.tagline {
    color: var(--text-muted);
    font-style: italic;
}

.footer-contact h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.footer-contact p {
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.legal-note {
    font-size: 0.8rem;
    margin-bottom: 1rem;
    opacity: 0.7;
}

/* Animations & Utilities */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes pulse {
    0% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(0.9);
    }

    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.fade-in {
    opacity: 0;
    transition: opacity 1s ease-out;
}

.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

/* Split Animations */
.fade-split-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.fade-split-right {
    opacity: 0;
    transform: translateX(60px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.visible {
    opacity: 1;
    transform: translateX(0) translateY(0);
}



.align-right {
    align-items: flex-end;
}

.align-left {
    align-items: flex-start;
}

.text-right {
    text-align: right;
}

.feature-icon {
    margin: 0;
    /* remove bottom margin for timeline */
}

/* Media Queries for Responsive Timeline */
@media (max-width: 992px) {
    .hero-content {
        justify-content: space-between;
        align-items: center;
    }

    .hero-text {
        flex: 0.8;
        /* smaller text area */
    }

    .hero-image {
        flex: 1.2;
        /* bigger image area 🔥 */
    }

    .cta-group {
        justify-content: center;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    /* Shift timeline to the left margin on mobile */
    .laser-track {
        left: 20px !important;
        transform: none !important;
    }

    .laser-beam {
        left: 0px !important;
    }

    .timeline-row::before {
        left: 20px;
    }

    .timeline-row {
        flex-direction: column;
        margin-bottom: 4rem;
        align-items: flex-start;
    }

    .timeline-col {
        width: 100%;
        padding-left: 50px;
        align-items: flex-start !important;
        justify-content: flex-start !important;
    }

    .timeline-col .neo-box {
        text-align: left !important;
    }

    .timeline-col h2,
    .timeline-col ul {
        text-align: left !important;
        direction: ltr !important;
    }

    .app-features li {
        justify-content: flex-start !important;
    }

    .timeline-empty {
        display: none;
        /* Hide the empty opposite columns */
    }

    /* Reset split animation directions for mobile (all come from right) */
    .fade-split-left,
    .fade-split-right {
        transform: translateX(40px);
    }
}

@media (max-width: 768px) {

    /* ── Nav ── */
    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .mobile-nav {
        display: flex;
    }

    .mobile-nav-overlay {
        display: block;
    }

    /* ── Hero: stack text above image ── */
    .hero {
        padding-top: 5rem;
        min-height: auto;
    }

    .hero-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1.8rem;
        padding: 1.5rem 1rem;
    }

    .hero-text {
        flex: none;
        width: 100%;
    }

    .hero-image {
        flex: none;
        width: 75%;
        max-width: 300px;
    }

    .hero-title {
        font-size: clamp(2rem, 8vw, 2.8rem);
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .cta-group {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.8rem;
    }

    .floating-img {
        width: 100%;
    }

    /* ── Timeline line moves to left edge ── */
    .laser-track {
        left: 20px !important;
        transform: none !important;
    }

    .laser-beam {
        left: 0 !important;
    }

    .timeline-row::before,
    .timeline-row::after {
        left: 20px;
    }

    .timeline-container {
        padding: 2rem 0.75rem 6rem 0.75rem;
    }

    /* ── All timeline rows stack vertically ── */
    .timeline-row {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 2.5rem;
    }

    .timeline-col {
        width: 100%;
        padding-left: 48px;
        align-items: flex-start !important;
        justify-content: flex-start !important;
    }


    .timeline-col .neo-box {
        text-align: left !important;
        min-height: unset;
    }

    .timeline-col h2,
    .timeline-col h3,
    .timeline-col ul {
        text-align: left !important;
        direction: ltr !important;
    }

    .app-features li {
        justify-content: flex-start !important;
    }

    /* ── Hardware / App image + text stacking ── */
    .hardware-image img,
    .software-image img {
        width: 100%;
        border-radius: 10px;
    }

    /* ── Buttons ── */
    .btn {
        padding: 0.75rem 1.3rem;
        font-size: 0.92rem;
    }

    /* ── Section titles ── */
    .section-title {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }

    /* ── CTA end box ── */
    .timeline-end .neo-box {
        padding: 1.5rem 1rem;
    }

    .timeline-end .hero-title {
        font-size: clamp(1.8rem, 7vw, 2.5rem) !important;
    }

    /* ── Footer ── */
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1.5rem;
    }

    .footer-brand h3 {
        justify-content: center;
    }

    /* ── Performance: simplify shadows on mobile ── */
    .neo-box,
    .icon-wrapper {
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
    }
}

#hardware-anchor {
    position: relative;
    top: -150px;
}

#features-anchor {
    position: relative;
    top: -120px;
}

/* CTA FINAL HIT EFFECT */
.timeline-end .neo-box {
    position: relative;
    overflow: hidden;
}


.timeline-end .neo-box::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid #00d2ff;
    border-radius: 24px;
    opacity: 0;
}

.timeline-end .neo-box.cta-active::before {
    animation: borderGlow 1s ease forwards, ripple 1.5s ease-out;
}

@keyframes borderGlow {
    0% {
        opacity: 0;
        transform: scale(0.95);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes ripple {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 210, 255, 0.7);
    }

    100% {
        box-shadow: 0 0 60px 25px rgba(0, 210, 255, 0);
    }
}

.card-banner {
    text-align: right;
}

.card-banner h3 {
    margin-bottom: 0.5rem;
}

.card-banner p {
    font-size: 0.95rem;
    line-height: 1.5;
}

@media (max-width: 768px) {

    /* 🔥 Fix BB TapLink App section */
    #software .neo-box {
        text-align: left !important;
        padding: 1.2rem !important;
    }

    #software h2 {
        text-align: left !important;
        font-size: 1.4rem;
    }

    #software .highlight-text {
        font-size: 1rem;
    }

    #software .platforms {
        font-size: 0.8rem;
        margin-bottom: 1rem;
    }

    /* 🔥 FIX list alignment */
    #software .app-features {
        direction: ltr !important;
    }

    #software .app-features li {
        justify-content: flex-start !important;
        text-align: left !important;
        font-size: 0.9rem;
    }

    /* 🔥 REMOVE LEFT PUSH */
    .timeline-col {
        padding-left: 0 !important;
    }

    /* 🔥 ALIGN WITH TIMELINE DOT */
    .timeline-col .neo-box,
    .timeline-col .card-banner {
        width: 100% !important;
        margin-left: 20px;
        /* aligns with timeline line */
    }

    .footer.section-padding {
        padding-top: 3rem !important;
    }

    .timeline-container {
        padding-bottom: 2rem !important;
    }

    .text-right {
        text-align: left !important;
    }

    .align-right {
        align-items: flex-start !important;
    }

    .timeline-row {
        width: 100%;
    }

    /* also include this INSIDE mobile */
    .neo-box,
    .icon-wrapper {
        box-shadow: none;
    }

    /* 🚫 Hide all images on mobile except hero */
    .hardware-image,
    .software-image,
    .timeline-row img {
        display: none !important;
    }


}


.hardware-list li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.05rem;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.hardware-list .material-symbols-outlined {
    font-size: 20px;
    color: var(--accent-primary);
    text-shadow: 0 0 6px rgba(0, 210, 255, 0.6);
}

/* 🌌 Ambient Background */
.bg-ambient {
    position: fixed;
    inset: 0;
    z-index: -1;
    overflow: hidden;
    background: radial-gradient(circle at 30% 20%, rgba(0, 210, 255, 0.08), transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(0, 255, 136, 0.06), transparent 40%),
        #080b12;
}

/* 🔵 Floating glow blobs */
.blob {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: moveBlob 20s infinite alternate ease-in-out;
}

.blob1 {
    background: #00d2ff;
    top: 10%;
    left: 10%;
}

.blob2 {
    background: #00ff88;
    bottom: 10%;
    right: 10%;
    animation-delay: 5s;
}

@keyframes moveBlob {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(100px, -80px) scale(1.2);
    }
}

/* 🟦 Subtle tech grid */
.grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.3;
}

.download-group {
    margin-top: 1.2rem;
}

.btn-download {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;

    padding: 0.9rem 1.6rem;
    border-radius: 50px;

    font-size: 0.95rem;
    font-weight: 600;

    color: var(--accent-secondary);
    background: var(--surface-color);

    box-shadow: var(--neo-shadow);
    border: 1px solid rgba(0, 255, 136, 0.2);

    transition: all 0.3s ease;
}

.btn-download:hover {
    color: #fff;
    border-color: var(--accent-secondary);
    box-shadow: 0 0 12px var(--accent-secondary);
    text-shadow: 0 0 8px var(--accent-secondary);
}

.download-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.1;
}

.download-title {
    font-size: 0.95rem;
    font-weight: 600;
}

.download-sub {
    font-size: 0.75rem;
    color: var(--text-muted);
}

@media (max-width: 768px) {

    .timeline-row {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .timeline-col {
        width: 100%;
        padding-left: 0 !important;
    }

    .icon-wrapper {
        width: 52px;
        height: 52px;
        font-size: 1.4rem;
        margin: 0;
    }

    .neo-box,
    .card-banner {
        width: 100%;
        margin-left: 0 !important;
        padding: 1.2rem;
    }

    /* remove extra left shift */
    .timeline-col .neo-box,
    .timeline-col .card-banner {
        margin-left: 0 !important;
    }
}

html,
body {
    overflow-x: hidden;
    max-width: 100%;
}

/* 🔥 HIDE FEATURE ICONS ON MOBILE */
@media (max-width: 768px) {
    .icon-wrapper.feature-icon {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .timeline-row {
        margin-bottom: 1.5rem;
    }
}

/* 🎯 Move "Future of Access" slightly right */
#features .section-title.left-align {
    margin-left: 20px;
}

.timeline-end {
    position: relative;
    z-index: 9999 !important;
}

.timeline-end .neo-box {
    position: relative;
    z-index: 9999 !important;
}

.timeline-end a {
    position: relative;
    z-index: 10000 !important;
}

.timeline-end a.btn-primary {
    cursor: pointer;
    transition: all 0.2s ease;
}

.timeline-end a.btn-primary:active {
    transform: scale(0.95);
}