/* FreshThread Landing Page — 2026 Premium Glassmorphism Edition */

:root {
    --bg-dark: #060911;
    --border-color: rgba(255, 255, 255, 0.08);
    --border-glow: rgba(0, 240, 255, 0.3);
    
    --primary-green: #00A3FF;
    --neon-green: #00F0FF;
    
    --text-main: #FFFFFF;
    --text-muted: #A1A1AA;
    --text-subtle: #71717A;
    
    --font-heading: 'Space Grotesk', sans-serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
    scrollbar-gutter: stable;
}

html, body {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-sans);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

img {
    max-width: 100%;
    height: auto;
    image-rendering: -webkit-optimize-contrast;
    backface-visibility: hidden;
}

.reveal-on-scroll,
.hero-robot-mascot,
.glass-2026,
.btn-nav-glow,
.btn-nav-github,
.btn-primary-2026,
.btn-glass-2026 {
    backface-visibility: hidden;
    transform: translateZ(0);
}

/* Centered Container System */
.container {
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 32px;
    padding-right: 32px;
}

/* Ambient Glowing Halos - Enhanced for Glassmorphism */
.halo-container {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.halo-emerald {
    position: absolute;
    width: 800px;
    height: 800px;
    top: -200px;
    left: 40%;
    transform: translateX(-50%);
    background: radial-gradient(circle, rgba(0, 240, 255, 0.08) 0%, rgba(0, 0, 0, 0) 60%);
    filter: blur(100px);
}

.halo-cyan {
    position: absolute;
    width: 900px;
    height: 900px;
    bottom: -300px;
    right: -200px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.06) 0%, rgba(0, 0, 0, 0) 60%);
    filter: blur(120px);
}

/* True Glassmorphism 2026 Panels */
.glass-2026 {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Subtle inner glare for glass */
.glass-2026::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(180deg, rgba(255,255,255,0.02) 0%, rgba(255,255,255,0) 100%);
    pointer-events: none;
    z-index: 0;
}

/* Glassmorphic Panels Stay Static on Hover */
.glass-2026:hover {
    /* Container background & brightness stay completely static */
}

/* Typography Gradient */
.text-gradient {
    background: linear-gradient(135deg, #FFFFFF 0%, #00F0FF 70%, #00A3FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-animated {
    display: inline-block;
    white-space: nowrap;
    background: linear-gradient(135deg, #FFFFFF 0%, #00F0FF 40%, #00A3FF 75%, #06B6D4 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 6s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.highlight-green { color: var(--neon-green); font-weight: 600; }
.text-neon-green { color: var(--neon-green); }

/* Navbar - Ultra sleek */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: rgba(6, 9, 17, 0.25);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border-bottom: none;
    padding: 16px 0;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand-logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    position: relative;
    z-index: 2;
    margin-left: 0;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.brand-logo:hover {
    transform: translateY(-2px) scale(1.02);
}

.logo-text {
    font-family: 'Space Grotesk', 'Outfit', sans-serif;
    font-weight: 900;
    font-size: 26px;
    letter-spacing: -0.04em;
    display: inline-flex;
    align-items: center;
}

.logo-fresh-container {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.logo-fresh {
    position: relative;
    background: linear-gradient(180deg, #FFFFFF 0%, #E2E8F0 60%, #94A3B8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.8)) drop-shadow(0 0 10px rgba(255, 255, 255, 0.15));
}

.logo-robot-on-fresh {
    position: absolute;
    bottom: 51%;
    left: 49%;
    transform: translateX(-50%);
    height: 1.15em;
    width: auto;
    object-fit: contain;
    pointer-events: none;
    z-index: 10;
    filter: drop-shadow(0 2px 6px rgba(0, 240, 255, 0.5)) drop-shadow(0 0 10px rgba(0, 0, 0, 0.9));
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), filter 0.3s ease;
}

.brand-logo:hover .logo-robot-on-fresh {
    transform: translateX(-50%) translateY(-2px) scale(1.08);
    filter: drop-shadow(0 4px 12px rgba(0, 240, 255, 0.8)) drop-shadow(0 0 14px rgba(168, 85, 247, 0.6));
}

.logo-thread {
    background: linear-gradient(135deg, #00F0FF 0%, #00A3FF 45%, #7000FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 12px rgba(0, 240, 255, 0.6)) drop-shadow(0 2px 4px rgba(0, 0, 0, 0.8));
    margin-left: 1px;
    transition: filter 0.3s ease;
}

.brand-logo:hover .logo-thread {
    filter: drop-shadow(0 0 18px rgba(0, 240, 255, 0.85)) drop-shadow(0 2px 6px rgba(0, 0, 0, 0.9));
}

.nav-mobile-logo { display: none; }

.nav-links { display: flex; gap: 36px; position: relative; z-index: 2; }
.nav-links a { color: var(--text-muted); text-decoration: none; font-size: 14px; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: #FFF; }

.nav-actions {
    position: relative;
    z-index: 105;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.btn-nav-github {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: #E2E8F0;
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 10px 18px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 13px;
    text-decoration: none;
    cursor: pointer;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-nav-github:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
    border-color: rgba(0, 240, 255, 0.45);
    box-shadow: 0 0 18px rgba(0, 240, 255, 0.2);
    transform: translateY(-2px);
}

.btn-nav-glow {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.16) 0%, rgba(0, 240, 255, 0.08) 100%);
    color: #00F0FF;
    border: 1px solid rgba(168, 85, 247, 0.45);
    box-shadow: 0 0 16px rgba(168, 85, 247, 0.25);
    text-shadow: 0 0 8px rgba(168, 85, 247, 0.5);
    padding: 10px 22px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 13px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-nav-glow:hover {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.28) 0%, rgba(0, 240, 255, 0.18) 100%);
    border-color: rgba(0, 240, 255, 0.6);
    box-shadow: 0 0 24px rgba(0, 240, 255, 0.35);
    transform: translateY(-2px);
}

.dropdown-chevron {
    margin-left: 4px;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-actions.active .dropdown-chevron {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    width: 290px;
    background: rgba(10, 14, 20, 0.95);
    border: 1px solid rgba(168, 85, 247, 0.4);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.7), 0 0 25px rgba(168, 85, 247, 0.25);
    border-radius: 16px;
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px) scale(0.96);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 200;
}

.nav-dropdown-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.dropdown-option {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 14px;
    border-radius: 12px;
    text-decoration: none;
    background: transparent;
    transition: all 0.2s ease;
}

.dropdown-option:hover {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.2) 0%, rgba(0, 240, 255, 0.1) 100%);
}

.dropdown-icon-col {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(168, 85, 247, 0.15);
    color: #00F0FF;
    flex-shrink: 0;
    border: 1px solid rgba(168, 85, 247, 0.3);
}

.dropdown-option:hover .dropdown-icon-col {
    background: rgba(0, 240, 255, 0.2);
    border-color: rgba(0, 240, 255, 0.5);
    box-shadow: 0 0 12px rgba(0, 240, 255, 0.3);
}

.dropdown-text-col {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.dropdown-title {
    font-size: 14px;
    font-weight: 700;
    color: #FFF;
    line-height: 1.2;
}

.dropdown-option:hover .dropdown-title {
    color: #00F0FF;
}

.dropdown-subtitle {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 3px;
    font-weight: 500;
}

.dropdown-mobile-nav {
    display: none;
}

/* Hero Section */
.hero-section {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 100vh;
    min-height: 560px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: clamp(60px, 8vh, 90px) 0 clamp(160px, 28vh, 230px);
    box-sizing: border-box;
    width: 100%;
    z-index: 1;
    overflow: hidden;
    will-change: transform;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    min-width: 100vw;
    height: 100%;
    background-color: #05070c;
    background-image: radial-gradient(circle at 50% 35%, rgba(14, 28, 52, 0.5) 0%, rgba(5, 7, 12, 0.95) 75%, #05070c 100%);
    filter: brightness(0.95) contrast(1.05);
    z-index: -1;
    will-change: transform;
}

.hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 0 auto;
    max-width: 1380px;
    width: 100%;
    transform: none;
}

.hero-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 24px;
    border-radius: 40px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(0, 240, 255, 0.3);
    box-shadow: 0 4px 20px rgba(0, 240, 255, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    font-size: 13px;
    color: #E4E4E7;
    margin-bottom: 36px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    letter-spacing: 0.03em;
}

.hero-badge-pill strong {
    color: #FFF;
    font-weight: 700;
}

.pill-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--neon-green);
    box-shadow: 0 0 12px var(--neon-green), 0 0 4px #FFF;
    animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.7; }
    100% { transform: scale(1); opacity: 1; }
}

.hero-title {
    font-size: clamp(56px, min(8.4vw, 11.4vh), 116px);
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.04em;
    margin-bottom: 0;
    color: #FFF;
}

.hero-fresh-wrapper {
    position: relative;
    display: inline-flex;
    align-items: baseline;
}

.hero-thread-gradient {
    background: linear-gradient(135deg, #00F0FF 0%, #00A3FF 50%, #8B5CF6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 16px rgba(0, 240, 255, 0.45));
}

.hero-fresh-robot {
    position: absolute;
    bottom: 36%;
    left: 59%;
    transform: translateX(-50%);
    height: 1.54em;
    width: auto;
    object-fit: contain;
    pointer-events: none;
    z-index: 10;
}

.hero-laser-thread {
    width: 100vw;
    align-self: center;
    position: relative;
    height: 2px;
    margin-top: 3px;
    margin-bottom: clamp(24px, 3.5vh, 32px);
    pointer-events: none;
    overflow: visible;
}

.laser-line-beam {
    position: absolute;
    top: 0;
    left: 0;
    width: 88vw;
    height: 2px;
    background: linear-gradient(90deg, 
        rgba(0, 240, 255, 0.4) 0%, 
        rgba(0, 240, 255, 0.8) 12%, 
        #00F0FF 25%, 
        #FFFFFF 50%, 
        #00F0FF 75%, 
        rgba(0, 240, 255, 0.95) 88%, 
        rgba(0, 240, 255, 0.6) 94%, 
        rgba(0, 240, 255, 0) 100%
    );
    box-shadow: 
        0 0 3px #FFFFFF,
        0 0 8px #00F0FF,
        0 0 18px #00F0FF,
        0 0 36px rgba(0, 240, 255, 0.85),
        0 0 60px rgba(0, 163, 255, 0.5),
        0 0 90px rgba(112, 0, 255, 0.35);
}

.laser-digital-stream {
    position: absolute;
    left: clamp(16px, 4.5vw, 80px);
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    font-weight: 500;
    color: rgba(0, 240, 255, 0.5);
    letter-spacing: 0.2em;
    white-space: nowrap;
    text-shadow: 0 0 8px rgba(0, 240, 255, 0.8);
    pointer-events: none;
    user-select: none;
}

.laser-digital-stream .data-bit {
    opacity: 0.6;
}

.laser-digital-stream .data-dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: #00F0FF;
    box-shadow: 0 0 6px #00F0FF;
}

.hero-robot-mascot {
    display: none;
}

.hero-subtitle {
    font-size: clamp(17px, min(1.8vw, 2.4vh), 21px);
    color: #F1F5F9;
    max-width: 820px;
    margin: 0 auto;
    line-height: 1.55;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.85);
}

@media (max-height: 750px) {
    .hero-title {
        font-size: clamp(44px, 9.8vh, 88px);
        margin-bottom: 0;
    }
    .hero-subtitle {
        font-size: clamp(15px, 2.6vh, 18px);
        line-height: 1.45;
    }
}

/* Decorative Brand Robot Mascot - Wrapper */
.hero-robot-mascot {
    position: absolute;
    left: clamp(16px, 2.5vw, 40px);
    bottom: clamp(-50px, -3.5vh, -25px);
    width: clamp(205px, 20vw, 320px);
    height: auto;
    z-index: 25;
    pointer-events: none;
    animation: floatMascot 4s ease-in-out infinite;
    user-select: none;
}

/* Glow effect that follows the body contour - does NOT touch image pixels */
.hero-robot-mascot::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('assets/mascot-hero.png') no-repeat center / contain;
    filter: blur(10px) brightness(1.1) saturate(1.2);
    opacity: 0.15;
    transform: scale(0.965);
    z-index: -1;
}

/* Mascot image itself - slightly toned down brightness as requested */
.hero-robot-mascot-img {
    display: block;
    width: 100%;
    height: auto;
    filter: brightness(0.92) contrast(0.98);
    position: relative;
    z-index: 1;
    image-rendering: pixelated;
    image-rendering: crisp-edges;
    image-rendering: -webkit-optimize-contrast;
}

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

.hero-cta-group {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 0;
}

.btn-primary-2026 {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.16) 0%, rgba(0, 240, 255, 0.08) 100%);
    color: #00F0FF;
    border: none;
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.25);
    text-shadow: 0 0 8px rgba(168, 85, 247, 0.5);
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-primary-2026:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.28) 0%, rgba(0, 240, 255, 0.18) 100%);
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.35);
    color: #00F0FF;
}

.btn-main-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.win-logo {
    display: inline-block;
    vertical-align: middle;
}

.btn-subtext-glow { font-size: 11px; font-weight: 700; opacity: 0.8; margin-top: 4px; letter-spacing: 0.02em; }

.btn-glass-2026 {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 32px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.16) 0%, rgba(0, 240, 255, 0.08) 100%);
    color: #00F0FF;
    border: none;
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.25);
    text-shadow: 0 0 8px rgba(168, 85, 247, 0.5);
    backdrop-filter: blur(10px);
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-glass-2026:hover { 
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.28) 0%, rgba(0, 240, 255, 0.18) 100%);
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.35);
    color: #00F0FF;
    transform: translateY(-2px);
}

/* Hero Image Section & Scroll Reveal */
.hero-image-section {
    position: relative;
    width: 100%;
    margin-top: 100vh;
    padding: 0;
    background: #000000;
    z-index: 2;
}

.image-section-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100vw;
    max-width: 100vw;
    padding: 0;
}

.reveal-on-scroll {
    opacity: 0;
    transform: translateY(100px) scale(0.95);
    transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-on-scroll.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.delay-1 {
    transition-delay: 0.3s;
}

/* Hero Image Mockup (100% Full-Bleed Edge-to-Edge) */
.hero-image-wrapper {
    position: relative;
    width: 100vw;
    max-width: 100vw;
    margin: 0;
    border-radius: 0;
    padding: 0;
    background: transparent;
    border: none;
    z-index: 1;
}

.hero-image {
    width: 100vw;
    max-width: 100vw;
    height: auto;
    border-radius: 0;
    display: block;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    image-rendering: auto;
}
.translated-image-container {
    position: relative;
    width: 100%;
    display: block;
}


.hero-image-glow {
    display: none;
}

.hero-ticker {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 0;
    background: transparent;
    border: none;
    border-radius: 0;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
    margin: -78px auto 0;
    position: relative;
    z-index: 3;
    max-width: 760px;
    width: 66%;
}

.ticker-item { display: flex; flex-direction: column; align-items: center; flex: 1; }
.t-value {
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: #00F0FF;
    text-shadow: none;
}
.t-label { font-size: 12px; color: var(--text-muted); font-weight: 400; margin-top: 4px; }

/* Unified Global Scrolling Content Wrapper */
.site-content-wrapper {
    position: relative;
    z-index: 2;
    background-color: var(--bg-dark);
    margin-top: 100vh;
    overflow: hidden;
    border-top: 1px solid rgba(0, 240, 255, 0.25);
    box-shadow: 0 -25px 80px rgba(0, 0, 0, 0.95), 0 -1px 30px rgba(0, 240, 255, 0.15);
}

.site-content-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(1000px 700px at 50% 20%, rgba(0, 240, 255, 0.12) 0%, transparent 60%),
        radial-gradient(850px 600px at 15% 45%, rgba(0, 163, 255, 0.09) 0%, transparent 60%),
        radial-gradient(900px 650px at 85% 65%, rgba(139, 92, 246, 0.08) 0%, transparent 60%),
        radial-gradient(1100px 750px at 50% 90%, rgba(0, 240, 255, 0.10) 0%, transparent 65%),
        linear-gradient(180deg, #070a12 0%, #04060c 35%, #05070f 70%, #030408 100%);
    pointer-events: none;
    z-index: 0;
}

/* 2026 SALES BENTO GRID SYSTEM */
.section { 
    padding: 120px 0; 
    position: relative; 
    width: 100%; 
    z-index: 2; 
    background-color: transparent !important; 
}

/* Bento Header (Clean Zero-Frame Showcase Layout - 100vh Pure Text Screen Centered) */
.bento-header-wrapper,
.section-header.bento-header-wrapper {
    position: relative;
    padding: 0 24px;
    height: 100vh !important;
    min-height: 100vh !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    margin-left: auto !important;
    margin-right: auto !important;
    max-width: 960px;
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    z-index: 2;
    box-sizing: border-box;
}

.bento-header-wrapper .section-title {
    margin-bottom: 24px;
}

.bento-header-wrapper::before {
    display: none;
}

.bento-section {
    margin-top: 0; /* Handled by .site-content-wrapper */
    padding-top: 0 !important; /* Full 100vh header handles initial viewport */
    padding-bottom: 140px;
}
.section-header:not(.bento-header-wrapper) { 
    margin-top: 20px;
    margin-bottom: clamp(140px, 18vh, 260px) !important;
    text-align: center; 
}
.section-title { 
    font-family: var(--font-heading); 
    font-size: clamp(34px, 4.2vw, 46px); 
    font-weight: 800; 
    color: #FFFFFF;
    margin-bottom: 20px; 
    min-height: 1.25em;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.95), 0 0 30px rgba(0, 240, 255, 0.2);
    letter-spacing: -0.02em;
}
.section-subtitle { 
    font-size: clamp(17px, 1.8vw, 20px); 
    color: #BAE6FD; 
    font-weight: 500;
    line-height: 1.65;
    max-width: 740px; 
    margin: 0 auto; 
    min-height: 2.8em;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.95), 0 0 20px rgba(0, 0, 0, 0.9);
}

/* 2026 Stamp Impact Headline Animation */
.stamp-title {
    opacity: 1;
    transform: scale(1) translateY(0);
    filter: none;
    transition: transform 0.45s cubic-bezier(0.175, 0.885, 0.32, 1.25), 
                opacity 0.35s ease-out, 
                filter 0.35s ease-out;
    will-change: transform, opacity, filter;
}

.stamp-subtitle {
    opacity: 1;
    transform: scale(1) translateY(0);
    filter: none;
    transition: transform 0.45s cubic-bezier(0.175, 0.885, 0.32, 1.25) 0.15s, 
                opacity 0.35s ease-out 0.15s, 
                filter 0.35s ease-out 0.15s;
    will-change: transform, opacity, filter;
}

.bento-header-wrapper.stamped .stamp-title {
    opacity: 1;
    transform: scale(1) translateY(0);
    filter: none;
}

.bento-header-wrapper.stamped .stamp-subtitle {
    opacity: 1;
    transform: scale(1) translateY(0);
    filter: none;
}

.bento-grid {
    display: grid;
    grid-template-columns: 1.15fr 1.85fr;
    gap: 24px;
    width: 100%;
}

.bento-card {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    opacity: 0;
    transform: translateY(45px) scale(0.95);
    transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1), transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.bento-card.in-view {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.bento-col-2 { 
    grid-column: auto; 
    transition-delay: 0.12s;
}
.bento-col-3 { grid-column: span 3; }
.bento-row-2 { grid-row: span 2; justify-content: space-between; }

/* Session Health UI Mockup Card */
.bento-health-card {
    padding: 28px 28px;
    display: flex;
    flex-direction: column;
}

.session-health-ui {
    margin-top: auto;
    position: relative;
    width: 100%;
    border-radius: 16px;
    padding: 16px;
    background: rgba(14, 16, 22, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.06);
    overflow: hidden;
    color: #FFF;
    font-family: var(--font-sans);
}

/* Blurred Code Background Layer */
.widget-blurred-code {
    position: absolute;
    inset: 0;
    padding: 16px;
    font-family: var(--font-mono);
    font-size: 11px;
    line-height: 1.7;
    color: var(--text-muted);
    filter: blur(3px);
    opacity: 0.22;
    pointer-events: none;
    z-index: 0;
    user-select: none;
}

.widget-main-panel {
    position: relative;
    z-index: 1;
    background: rgba(22, 24, 30, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 14px;
    padding: 16px;
    margin-bottom: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.widget-header {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 6px;
}

.widget-conn {
    font-size: 11px;
    color: #D4D4D8;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
}

.neon-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--neon-green);
    box-shadow: 0 0 8px var(--neon-green);
}

.widget-health-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 8px;
}

.w-label {
    font-family: var(--font-mono);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.12em;
    color: #A1A1AA;
}

.w-stat {
    font-size: 28px;
    font-weight: 800;
    line-height: 1;
    font-family: var(--font-sans);
    color: #FFF;
    margin-top: 4px;
}

.w-conf {
    font-size: 12px;
    font-weight: 700;
    color: #A3E635;
    margin-top: 4px;
}

.w-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.06);
    margin: 10px 0;
}

.widget-grid-2col {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 10px;
    align-items: flex-start;
}

.w-vr {
    width: 1px;
    height: 100%;
    background: rgba(255, 255, 255, 0.06);
}

.w-val {
    font-size: 11px;
    font-weight: 700;
    color: #FFF;
    margin-top: 4px;
    line-height: 1.3;
}

.w-sub {
    font-size: 9px;
    color: #71717A;
}

.w-load-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 6px;
}

.w-load-percent {
    font-size: 14px;
    font-weight: 700;
    color: #FFF;
}

.w-progress-track {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.w-progress-bar {
    height: 100%;
    background: #A1A1AA;
    border-radius: 4px;
}

/* Floating Bottom Dock Bar */
.widget-bottom-dock {
    position: relative;
    z-index: 1;
    background: rgba(26, 26, 28, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 40px;
    padding: 6px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.dock-flame-stack {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
}

.flame-icon {
    font-size: 11px;
}

.flame-val {
    font-size: 9px;
    font-weight: 700;
    color: #FFF;
    margin-top: 2px;
}

.dock-model-stack {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.1;
}

.model-top-line {
    display: flex;
    align-items: center;
    gap: 6px;
}

.spin-svg {
    color: #A1A1AA;
    animation: spin 3s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.sol-name {
    font-size: 12px;
    font-weight: 700;
    color: #FFF;
}

.sol-tag {
    font-size: 11px;
    color: #A1A1AA;
    font-weight: 400;
}

.model-caret {
    font-size: 8px;
    color: #A1A1AA;
    margin-left: 18px;
    margin-top: -2px;
}

.dock-controls {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mic-svg {
    color: #E4E4E7;
    opacity: 0.8;
}

.stop-btn-circle {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stop-sq {
    width: 9px;
    height: 9px;
    background: #000;
    border-radius: 2px;
}

.bento-tag {
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.15em;
    color: #00F0FF;
    background: transparent;
    border: none;
    box-shadow: none;
    text-shadow: none;
    padding: 0;
    border-radius: 0;
    align-self: flex-start;
    margin-bottom: 16px;
}

.bento-card h3 { font-family: var(--font-heading); font-size: 32px; margin-bottom: 16px; line-height: 1.2; }
.bento-card h4 { font-family: var(--font-heading); font-size: 24px; margin-bottom: 16px; line-height: 1.3;}
.bento-card p { font-size: 16px; color: var(--text-muted); margin-bottom: 0; line-height: 1.6; flex-grow: 0;}

.bento-sales-featured {
    padding: 28px 28px;
}

.bento-sales-featured p {
    margin-bottom: 16px;
    flex-grow: 0;
}

/* Bento Edge-to-Edge Image Containers */
.bento-image-container {
    position: relative;
    z-index: 5;
    isolation: isolate;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    margin-top: 16px;
    margin-bottom: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: #0d0f17;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
}
.bento-image,
.bento-video {
    position: relative;
    z-index: 6;
    width: 100%;
    max-height: 540px;
    height: auto;
    display: block;
    object-fit: cover;
    object-position: center;
    border-radius: 16px;
    transform: scale(1.02);
    transition: transform 0.4s ease;
}
.bento-card:hover .bento-image,
.bento-card:hover .bento-video {
    transform: scale(1.04);
}

.bento-health-img-container {
    position: relative;
    z-index: 5;
    isolation: isolate;
    width: 100%;
    flex: 1;
    margin-top: 16px;
    margin-bottom: 16px;
    background: transparent;
    border: none;
    box-shadow: none;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.bento-health-img {
    position: relative;
    z-index: 6;
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: 480px;
    display: block;
    object-fit: contain;
    object-position: center;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
    transform: scale(1.04);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, border-color 0.35s ease;
    transform-origin: center center;
    will-change: transform;
}

.bento-health-card:hover .bento-health-img,
.bento-health-img-container:hover .bento-health-img,
.bento-health-img:hover {
    transform: scale(1.08) !important;
    border-color: rgba(0, 240, 255, 0.45) !important;
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.75), 0 0 30px rgba(0, 240, 255, 0.25) !important;
}

/* Punch Statement Box (Clean, Static) */
.sales-demo-box {
    background: transparent;
    border: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    padding: 16px 0 0;
    margin-top: auto;
    box-shadow: none;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.demo-statement-punch {
    font-family: var(--font-mono);
    font-size: clamp(15px, 1.3vw, 20px);
    font-weight: 800;
    color: #00F0FF;
    letter-spacing: 0.1em;
    text-shadow: 0 0 16px rgba(168, 85, 247, 0.8), 0 0 30px rgba(168, 85, 247, 0.4);
    line-height: 1.35;
    margin: 0;
    padding: 0;
    text-align: center;
}

/* Pricing Section */
.pricing-section {
    padding-top: 60px;
    background-color: transparent !important;
    position: relative;
}

.pricing-section::before {
    display: none;
}

.pricing-section .container {
    position: relative;
    z-index: 2;
}

.pricing-section .section-header {
    margin-top: 60px !important;
    margin-bottom: 64px !important;
    position: relative;
    z-index: 1;
}

.pricing-section .section-title {
    margin-bottom: 36px !important;
}

.pricing-section .section-subtitle {
    margin-top: 24px !important;
    line-height: 1.8 !important;
}

/* Pricing Billing Toggle Switch */
.pricing-billing-switch-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 28px;
    margin-bottom: 8px;
}

.billing-toggle-container {
    display: inline-flex;
    align-items: center;
    padding: 4px;
    border-radius: 999px;
    background: rgba(14, 17, 24, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.billing-toggle-btn {
    padding: 8px 20px;
    border-radius: 999px;
    border: 1px solid transparent;
    background: transparent;
    color: var(--text-muted);
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.25s ease;
}

.billing-toggle-btn:hover:not(.active) {
    color: #FFFFFF;
}

.billing-toggle-btn.active {
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.15) 0%, rgba(168, 85, 247, 0.2) 100%);
    color: #FFFFFF;
    border-color: rgba(0, 240, 255, 0.35);
    box-shadow: 0 0 16px rgba(0, 240, 255, 0.15);
}

.discount-badge {
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 800;
    padding: 2px 7px;
    border-radius: 6px;
    background: rgba(0, 240, 255, 0.18);
    color: #00F0FF;
    letter-spacing: 0.05em;
}

.pricing-billed-note {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: -16px;
    margin-bottom: 24px;
    min-height: 20px;
}

.pricing-trust-badges {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 18px;
    font-size: 12px;
    color: var(--text-subtle);
    gap: 12px;
}

.pricing-card-container { max-width: 920px; margin: 0 auto; position: relative; }
.horizontal-pricing,
.horizontal-pricing:hover,
.pricing-card-2026,
.pricing-card-2026:hover {
    background: rgba(14, 17, 23, 0.7) !important;
    border: 1px solid rgba(255, 255, 255, 0.07) !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
    transform: none !important;
    transition: none !important;
}
.horizontal-pricing {
    display: flex;
    align-items: center;
    gap: 48px;
    padding: 44px 48px;
    border-radius: 24px;
    text-align: left;
    position: relative;
}
.pricing-left {
    flex: 0 0 340px;
    display: flex;
    flex-direction: column;
}
.pricing-divider {
    width: 1px;
    height: 220px;
    background: rgba(255, 255, 255, 0.08);
    align-self: center;
}
.pricing-right {
    flex: 1;
}
.pricing-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.popular-badge-2026 { 
    font-family: var(--font-mono);
    font-size: 10px; 
    font-weight: 800; 
    letter-spacing: 0.12em; 
    color: #00F0FF; 
    background: transparent;
    border: none;
    box-shadow: none;
    text-shadow: 0 0 8px rgba(168, 85, 247, 0.7);
    padding: 0; 
    border-radius: 0;
}
.plan-title { font-family: var(--font-heading); font-size: 26px; margin: 0; line-height: 1; }
.plan-price { display: flex; align-items: flex-end; margin-bottom: 24px; }
.plan-price .currency { font-size: 28px; font-weight: 700; color: var(--neon-green); margin-bottom: 8px; }
.plan-price .amount { font-size: 64px; font-weight: 800; font-family: var(--font-mono); color: #FFF; line-height: 0.9; }
.plan-price .period { font-size: 16px; color: var(--text-muted); margin-left: 8px; margin-bottom: 8px; }
.plan-features { list-style: none; text-align: left; display: flex; flex-direction: column; gap: 14px; margin: 0; padding: 0; }
.plan-features li { font-size: 14px; color: var(--text-main); display: flex; align-items: center; gap: 12px; }
.plan-features li svg { flex-shrink: 0; }
.btn-full { width: 100%; }

/* FAQ Section Full-Width Background Overlay */
.faq-section {
    position: relative;
    overflow: hidden;
}

.faq-section::before,
.faq-section::after {
    display: none;
}

.faq-section .container {
    position: relative;
    z-index: 2;
}

/* 2-Column FAQ Grid Layout (Modern 2026 Developer Tool Standard) */
.faq-accordion { 
    max-width: 1060px; 
    margin: 0 auto; 
    display: grid; 
    grid-template-columns: repeat(2, 1fr); 
    gap: 18px; 
    align-items: start;
    position: relative;
    z-index: 1;
}
.faq-item { border-radius: 16px; overflow: hidden; }
.faq-question { 
    width: 100%; 
    padding: 22px 24px; 
    background: transparent; 
    border: none; 
    color: #FFF; 
    font-size: 17px; 
    font-weight: 600; 
    text-align: left; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    cursor: pointer; 
}
.faq-icon { font-size: 24px; color: var(--neon-green); transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1); }
.faq-answer { 
    display: none; 
    padding: 0 24px 22px; 
}
.faq-answer p { 
    margin: 0;
    padding: 0;
    font-size: 14px; 
    color: var(--text-muted); 
    line-height: 1.6; 
}
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-item.active .faq-answer { 
    display: block; 
    animation: faqExpand 0.3s ease;
}

@keyframes faqExpand {
    from { opacity: 0; transform: translateY(-4px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Footer */
.footer { 
    padding: 60px 0; 
    border-top: 1px solid rgba(255, 255, 255, 0.05); 
    position: relative; 
    z-index: 2; 
    background-color: transparent !important; 
}
.footer-container { display: flex; justify-content: space-between; align-items: center; }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.footer-left p { font-size: 13px; color: var(--text-subtle); }

.footer-right { display: flex; gap: 32px; }
.footer-right a { font-size: 14px; color: var(--text-muted); text-decoration: none; transition: color 0.2s;}
.footer-right a:hover { color: #FFF; }

/* Comprehensive Multi-Breakpoint Responsive System */
@media (max-width: 1200px) {
    .container { padding: 0 24px; }
    .horizontal-pricing { padding: 36px 32px; gap: 32px; }
    .pricing-left { flex: 0 0 300px; }
}

@media (max-width: 1024px) {
    .bento-grid { grid-template-columns: 1fr; }
    .bento-col-2 { grid-column: span 1; }
    .horizontal-pricing { flex-direction: column; gap: 32px; padding: 36px 28px; }
    .pricing-left { flex: 1; width: 100%; }
    .pricing-divider { display: none; }
}

@media (max-width: 768px) {
    /* Layout & Containers */
    .container { padding: 0 20px; }
    .section { padding: 50px 0; }

    /* Navbar: Balanced Brand Logo on Left, Download CTA on Right */
    .nav-links { display: none !important; }
    .nav-mobile-logo {
        display: inline-flex !important;
        align-items: center;
        text-decoration: none;
    }
    .nav-mobile-logo .logo-text {
        font-size: 20px;
    }
    .nav-container {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        width: 100%;
    }
    .nav-actions {
        gap: 8px;
    }
    .btn-nav-github {
        padding: 8px 12px;
        font-size: 12px;
        border-radius: 10px;
        gap: 6px;
    }
    .btn-nav-glow {
        padding: 8px 14px;
        font-size: 12px;
        border-radius: 10px;
        gap: 6px;
    }

    /* Hero Section: Centered & Dynamic Viewport Height */
    .hero-section {
        height: 100vh;
        height: 100dvh;
        min-height: 520px;
        padding: 70px 16px 20px;
    }
    .hero-container {
        transform: translateY(-15px);
        max-width: 520px;
        padding: 0 8px;
    }
    .hero-title {
        font-size: clamp(28px, 7.5vw, 40px);
        line-height: 1.15;
        letter-spacing: -0.03em;
        margin-bottom: 0;
        text-wrap: balance;
    }
    .text-gradient-animated {
        white-space: normal;
    }
    .laser-digital-stream {
        display: none;
    }
    .laser-line-beam {
        width: 100vw;
        background: linear-gradient(90deg, 
            rgba(0, 240, 255, 0.2) 0%, 
            #00F0FF 25%, 
            #FFFFFF 50%, 
            #00F0FF 75%, 
            rgba(0, 240, 255, 0.2) 100%
        );
    }
    .hero-fresh-robot {
        height: 1.35em;
    }
    .hero-subtitle {
        font-size: clamp(14px, 3.8vw, 16px);
        line-height: 1.55;
        max-width: 480px;
        margin: 0 auto;
        text-wrap: balance;
    }
    .hero-robot-mascot { display: none !important; }

    /* Bento Header: 2nd Page Showcase (Matching Desktop 100vh) */
    .bento-header-wrapper,
    .section-header.bento-header-wrapper {
        height: 100vh !important;
        height: 100dvh !important;
        min-height: 100vh !important;
        min-height: 100dvh !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        text-align: center !important;
        padding: 0 20px !important;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
        margin-left: auto !important;
        margin-right: auto !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    .bento-header-wrapper .section-title {
        margin-bottom: 20px !important;
    }

    /* Mobile Dropdown Navigation Links */
    .dropdown-mobile-nav {
        display: flex;
        flex-direction: column;
        gap: 2px;
        margin-top: 4px;
        padding-top: 6px;
    }
    .dropdown-nav-divider {
        height: 1px;
        background: rgba(255, 255, 255, 0.08);
        margin: 4px 6px 6px;
    }
    .dropdown-nav-link {
        display: block;
        padding: 8px 12px;
        border-radius: 8px;
        color: var(--text-muted);
        text-decoration: none;
        font-size: 13px;
        font-weight: 500;
        transition: all 0.2s ease;
    }
    .dropdown-nav-link:hover,
    .dropdown-nav-link:active {
        color: #00F0FF;
        background: rgba(0, 240, 255, 0.08);
    }

    /* Section Typography */
    .section-title {
        font-size: clamp(24px, 6.2vw, 32px) !important;
        line-height: 1.2 !important;
        margin-bottom: 14px !important;
        text-wrap: balance;
    }
    .section-subtitle {
        font-size: clamp(14px, 3.8vw, 16px) !important;
        line-height: 1.55 !important;
        max-width: 520px !important;
        margin-bottom: 0 !important;
        text-wrap: balance;
    }

    /* Bento Grid & Cards */
    .bento-section {
        padding-top: 0 !important;
        padding-bottom: 60px;
    }
    .bento-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .bento-col-2,
    .bento-col-3 {
        grid-column: span 1;
    }
    .bento-card {
        padding: 26px 20px;
        border-radius: 20px;
    }
    .bento-card h3 {
        font-size: 23px;
        margin-bottom: 12px;
        line-height: 1.25;
    }
    .bento-card h4 {
        font-size: 20px;
        margin-bottom: 12px;
        line-height: 1.3;
    }
    .bento-card p {
        font-size: 14.5px;
        line-height: 1.55;
    }
    .bento-health-card,
    .bento-sales-featured {
        padding: 26px 20px;
    }
    .bento-image-container,
    .bento-health-img-container {
        margin-top: 14px;
        margin-bottom: 14px;
        border-radius: 14px;
    }
    .bento-health-img {
        transform: none !important;
        max-height: 380px;
    }
    .bento-health-img:hover {
        transform: none !important;
    }
    .bento-video {
        transform: none !important;
        border-radius: 14px;
    }
    .bento-card:hover .bento-video {
        transform: none !important;
    }
    .demo-statement-punch {
        font-size: clamp(11.5px, 3.2vw, 13px);
        letter-spacing: 0.05em;
        line-height: 1.4;
    }

    /* Pricing Section */
    .pricing-section {
        padding-top: 30px;
        padding-bottom: 60px;
    }
    .pricing-section .section-header {
        margin-top: 10px !important;
        margin-bottom: 32px !important;
    }
    .pricing-section .section-title {
        margin-bottom: 16px !important;
    }
    .pricing-section .section-subtitle {
        margin-top: 0 !important;
        line-height: 1.6 !important;
    }
    .pricing-billing-switch-wrapper {
        margin-top: 22px;
        margin-bottom: 4px;
    }
    .billing-toggle-btn {
        padding: 7px 16px;
        font-size: 13px;
    }
    .horizontal-pricing {
        padding: 28px 20px;
        border-radius: 20px;
        gap: 24px;
    }
    .plan-title {
        font-size: 22px;
    }
    .plan-price {
        margin-bottom: 18px;
    }
    .plan-price .amount {
        font-size: 48px;
    }
    .plan-price .currency {
        font-size: 24px;
        margin-bottom: 6px;
    }
    .plan-price .period {
        font-size: 14px;
        margin-bottom: 6px;
    }
    .pricing-billed-note {
        font-size: 12.5px;
        margin-top: -10px;
        margin-bottom: 20px;
    }
    .plan-features {
        gap: 12px;
    }
    .plan-features li {
        font-size: 13.5px;
        gap: 10px;
    }

    /* FAQ Section: Single column clean stack */
    .faq-section {
        padding-top: 30px;
        padding-bottom: 70px;
    }
    .faq-accordion {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .faq-item {
        border-radius: 14px;
    }
    .faq-question {
        font-size: 15px;
        padding: 16px 18px;
        line-height: 1.35;
    }
    .faq-icon {
        font-size: 20px;
    }
    .faq-answer {
        padding: 0 18px 18px;
    }
    .faq-answer p {
        font-size: 13.5px;
        line-height: 1.55;
    }

    /* Footer */
    .footer {
        padding: 44px 0;
    }
    .footer-container {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    .footer-logo {
        justify-content: center;
    }
    .footer-right {
        gap: 24px;
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero-container { padding: 0 4px; }
    .hero-title {
        font-size: clamp(26px, 7.8vw, 32px);
    }
    .hero-subtitle {
        font-size: 14px;
    }
    .btn-text-platform {
        display: none;
    }
    .bento-card {
        padding: 22px 16px;
    }
    .bento-health-card,
    .bento-sales-featured {
        padding: 22px 16px;
    }
    .horizontal-pricing {
        padding: 24px 16px;
    }
    .nav-dropdown-menu {
        width: calc(100vw - 32px);
        max-width: 290px;
        right: 0;
    }
}

/* 4K Ultra-Wide Monitors & Large High-Res Displays */
@media (min-width: 2200px) {
    .container { max-width: 1600px; }
    .hero-title { font-size: 80px; }
    .hero-subtitle { font-size: 24px; max-width: 900px; }
    .hero-robot-mascot { width: 325px; left: 60px; bottom: -35px; }
}

/* ==========================================================================
   2026 OPTIONAL MICRO-OPTIMIZATIONS BLOCK (EASILY REMOVABLE IF NEEDED)
   ========================================================================== */

/* 1. Mouse Spotlight Glow on Glassmorphic Cards (Subtle & Tight) */
.glass-2026::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(260px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(0, 240, 255, 0.06) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.25s ease;
    pointer-events: none;
    z-index: 2;
}
.glass-2026:hover::after {
    opacity: 1;
}
.glass-2026:has(.bento-image-container:hover)::after,
.glass-2026:has(.bento-health-img-container:hover)::after,
.glass-2026:has(img:hover)::after {
    opacity: 0 !important;
}

/* 2. Scroll-Adaptive Navbar */
.navbar {
    transition: background 0.4s ease, backdrop-filter 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}
.navbar.navbar-scrolled {
    background: rgba(5, 7, 10, 0.72) !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    border-bottom: none !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 240, 255, 0.05) !important;
}

/* 3. Cyber-Neon Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #05070a;
}
::-webkit-scrollbar-thumb {
    background: rgba(0, 240, 255, 0.22);
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}
::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 240, 255, 0.45);
    box-shadow: 0 0 12px rgba(0, 240, 255, 0.5);
}

/* 4. Accessibility Focus-Visible & Button Micro-Interactions */
:focus-visible {
    outline: 2px solid #00F0FF;
    outline-offset: 3px;
    border-radius: 4px;
}

button:focus-visible, 
a:focus-visible {
    outline: 2px solid #00F0FF;
    outline-offset: 3px;
}

.btn:active,
.btn-nav-glow:active,
.btn-nav-github:active,
.btn-primary-2026:active,
.billing-toggle-btn:active {
    transform: scale(0.975);
    transition: transform 0.1s ease;
}

/* ==========================================================================
   MOBILE & PERFORMANCE FIXES (2026-09-25)
   ========================================================================== */

/* Desktop: the one-line tagline must never be wider than the screen
   (at 1440 px it was 1550 px wide and clipped on both sides). */
@media (min-width: 769px) {
    .text-gradient-animated { font-size: min(1em, 6vw); }
}

/* Shown only on phones, under the download button. */
.mobile-only-note { display: none; }

@media (max-width: 768px) {
    /* Hero: centre the content. The desktop mascot that used to fill the
       space above it is hidden, which left the top half of the screen empty. */
    .hero-section {
        justify-content: center;
        padding: 72px 16px 32px;
    }
    .hero-container { transform: none; }

    /* Section intro: a short statement instead of a full, mostly empty screen. */
    .bento-header-wrapper,
    .section-header.bento-header-wrapper {
        height: auto !important;
        min-height: 70vh !important;
        min-height: 70svh !important;
        padding: 72px 20px 40px !important;
    }

    .mobile-only-note {
        display: block;
        margin: 12px 0 0;
        font-size: 12.5px;
        line-height: 1.5;
        color: var(--text-muted);
        text-align: center;
    }

    /* Less GPU work while scrolling on phones: the large blurred halos are
       barely visible behind the hero, and a lighter glass blur looks the same. */
    .halo-container { display: none; }
    .glass-2026 {
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
    }
}

/* Very narrow phones (320-360 px): keep logo and both buttons on one row. */
@media (max-width: 360px) {
    .btn-text-github { display: none; }
    .btn-nav-github { padding: 8px 10px; }
    .nav-mobile-logo .logo-text { font-size: 18px; }
}

/* Respect the system "reduce motion" setting. */
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ==========================================================================
   HERO BEAM AS A LIVE ELECTRIC CURRENT (canvas band, drawn by hero-current.js)
   Layers inside the hero, bottom to top: background, beam, current, text.
   ========================================================================== */
.hero-current {
    position: absolute;
    left: 0;
    width: 100%;
    pointer-events: none;
    z-index: 2;
}
.hero-laser-thread { z-index: 1; }
/* No z-index on the container, so its children share the hero's layers. */
.hero-container { position: relative; }
.hero-title,
.hero-subtitle {
    position: relative;
    z-index: 3;
}
