/* Bot Commander Website Styles */
:root {
    --bg-primary: #0a0e17;
    --bg-secondary: #0f1420;
    --bg-panel: rgba(15, 20, 35, 0.85);
    --border-color: rgba(0, 217, 255, 0.12);
    --accent-cyan: #00d4ff;
    --accent-blue: #0ea5e9;
    --accent-purple: #7c5cfc;
    --accent-green: #00e68a;
    --text-primary: #e6f0ff;
    --text-secondary: #8892a8;
    --glow-cyan: 0 4px 20px rgba(0, 0, 0, 0.3);
}

html {
    scroll-behavior: smooth;
}

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

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

/* === Global Safety Net === */
html, body {
    overflow-x: hidden;
}

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

/* Prevent any section from causing horizontal overflow */
section,
.hero,
.intro-section,
.problem-section,
.features,
.bot-commands-section,
.how-it-works,
.commanders-section,
.testimonials,
.security-section,
.who-section,
.why-now-section,
.business-ops,
.power-tools,
.faq-section,
.download-section,
.tagline-section {
    overflow: hidden;
    max-width: 100vw;
}

/* Whole Bot Commander section gets a uniform tint (was a directional gradient + stripe before) */
.commanders-section {
    background: rgba(35, 60, 110, 0.18);
    border-top: 1px solid rgba(0, 212, 255, 0.12);
    border-bottom: 1px solid rgba(0, 212, 255, 0.12);
    padding: 0 0 36px;
}

a:visited:not(.cta-button) {
    color: var(--text-primary) !important;
}

.cta-button,
.cta-button:visited,
.cta-button:link {
    color: #fff !important;
}

h1, h2, h3, h4 {
    font-family: 'Saira', sans-serif;
    font-weight: 700;
}

.container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 8%;
}

/* Animated Background */
.background-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-primary);
    z-index: -1;
}

.background-animation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 20% 30%, rgba(0, 212, 255, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(124, 92, 252, 0.04) 0%, transparent 50%);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 14, 26, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 12px 0;
    transition: all 0.3s ease;
}

/* Integration Ticker Strip */
.ticker-strip {
    position: fixed;
    top: 62px; /* overlap navbar bottom edge */
    left: 0;
    width: 100%;
    background: rgba(6, 10, 20, 1);
    border-top: 1px solid rgba(0, 255, 136, 0.25);
    border-bottom: 1px solid rgba(0, 255, 136, 0.25);
    z-index: 1001;
    overflow: hidden;
    padding: 8px 0;
    display: flex;
    align-items: center;
}

/* Systems Online label — solid block on left edge of ticker */
.ticker-label {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 20px;
    background: rgba(10, 14, 26, 0.98);
    border-right: 1px solid rgba(0, 255, 136, 0.2);
    white-space: nowrap;
    flex-shrink: 0;
    z-index: 2;
    position: relative;
}

.ticker-label span:last-child {
    color: #00ff88;
    font-family: 'Saira', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.ticker-pulse {
    width: 8px;
    height: 8px;
    background: #00ff88;
    border-radius: 50%;
    animation: tickerPulse 2s infinite;
    flex-shrink: 0;
}

@keyframes tickerPulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 10px #00ff88; }
    50% { opacity: 0.4; box-shadow: 0 0 4px #00ff88; }
}

.ticker-track {
    display: flex;
    align-items: center;
    gap: 0;
    white-space: nowrap;
    will-change: transform;
    flex: 1;
}

.ticker-item {
    color: var(--accent-cyan);
    font-family: 'Saira', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 0 12px;
}

.ticker-sep {
    color: rgba(0, 255, 136, 0.3);
    font-size: 8px;
    display: inline-flex;
    align-items: center;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.logo {
    height: 40px;
}

.brand-name {
    font-size: 20px;
    font-weight: 700;
    color: #fefefe;
    font-family: 'Saira', sans-serif;
    text-decoration: none;
}

.brand a {
    text-decoration: none;
}

.nav {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav a {
    color: var(--text-secondary) !important;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav a:visited {
    color: var(--text-primary) !important;
}

.nav a:hover {
    color: var(--accent-cyan) !important;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-cyan);
    transition: width 0.3s ease;
}

.nav a:hover::after {
    width: 100%;
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1002;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

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

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.cta-button {
    background: linear-gradient(135deg, #00d4ff, #0080ff);
    border: none;
    padding: 7px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
    color: #fff;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.cta-button:hover {
    background: linear-gradient(135deg, #00e0ff, #0090ff);
    box-shadow: 0 4px 20px rgba(0, 212, 255, 0.4);
    transform: translateY(-1px);
}

/* Hero Section */


}


/* ===== Hero Video ===== */
.hero-video-wrapper {
    position: relative;
    display: block;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    border-radius: 0;
    overflow: hidden;
    border: none;
    padding: 0;
    box-shadow: none;
}

/* Cinematic hero overlays — remove this block to revert */
.hero-video-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        radial-gradient(ellipse at center, transparent 50%, rgba(10, 14, 23, 0.6) 100%),
        linear-gradient(to bottom, transparent 0%, transparent 70%, var(--bg-primary) 100%);
}

.hero-video-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: rgba(10, 14, 23, 0.15);
}

.hero .hero-video-wrapper video,
.hero-video {
    width: 100.3% !important;
    max-width: none;
    height: auto;
    display: block;
    margin-left: -0.15%;
}


/* Hero statement overlay */
.hero-statement {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 24px;
    pointer-events: none;
    z-index: 2;
    background: radial-gradient(ellipse 60% 50% at center, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.25) 55%, transparent 80%);
    opacity: 0;
    animation: heroFadeInOut 24s ease-in-out infinite;
}

.hero-statement h1 {
    color: #fff;
    font-size: clamp(1.8rem, 4vw, 3.6rem);
    font-weight: 600;
    text-align: center;
    line-height: 1.25;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
    max-width: 700px;
    padding: 0 20px;
    opacity: 0;
    animation: heroTextFade 40s ease-in-out infinite;
}


.hero-statement-cta {
    pointer-events: auto;
    display: inline-block;
    padding: clamp(10px, 1.2vw, 16px) clamp(24px, 3vw, 40px);
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue));
    color: #fff;
    font-size: clamp(0.85rem, 1vw, 1rem);
    font-weight: 700;
    letter-spacing: 0.03em;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 212, 255, 0.3);
    opacity: 0;
    animation: heroTextFade 40s ease-in-out infinite;
}

.hero-glass-panel .hero-statement-cta {
    opacity: 1;
    animation: none;
}

.hero-statement-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 212, 255, 0.45);
    filter: brightness(1.1);
}


/* Second statement: delayed by 1/3 of cycle */
.hero-statement-2 {
    animation-delay: 14s;
}
.hero-statement-2 h1,
.hero-statement-2 .hero-statement-cta {
    animation-delay: 14s;
}

/* Third statement: delayed by 2/3 of cycle */
.hero-statement-3 {
    animation-delay: 22s;
}
.hero-statement-3 h1,
.hero-statement-3 .hero-statement-cta {
    animation-delay: 22s;
}
@keyframes heroFadeInOut {
    0%   { opacity: 0; }
    4%   { opacity: 1; }
    26%  { opacity: 1; }
    32%  { opacity: 0; }
    100% { opacity: 0; }
}

@keyframes heroTextFade {
    0%, 100% { opacity: 0; }
    3%, 22% { opacity: 1; }
    25%, 97% { opacity: 0; }
}
    4%   { opacity: 1; transform: translateY(0); }
    26%  { opacity: 1; transform: translateY(0); }
    32%  { opacity: 0; transform: translateY(-5px); }
    100% { opacity: 0; transform: translateY(-5px); }
}

.hero-caption {
    text-align: center;
    margin-top: 14px;
    font-size: 0.9rem;
    color: rgba(200, 220, 255, 0.5);
    letter-spacing: 0.5px;
}

.hero-cta-below {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-top: 32px;
    padding-bottom: 20px;
}

.hero-cta-below .hero-cta-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-cta-below .primary-button {
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue));
    color: #fff;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(0, 217, 255, 0.3);
    box-shadow: 0 4px 15px rgba(0, 217, 255, 0.2);
}

.hero-cta-below .primary-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 217, 255, 0.4);
}

.hero-cta-below .platform-notice {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

@media (max-width: 768px) {
    .hero-video-wrapper {
        max-width: 95%;
    }
    .hero-cta-below .primary-button {
        padding: 12px 20px;
        font-size: 14px;
    }
}


.hero {
    width: 100%;
    margin-top: 0;
    padding-top: 105px; /* clear fixed navbar + ticker */
    position: relative;
    z-index: 0;
    overflow: hidden;
}

/* Image-based hero with glassmorphism panels */
.hero-image-bg {
    background: url('images/BG_HomeOffice5.jpg') center top / 100% auto no-repeat #0a0e17;
    background-origin: content-box;
    aspect-ratio: 32 / 15;
    max-height: calc(100vh - 105px);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Video background hero */
.hero-has-video {
    background: #0a0e17;
    max-height: 90vh;
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    z-index: 0;
    pointer-events: none;
}

.hero-image-bg::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, transparent, var(--bg-primary));
    z-index: 1;
    pointer-events: none;
}


/* ── Hero Node Overlay ───────────────────────────────────────────────── */
.hero-nodes-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 3;
    opacity: 0;
    pointer-events: none;
    transition: opacity 1.2s ease-in-out;
}
.hero-nodes-overlay.visible {
    opacity: 1;
    pointer-events: auto;
}

/* SVG connector lines */
.hero-nodes-svg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 1;
}
.hero-node-line {
    stroke: rgba(0, 212, 255, 0.5);
    stroke-width: 1.5;
    fill: none;
    stroke-dasharray: 8 4;
    animation: nodePulse 2s ease-in-out infinite;
}
.hero-node-line:nth-child(2) { animation-delay: 0.3s; }
.hero-node-line:nth-child(3) { animation-delay: 0.6s; }
.hero-node-line:nth-child(4) { animation-delay: 0.9s; }

@keyframes nodePulse {
    0%, 100% { stroke-opacity: 0.3; stroke-dashoffset: 0; }
    50% { stroke-opacity: 1; stroke-dashoffset: 12; }
}

/* Node boxes */
.hero-node {
    position: absolute;
    background: rgba(10, 14, 23, 0.25);
    backdrop-filter: blur(28px) saturate(1.2);
    -webkit-backdrop-filter: blur(28px) saturate(1.2);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 22px 32px;
    text-align: center;
    z-index: 2;
    opacity: 0;
    transform: scale(0.85);
    transition: opacity 0.6s ease, transform 0.6s ease;
    max-width: 360px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}
.hero-nodes-overlay.visible .hero-node {
    opacity: 1;
    transform: scale(1);
}
/* Staggered entrance via animation-delay on inline styles */
.hero-nodes-overlay.visible .hero-node {
    animation: nodeAppear 0.6s ease forwards;
}
@keyframes nodeAppear {
    from { opacity: 0; transform: scale(0.85); }
    to { opacity: 1; transform: scale(1); }
}

.hero-node h2 {
    color: #fff;
    font-size: clamp(0.95rem, 1.6vw, 1.25rem);
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.01em;
    margin: 0;
}

/* Positions — matching SVG endpoints */
.hero-node-tl { top: 16%; left: 12%; }
.hero-node-tr { top: 16%; right: 12%; }
.hero-node-bl { bottom: 16%; left: 12%; }
.hero-node-br { bottom: 16%; right: 12%; }

/* Glow dot at center of each node border */
.hero-node::before {
    content: '';
    position: absolute;
    width: 6px; height: 6px;
    background: #00d4ff;
    border-radius: 50%;
    box-shadow: 0 0 8px 2px rgba(0, 212, 255, 0.6);
}
.hero-node-tl::before { right: -3px; bottom: 50%; transform: translateY(50%); }
.hero-node-tr::before { left: -3px; bottom: 50%; transform: translateY(50%); }
.hero-node-bl::before { right: -3px; top: 50%; transform: translateY(-50%); }
.hero-node-br::before { left: -3px; top: 50%; transform: translateY(-50%); }

/* CTA button under the cube */
.hero-node-cta {
    position: absolute;
    bottom: 6%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: inline-block;
    padding: 12px 32px;
    background: linear-gradient(135deg, #00d4ff 0%, #0080ff 100%);
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    letter-spacing: 0.02em;
    box-shadow: 0 4px 20px rgba(0, 128, 255, 0.4);
    transition: transform 0.2s, box-shadow 0.2s;
    white-space: nowrap;
}
.hero-node-cta:hover {
    transform: translateX(-50%) translateY(-2px);
    box-shadow: 0 6px 28px rgba(0, 128, 255, 0.6);
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .hero-node {
        max-width: 42%;
        padding: 10px 12px;
    }
    .hero-node h2 {
        font-size: clamp(0.65rem, 2.8vw, 0.85rem);
    }
    .hero-node-tl { top: 24%; left: 3%; }
    .hero-node-tr { top: 24%; right: 3%; }
    .hero-node-bl { bottom: 22%; left: 3%; }
    .hero-node-br { bottom: 22%; right: 3%; }
    .hero-node-cta {
        font-size: 0.72rem;
        padding: 8px 18px;
        bottom: 6%;
    }
}

.hero-glass-container {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 8%;
}

.hero-glass-panel {
    position: absolute;
    background: rgba(10, 14, 23, 0.35);
    backdrop-filter: blur(28px) saturate(1.2);
    -webkit-backdrop-filter: blur(28px) saturate(1.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: clamp(20px, 2vw, 32px) clamp(20px, 2.5vw, 36px);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(12px, 1.5vw, 20px);
    width: min(760px, 80%);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    opacity: 0;
    animation: heroGlassFade 40s ease-in-out 6s infinite;
    animation-fill-mode: both;
}

.hero-glass-panel h1 {
    color: #fff;
    font-size: clamp(1.1rem, 2vw, 1.75rem);
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.02em;
    margin: 0;
}

.hero-glass-panel-2 {
    animation-delay: 14s;
}
.hero-glass-panel-2 .hero-statement-cta {
    animation-delay: 14s;
}

.hero-glass-panel-3 {
    animation-delay: 22s;
}
.hero-glass-panel-3 .hero-statement-cta {
    animation-delay: 22s;
}

.hero-glass-panel-4 {
    animation-delay: 30s;
}

.hero-glass-panel-4 .hero-statement-cta {
    animation-delay: 30s;
}

.hero-glass-panel-5 {
    animation-delay: 38s;
}
.hero-glass-panel-5 .hero-statement-cta {
    animation-delay: 38s;
}

@keyframes heroGlassFade {
    0%, 100% { opacity: 0; transform: translateY(10px); }
    2.5%, 17% { opacity: 1; transform: translateY(0); }
    20%, 97% { opacity: 0; transform: translateY(-10px); }
}

@media (max-width: 768px) {
    .hero-image-bg {
        aspect-ratio: 16 / 12;
        max-height: none;
        background-size: cover;
    }
    .hero-image-bg::after {
        display: none;
    }
    .hero-glass-panel {
        padding: 14px 16px;
        width: min(820px, 75%);
        gap: 8px;
    }
    .hero-glass-panel h1 {
        font-size: clamp(0.85rem, 3.5vw, 1.2rem);
        line-height: 1.2;
    }
    .hero-glass-panel .hero-statement-cta {
        padding: 8px 20px;
        font-size: 0.8rem;
    }
}

/* hero-slider removed */

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    display: block;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

.hero-slide.active {
    position: relative;
    opacity: 1;
}

.hero img {
    width: 100%;
    height: auto;
    display: block;
}

.hero-cta-overlay {
    position: absolute;
    bottom: 40px;
    left: 40px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 10;
}

.hero-cta-overlay .primary-button {
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue));
    color: #fff;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

.hero-cta-overlay .primary-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 217, 255, 0.5);
}

.hero-cta-overlay .platform-notice {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    max-width: 450px;
}

.hero-cta-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: nowrap;
}

/* Desktop: show desktop buttons, hide mobile buttons */
.hero-mobile-buttons {
    display: none !important;
}

/* Mobile: show mobile buttons, hide desktop buttons */
@media (max-width: 768px) {
    .hero-desktop-buttons {
        display: none !important;
    }
    .hero-mobile-buttons {
        display: flex !important;
    }
}

/* Touch device overrides (tablets + phones regardless of screen size) */
.touch-device .hero-desktop-buttons {
    display: none !important;
}
.touch-device .hero-mobile-buttons {
    display: flex !important;
}
.touch-device .download-card.desktop-only {
    display: none !important;
}
.touch-device .download-card.mobile-card {
    grid-column: 1 / -1;
}
.touch-device .qr-codes {
    display: none !important;
}
.touch-device .mobile-download-buttons {
    display: flex !important;
    flex-direction: row;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-cta .hero-cta-buttons {
    justify-content: center;
}

.macos-btn {
    background: linear-gradient(135deg, #555, #333) !important;
    border: 1px solid rgba(255,255,255,0.15);
}

.macos-btn:hover {
    background: linear-gradient(135deg, #666, #444) !important;
}

/* Tagline Section */
.tagline-section {
    padding: 60px 20px 40px;
    text-align: center;
    background: linear-gradient(180deg, rgba(0,20,40,0.8) 0%, rgba(0,10,20,0.9) 100%);
}

.tagline-text {
    font-size: 1.8rem;
    font-weight: 300;
    color: #e0e0e0;
    margin-bottom: 20px;
    line-height: 1.6;
}

.tagline-subtext {
    font-size: 1.1rem;
    color: #00d9ff;
    font-weight: 400;
}

/* Scroll offset for fixed navbar + ticker */
section[id] {
    scroll-margin-top: 100px;
}

/* Intro Section */
.intro-section {
    padding: 40px 20px 80px;
    scroll-margin-top: 100px;
    background: linear-gradient(180deg, rgba(0,10,20,0.9) 0%, rgba(0,5,15,1) 100%);
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 60px;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
}

.intro-content {
    padding-right: 20px;
}

.intro-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.intro-image img {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 217, 255, 0.2);
    border: 1px solid rgba(0, 217, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.intro-image img:hover {
    border-color: rgba(0, 212, 255, 0.3);
    box-shadow: var(--glow-cyan);
}

/* The Problem Section */
.problem-section {
    padding: 100px 0;
    background: url('images/BG_HomeOffice3.jpg') center center / cover no-repeat fixed;
    position: relative;
}

.problem-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(6, 10, 20, 0.55) 0%, rgba(6, 10, 20, 0.8) 100%);
    z-index: 0;
    pointer-events: none;
}

.problem-section > .container {
    position: relative;
    z-index: 1;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 32px 0 0;
}

.problem-card {
    background: rgba(10, 14, 23, 0.35);
    backdrop-filter: blur(28px) saturate(1.2);
    -webkit-backdrop-filter: blur(28px) saturate(1.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 28px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.problem-card:hover {
    border-color: rgba(0, 212, 255, 0.2);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
    transform: translateY(-2px);
}

.problem-card::before {
    display: none;
}

.problem-card:hover::before {
    transform: scaleX(1);
}

.problem-card:hover {
    background: #1c2540;
    border-color: rgba(0, 212, 255, 0.15);
    transform: translateY(-2px);
}

.problem-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.problem-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.problem-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 15px;
}

.stat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.stat-block {
    text-align: center;
    padding: 30px 20px;
    background: rgba(10, 14, 23, 0.35);
    backdrop-filter: blur(28px) saturate(1.2);
    -webkit-backdrop-filter: blur(28px) saturate(1.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.stat-number {
    font-family: 'Saira', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

/* Why Now / Timeline Section */
.why-now-section {
    padding: 100px 0;
    background: linear-gradient(180deg, rgba(0,10,20,0.95) 0%, var(--bg-secondary) 100%);
}

.timeline {
    max-width: 800px;
    margin: 60px auto 0;
    position: relative;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 16px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--border-color) 0%, var(--accent-cyan) 100%);
}

.timeline-item {
    position: relative;
    padding: 0 0 50px 40px;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -32px;
    top: 6px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--bg-primary);
    border: 2px solid var(--border-color);
    z-index: 1;
}

.timeline-item.active::before {
    background: var(--accent-cyan);
    border-color: rgba(0, 212, 255, 0.3);
    box-shadow: 0 0 16px rgba(0, 217, 255, 0.6);
}

.timeline-year {
    font-family: 'Saira', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--accent-cyan);
    text-transform: uppercase;
    margin-bottom: 8px;
}

.timeline-content h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.timeline-content p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
}

.timeline-item.active .timeline-content h3 {
    color: var(--accent-cyan);
}

@media (max-width: 768px) {
    .intro-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .intro-content {
        padding-right: 0;
    }
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    animation: fadeInUp 1s ease;
}

.status-indicator {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--bg-panel);
    border: 1px solid rgba(0, 255, 136, 0.3);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: #00ff88;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pulse {
    width: 8px;
    height: 8px;
    background: #00ff88;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 10px #00ff88; }
    50% { opacity: 0.5; box-shadow: 0 0 5px #00ff88; }
}

.hero h1 {
    font-size: 3.2rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-bullets {
    list-style: none;
    padding: 0;
    margin: 2rem 0 3rem 0;
    font-size: 1.3rem;
    line-height: 2;
}

.hero-bullets li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    text-indent: -1.5rem;
}

.hero-bullets li::before {
    content: "• ";
    color: var(--accent-cyan);
    font-weight: bold;
    margin-right: 0.5rem;
}

.read-on {
    font-size: 1.1rem;
    color: rgba(224, 234, 255, 0.6);
    font-style: italic;
    margin-top: 0;
}

.read-on .arrow-down {
    display: inline-block;
    animation: bounceDown 1.5s ease-in-out infinite;
    font-style: normal;
}

@keyframes bounceDown {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
}

.gradient-text {
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.primary-button {
    max-width: 350px;
    min-width: 240px;
    justify-content: center;
}

.platform-notice {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0;
    text-align: center;
}

.primary-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue));
    color: #fff;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.primary-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 217, 255, 0.4);
}

.secondary-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--bg-panel);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.secondary-button:hover {
    background: rgba(0, 217, 255, 0.1);
    border-color: rgba(0, 212, 255, 0.3);
}

.hero-image {
    margin-top: 80px;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.floating {
    animation: floating 6s ease-in-out infinite;
}

@keyframes floating {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

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

/* Tagline Section */
.tagline-section {
    padding: 40px 0 60px;
    text-align: center;
}

.tagline-text {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 15px;
    line-height: 1.4;
}

.tagline-subtext {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Bot Commands Section */
.bot-commands-section {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.bot-commands-section .section-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.bot-commands-section .section-explanation {
    font-size: 1.05rem;
    color: var(--text-primary);
    text-align: center;
    line-height: 1.6;
    margin: 0 auto 60px auto;
    max-width: 750px;
    display: block;
}

.bot-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 60px;
    max-width: 1500px;
    margin-left: auto;
    margin-right: auto;
}

.bot-card {
    background: var(--bg-panel);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 25px 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.bot-card:hover {
    border-color: rgba(0, 212, 255, 0.3);
    box-shadow: var(--glow-cyan);
    transform: translateY(-8px);
}

.bot-avatar {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 12px;
    object-fit: cover;
    object-position: center top;
    margin-bottom: 14px;
    border: 2px solid var(--border-color);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.bot-card:hover .bot-avatar {
    border-color: rgba(0, 212, 255, 0.3);
    box-shadow: var(--glow-cyan);
}

.bot-icon {
    font-size: 48px;
    margin-bottom: 15px;
    display: block;
}

.bot-card h3 {
    font-size: 16px;
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 2px;
}

.bot-title {
    display: block;
    font-size: 12px;
    color: var(--accent-cyan);
    font-weight: 500;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bot-expertise {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.4;
    margin: 0;
}

.section-note {
    font-size: 14px;
    color: var(--text-secondary);
    opacity: 0.7;
    margin-top: 8px;
    font-style: italic;
}

@media (max-width: 1024px) {
    .bot-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .bot-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* How It Works Section */
.how-it-works {
    padding: 100px 0;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.step-card {
    background: var(--bg-panel);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.step-card:hover {
    border-color: rgba(0, 212, 255, 0.3);
    box-shadow: var(--glow-cyan);
    transform: translateY(-10px);
}

.step-number {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    box-shadow: 0 10px 30px rgba(0, 217, 255, 0.3);
}

.step-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.step-card p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Section Label (small uppercase above titles) */
.section-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent-cyan);
    margin-bottom: 12px;
    text-align: center;
}

/* Section Title */
.section-title {
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -1px;
    line-height: 1.15;
    text-align: center;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.7;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Centered sections override */
.features .section-label,
.features .section-title,
.download-section .section-label,
.download-section .section-title,
.download-section .section-subtitle,
.faq-section .section-label,
.faq-section .section-title,
{
    text-align: center;
}

/* Commanders Section */
.commanders-section {
    padding: 0;
    overflow: hidden;
}

.commanders-band {
    background: transparent;
    padding: 28px 8% 12px;
    text-align: center;
}

.commanders-band .section-title {
    margin-bottom: 12px;
}

.commanders-band-sub {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto;
}

.commanders-wrapper {
    overflow: hidden;
    margin: 0;
    padding: 30px 0;
}

.commanders-after {
    background: transparent;
    padding: 24px 8% 36px;
    text-align: center;
}

.commanders-after p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto;
}

.commanders-track {
    display: flex;
    gap: 30px;
    will-change: transform;
}

.commander-card {
    width: 480px;
    flex-shrink: 0;
}

.commander-card img {
    width: 480px;
    height: 270px;
    object-fit: cover;
    object-position: center;
    border-radius: 12px;
    border: 2px solid var(--border-color);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.commander-card:hover img {
    border-color: rgba(0, 212, 255, 0.3);
    box-shadow: var(--glow-cyan);
    transform: translateY(-5px);
}

/* Square variant for profile pics */
.commanders-track.profiles-track .commander-card {
    width: 300px;
}
.commanders-track.profiles-track .commander-card img {
    width: 300px;
    height: 300px;
}

.commander-label {
    text-align: center;
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.commander-label strong {
    font-family: 'Saira', sans-serif;
    font-size: 16px;
    color: var(--accent-cyan);
    letter-spacing: 0.5px;
}
.commander-label span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    font-style: italic;
}

@keyframes scrollCommanders {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-430px * 10)); }
}

.commanders-description {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.commanders-description p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-secondary);
}

/* Testimonials */
.testimonials {
    padding: 40px 0 20px;
    overflow: hidden;
}

.testimonial-wrapper {
    overflow: hidden;
    padding: 60px 0;
    margin: 0 -20px;
}

.testimonial-track {
    display: flex;
    gap: 30px;
    will-change: transform;
}

.testimonial-card {
    min-width: 350px;
    max-width: 400px;
    flex-shrink: 0;
    background: var(--bg-panel);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 30px;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    border-color: rgba(0, 212, 255, 0.3);
    box-shadow: var(--glow-cyan);
    transform: translateY(-8px) scale(1.02);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
}

.testimonial-info h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.testimonial-info p {
    font-size: 14px;
    color: var(--text-secondary);
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-secondary);
}

@keyframes scrollTestimonials {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-430px * 7)); }
}

/* Security Section */
.security-section {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.security-checklist {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 48px;
    margin-top: 32px;
}

.security-check-item h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 8px;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.security-check-item p {
    color: var(--text-secondary);
    font-size: 0.88rem;
    line-height: 1.7;
}

.security-quote {
    margin-top: 40px;
    background: rgba(0, 212, 255, 0.03);
    border: 1px solid rgba(0, 212, 255, 0.12);
    border-radius: 12px;
    padding: 24px 32px;
}

.security-quote p {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.7;
    font-style: italic;
}

/* Who's It For Section */
.who-section {
    padding: 100px 0;
}

.who-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(350px, 100%), 1fr));
    gap: 30px;
}

.who-card {
    background: var(--bg-panel);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 40px;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.who-card.visible {
    animation: fadeInUp 0.6s ease forwards;
}

.who-card:hover {
    border-color: rgba(0, 212, 255, 0.3);
    box-shadow: var(--glow-cyan);
    transform: translateY(-10px);
}

.who-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.who-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--accent-cyan);
}

.who-card p {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Features Section */
.features {
    padding: 60px 0 100px;
    background: #141b2d;
}

.feature-showcase {
    display: flex;
    flex-direction: column;
    gap: 100px;
}

.feature-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    opacity: 0;
    transform: translateY(30px);
}

.feature-item.visible {
    animation: fadeInUp 0.8s ease forwards;
}

.feature-item.reverse {
    direction: rtl;
}

.feature-item.reverse > * {
    direction: ltr;
}

.feature-image {
    position: relative;
}

.feature-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
    cursor: pointer;
}

/* Mobile app screenshots - side by side */
.feature-image.mobile-duo {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.feature-image.mobile-duo img {
    max-width: 250px;
    width: auto;
    flex: 0 0 auto;
}

/* Mobile app screenshots - three in a row */
.feature-image.mobile-trio {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
}

.feature-image.mobile-trio img {
    max-width: 160px;
    width: auto;
    flex: 0 0 auto;
}

.feature-image:hover img {
    border-color: rgba(0, 212, 255, 0.3);
    box-shadow: var(--glow-cyan);
}

.feature-content h3 {
    font-size: 2rem;
    margin-bottom: 8px;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-tagline {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 16px;
    font-style: italic;
}

.feature-content p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 25px;
    line-height: 1.8;
}

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

.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: var(--text-secondary);
}

.feature-list li::before {
    content: '→';
    color: var(--accent-cyan);
    font-weight: 700;
    font-size: 20px;
}
.feature-cta-link {
    display: inline-block;
    margin-top: 12px;
    padding: 8px 20px;
    border: 1px solid var(--accent-cyan);
    border-radius: 0;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.feature-cta-link:visited {
    color: #fff;
}

.feature-cta-link:hover {
    background: rgba(0, 212, 255, 0.15);
    box-shadow: 0 0 12px rgba(0, 212, 255, 0.2);
}


/* Download Section */
.download-section {
    padding: 100px 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.download-content {
    text-align: center;
}

.download-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 60px;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.download-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
    gap: 30px;
    margin-top: 60px;
}

.download-card {
    background: var(--bg-panel);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 40px;
    transition: all 0.3s ease;
}

.download-card:hover {
    border-color: rgba(0, 212, 255, 0.3);
    box-shadow: var(--glow-cyan);
    transform: translateY(-5px);
}

.download-card h3 {
    font-size: 28px;
    margin-bottom: 10px;
}

.download-card > p {
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.desktop-download-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

.platform-note {
    margin-top: 24px;
    font-size: 14px;
    color: var(--text-secondary);
}

.download-options.two-col {
    grid-template-columns: 1fr 1fr;
}

.primary-button.large {
    width: 100%;
    justify-content: center;
    padding: 20px 40px;
    font-size: 18px;
}

/* Download section: desktop shows QR codes, mobile shows tap-to-install buttons */
.mobile-download-buttons {
    display: none;
}

.qr-codes {
    display: flex;
    gap: 40px;
    justify-content: center;
    align-items: flex-start;
}

.qr-placeholder {
    width: 150px;
    height: 150px;
    background: var(--bg-secondary);
    border: 2px dashed var(--border-color);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.qr-placeholder:hover {
    border-color: rgba(0, 212, 255, 0.3);
}

.qr-icon {
    font-size: 40px;
}

.qr-placeholder span {
    font-size: 12px;
    color: var(--text-secondary);
    text-align: center;
}

/* QR code with actual image */
.qr-placeholder.qr-with-image {
    height: auto;
    width: 200px;
    padding: 20px;
}

.qr-code-image {
    width: 130px;
    height: 130px;
    object-fit: contain;
    background: #fff;
    border-radius: 8px;
    padding: 6px;
}

.qr-instruction {
    font-size: 14px;
    color: var(--text-secondary);
    text-align: center;
    margin-top: 8px;
    line-height: 1.4;
}

/* Crypto Section */
.crypto-section {
    padding: 100px 0;
    background: #111827;
}

.crypto-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin: 40px auto;
    max-width: 1500px;
}

.stat-card {
    background: var(--bg-panel);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px 16px;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    border-color: rgba(0, 212, 255, 0.3);
    box-shadow: var(--glow-cyan);
    transform: translateY(-5px);
}

.stat-number {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--accent-cyan);
    margin-bottom: 6px;
    line-height: 1.1;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-primary);
    font-weight: 600;
    line-height: 1.3;
}

.crypto-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 40px auto;
    max-width: 1500px;
}

.crypto-feature-card {
    background: var(--bg-panel);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
}

.crypto-feature-card:hover {
    border-color: rgba(0, 212, 255, 0.3);
    box-shadow: var(--glow-cyan);
    transform: translateY(-5px);
}

.crypto-feature-icon {
    display: none;
}

.crypto-feature-card h3 {
    font-size: 0.95rem;
    color: var(--accent-cyan);
    margin-bottom: 10px;
    font-weight: 600;
}

.crypto-feature-card p {
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 12px;
}

.crypto-feature-list {
    list-style: none;
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.crypto-feature-list li {
    padding: 4px 0;
    display: flex;
    align-items: flex-start;
    gap: 6px;
}

.crypto-feature-list li::before {
    content: '✓';
    color: var(--accent-green);
    font-weight: 700;
    flex-shrink: 0;
}

.crypto-feature-card ul {
    list-style: none;
    padding: 0;
    margin: 8px 0 0 0;
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.crypto-feature-card ul li {
    padding: 3px 0;
    padding-left: 16px;
    position: relative;
    line-height: 1.4;
    color: var(--text-secondary);
}

.crypto-feature-card ul li::before {
    content: '•';
    position: absolute;
    left: 4px;
    color: var(--accent-cyan);
}

.crypto-feature-card ul li strong {
    color: var(--text-primary);
    font-weight: 600;
}

.crypto-callout {
    background: rgba(0, 212, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 12px;
    padding: 32px;
    margin: 40px auto;
    max-width: 1200px;
}

.crypto-callout h3 {
    font-size: 1.4rem;
    color: var(--accent-cyan);
    margin-bottom: 16px;
}

.crypto-callout p {
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.7;
}

.crypto-callout-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.crypto-callout-list li {
    color: var(--text-secondary);
    padding-left: 24px;
    position: relative;
}

.crypto-callout-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-cyan);
    font-weight: 700;
}

.crypto-cta {
    text-align: center;
    padding: 40px;
    margin: 40px auto;
    max-width: 800px;
}

.crypto-cta h3 {
    font-size: 1.8rem;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.crypto-cta p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.7;
}

.cta-button-large {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue));
    color: #fff;
    padding: 16px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.cta-button-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 217, 255, 0.4);
}

.crypto-sources {
    text-align: center;
    padding: 20px;
    margin-top: 40px;
}

.crypto-sources p {
    font-size: 0.8rem;
    color: var(--text-secondary);
    opacity: 0.6;
}

@media (max-width: 1200px) {
    .crypto-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .crypto-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .crypto-stats {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .stat-card {
        padding: 16px 12px;
    }
    
    .stat-number {
        font-size: 1.2rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .crypto-features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .crypto-feature-card {
        padding: 16px 12px;
    }
    
    .crypto-feature-icon {
        font-size: 1.4rem;
    }
    
    .crypto-feature-card h3 {
        font-size: 0.9rem;
    }
    
    .crypto-feature-card p {
        font-size: 0.75rem;
    }
    
    .crypto-feature-list {
        font-size: 0.7rem;
    }
    
    .crypto-callout {
        padding: 24px;
    }
    
    .crypto-callout h3 {
        font-size: 1.3rem;
    }
    
    .crypto-cta {
        padding: 24px;
    }
    
    .crypto-cta h3 {
        font-size: 1.5rem;
    }
}

/* Footer */
.footer {
    padding: 60px 0 30px;
    background: var(--bg-secondary);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 40px;
}

.footer-brand {
    max-width: 350px;
}

.footer-logo {
    height: 40px;
    margin-bottom: 20px;
}

.footer-brand p {
    color: var(--text-secondary);
    line-height: 1.8;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--accent-cyan);
}

.footer-column a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.footer-column a:hover {
    color: var(--accent-cyan);
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 56px;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .feature-item {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .feature-item.reverse {
        direction: ltr;
    }
}

/* Business Operations Section */
.business-ops {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.ops-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

@media (max-width: 1400px) {
    .ops-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .ops-grid {
        grid-template-columns: 1fr;
    }
}

.ops-card {
    background: var(--bg-panel);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.ops-card:hover {
    border-color: rgba(0, 212, 255, 0.3);
    box-shadow: var(--glow-cyan);
    transform: translateY(-10px);
}

.ops-header {
    width: 100%;
    height: 180px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid var(--border-color);
}

.ops-header img {
    max-width: 80%;
    height: auto;
    object-fit: contain;
}

.ops-content {
    padding: 30px;
}

.ops-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--accent-cyan);
}

.ops-content p {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.8;
}

.ops-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ops-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-secondary);
}

.ops-list li::before {
    content: '✓';
    color: var(--accent-cyan);
    font-weight: 700;
    font-size: 16px;
}

/* Power Tools Section */
.power-tools {
    padding: 100px 0;
    background: var(--bg-primary);
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
    gap: 30px;
    margin-top: 60px;
}

.tool-card {
    background: var(--bg-panel);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 35px;
    transition: all 0.3s ease;
    text-align: center;
}

.tool-card:hover {
    border-color: rgba(0, 212, 255, 0.3);
    box-shadow: var(--glow-cyan);
    transform: translateY(-8px);
}

.tool-icon {
    font-size: 56px;
    margin-bottom: 20px;
    display: block;
    filter: drop-shadow(0 4px 12px rgba(0, 217, 255, 0.3));
}

.tool-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.tool-card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Medium screens — tighten nav spacing */
@media (max-width: 1200px) {
    .nav {
        gap: 20px;
    }
    .nav a {
        font-size: 14px;
    }
    .brand-name {
        font-size: 17px;
    }
}

/* Tablet — switch to hamburger menu */
@media (max-width: 1024px) {
    .header-content {
        padding: 0 20px;
    }

    .mobile-toggle {
        display: flex;
    }

    .nav {
        position: fixed;
        top: 68px;
        right: 0;
        width: 260px;
        height: auto;
        max-height: calc(100vh - 80px);
        overflow-y: auto;
        background: rgba(10, 14, 26, 0.98);
        backdrop-filter: blur(20px);
        border-radius: 0 0 0 16px;
        border-left: 1px solid rgba(255, 255, 255, 0.08);
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        flex-direction: column;
        gap: 0;
        padding: 12px 0;
        transform: translateX(110%);
        transition: transform 0.3s ease;
        z-index: 999;
        box-shadow: -4px 4px 20px rgba(0, 0, 0, 0.5);
    }

    .nav.active {
        transform: translateX(0);
    }

    .nav a {
        padding: 12px 24px;
        font-size: 15px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .cta-button {
        margin: 8px 16px 4px;
        width: calc(100% - 32px);
        text-align: center;
        padding: 12px 20px;
    }

    /* Ticker — hide on tablet, too noisy */
    .ticker-strip {
        display: none !important;
    }

    /* No ticker visible, reduce hero top padding */
    .hero {
        padding-top: 62px;
    }
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    /* Hero Mobile */
    .hero {
        padding-top: 56px;
        text-align: center;
    }
    
    .hero img {
        margin-bottom: 0;
    }
    
    .hero-cta-overlay {
        position: static;
        padding: 20px;
        background: var(--bg-panel);
        border: 1px solid var(--border-color);
        border-radius: 12px;
        margin: 0 15px 30px;
        text-align: center;
    }

    .hero-headline {
        font-size: 26px;
        text-shadow: none;
    }

    .hero-subheadline {
        font-size: 15px;
        text-shadow: none;
        max-width: 100%;
    }
    
    .hero-cta-buttons {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }
    
    .hero-cta-overlay .primary-button {
        width: 100%;
        max-width: none;
        padding: 16px 24px;
        font-size: 15px;
        box-sizing: border-box;
    }
    
    .platform-notice {
        font-size: 13px;
        max-width: none;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }
    
    .hero h1 {
        font-size: clamp(28px, 8vw, 42px);
        line-height: 1.2;
    }
    
    .hero-bullets {
        font-size: 1.1rem;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    /* Force all grids to single column */
    .feature-item,
    .feature-item.reverse {
        grid-template-columns: 1fr !important;
        direction: ltr !important;
        gap: 25px;
    }
    
    .intro-grid {
        grid-template-columns: 1fr !important;
        gap: 30px;
    }
    
    /* Ensure all content fills width */
    .feature-image,
    .feature-content,
    .intro-content,
    .intro-image {
        width: 100%;
        max-width: 100%;
    }
    
    /* Mobile trio/duo images fill available space */
    .feature-image.mobile-trio img {
        max-width: calc(33.33% - 10px);
        flex: 1 1 0;
    }
    
    .feature-image.mobile-duo img {
        max-width: calc(50% - 10px);
        flex: 1 1 0;
    }
    
    /* Primary button constraints for mobile */
    .primary-button {
        max-width: 100%;
        min-width: unset;
        box-sizing: border-box;
    }
    
    /* Tagline Mobile */
    .tagline-section {
        padding: 40px 20px 30px;
    }
    
    .tagline-text {
        font-size: clamp(1.2rem, 5vw, 1.5rem);
    }
    
    .tagline-subtext {
        font-size: 1rem;
    }
    
    /* Intro Section Mobile */
    .intro-section {
        padding: 60px 20px;
    }
    
    .intro-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .intro-content {
        padding-right: 0;
    }

    /* Problem Section Mobile */
    .problem-section {
        padding: 60px 0;
    }

    .problem-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .problem-card {
        padding: 30px 20px;
    }

    .stat-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .stat-number {
        font-size: 2.2rem;
    }

    /* Why Now Section Mobile */
    .why-now-section {
        padding: 60px 0;
    }

    .timeline {
        padding-left: 30px;
    }

    .timeline::before {
        left: 10px;
    }

    .timeline-item::before {
        left: -38px;
    }

    .timeline-item {
        padding-left: 30px;
        padding-bottom: 35px;
    }
    
    /* Bot Commands Mobile */
    .bot-commands-section {
        padding: 60px 0;
    }
    
    .bot-commands-section .section-subtitle {
        font-size: 1.3rem;
    }
    
    .bot-commands-section .section-explanation {
        font-size: 1.1rem;
        padding: 0 10px;
    }
    
    .bot-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .bot-card {
        padding: 20px 10px;
    }
    
    .bot-avatar {
        width: 100%;
    }
    
    .bot-icon {
        font-size: 36px;
    }
    
    .bot-card h3 {
        font-size: 14px;
    }

    .bot-title {
        font-size: 11px;
    }

    .bot-expertise {
        font-size: 12px;
    }
    
    /* How It Works Mobile */
    .how-it-works {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: clamp(24px, 6vw, 2.4rem);
    }
    
    .section-subtitle {
        font-size: 16px;
        padding: 0 10px;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .step-card {
        padding: 30px 20px;
    }
    
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }
    
    .step-card h3 {
        font-size: 20px;
    }
    
    .step-card p {
        font-size: 15px;
    }
    
    /* Commanders Mobile */
    .commanders-band {
        padding: 10px 6%;
    }
    .commanders-band .section-title {
        font-size: 1rem;
        margin-bottom: 4px;
    }
    .commanders-band-sub {
        font-size: 0.75rem;
        line-height: 1.3;
    }
    .commanders-section {
        padding: 0 0 20px;
    }
    .commanders-after {
        padding: 10px 6%;
    }
    .commanders-after p {
        font-size: 0.75rem;
        line-height: 1.3;
    }
    
    .commander-card {
        width: 280px;
    }
    
    .commander-card img {
        width: 280px;
        height: 158px;
    }
    
    .commanders-track.profiles-track .commander-card {
        width: 220px;
    }
    
    .commanders-track.profiles-track .commander-card img {
        width: 220px;
        height: 220px;
    }
    
    .commanders-description p {
        font-size: 13px;
        line-height: 1.4;
    }
    
    /* Testimonials Mobile */
    .testimonials {
        padding: 30px 0 20px;
    }
    
    .testimonial-card {
        min-width: 280px;
        max-width: 320px;
        padding: 25px;
    }
    
    /* Features Mobile */
    .features {
        padding: 60px 0;
    }
    
    .feature-item {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .feature-item.reverse {
        direction: ltr;
    }
    
    .feature-content h3 {
        font-size: 24px;
    }
    
    .feature-content p {
        font-size: 16px;
    }
    
    .feature-image.mobile-duo {
        gap: 15px;
    }
    
    .feature-image.mobile-duo img {
        max-width: 180px;
    }
    
    .feature-image.mobile-trio {
        gap: 10px;
    }
    
    .feature-image.mobile-trio img {
        max-width: 110px;
    }
    
    /* Business Ops Mobile */
    .business-ops {
        padding: 60px 0;
    }
    
    .ops-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .ops-header {
        height: 140px;
    }
    
    .ops-content {
        padding: 25px 20px;
    }
    
    .ops-content h3 {
        font-size: 20px;
    }
    
    /* Power Tools Mobile */
    .power-tools {
        padding: 60px 0;
    }
    
    .tools-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .tool-card {
        padding: 30px 20px;
    }
    
    .tool-icon {
        font-size: 48px;
    }
    
    .tool-card h3 {
        font-size: 20px;
    }
    
    /* Security Section Mobile */
    .security-section {
        padding: 60px 0;
    }
    
    .security-checklist {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .security-quote {
        padding: 20px;
    }
    
    /* Who Section Mobile */
    .who-section {
        padding: 60px 0;
    }
    
    .who-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .who-card {
        padding: 30px 20px;
    }
    
    .who-icon {
        font-size: 40px;
    }
    
    .who-card h3 {
        font-size: 20px;
    }
    
    /* Download Section Mobile */
    .download-section {
        padding: 60px 0;
    }
    
    .download-subtitle {
        font-size: 16px;
        padding: 0 10px;
    }
    
    .download-options {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .download-card {
        padding: 30px 20px;
    }
    
    .download-card h3 {
        font-size: 24px;
    }
    
    .qr-codes {
        display: none !important;
    }

    .mobile-download-buttons {
        display: flex !important;
        flex-direction: column;
        gap: 12px;
    }
    
    .qr-placeholder {
        width: 180px;
        height: 180px;
    }
    
    .qr-code-image {
        width: 160px;
        height: 160px;
    }
    
    /* Footer Mobile */
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-brand {
        max-width: 100%;
    }
    
    .footer-column h4 {
        font-size: 16px;
    }
    
    .footer-bottom {
        font-size: 14px;
    }
}

/* Extra Small Mobile (< 480px) */
@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }

    .header-content {
        padding: 0 12px;
    }

    .hero {
        padding-top: 85px;
    }

    .hero h1,
    .intro-content h1 {
        font-size: 22px;
        line-height: 1.3;
    }
    
    .hero-bullets {
        font-size: 0.95rem;
        line-height: 1.8;
        margin: 1rem 0 1.5rem 0;
    }

    .hero-cta-overlay {
        margin: 0 12px 30px;
        padding: 16px;
    }

    .hero-cta-overlay .primary-button {
        padding: 14px 16px;
        font-size: 14px;
    }

    .tagline-text {
        font-size: 1.1rem;
    }

    .tagline-subtext {
        font-size: 0.85rem;
    }

    .section-title {
        font-size: clamp(20px, 5.5vw, 2rem);
    }

    .section-subtitle {
        font-size: 14px;
    }
    
    .bot-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .bot-card {
        padding: 15px 8px;
    }
    
    .bot-avatar {
        width: 100%;
    }

    .bot-icon {
        font-size: 32px;
        margin-bottom: 8px;
    }
    
    .bot-card h3 {
        font-size: 12px;
    }

    .bot-title {
        font-size: 10px;
    }

    .bot-expertise {
        font-size: 11px;
    }

    .steps-grid {
        gap: 20px;
    }

    .step-card {
        padding: 25px 15px;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 24px;
        margin-bottom: 20px;
    }

    .step-card h3 {
        font-size: 18px;
    }

    .step-card p {
        font-size: 14px;
    }
    
    .commander-card {
        width: 200px;
    }
    
    .commander-card img {
        width: 200px;
        height: 112px;
    }

    .commanders-track.profiles-track .commander-card {
        width: 180px;
    }

    .commanders-track.profiles-track .commander-card img {
        width: 180px;
        height: 180px;
    }

    .commanders-description p {
        font-size: 14px;
    }

    .testimonial-card {
        min-width: 260px;
        max-width: 280px;
        padding: 20px;
    }

    .testimonial-info h4 {
        font-size: 16px;
    }

    .testimonial-text {
        font-size: 14px;
    }

    .feature-showcase {
        gap: 60px;
    }

    .feature-content h3 {
        font-size: 20px;
    }

    .feature-content p {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .feature-list li {
        font-size: 13px;
    }

    .feature-image.mobile-duo {
        gap: 10px;
    }

    .feature-image.mobile-duo img {
        max-width: calc(50% - 5px);
    }
    
    .feature-image.mobile-trio {
        gap: 8px;
    }

    .feature-image.mobile-trio img {
        max-width: calc(33.33% - 6px);
    }

    .ops-header {
        height: 120px;
    }

    .ops-content {
        padding: 20px 15px;
    }

    .ops-content h3 {
        font-size: 18px;
    }

    .ops-content p {
        font-size: 14px;
    }

    .ops-list li {
        font-size: 13px;
    }

    .tool-card {
        padding: 25px 15px;
    }

    .tool-icon {
        font-size: 40px;
    }

    .tool-card h3 {
        font-size: 18px;
    }

    .tool-card p {
        font-size: 13px;
    }

    .who-card {
        padding: 25px 15px;
    }

    .who-card h3 {
        font-size: 18px;
    }

    .who-card p {
        font-size: 14px;
    }

    .download-card {
        padding: 25px 15px;
    }

    .download-card h3 {
        font-size: 20px;
    }

    .primary-button.large {
        padding: 16px 20px;
        font-size: 15px;
    }

    .qr-placeholder {
        width: 160px;
        height: 160px;
    }

    .qr-code-image {
        width: 140px;
        height: 140px;
    }
    
    .primary-button,
    .secondary-button {
        padding: 14px 20px;
        font-size: 14px;
    }

    .footer-content {
        gap: 30px;
    }

    .footer-brand p {
        font-size: 14px;
    }
}


/* ===== Feature Image Click Hint ===== */
.feature-image img {
    cursor: zoom-in;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.feature-image img:hover {
    transform: scale(1.02);
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.3);
}

/* ===== Feature Image Lightbox ===== */
.lightbox-overlay {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    cursor: zoom-out;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.lightbox-overlay.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-overlay img {
    max-width: 90vw;
    max-height: 88vh;
    border-radius: 0;
    box-shadow: 0 20px 80px rgba(0, 217, 255, 0.25), 0 0 0 1px rgba(0, 217, 255, 0.2);
    transform: scale(0.92);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    cursor: default;
}

.lightbox-overlay.active img {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 28px;
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 28px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
    z-index: 10001;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: scale(1.1);
}


/* ===== FAQ Section ===== */
.faq-section {
    padding: 100px 0;
    background: var(--bg-secondary);
    overflow: hidden;
    max-width: 100vw;
}

.faq-grid {
    margin: 60px 0 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.faq-item {
    background: var(--bg-panel);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover,
.faq-item.open {
    border-color: rgba(0, 212, 255, 0.3);
}

.faq-item.open {
    box-shadow: 0 0 15px rgba(0, 217, 255, 0.15);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: var(--text-primary);
    font-family: 'Saira', sans-serif;
    font-size: 18px;
    font-weight: 600;
    text-align: left;
    padding: 24px 56px 24px 28px;
    cursor: pointer;
    position: relative;
    transition: color 0.2s ease;
}

.faq-question:hover {
    color: var(--accent-cyan);
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    font-weight: 400;
    color: var(--accent-cyan);
    transition: transform 0.3s ease;
}

.faq-item.open .faq-question::after {
    content: '−';
    transform: translateY(-50%) rotate(0deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 28px;
}

.faq-item.open .faq-answer {
    max-height: 300px;
    padding: 0 28px 24px;
}

.faq-answer p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-secondary);
}

/* FAQ Mobile */
@media (max-width: 768px) {
    .faq-section {
        padding: 60px 0;
    }

    .faq-grid {
        margin-top: 40px;
    }

    .faq-question {
        font-size: 16px;
        padding: 20px 48px 20px 20px;
    }

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

    .faq-item.open .faq-answer {
        padding: 0 20px 20px;
    }

    .faq-answer p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .faq-question {
        font-size: 15px;
        padding: 18px 44px 18px 16px;
    }

    .faq-question::after {
        right: 16px;
    }
}

/* ========== Under the Hood Section ========== */
.hood-section {
    padding: 80px 0;
    background: url('images/BG_HomeOffice2.jpg') center center / cover no-repeat fixed;
    position: relative;
}

.hood-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(6, 10, 20, 0.55) 0%, rgba(6, 10, 20, 0.8) 100%);
    z-index: 0;
    pointer-events: none;
}

.hood-section > .container {
    position: relative;
    z-index: 1;
}

.hood-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.hood-card {
    background: rgba(10, 14, 23, 0.35);
    backdrop-filter: blur(28px) saturate(1.2);
    -webkit-backdrop-filter: blur(28px) saturate(1.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 28px 24px;
    transition: transform 0.2s ease, border-color 0.2s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.hood-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 212, 255, 0.25);
}

.hood-icon {
    font-size: 2rem;
    margin-bottom: 14px;
}

.hood-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.hood-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.55;
}

@media (max-width: 768px) {
    .hood-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .hood-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ========== Competitive Landscape Table ========== */
.comp-section {
    padding: 80px 0;
}

.comp-table-wrapper {
    overflow-x: auto;
    margin-top: 32px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.comp-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
    font-size: 0.85rem;
    min-width: 700px;
}

.comp-table thead {
    background: #161c2e;
}

.comp-table th {
    padding: 14px 16px;
    text-align: left;
    font-weight: 700;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.comp-table th.feature-col {
    text-align: left;
    color: var(--text-primary);
}

.comp-table th.bc-col {
    background: rgba(0, 212, 255, 0.08);
    color: var(--accent-cyan);
}

.comp-table td {
    padding: 12px 16px;
    text-align: left;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.comp-table td.feature-col {
    text-align: left;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.82rem;
}

.comp-table td.bc-col {
    background: rgba(0, 212, 255, 0.04);
    color: var(--accent-cyan);
    font-weight: 600;
}

.comp-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.02);
}

.comp-table tbody tr:last-child td {
    border-bottom: none;
}

/* ========== Baby Bot Progression ========== */
.babybot-section {
    padding: 80px 0;
    position: relative;
    background: var(--bg-primary);
}

.babybot-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 212, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 212, 255, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 0;
    pointer-events: none;
}

.babybot-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(0, 212, 255, 0.06) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

.babybot-section > .container {
    position: relative;
    z-index: 1;
}

.babybot-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-top: 40px;
}

.babybot-hero-image img {
    width: 100%;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.babybot-hero-text p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 16px;
}

.babybot-hero-text strong {
    color: var(--text-primary);
}

.babybot-hero-text em {
    color: var(--accent-cyan);
    font-style: italic;
}

.babybot-stages {
    margin-top: 48px;
}

.babybot-stages-title {
    text-align: center;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 24px;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    width: 100%;
}

.babybot-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
}

.babybot-stage {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 16px 8px;
    background: rgba(10, 14, 23, 0.5);
    backdrop-filter: blur(16px) saturate(1.1);
    -webkit-backdrop-filter: blur(16px) saturate(1.1);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.babybot-stage:hover {
    background: #1c2540;
    border-color: rgba(0, 212, 255, 0.15);
    transform: translateY(-2px);
}

.babybot-stage--max {
    border-color: rgba(255, 215, 0, 0.3);
    background: rgba(255, 215, 0, 0.04);
}

.babybot-stage--max:hover {
    border-color: rgba(255, 215, 0, 0.5);
}

.babybot-emoji {
    font-size: 1.8rem;
}

.babybot-name {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-primary);
}

.babybot-ms {
    font-size: 0.7rem;
    color: var(--text-muted);
}

.babybot-callout {
    margin-top: 32px;
    background: rgba(0, 212, 255, 0.03);
    border: 1px solid rgba(0, 212, 255, 0.1);
    border-radius: 12px;
    padding: 24px 32px;
    text-align: center;
}

.babybot-callout p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

.babybot-callout strong {
    color: var(--text-primary);
}

/* ========== Token Ecosystem ========== */
.token-section {
    padding: 80px 0;
    position: relative;
    background: var(--bg-primary);
}

.token-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 212, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 212, 255, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 0;
    pointer-events: none;
}

.token-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(0, 212, 255, 0.06) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

.token-section > .container {
    position: relative;
    z-index: 1;
}

.token-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 32px;
}

.token-card {
    background: rgba(10, 14, 23, 0.35);
    backdrop-filter: blur(28px) saturate(1.2);
    -webkit-backdrop-filter: blur(28px) saturate(1.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.token-card:hover {
    background: #1c2540;
    border-color: rgba(0, 212, 255, 0.15);
    transform: translateY(-2px);
}

.token-icon {
    font-size: 2.4rem;
    margin-bottom: 12px;
}

.token-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.token-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

.token-callout {
    margin-top: 32px;
    background: rgba(10, 14, 23, 0.35);
    backdrop-filter: blur(28px) saturate(1.2);
    -webkit-backdrop-filter: blur(28px) saturate(1.2);
    border: 1px solid rgba(0, 212, 255, 0.15);
    border-radius: 16px;
    padding: 24px 32px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.token-callout p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

.token-callout strong {
    color: var(--text-primary);
}

/* ========== Astra Worlds Gaming ========== */
.astra-section {
    padding: 80px 0;
}

.astra-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 32px;
}

.astra-card {
    background: #161c2e;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.astra-card:hover {
    border-color: rgba(0, 212, 255, 0.15);
    transform: translateY(-2px);
}

.astra-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    object-position: top;
    display: block;
}

.astra-card-info {
    padding: 14px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.astra-card-info h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.astra-status {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 10px;
    border-radius: 20px;
    white-space: nowrap;
}

.astra-status.live {
    color: var(--accent-green);
    background: rgba(0, 220, 140, 0.2);
}

.astra-status.soon {
    color: var(--accent-cyan);
    background: rgba(0, 212, 255, 0.1);
}

.astra-cta {
    text-align: center;
    margin-top: 28px;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.astra-cta a {
    color: var(--accent-cyan);
    text-decoration: none;
    font-weight: 600;
}

.astra-cta a:hover {
    text-decoration: underline;
}

/* ========== Built By Bot Commander ========== */
.built-by-section {
    padding: 40px 0;
}

.built-by-callout {
    background: rgba(0, 212, 255, 0.03);
    border: 1px solid rgba(0, 212, 255, 0.12);
    border-radius: 12px;
    padding: 28px 40px;
    text-align: center;
}

.built-by-callout p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.built-by-callout .gradient-text {
    font-size: 1rem;
}

/* ========== New Section Responsive ========== */
@media (max-width: 768px) {
    .babybot-hero {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .babybot-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .babybot-callout {
        padding: 20px 24px;
    }

    .comp-table-wrapper {
        margin-top: 24px;
    }

    .token-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .astra-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .astra-card img {
        height: 140px;
    }

    .astra-card-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    .built-by-callout {
        padding: 20px 24px;
    }
}

@media (max-width: 480px) {
    .babybot-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .token-callout {
        padding: 20px;
    }
}

/* ========== Roadmap ========== */
/* ========== Token Savings ========== */
.token-savings-section {
    padding: 80px 0;
    background: url('images/BG_HomeOffice4.jpg') center center / cover no-repeat fixed;
    position: relative;
}

.token-savings-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(6, 10, 20, 0.55) 0%, rgba(6, 10, 20, 0.8) 100%);
    z-index: 0;
    pointer-events: none;
}

.token-savings-section > .container {
    position: relative;
    z-index: 1;
}

.token-callout {
    margin-top: 32px;
    padding: 28px 32px;
    background: rgba(10, 14, 23, 0.4);
    backdrop-filter: blur(28px) saturate(1.2);
    -webkit-backdrop-filter: blur(28px) saturate(1.2);
    border: 1px solid rgba(0, 212, 255, 0.22);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.token-callout h3 {
    margin-bottom: 16px;
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.1;
    text-align: center;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.token-callout p {
    max-width: 860px;
    margin: 0 auto;
    color: var(--text-secondary);
    font-size: 1.45rem;
    line-height: 1.7;
    text-align: center;
}

.token-callout strong {
    color: var(--accent-cyan);
}

.token-savings-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.token-savings-card {
    background: rgba(10, 14, 23, 0.35);
    backdrop-filter: blur(28px) saturate(1.2);
    -webkit-backdrop-filter: blur(28px) saturate(1.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 28px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.token-savings-card:hover {
    background: #1c2540;
    border-color: rgba(0, 212, 255, 0.15);
    transform: translateY(-2px);
}

.token-icon {
    font-size: 1.6rem;
    display: block;
    margin-bottom: 12px;
}

.token-savings-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 10px;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.token-savings-card p {
    color: var(--text-secondary);
    font-size: 0.88rem;
    line-height: 1.7;
}

.token-savings-card strong {
    color: var(--accent-cyan);
}

@media (max-width: 768px) {
    .token-callout {
        padding: 22px 22px;
    }

    .token-callout h3 {
        font-size: 1.65rem;
    }

    .token-callout p {
        font-size: 1.08rem;
    }

    .token-savings-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .token-callout {
        padding: 20px;
    }

    .token-callout h3 {
        font-size: 1.45rem;
    }

    .token-callout p {
        font-size: 1rem;
    }

    .token-savings-grid {
        grid-template-columns: 1fr;
    }
}
.roadmap-section {
    padding: 80px 0;
    background: url('images/BG_MountainScene3.jpg') center center / cover no-repeat fixed;
    position: relative;
}

.roadmap-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(6, 10, 20, 0.55) 0%, rgba(6, 10, 20, 0.8) 100%);
    z-index: 0;
    pointer-events: none;
}

.roadmap-section > .container {
    position: relative;
    z-index: 1;
}

.roadmap-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 32px;
}

.roadmap-item {
    background: rgba(10, 14, 23, 0.35);
    backdrop-filter: blur(28px) saturate(1.2);
    -webkit-backdrop-filter: blur(28px) saturate(1.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.roadmap-item:hover {
    background: #1c2540;
    border-color: rgba(0, 212, 255, 0.15);
    transform: translateY(-2px);
}

.roadmap-icon {
    font-size: 1.6rem;
    display: block;
    margin-bottom: 12px;
}

.roadmap-item h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.roadmap-item p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .roadmap-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .roadmap-grid {
        grid-template-columns: 1fr;
    }
}

/* ========== Pricing ========== */
.pricing-section {
    padding: 80px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.pricing-card {
    background: #161c2e;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 36px 28px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    background: #1c2540;
    transform: translateY(-4px);
}

.pricing-popular {
    border-color: rgba(124, 92, 252, 0.3);
}

.pricing-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 160, 255, 0.85);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 5px 18px;
    border-radius: 20px;
    text-transform: uppercase;
    white-space: nowrap;
}

.pricing-tier-name {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.pricing-amount {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
}

.pricing-period {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-left: 2px;
}

.pricing-capacity {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--text-primary);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.pricing-desc {
    color: var(--text-secondary);
    font-size: 0.8rem;
    line-height: 1.6;
}

.pricing-audience {
    margin-top: 16px;
    font-size: 0.75rem;
    color: var(--text-secondary);
    opacity: 0.7;
}
.pricing-disclaimer {
    margin-top: 32px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    opacity: 0.7;
    text-align: center;
    font-style: italic;
}
.pricing-cta {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 24px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.2s ease;
    background: rgba(255, 255, 255, 0.08);
    color: #c8d6e5;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.pricing-cta:hover {
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    transform: translateY(-1px);
}

.pricing-cta--accent {
    background: linear-gradient(135deg, #0077ff 0%, #00b4ff 100%);
    color: #fff;
    border: none;
}

.pricing-cta--accent:hover {
    opacity: 0.9;
    color: #fff;
}


@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr !important;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    .pricing-popular {
        order: -1;
    }
}




/* ── Org Chart ── */
.bot-commands-section {
    position: relative;
}

.bot-commands-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(0,229,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,229,255,0.025) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 0;
}

.bot-commands-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 40%, rgba(0,229,255,0.04) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.bot-commands-section > * {
    position: relative;
    z-index: 1;
}

.org-chart {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 0 20px;
    position: relative;
}

.org-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.org-avatar {
    width: 104px;
    height: 104px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.org-avatar::before {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    border: 2px solid transparent;
    border-top-color: var(--accent-cyan);
    border-right-color: rgba(0, 212, 255, 0.3);
    animation: orgRingRotate 8s linear infinite;
    pointer-events: none;
}

.org-avatar-you {
    background: rgba(0, 212, 255, 0.1);
    border: 2px solid rgba(0, 212, 255, 0.4);
    position: relative;
}

.org-silhouette {
    width: 60px;
    height: 60px;
    margin-top: 4px;
}

.org-you-label {
    position: absolute;
    bottom: 12px;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.85);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.org-avatar-commander {
    border: 2px solid rgba(167, 139, 250, 0.5);
    background: rgba(167, 139, 250, 0.08);
}

.org-avatar-commander::before {
    border-top-color: rgba(167, 139, 250, 0.8);
    border-right-color: rgba(167, 139, 250, 0.3);
}

.org-avatar-agent {
    border: 2px solid rgba(0, 212, 255, 0.3);
    background: rgba(0, 212, 255, 0.05);
}

.org-avatar-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.org-node-name {
    font-size: 13px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.3px;
}

.org-node-title {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.org-title-commander {
    color: rgba(167, 139, 250, 0.7);
}

/* Vertical connector lines */
.org-vline {
    width: 2px;
    height: 32px;
    background: linear-gradient(180deg, rgba(0, 212, 255, 0.5), rgba(0, 212, 255, 0.15));
    position: relative;
}

.org-vline::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-cyan);
    left: -2px;
    top: 0;
    box-shadow: 0 0 8px rgba(0, 212, 255, 0.6);
    animation: orgDataFlowDown 2.5s ease-in-out infinite;
}

/* Agent rows */
.org-agents-row {
    display: flex;
    justify-content: center;
    position: relative;
    padding-top: 0;
    width: 100%;
    max-width: 1100px;
}

/* Horizontal connector bar */
.org-agents-row::before {
    content: '';
    position: absolute;
    top: 0;
    left: 6.25%;
    right: 6.25%;
    height: 2px;
    background: linear-gradient(90deg, rgba(0, 212, 255, 0.1), rgba(0, 212, 255, 0.4), rgba(0, 212, 255, 0.1));
}

/* Horizontal sweep glow */
.org-agents-row::after {
    content: '';
    position: absolute;
    top: -2px;
    width: 60px;
    height: 6px;
    border-radius: 3px;
    background: rgba(0, 212, 255, 0.6);
    box-shadow: 0 0 12px rgba(0, 212, 255, 0.5);
    animation: orgDataFlowHorizontal 4s ease-in-out infinite;
}

.org-agents-row-2::after {
    animation-delay: 2s;
}

.org-agent-col {
    flex: 0 0 12.5%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    padding-top: 32px;
}

/* Vertical drop from horizontal bar to avatar */
.org-agent-col::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 32px;
    background: linear-gradient(180deg, rgba(0, 212, 255, 0.4), rgba(0, 212, 255, 0.1));
    transform: translateX(-50%);
}

.org-node-agent {
    animation: orgNodeFloat 4s ease-in-out infinite alternate;
    cursor: default;
    transition: transform 0.3s, filter 0.3s;
}

.org-node-agent:hover {
    transform: translateY(-5px) scale(1.05);
}

.org-node-agent:hover .org-avatar {
    filter: brightness(1.3);
    box-shadow: 0 0 16px rgba(0, 212, 255, 0.3);
}

.org-node-agent .org-avatar {
    width: 104px;
    height: 104px;
}

/* Animations */
@keyframes orgRingRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes orgNodeFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

@keyframes orgDataFlowDown {
    0% { top: 0; opacity: 0; }
    10% { opacity: 1; }
    80% { opacity: 1; }
    90%, 100% { top: calc(100% - 6px); opacity: 0; }
}

@keyframes orgDataFlowHorizontal {
    0% { left: 6%; opacity: 0; }
    10% { opacity: 1; }
    80% { opacity: 1; }
    90%, 100% { left: calc(94% - 60px); opacity: 0; }
}

/* Responsive */
@media (max-width: 900px) {
    .org-agents-row {
        flex-wrap: wrap;
        gap: 16px 0;
    }
    .org-agent-col {
        flex: 0 0 25%;
    }
}

@media (max-width: 550px) {
    .org-agent-col {
        flex: 0 0 33.33%;
    }
    .org-node-agent .org-avatar {
        width: 72px;
        height: 72px;
    }
    .org-node-name { font-size: 11px; }
    .org-node-title { font-size: 9px; }
}


/* ========== Tier Feature Matrix ========== */
.tier-matrix-wrapper {
    overflow-x: auto;
    overflow-y: visible;
    margin-top: 40px;
    padding-top: 0;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.tier-matrix {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
    font-size: 0.85rem;
    min-width: 700px;
}

.tier-matrix thead {
    background: linear-gradient(180deg, rgba(20, 35, 60, 0.95) 0%, rgba(12, 22, 40, 0.95) 100%);
    position: relative;
}

.tier-matrix th {
    padding: 24px 16px;
    vertical-align: top;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.tier-feature-col {
    text-align: left;
    width: 28%;
    min-width: 200px;
    color: var(--text-primary);
    font-weight: 500;
}

.tier-col {
    text-align: center;
    width: 18%;
    min-width: 120px;
}

.tier-col--highlight {
    background: rgba(124, 92, 252, 0.06);
    position: relative;
}

.tier-col--popular {
}

.tier-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.tier-name {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.tier-price {
    font-size: 2.2rem;
    font-weight: 900;
    line-height: 1;
    color: #fff;
}

.tier-period {
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--text-secondary);
}

.tier-popular-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 160, 255, 0.9);
    color: #fff;
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 3px 14px 5px;
    border-radius: 0 0 8px 8px;
    text-transform: uppercase;
    white-space: nowrap;
    z-index: 10;
    margin: 0;
    flex-shrink: 0;
    align-self: center;
}

.tier-matrix td {
    padding: 10px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.8rem;
}

.tier-matrix td.tier-feature-col {
    text-align: left;
    font-weight: 500;
    color: var(--text-primary);
    font-size: 0.8rem;
}

.tier-matrix tbody tr:hover {
    background: rgba(255, 255, 255, 0.02);
}

/* Section divider rows */
.tier-section-row td {
    background: rgba(0, 229, 255, 0.04);
    font-weight: 700;
    font-size: 0.7rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--accent-primary);
    text-align: left;
    padding: 12px 16px;
    border-bottom: 1px solid rgba(0, 229, 255, 0.08);
}

/* Who it is for row */
.tier-who-row td {
    font-size: 0.75rem;
    color: var(--text-secondary);
    line-height: 1.5;
    padding: 16px;
    vertical-align: top;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.tier-who-row td.tier-feature-col {
    font-weight: 700;
    color: var(--text-primary);
}

.tier-row-label {
    font-weight: 700 !important;
}

/* Trial note below table */
.tier-trial-note {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-secondary);
    opacity: 0.7;
    margin-top: 20px;
}

/* Highlight column on Pro */
.tier-col--highlight + td,
.tier-matrix td:nth-child(4) {
}

/* Coming Soon disabled CTA — only override appearance, not sizing */
.pricing-cta--soon {
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-secondary);
    cursor: default;
    pointer-events: none;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Mobile: scrollable comparison table */
@media (max-width: 768px) {
    .tier-matrix-wrapper {
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        margin-top: 24px;
        border-radius: 12px;
        border: 1px solid rgba(255, 255, 255, 0.06);
    }
    .tier-matrix {
        min-width: 580px;
        font-size: 0.72rem;
    }
    .tier-matrix th {
        padding: 16px 10px;
    }
    .tier-matrix td {
        padding: 8px 10px;
        font-size: 0.72rem;
    }
    .tier-feature-col {
        min-width: 140px;
        width: 26%;
    }
    .tier-col {
        min-width: 90px;
        width: 18.5%;
    }
    .tier-price {
        font-size: 1.5rem;
    }
    .tier-name {
        font-size: 0.6rem;
        letter-spacing: 1.5px;
    }
    .tier-popular-badge {
        font-size: 0.42rem;
        padding: 2px 6px 3px;
        letter-spacing: 0.5px;
    }
    .tier-who-row td {
        font-size: 0.65rem;
        padding: 10px;
    }
    .pricing-cta {
        font-size: 0.65rem;
        padding: 6px 12px;
    }

}

/* Checkmark / X coloring */
.tier-matrix td.tier-yes {
    color: #34d399;
    font-weight: 700;
    font-size: 1rem;
}
.tier-matrix td.tier-no {
    color: #f87171;
    font-weight: 700;
    font-size: 1rem;
}

/* Watermark asterisk in checkmark cell */
.tier-asterisk {
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    position: relative;
    top: -6px;
    margin-left: 1px;
}

/* *watermark label next to feature name */
.tier-asterisk-note {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.45);
    font-style: italic;
    margin-left: 6px;
}

/* Per-tier header backgrounds */
.tier-col--home { background: rgba(140, 160, 200, 0.06); }
.tier-col--solo { background: rgba(0, 160, 255, 0.08); position: relative; }
.tier-col--pro {}
.tier-col--team { background: rgba(0, 230, 138, 0.07); }

/* Make badge visible above overflow */


/* Solo column highlight + badge anchor */
.tier-col--solo { background: rgba(0, 160, 255, 0.08); position: relative; }


/* The Com phone screenshot strip */
.com-phone-strip {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin: 24px 0;
    padding: 0 8px;
}

.com-phone-img {
    width: 22%;
    max-width: 140px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.com-features-list {
    list-style: none;
    padding: 0;
    margin: 20px auto 28px;
    text-align: left;
    display: block;
    max-width: 460px;
}

.com-features-list li {
    padding: 4px 0 4px 24px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.75);
    text-indent: -24px;
}

.com-features-list li::before {
    content: '\2713';
    color: #00e5ff;
    font-weight: 700;
    margin-right: 8px;
}

.com-plus-label {
    display: none;
}

/* Dual-use full-width columns */
.com-dual-use-label {
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.45);
    margin: 0 0 32px;
}

.com-dual-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin: 0 auto 48px;
    text-align: left;
    max-width: 960px;
}

.com-dual-col {
    padding: 32px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.com-dual-col-icon {
    display: none;
}

.com-dual-col-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 8px;
}

.com-dual-col--remote .com-dual-col-title {
    color: #7c5cfc;
}

.com-dual-col--standalone .com-dual-col-title {
    color: #00e5ff;
}

.com-dual-col-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0 0 16px;
    line-height: 1.5;
}

.com-dual-col .com-phone-strip {
    justify-content: flex-start;
    margin: 16px 0;
}

.com-dual-col .com-phone-img {
    width: 35%;
    max-width: 120px;
}

.com-dual-col .com-features-list {
    margin: 16px 0 0;
    max-width: none;
}

/* Two-column features layout (legacy) */
.com-features-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin: 20px 0 28px;
    text-align: left;
}

.com-features-col {
    padding: 20px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.com-col-heading {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #00e5ff;
    margin: 0 0 12px;
}

.com-col-heading--desktop {
    color: #7c5cfc;
}

.com-features-columns .com-features-list {
    margin: 0;
    max-width: none;
}

.com-features-desktop li::before {
    color: #7c5cfc;
}


/* Charity Commitment Section */
.charity-section {
    padding: 60px 0;
    background: linear-gradient(180deg, transparent, rgba(0, 212, 255, 0.03));
}

.charity-callout {
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
    padding: 40px;
    border: 1px solid rgba(0, 212, 255, 0.15);
    border-radius: 16px;
    background: rgba(0, 212, 255, 0.03);
}

.charity-icon {
    font-size: 36px;
    display: block;
    margin-bottom: 12px;
}

.charity-callout h3 {
    font-size: 22px;
    color: var(--accent-cyan);
    margin-bottom: 16px;
}

.charity-callout p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
}

.charity-callout p a {
    color: var(--accent-cyan);
    text-decoration: none;
    font-weight: 600;
}

.charity-callout p a:hover {
    text-decoration: underline;
}

.charity-link {
    display: inline-block;
    color: var(--accent-cyan);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: transform 0.3s ease;
}

.charity-link:hover {
    transform: translateX(5px);
}


/* ========== Downloads & Reviews Section ========== */
.reviews-section {
    padding: 60px 0 80px;
}
.reviews-grid {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 24px;
    margin-bottom: 40px;
}
.reviews-card {
    background: rgba(15, 23, 42, 0.55);
    border: 1px solid rgba(0, 212, 255, 0.18);
    border-radius: 16px;
    padding: 28px 32px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(6px);
}
.reviews-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}
.reviews-card-icon {
    font-size: 1.4rem;
    color: var(--accent-cyan);
    line-height: 1;
}
.reviews-card-title {
    font-family: 'Saira', sans-serif;
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--text-primary);
    letter-spacing: 0.5px;
    margin: 0;
}
.downloads-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.downloads-number {
    font-family: 'Saira', sans-serif;
    font-weight: 700;
    font-size: 4rem;
    line-height: 1;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 6px;
}
.downloads-label {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 18px;
    letter-spacing: 0.3px;
}
.downloads-foot {
    color: var(--text-muted, #6a7a9a);
    font-size: 0.78rem;
    border-top: 1px solid rgba(0, 212, 255, 0.1);
    padding-top: 14px;
}

.ratings-row {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 32px;
    align-items: center;
    margin-bottom: 22px;
}
.ratings-avg-num {
    font-family: 'Saira', sans-serif;
    font-weight: 700;
    font-size: 3.5rem;
    line-height: 1;
    color: var(--text-primary);
    margin-bottom: 4px;
}
.ratings-stars {
    color: #f5b301;
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin-bottom: 6px;
}
.ratings-meta {
    color: var(--text-secondary);
    font-size: 0.82rem;
}
.ratings-bars {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.ratings-bar-row {
    display: grid;
    grid-template-columns: 36px 1fr 28px;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    color: var(--text-secondary);
}
.ratings-bar-label {
    color: var(--text-secondary);
    text-align: left;
}
.ratings-bar-track {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 999px;
    height: 6px;
    overflow: hidden;
    display: block;
}
.ratings-bar-fill {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-blue));
    border-radius: 999px;
    transition: width 0.6s ease;
}
.ratings-bar-count {
    text-align: right;
    color: var(--text-secondary);
    font-variant-numeric: tabular-nums;
}
.reviews-write-btn {
    display: inline-block;
    background: transparent;
    border: 1px solid rgba(0, 212, 255, 0.4);
    color: var(--accent-cyan);
    font-family: 'Saira', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    padding: 10px 22px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.reviews-write-btn:hover {
    background: rgba(0, 212, 255, 0.1);
    border-color: var(--accent-cyan);
    color: #fff;
}

.recent-reviews-head {
    margin: 16px 0 18px;
}
.recent-reviews-head h4 {
    font-family: 'Saira', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-primary);
    margin: 0;
    letter-spacing: 0.5px;
}
.recent-reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.recent-review-card {
    background: rgba(15, 23, 42, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 20px 22px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.recent-review-stars {
    color: #f5b301;
    font-size: 0.95rem;
    letter-spacing: 1.5px;
}
.recent-review-title {
    font-family: 'Saira', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-primary);
}
.recent-review-body {
    color: var(--text-secondary);
    font-size: 0.86rem;
    line-height: 1.55;
    flex: 1;
}
.recent-review-foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted, #6a7a9a);
    font-size: 0.75rem;
    padding-top: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}
.recent-review-name { font-weight: 500; }
.recent-reviews-empty {
    grid-column: 1 / -1;
    color: var(--text-secondary);
    font-size: 0.9rem;
    text-align: center;
    padding: 30px 0;
}

/* Review Modal */
.review-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(5, 8, 18, 0.78);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s, visibility 0.2s;
    padding: 20px;
}
.review-modal-overlay.open {
    opacity: 1;
    visibility: visible;
}
.review-modal {
    background: #0e1730;
    border: 1px solid rgba(0, 212, 255, 0.25);
    border-radius: 14px;
    padding: 32px 32px 28px;
    width: 100%;
    max-width: 460px;
    max-height: 92vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 12px 60px rgba(0, 0, 0, 0.6);
}
.review-modal h3 {
    font-family: 'Saira', sans-serif;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 4px;
    font-size: 1.25rem;
}
.review-modal-sub {
    color: var(--text-secondary);
    font-size: 0.82rem;
    margin: 0 0 20px;
}
.review-modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 1.4rem;
    cursor: pointer;
    line-height: 1;
}
.review-modal-close:hover { color: var(--text-primary); }
.review-field {
    display: block;
    margin-bottom: 16px;
}
.review-field-label {
    display: block;
    color: var(--text-secondary);
    font-size: 0.78rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 6px;
}
.review-field-optional {
    text-transform: none;
    letter-spacing: 0;
    color: var(--text-muted, #6a7a9a);
}
.review-field input,
.review-field textarea {
    width: 100%;
    box-sizing: border-box;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 10px 12px;
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    transition: border-color 0.15s;
}
.review-field input:focus,
.review-field textarea:focus {
    border-color: var(--accent-cyan);
    outline: none;
}
.review-field textarea { resize: vertical; min-height: 90px; }
.review-star-picker {
    display: flex;
    gap: 4px;
}
.review-star {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.18);
    font-size: 1.8rem;
    line-height: 1;
    cursor: pointer;
    padding: 2px 4px;
    transition: color 0.12s;
}
.review-star.on { color: #f5b301; }
.review-modal-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 8px;
}
.review-cancel-btn,
.review-submit-btn {
    font-family: 'Saira', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    padding: 9px 20px;
    border-radius: 8px;
    cursor: pointer;
    border: 1px solid transparent;
}
.review-cancel-btn {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.15);
    color: var(--text-secondary);
}
.review-cancel-btn:hover { color: var(--text-primary); }
.review-submit-btn {
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue));
    color: #fff;
}
.review-submit-btn:disabled { opacity: 0.6; cursor: not-allowed; }
.review-form-status {
    margin-top: 10px;
    font-size: 0.82rem;
    min-height: 1.2em;
    color: var(--text-secondary);
}
.review-form-status.ok  { color: #4ade80; }
.review-form-status.err { color: #f87171; }

@media (max-width: 900px) {
    .reviews-grid { grid-template-columns: 1fr; }
    .recent-reviews-grid { grid-template-columns: 1fr; }
    .ratings-row { grid-template-columns: 1fr; gap: 16px; }
    .downloads-number { font-size: 3rem; }
}


/* ============================================================
   Commanders Section — 3-Step "How It Works" + Intro hero image
   (restored CSS for .commander-step-*, .commanders-band, etc.)
   ============================================================ */
.intro-section {
    padding: 80px 0;
    position: relative;
}
.intro-section .section-title {
    text-align: center;
}
.intro-section .section-subtitle {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 32px;
    color: var(--text-secondary);
}
.intro-hero-image {
    max-width: 1100px;
    margin: 24px auto 0;
}
.intro-hero-image .commander-step-thumb {
    width: 100%;
}

.commanders-section {
    padding: 60px 0 80px;
    position: relative;
}

.commanders-band {
    margin: 0 0 18px;
    padding: 18px 8% 8px;
    text-align: center;
    background: transparent;
    border: 0;
}
.commanders-band--progression {
    margin-top: 40px;
}
.commanders-band .section-label {
    color: var(--accent-cyan);
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-size: 0.8rem;
    margin-bottom: 8px;
}
.commanders-band .section-title {
    margin: 0 0 12px;
    font-size: 2rem;
}
.commanders-band-title-cta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 14px;
}
.commanders-band-title-cta .inline-cta-btn {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(0, 245, 255, 0.25);
    transition: transform 0.2s, box-shadow 0.2s;
}
.commanders-band-title-cta .inline-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(0, 245, 255, 0.35);
}
.commanders-band-sub {
    color: var(--text-secondary);
    font-size: 1.05rem;
    max-width: 820px;
    margin: 0 auto;
    line-height: 1.6;
}
.commanders-band-hint {
    margin-top: 12px;
    color: var(--accent-cyan);
    font-size: 0.85rem;
    opacity: 0.85;
}

.commanders-steps {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 6%;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.commander-step-wide {
    background: rgba(22, 28, 46, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 18px 22px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}
.commander-step-wide--with-image {
    grid-template-columns: 1.1fr 1fr;
    align-items: center;
}
.commander-step-wide--with-image .commander-step-thumb img {
    max-height: 240px;
    width: 100%;
    object-fit: cover;
    object-position: center top;
}

.commander-step-head {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}
.commander-step-num {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    color: #fff;
    font-weight: 800;
    font-size: 1.4rem;
    box-shadow: 0 6px 18px rgba(0, 245, 255, 0.25);
}
.commander-step-head h3 {
    margin: 0 0 6px;
    font-size: 1.25rem;
    color: #fff;
    line-height: 1.3;
}
.commander-step-head p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.55;
}

.commander-step-content--image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.commander-step-thumb {
    position: relative;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    cursor: zoom-in;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(0, 0, 0, 0.3);
    transition: transform 0.25s, box-shadow 0.25s;
}
.commander-step-thumb:hover,
.commander-step-thumb:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
    outline: none;
}
.commander-step-thumb img {
    display: block;
    width: 100%;
    height: auto;
    max-width: 100%;
}
.commander-step-thumb-zoom {
    position: absolute;
    bottom: 10px;
    right: 12px;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.6);
    color: var(--accent-cyan);
    font-size: 0.75rem;
    font-weight: 600;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s;
}
.commander-step-thumb:hover .commander-step-thumb-zoom,
.commander-step-thumb:focus-visible .commander-step-thumb-zoom {
    opacity: 1;
}

@media (max-width: 900px) {
    .commander-step-wide--with-image {
        grid-template-columns: 1fr;
    }
    .commanders-band .section-title {
        font-size: 1.6rem;
    }
}


/* ============================================================
   Bot Commander Detail Modal (.bc-modal-*) — restored CSS
   ============================================================ */
.bc-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}
.bc-modal[aria-hidden="false"] {
    display: flex;
}
.bc-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(4, 8, 18, 0.78);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}
.bc-modal-card {
    position: relative;
    z-index: 1;
    width: min(900px, 100%);
    max-height: 90vh;
    overflow-y: auto;
    background: linear-gradient(160deg, rgba(22, 28, 46, 0.98), rgba(14, 18, 32, 0.98));
    border: 1px solid rgba(0, 245, 255, 0.18);
    border-radius: 18px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(155, 81, 224, 0.12);
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 0;
}
.bc-modal-close {
    position: absolute;
    top: 10px;
    right: 14px;
    z-index: 2;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}
.bc-modal-close:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: scale(1.05);
}
.bc-modal-portrait {
    overflow: hidden;
    border-top-left-radius: 18px;
    border-bottom-left-radius: 18px;
    background: rgba(0, 0, 0, 0.4);
}
.bc-modal-portrait img {
    display: block;
    width: 100%;
    height: 100%;
    max-height: 90vh;
    object-fit: cover;
}
.bc-modal-body {
    padding: 28px 32px 32px;
    color: var(--text-secondary);
}
.bc-modal-name {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
}
.bc-modal-role {
    margin-top: 4px;
    color: var(--accent-cyan);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}
.bc-modal-hook {
    margin: 14px 0 18px;
    color: #fff;
    font-size: 1.05rem;
    line-height: 1.5;
    font-style: italic;
    opacity: 0.92;
}
.bc-modal-section {
    margin-top: 14px;
}
.bc-modal-section h4 {
    margin: 0 0 6px;
    color: var(--accent-cyan);
    font-size: 0.78rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 700;
}
.bc-modal-section p,
.bc-modal-section li {
    color: var(--text-secondary);
    line-height: 1.55;
    font-size: 0.95rem;
}
.bc-modal-section ul {
    margin: 0;
    padding-left: 18px;
}
.bc-modal-section li {
    margin-bottom: 4px;
}
.bc-modal-bestfor p {
    color: #fff;
}
.bc-modal-lore-toggle {
    margin-top: 18px;
    background: linear-gradient(135deg, rgba(0, 245, 255, 0.15), rgba(155, 81, 224, 0.15));
    border: 1px solid rgba(0, 245, 255, 0.3);
    color: var(--accent-cyan);
    padding: 10px 18px;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background 0.2s;
}
.bc-modal-lore-toggle:hover {
    background: linear-gradient(135deg, rgba(0, 245, 255, 0.25), rgba(155, 81, 224, 0.25));
}
.bc-modal-lore {
    margin-top: 14px;
    padding: 14px 16px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.6;
    white-space: pre-wrap;
}

@media (max-width: 760px) {
    .bc-modal-card {
        grid-template-columns: 1fr;
        max-height: 92vh;
    }
    .bc-modal-portrait {
        border-top-right-radius: 18px;
        border-bottom-left-radius: 0;
        max-height: 280px;
    }
    .bc-modal-portrait img {
        max-height: 280px;
    }
    .bc-modal-body {
        padding: 22px 22px 26px;
    }
}

body.bc-modal-open {
    overflow: hidden;
}


/* ============================================================
   Agent Detail Modal (.agent-modal-*) — restored CSS
   ============================================================ */
.agent-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}
.agent-modal[aria-hidden="false"] {
    display: flex;
}
.agent-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(4, 8, 18, 0.78);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}
.agent-modal-card {
    position: relative;
    z-index: 1;
    width: min(720px, 100%);
    max-height: 90vh;
    overflow-y: auto;
    background: linear-gradient(160deg, rgba(22, 28, 46, 0.98), rgba(14, 18, 32, 0.98));
    border: 1px solid rgba(0, 245, 255, 0.18);
    border-radius: 18px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(155, 81, 224, 0.12);
    display: grid;
    grid-template-columns: 240px 1fr;
}
.agent-modal-close {
    position: absolute;
    top: 10px;
    right: 14px;
    z-index: 2;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}
.agent-modal-close:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: scale(1.05);
}
.agent-modal-portrait {
    overflow: hidden;
    border-top-left-radius: 18px;
    border-bottom-left-radius: 18px;
    background: rgba(0, 0, 0, 0.4);
}
.agent-modal-portrait img {
    display: block;
    width: 100%;
    height: 100%;
    max-height: 90vh;
    object-fit: cover;
}
.agent-modal-body {
    padding: 28px 32px 32px;
    color: var(--text-secondary);
}
.agent-modal-name {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
}
.agent-modal-role {
    margin-top: 4px;
    color: var(--accent-cyan);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.agent-modal-bio {
    margin: 16px 0 0;
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
}

@media (max-width: 700px) {
    .agent-modal-card {
        grid-template-columns: 1fr;
        max-height: 92vh;
    }
    .agent-modal-portrait {
        border-top-right-radius: 18px;
        border-bottom-left-radius: 0;
        max-height: 280px;
    }
    .agent-modal-portrait img {
        max-height: 280px;
    }
    .agent-modal-body {
        padding: 22px 22px 26px;
    }
}

body.agent-modal-open {
    overflow: hidden;
}

/* Click-any-agent hint — pill chip floated to right of agents row, inside the org-chart */
.org-chart .agents-click-hint {
    position: absolute;
    top: 280px;
    right: clamp(8px, 6%, 120px);
    margin: 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(0, 245, 255, 0.08);
    border: 1px solid rgba(0, 245, 255, 0.25);
    border-radius: 999px;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    width: max-content;
    max-width: 90%;
    z-index: 2;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}
.agents-click-hint-icon {
    font-size: 1.1rem;
    line-height: 1;
}
@media (max-width: 900px) {
    .org-chart .agents-click-hint {
        position: static;
        margin: 0 auto 14px;
        align-self: center;
    }
}


/* ============================================================
   Features — Tour Grid (4 columns × 2 rows of feature tiles)
   ============================================================ */
.tour-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin: 32px auto 40px;
    max-width: 1100px;
}
.tour-tile {
    background: rgba(22, 28, 46, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    overflow: hidden;
    cursor: zoom-in;
    transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}
.tour-tile:hover {
    transform: translateY(-3px);
    border-color: rgba(0, 245, 255, 0.4);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(0, 245, 255, 0.15);
}
.tour-tile-img {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.3);
}
.tour-tile-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s;
}
.tour-tile:hover .tour-tile-img img {
    transform: scale(1.04);
}
.tour-tile-caption {
    padding: 10px 12px;
    color: #fff;
    font-weight: 600;
    font-size: 0.85rem;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: linear-gradient(180deg, rgba(0, 245, 255, 0.04), rgba(155, 81, 224, 0.04));
}
@media (max-width: 1100px) {
    .tour-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 760px) {
    .tour-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   Image Lightbox (click any zoomable image)
   ============================================================ */
.img-lightbox {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(4, 8, 18, 0.88);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 24px;
}
.img-lightbox[aria-hidden="false"] {
    display: flex;
}
.img-lightbox img {
    max-width: 95vw;
    max-height: 90vh;
    border-radius: 12px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7);
    display: block;
}
.img-lightbox-close {
    position: absolute;
    top: 20px;
    right: 24px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    font-size: 1.6rem;
    line-height: 1;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}
.img-lightbox-close:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1.05);
}
body.img-lightbox-open {
    overflow: hidden;
}


/* ============================================================
   Token Callout — 3-column split (coin | text | wallets)
   ============================================================ */
.token-callout--split {
    display: grid !important;
    grid-template-columns: 1fr 2fr 1.2fr;
    align-items: center;
    gap: 32px;
    padding: 28px 36px !important;
    max-width: 1320px;
    margin: 28px auto 0;
}
.token-callout-coin,
.token-callout-wallets {
    display: flex;
    align-items: center;
    justify-content: center;
}
.token-callout-coin img {
    width: 100%;
    max-width: 220px;
    height: auto;
    border-radius: 12px;
    display: block;
}
.token-callout-wallets img {
    width: 100%;
    max-width: 280px;
    height: auto;
    border-radius: 12px;
    display: block;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35);
}
.token-callout-text {
    text-align: center;
    color: var(--text-secondary);
    line-height: 1.55;
}
.token-callout-text p {
    margin: 0 0 10px;
}
.token-callout-text p:last-child { margin-bottom: 0; }
.token-callout-text strong { color: #fff; }

@media (max-width: 900px) {
    .token-callout--split {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .token-callout-coin img { max-width: 180px; }
    .token-callout-wallets img { max-width: 240px; }
}


/* ============================================================
   Baby Bot Finale — small portrait + text card (Bot Commander)
   ============================================================ */
.babybot-finale {
    display: flex;
    justify-content: center;
    margin: 32px auto 0;
    max-width: 900px;
}
.babybot-finale-card {
    display: grid;
    grid-template-columns: 200px 1fr;
    align-items: center;
    gap: 24px;
    padding: 22px 28px;
    background: rgba(22, 28, 46, 0.7);
    border: 1px solid rgba(155, 81, 224, 0.35);
    border-radius: 16px;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35);
    width: 100%;
}
.babybot-finale-card img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 14px;
    border: 1px solid rgba(0, 245, 255, 0.25);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.4);
    display: block;
}
.babybot-finale-text {
    color: var(--text-secondary);
}
.babybot-finale-label {
    color: var(--accent-cyan);
    font-size: 0.78rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 6px;
}
.babybot-finale-text h3 {
    margin: 0 0 10px;
    color: #fff;
    font-size: 1.4rem;
}
.babybot-finale-text p {
    margin: 0;
    line-height: 1.55;
    font-size: 0.95rem;
}
.babybot-finale-text strong { color: #fff; }

@media (max-width: 700px) {
    .babybot-finale-card {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .babybot-finale-card img {
        width: 160px;
        height: 160px;
        margin: 0 auto;
    }
}


/* ============================================================
   Redeem AlterVerse NFTs Section
   ============================================================ */
.redeem-section {
    padding: 80px 0;
    position: relative;
    background: linear-gradient(180deg, rgba(155, 81, 224, 0.04), rgba(0, 245, 255, 0.04));
}
.redeem-section .section-label,
.redeem-section .section-title {
    text-align: center;
}
.redeem-section .section-subtitle {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 32px;
    color: var(--text-secondary);
}

.redeem-hero {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    align-items: center;
    gap: 36px;
    max-width: 1200px;
    margin: 32px auto 0;
    padding: 32px;
    background: rgba(22, 28, 46, 0.6);
    border: 1px solid rgba(0, 245, 255, 0.18);
    border-radius: 18px;
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.35);
}
.redeem-hero-text h3 {
    margin: 0 0 14px;
    color: #fff;
    font-size: 1.4rem;
}
.redeem-steps {
    margin: 0 0 20px;
    padding: 0;
    list-style: none;
    counter-reset: redeem-step;
}
.redeem-steps li {
    counter-increment: redeem-step;
    position: relative;
    padding: 12px 14px 12px 48px;
    margin-bottom: 10px;
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    color: var(--text-secondary);
    line-height: 1.55;
    font-size: 0.95rem;
}
.redeem-steps li::before {
    content: counter(redeem-step);
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    color: #fff;
    font-size: 0.85rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 245, 255, 0.25);
}
.redeem-steps li strong { color: #fff; }
.redeem-steps li a { color: var(--accent-cyan); }

.redeem-cta-row {
    margin: 18px 0 14px;
}
.redeem-cta-row .primary-button.large {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    font-size: 1rem;
    box-shadow: 0 8px 20px rgba(0, 245, 255, 0.25);
    transition: transform 0.2s, box-shadow 0.2s;
}
.redeem-cta-row .primary-button.large:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(0, 245, 255, 0.35);
}

.redeem-fineprint {
    margin: 14px 0 0;
    color: var(--text-secondary);
    font-size: 0.85rem;
    opacity: 0.8;
    line-height: 1.5;
}

.redeem-hero-image {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.redeem-hero-image img {
    width: 100%;
    max-width: 520px;
    height: auto;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.45);
    display: block;
}

@media (max-width: 900px) {
    .redeem-hero {
        grid-template-columns: 1fr;
        padding: 24px;
    }
    .redeem-hero-image img { max-width: 100%; }
}
