/* =========================================
   DATARIOT — Dark Futuristic Landing Page
   Inspired by Geist / AURAS brand identity
   ========================================= */

/* === RESET & BASE === */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* --- Light Theme (Default) --- */
    --bg: #ffffff;
    --bg-elevated: #f8fafc;
    --surface: rgba(241, 245, 249, 0.7);
    --surface-2: rgba(226, 232, 240, 0.8);
    --border: rgba(0, 0, 0, 0.08);
    --border-hover: rgba(0, 0, 0, 0.16);

    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-tertiary: #94a3b8;
    --text-accent: #0284c7;

    --accent: #0EA5E9;
    --accent-glow: rgba(14, 165, 233, 0.15);
    --accent-2: #38bdf8;
    --accent-bright: #0284c7;

    --cyan: #06b6d4;
    --cyan-glow: rgba(6, 182, 212, 0.1);

    --blue-1: #0EA5E9;
    --blue-1-glow: rgba(14, 165, 233, 0.15);
    --blue-2: #0EA5E9;
    --blue-2-glow: rgba(14, 165, 233, 0.15);
    --blue-3: #0EA5E9;
    --blue-3-glow: rgba(14, 165, 233, 0.1);

    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Space Grotesk', 'Inter', sans-serif;
    --font-tech: 'JetBrains Mono', 'Oxanium', 'Space Grotesk', monospace;

    --sidebar-width: 72px;
    --sidebar-width-expanded: 240px;

    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
    --transition-smooth: 0.4s var(--ease-out-expo);
}

/* ==== PREMIUM NEON‑GLASS VARIABLES ==== */
:root {
    --bg-gradient: radial-gradient(ellipse at center, #0a0a1a 0%, #020408 70%);
    --glass-bg: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.12);
    --neon-primary: #0EA5E9;
    --neon-glow: rgba(14, 165, 233, 0.3);
    --neon-accent: #8b5cf6;
    --noise-opacity: 0.04;
}

/* ==== BODY NEON HALO ==== */
body {
    position: relative;
    overflow: hidden;
    background: var(--bg-gradient);
}

body::before, body::after {
    content: "";
    position: absolute;
    inset: -20%;
    pointer-events: none;
    z-index: -1;
    background: radial-gradient(circle at 50% 50%, var(--neon-glow), transparent 70%);
    filter: blur(150px);
    opacity: 0.6;
    animation: pulseNeon 6s ease-in-out infinite alternate;
}

body::after {
    transform: rotate(45deg);
}

@keyframes pulseNeon {
    from { opacity: 0.4; }
    to { opacity: 0.8; }
}

/* ==== GLASS‑CARD ==== */
.glass-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(12px) saturate(150%);
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 30px var(--neon-glow);
    transition: var(--transition-smooth);
}
.glass-card:hover {
    box-shadow: 0 0 45px var(--neon-primary);
}

/* ==== NEON BUTTON ==== */
.neon-button {
    background: rgba(255,255,255,0.1);
    color: var(--neon-primary);
    border: 1px solid var(--neon-primary);
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    font-family: var(--font-sans);
    font-weight: 600;
    backdrop-filter: blur(8px);
    transition: transform 0.3s var(--ease-out-expo), box-shadow 0.3s var(--ease-out-expo);
    cursor: pointer;
}
.neon-button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px var(--neon-primary);
}

/* ==== SECTION REVEAL ANIMATION ==== */
.section[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s var(--ease-out-expo), transform 0.6s var(--ease-out-expo);
}
.section[data-animate].visible {
    opacity: 1;
    transform: translateY(0);
}

[data-theme="dark"] {
    --bg: #08090D;
    --bg-elevated: #0C0D12;
    --surface: #0E1017;
    --surface-2: #13151D;
    --border: rgba(217, 228, 255, 0.05);
    --border-hover: rgba(217, 228, 255, 0.10);

    --text-primary: #EEEEF0;
    --text-secondary: #8E90A0;
    --text-tertiary: #55576A;
    --text-accent: #D9E4FF;

    --accent: #D9E4FF;
    --accent-glow: rgba(217, 228, 255, 0.25);
    --accent-2: #EEEEF0;
    --accent-bright: #ffffff;

    --cyan: #D9E4FF;
    --cyan-glow: rgba(217, 228, 255, 0.25);

    --blue-1-glow: rgba(217, 228, 255, 0.15);
    --blue-2-glow: rgba(217, 228, 255, 0.1);
    --blue-3-glow: rgba(217, 228, 255, 0.08);
}

[data-theme="light"] {
    --bg: #ffffff;
    --bg-elevated: #ffffff;
    --surface: #ffffff;
    --surface-2: #f8fafc;
    --border: rgba(0, 0, 0, 0.06);
    --border-hover: rgba(0, 0, 0, 0.12);

    --text-primary: #111827;
    --text-secondary: rgba(17, 24, 39, 0.65);
    --text-tertiary: rgba(17, 24, 39, 0.4);
    --text-accent: #64748b;

    --accent: #64748b;
    --accent-glow: rgba(100, 116, 139, 0.15);
    --accent-2: #475569;
    --accent-bright: #334155;
}

/* === PARTICLE CANVAS === */
.particle-canvas {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.1;
    /* Reduced for light mode */
}

[data-theme="dark"] .particle-canvas {
    opacity: 0.6;
}

/* === FLOATING GRADIENT ORBS === */
.floating-orbs {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.floating-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.35;
    animation: orb-drift 20s ease-in-out infinite;
}

.floating-orb--1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--blue-1-glow), transparent 70%);
    top: 10%;
    left: -5%;
    animation-duration: 25s;
    animation-delay: 0s;
}

.floating-orb--2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--blue-2-glow), transparent 70%);
    top: 50%;
    right: -5%;
    animation-duration: 30s;
    animation-delay: -5s;
}

.floating-orb--3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, var(--blue-3-glow), transparent 70%);
    bottom: 20%;
    left: 30%;
    animation-duration: 22s;
    animation-delay: -10s;
}

.floating-orb--4 {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, var(--accent-glow), transparent 70%);
    top: 30%;
    left: 50%;
    animation-duration: 28s;
    animation-delay: -15s;
}

@keyframes orb-drift {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(80px, -60px) scale(1.15);
    }

    50% {
        transform: translate(-40px, 80px) scale(0.9);
    }

    75% {
        transform: translate(60px, 40px) scale(1.1);
    }
}

html,
body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

html {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--surface-2) transparent;
}

body {
    font-family: var(--font-sans);
    background: var(--bg);
    color: var(--text-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Neon side glow */
body::before,
body::after {
    content: '';
    position: fixed;
    top: 0;
    bottom: 0;
    width: 60px;
    pointer-events: none;
    z-index: 9999;
    background: linear-gradient(to right, var(--accent-glow), transparent);
}
body::before { left: 0; }
body::after { right: 0; background: linear-gradient(to left, var(--accent-glow), transparent); }


::selection {
    background: var(--accent);
    color: white;
}

a {
    color: inherit;
    text-decoration: none;
}

/* === AMBIENT GLOW EFFECTS === */
.ambient-glow {
    position: fixed;
    border-radius: 50%;
    filter: blur(140px);
    pointer-events: none;
    z-index: 0;
    opacity: 0.5;
    transition: transform 0.6s var(--ease-out-expo);
}

.ambient-glow--1 {
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, var(--accent-glow), transparent 70%);
    top: -300px;
    right: -200px;
    animation: float-slow 25s ease-in-out infinite;
}

.ambient-glow--2 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--cyan-glow), transparent 70%);
    bottom: 10%;
    left: -200px;
    animation: float-slow 30s ease-in-out infinite reverse;
}

.ambient-glow--3 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--blue-1-glow), transparent 70%);
    top: 40%;
    right: 15%;
    animation: float-slow 35s ease-in-out infinite;
}

/* Mouse Spotlight Effect */
.mouse-spotlight {
    position: fixed;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.08), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    transform: translate(-50%, -50%);
    filter: blur(80px);
    opacity: 0;
    transition: opacity 1s var(--ease-out-expo);
}

.mouse-spotlight.active {
    opacity: 1;
}

@keyframes float-slow {

    0%,
    100% {
        transform: translate(0, 0);
    }

    33% {
        transform: translate(40px, -30px);
    }

    66% {
        transform: translate(-30px, 40px);
    }
}

/* === REVEAL ANIMATIONS === */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal--stagger {
    transition-delay: calc(var(--i, 0) * 0.1s);
}


/* === GRID OVERLAY === */
.grid-overlay {
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
    background-size: 80px 80px;
    pointer-events: none;
    z-index: 0;
}

/* === LEFT SIDEBAR NAVIGATION === */
.sidebar {
    position: fixed;
    top: 24px;
    left: 24px;
    bottom: 24px;
    width: var(--sidebar-width);
    background: var(--surface);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: none;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 32px 0;
    z-index: 2000;
    transition: width 0.5s var(--ease-out-expo), box-shadow 0.5s;
    overflow: hidden;
}

.sidebar:hover {
    width: var(--sidebar-width-expanded);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
}

.sidebar__logo {
    width: 44px;
    height: 44px;
    background: var(--surface);
    border: 1px solid var(--border-hover);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 64px;
    flex-shrink: 0;
    transition: all 0.3s;
}

.sidebar:hover .sidebar__logo {
    border-color: var(--accent);
    transform: scale(1.05);
}


.sidebar__logo-icon {
    font-size: 16px;
    line-height: 1;
}

.sidebar__nav {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
    width: 100%;
    padding: 0 12px;
}

.sidebar__link {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-tertiary);
    transition: all 0.3s var(--ease-out-expo);
    white-space: nowrap;
    overflow: hidden;
}

.sidebar__link:hover {
    color: var(--text-secondary);
    background: rgba(255, 255, 255, 0.04);
}

.sidebar__link.active {
    color: var(--text-primary);
}

.sidebar__link-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--text-tertiary);
    flex-shrink: 0;
    transition: all 0.3s;
}

.sidebar__link.active .sidebar__link-dot {
    background: var(--accent-2);
    box-shadow: 0 0 8px var(--accent-glow);
}

.sidebar__link-text {
    opacity: 0;
    transition: opacity 0.3s;
}

.sidebar:hover .sidebar__link-text {
    opacity: 1;
}

.sidebar__footer {
    padding-top: 16px;
    border-top: 1px solid var(--border);
    width: calc(100% - 24px);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.sidebar__close {
    display: none;
    position: absolute;
    top: 24px;
    right: 24px;
    background: transparent;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
    z-index: 100;
}

@media (max-width: 768px) {
    .sidebar.mobile-open .sidebar__close {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        border-radius: 12px;
        background: #09090b;
    }
}

.sidebar__theme-icon {
    position: absolute;
    transition: all 0.4s var(--ease-out-expo);
}

[data-theme="dark"] .sidebar__theme-icon--sun {
    opacity: 0;
    transform: rotate(-90deg) scale(0.5);
}

[data-theme="dark"] .sidebar__theme-icon--moon {
    opacity: 1;
    transform: rotate(0) scale(1);
}

[data-theme="light"] .sidebar__theme-icon--sun {
    opacity: 1;
    transform: rotate(0) scale(1);
}

[data-theme="light"] .sidebar__theme-icon--moon {
    opacity: 0;
    transform: rotate(90deg) scale(0.5);
}

.sidebar__version {
    font-size: 10px;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* === MOBILE NAV TOGGLE === */
.mobile-nav-toggle {
    display: none;
    position: fixed;
    top: 24px;
    left: 24px;
    z-index: 30000;
    width: 44px;
    height: 44px;
    background: #ffffff !important;
    border: 1.5px solid #38BDF8;
    border-radius: 50%;
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 0;
    box-shadow: none;
    transition: all 0.3s var(--ease-out-expo);
}

.mobile-nav-toggle:active {
    transform: scale(0.92);
}

.mobile-nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: #0f172a;
    border-radius: 2px;
    transition: all 0.3s;
}

[data-theme="dark"] .mobile-nav-toggle {
    background: #0f172a !important;
    /* Dark surface for dark mode */
    border-color: #38BDF8;
}

[data-theme="dark"] .mobile-nav-toggle span {
    background: var(--text-primary);
}

/* === MAIN CONTENT === */
.main {
    margin-left: var(--sidebar-width);
    position: relative;
    z-index: 1;
}

/* === TOP BRANDING === */
.top-branding {
    position: fixed;
    top: 28px;
    left: calc(var(--sidebar-width) + 48px);
    display: flex;
    align-items: center;
    gap: 32px;
    z-index: 2500;
    transition: all 0.5s var(--ease-out-expo);
    animation: fadeInDown 1s var(--ease-out-expo) both;
}

@media (max-width: 1024px) {
    .top-branding {
        left: calc(var(--sidebar-width) + 24px);
        pointer-events: none;
        /* Prevent blocking elements behind it */
    }

    .top-branding__logo-wrap,
    .top-branding__text {
        pointer-events: auto;
    }
}

@media (max-width: 768px) {
    .top-branding {
        position: relative;
        top: 0;
        left: 0;
        padding: 24px;
        flex-direction: column;
        gap: 16px;
        text-align: center;
        background: var(--surface);
        border-bottom: 1px solid var(--border);
        width: 100%;
    }

    [data-theme="light"] .top-branding {
        background: rgba(255, 255, 255, 0.85);
    }

    .header__links {
        gap: 12px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .header__link {
        font-size: 12px;
    }
}

.header__links {
    display: flex;
    align-items: center;
    gap: 24px;
    pointer-events: auto;
}



.header__link {
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: 500;
    transition: color var(--transition-smooth);
    letter-spacing: 0.5px;
}

.header__link:hover {
    color: var(--text-primary);
}

.header__link--cta {
    background: rgba(14, 165, 233, 0.05);
    color: #0ea5e9;
    padding: 10px 22px;
    border-radius: 12px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.05);
    border: 1px solid rgba(14, 165, 233, 0.2);
    letter-spacing: 0.5px;
    transition: all 0.4s var(--ease-out-expo);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.header__link--cta:hover {
    background: #0ea5e9;
    color: #ffffff;
    transform: translateY(-2px);
    border-color: #0ea5e9;
    box-shadow: 0 10px 25px rgba(14, 165, 233, 0.25);
}

[data-theme="dark"] .header__link--cta {
    background: rgba(56, 189, 248, 0.1);
    color: #38bdf8;
    border-color: rgba(56, 189, 248, 0.2);
}

[data-theme="dark"] .header__link--cta:hover {
    background: #38bdf8;
    color: #020408;
    border-color: #38bdf8;
    box-shadow: 0 10px 25px rgba(56, 189, 248, 0.3);
}

.top-branding__logo-wrap {
    width: 40px;
    height: 40px;
    background: var(--surface);
    border: none;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.top-branding__text {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 900;
    letter-spacing: 4px;
    color: #0EA5E9;
    text-transform: uppercase;
}

[data-theme="light"] .top-branding__text {
    color: #0EA5E9;
}


@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* === SECTIONS === */
.section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 160px 80px;
    position: relative;
    scroll-snap-align: start;
}

@media (max-width: 1024px) {
    .section {
        padding: 120px 32px;
    }

    .section--features {
        min-height: auto;
    }
}

.section__container {
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.section__header {
    margin-bottom: 100px;
}

.section__label {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-weight: 600;
    background: linear-gradient(90deg, var(--accent-2), var(--blue-1), var(--blue-2), var(--accent-2));
    background-size: 300% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient-shift 6s ease-in-out infinite;
}

@keyframes gradient-shift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.section__title {
    font-family: var(--font-display);
    font-size: clamp(40px, 6vw, 68px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--text-primary);
}

.section--manifesto .section__title {
    font-family: var(--font-tech);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 800;
}

.section--manifesto .section__label {
    font-family: var(--font-tech);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.manifesto__letter p {
    font-family: var(--font-sans);
    letter-spacing: -0.01em;
    line-height: 1.7;
    font-size: 16px;
}

/* === HERO === */
.section--hero {
    padding: 0 60px;
    padding-top: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
}

.hero__content {
    max-width: 580px;
    flex-shrink: 0;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    border-radius: 100px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(8px);
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 40px;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 1s var(--ease-out-expo) 0.2s both;
}


.hero__badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #0EA5E9;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

.hero__visual-caption {
    position: absolute;
    bottom: -40px;
    right: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
    animation: fadeInUp 0.8s var(--ease-out-expo) 1.2s both;
}

.hero__caption-author {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

.hero__caption-text {
    font-size: 12px;
    color: var(--text-tertiary);
    font-style: italic;
}

.hero__title {
    font-family: var(--font-display);
    font-size: clamp(64px, 12vw, 160px);
    font-weight: 900;
    letter-spacing: -0.05em;
    line-height: 0.85;
    margin-bottom: 32px;
    animation: fadeInUp 1s var(--ease-out-expo) 0.4s both;
    position: relative;
    perspective: 1000px;
}

.hero__title-line {
    display: flex;
    justify-content: flex-start;
    position: relative;
}

/* Per-letter styles */
.hero__letter {
    display: inline-block;
    position: relative;
    color: var(--text-primary);
    background: linear-gradient(180deg, #fff 0%, var(--accent-bright) 50%, var(--accent) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation:
        letter-entrance 0.8s var(--ease-out-expo) calc(0.5s + var(--i) * 0.06s) both;
    transition: transform 0.4s var(--ease-out-expo), filter 0.4s;
}

@keyframes letter-entrance {
    from {
        opacity: 0;
        transform: translateY(60px) rotateX(-90deg) scale(0.8);
        filter: blur(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0) rotateX(0) scale(1);
        filter: blur(0);
    }
}


.hero__letter:hover {
    transform: translateY(-8px) scale(1.05);
    filter: drop-shadow(0 0 20px var(--accent-glow));
    animation-play-state: paused, paused;
}

/* Glitch pseudo-elements */
.hero__letter::before,
.hero__letter::after {
    content: attr(data-letter);
    position: absolute;
    inset: 0;
    -webkit-text-fill-color: initial;
    opacity: 0;
    pointer-events: none;
}

.hero__letter::before {
    color: var(--cyan);
    animation: glitch-1 4s linear calc(var(--i) * 0.5s) infinite;
}

.hero__letter::after {
    color: #f43f5e;
    animation: glitch-2 4s linear calc(var(--i) * 0.5s + 0.1s) infinite;
}

/* Underline glow */
.hero__title-line::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg,
            transparent,
            var(--accent-2),
            #D9E4FF,
            var(--accent-2),
            transparent);

    background-size: 200% 100%;
    animation: underline-glow 3s ease-in-out infinite;
    border-radius: 2px;
    opacity: 0.6;
}

@keyframes letter-reveal {
    from {
        opacity: 0;
        transform: translateY(40px) rotateX(90deg);
        filter: blur(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0) rotateX(0);
        filter: blur(0);
    }
}

@keyframes letter-gradient {
    0% {
        background-position: 0% 0%;
    }

    50% {
        background-position: 0% 100%;
    }

    100% {
        background-position: 0% 0%;
    }
}

@keyframes glitch-1 {

    0%,
    92%,
    100% {
        opacity: 0;
        transform: translate(0);
    }

    93% {
        opacity: 0.7;
        transform: translate(-2px, -1px);
    }

    94% {
        opacity: 0;
        transform: translate(0);
    }

    96% {
        opacity: 0.4;
        transform: translate(2px, 1px);
    }

    97% {
        opacity: 0;
    }
}

@keyframes glitch-2 {

    0%,
    94%,
    100% {
        opacity: 0;
        transform: translate(0);
    }

    95% {
        opacity: 0.5;
        transform: translate(2px, -2px);
    }

    96% {
        opacity: 0;
    }

    98% {
        opacity: 0.3;
        transform: translate(-1px, 2px);
    }

    99% {
        opacity: 0;
    }
}

@keyframes underline-glow {

    0%,
    100% {
        background-position: -200% 0;
        opacity: 0.4;
    }

    50% {
        background-position: 200% 0;
        opacity: 0.8;
    }
}

.hero__subtitle {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 40px;
    animation: fadeInUp 0.8s var(--ease-out-expo) 0.6s both;
}

.hero__subtitle em {
    color: var(--text-accent);
    font-style: normal;
}

.hero__actions {
    display: flex;
    gap: 12px;
    animation: fadeInUp 0.8s var(--ease-out-expo) 0.8s both;
}

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    font-family: var(--font-sans);
    border: none;
    cursor: pointer;
    transition: all 0.3s var(--ease-out-expo);
    position: relative;
    overflow: hidden;
}

.btn--primary {
    background: var(--accent);
    color: #020408;
    font-weight: 700;
    box-shadow: 0 0 20px var(--accent-glow), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.btn--primary:hover {
    background: var(--accent-2);
    transform: translateY(-2px);
    box-shadow: 0 0 40px var(--accent-glow), 0 8px 30px rgba(0, 0, 0, 0.3);
}

.btn--ghost {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border);
}

.btn--ghost:hover {
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-primary);
    border-color: var(--border-hover);
}

.btn--full {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
}

/* === HERO VISUAL — BRANDED ORB === */
.hero__visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInUp 1s var(--ease-out-expo) 0.6s both;
}

.hero__branded-visual {
    position: relative;
    width: 400px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero__logo-orb {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, var(--surface-2), var(--bg));
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px;
    box-shadow:
        0 0 60px rgba(14, 165, 233, 0.3),
        inset 0 0 30px rgba(255, 255, 255, 0.05);
    z-index: 5;
    animation: orb-float 8s ease-in-out infinite;
    position: relative;
    overflow: visible;
}

.hero__logo-orb::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    padding: 2px;
    background: linear-gradient(135deg, var(--accent), var(--cyan), transparent, var(--accent));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: rotate-cw 10s linear infinite;
}


.hero__logo-main {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
    filter: drop-shadow(0 0 10px rgba(14, 165, 233, 0.5));
}

.hero__logo-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(20px);
    z-index: 1;
    animation: glow-pulse 4s ease-in-out infinite;
}

.hero__tech-ring {
    position: absolute;
    border: 1px solid rgba(14, 165, 233, 0.1);
    border-radius: 50%;
    z-index: 2;
}

.hero__tech-ring--1 {
    width: 280px;
    height: 280px;
    border-width: 1px;
    border-style: dashed;
    animation: rotate-cw 20s linear infinite;
}

.hero__tech-ring--2 {
    width: 360px;
    height: 360px;
    border-width: 1px;
    border-color: rgba(14, 165, 233, 0.1);
    animation: rotate-ccw 30s linear infinite;
}

.hero__tech-node {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 10px var(--accent);
    z-index: 3;
}

.hero__tech-node--1 {
    top: 20%;
    right: 15%;
    animation: node-float 4s ease-in-out infinite;
}

.hero__tech-node--2 {
    bottom: 25%;
    left: 10%;
    background: var(--cyan);
    box-shadow: 0 0 10px var(--cyan);
    animation: node-float 5s ease-in-out infinite -2s;
}

@keyframes orb-float {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-20px) scale(1.05);
    }
}

@keyframes glow-pulse {

    0%,
    100% {
        opacity: 0.5;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

@keyframes rotate-cw {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes rotate-ccw {
    from {
        transform: rotate(360deg);
    }

    to {
        transform: rotate(0deg);
    }
}

/* === HERO VISUAL OPTION 3 — DNA CORE === */
.hero__dna-visual {
    position: relative;
    width: 400px;
    height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
}

.hero__dna-strand {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    transform-style: preserve-3d;
}

.hero__dna-strand--1 {
    animation: dna-rotate 10s linear infinite;
}

.hero__dna-strand--2 {
    animation: dna-rotate 10s linear infinite -5s;
}

.dna-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 15px var(--accent);
}

.hero__dna-strand--2 .dna-dot {
    background: var(--cyan);
    box-shadow: 0 0 15px var(--cyan);
}

.hero__logo-core {
    position: absolute;
    width: 140px;
    height: 140px;
    z-index: 10;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero__logo-core:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 0 30px var(--accent));
}

@keyframes dna-rotate {
    0% {
        transform: rotateY(0deg);
    }

    100% {
        transform: rotateY(360deg);
    }
}

@keyframes node-float {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(10px, -10px);
    }
}


.phone-ui {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 16px;
}

.phone-ui__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0 16px;
}

.phone-ui__time {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-secondary);
}

.phone-ui__logo {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    color: var(--accent-bright);
}

.phone-ui__icons {
    font-size: 8px;
    letter-spacing: 3px;
    color: var(--text-tertiary);
}

.phone-ui__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.phone-ui__card {
    border-radius: 16px;
    padding: 18px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid var(--border);
    transition: all 0.5s;
    animation: card-slide 0.8s var(--ease-out-expo) both;
}

.phone-ui__card--1 {
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.12), rgba(14, 165, 233, 0.03));
    animation-delay: 1s;
}

.phone-ui__card--2 {
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.1), rgba(14, 165, 233, 0.02));
    animation-delay: 1.2s;
}

.phone-ui__card--3 {
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.1), rgba(14, 165, 233, 0.02));
    animation-delay: 1.4s;
}

@keyframes card-slide {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.phone-ui__card-icon {
    font-size: 22px;
}

.phone-ui__card span {
    font-size: 13px;
    font-weight: 500;
    flex: 1;
}

.phone-ui__card small {
    font-size: 10px;
    color: var(--text-tertiary);
}

.phone-ui__bar {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 14px 0 8px;
    border-top: 1px solid var(--border);
    margin-top: auto;
}

.phone-ui__bar-item {
    font-size: 14px;
    color: var(--text-tertiary);
    cursor: pointer;
    transition: color 0.3s;
}

.phone-ui__bar-item.active {
    color: var(--accent-bright);
}

.phone-ui__bar-item--create {
    width: 32px;
    height: 32px;
    background: var(--accent);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    font-weight: 300;
}

/* === SCROLL INDICATOR === */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: fadeInUp 1s var(--ease-out-expo) 1.2s both;
}

.scroll-indicator__line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--accent-2), transparent);
    position: relative;
    overflow: hidden;
}

.scroll-indicator__line::after {
    content: '';
    position: absolute;
    top: -100%;
    width: 100%;
    height: 40%;
    background: var(--text-primary);
    opacity: 0.5;
    animation: scroll-line 2s ease-in-out infinite;
}

@keyframes scroll-line {
    0% {
        top: -40%;
    }

    100% {
        top: 120%;
    }
}

/* === MANIFESTO SECTION === */
.section--manifesto {
    padding: 40px 60px 20px;
}

/* Gradient mesh dividers removed for seamless layout */

.manifesto__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: flex-start;
}

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

.manifesto__opening {
    font-size: 22px;
    font-family: var(--font-display);
    color: var(--text-primary);
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 28px;
    letter-spacing: -0.5px;
}

.manifesto__letter p {
    margin-bottom: 24px;
}

.manifesto__letter strong {
    color: var(--accent-bright);
    font-weight: 600;
}

.manifesto__signature {
    margin-top: 48px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.manifesto__sig-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #0ea5e9, transparent);
    border-radius: 2px;
}

.manifesto__signature span {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #0ea5e9;
}

.manifesto__values {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    perspective: 1500px;
}

.value-card {
    padding: 30px 32px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.7) 0%, rgba(248, 250, 252, 0.8) 100%);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 24px;
    transition: all 0.5s var(--ease-out-expo);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.015), inset 0 1px 0 rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    transform-style: preserve-3d;
    will-change: transform;
}

[data-theme="dark"] .value-card {
    background: linear-gradient(135deg, rgba(10, 15, 25, 0.45) 0%, rgba(5, 8, 15, 0.5) 100%);
    border: 1px solid rgba(255, 255, 255, 0.04);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

/* Hiding outdated technical brackets that float awkwardly on rounded cards */
.value-card::before,
.value-card::after {
    display: none !important;
}

.value-card__icon-svg {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    margin-bottom: 2px;
    transition: all 0.4s var(--ease-out-expo);
    position: relative;
    transform: translateZ(30px);
}

.card-glare {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 10;
    opacity: 0;
    background: radial-gradient(circle at var(--x) var(--y), rgba(255, 255, 255, 0.1) 0%, transparent 60%);
    transition: opacity 0.3s ease;
}

.value-card__text {
    transition: transform 0.2s ease-out;
    pointer-events: none;
    width: 100%;
}

/* Multi-colored glowing icons in default states */
.value-card:nth-child(1) .value-card__icon-svg {
    color: #0ea5e9;
    background: rgba(14, 165, 233, 0.05);
    border: 1px solid rgba(14, 165, 233, 0.1);
}

[data-theme="dark"] .value-card:nth-child(1) .value-card__icon-svg {
    color: #38bdf8;
    background: rgba(56, 189, 248, 0.08);
    border-color: rgba(56, 189, 248, 0.15);
}

.value-card:nth-child(2) .value-card__icon-svg {
    color: #0d9488;
    background: rgba(20, 184, 166, 0.05);
    border: 1px solid rgba(20, 184, 166, 0.1);
}

[data-theme="dark"] .value-card:nth-child(2) .value-card__icon-svg {
    color: #2dd4bf;
    background: rgba(45, 212, 191, 0.08);
    border-color: rgba(45, 212, 191, 0.15);
}

.value-card:nth-child(3) .value-card__icon-svg {
    color: #8b5cf6;
    background: rgba(168, 85, 247, 0.05);
    border: 1px solid rgba(168, 85, 247, 0.1);
}

[data-theme="dark"] .value-card:nth-child(3) .value-card__icon-svg {
    color: #c084fc;
    background: rgba(192, 132, 252, 0.08);
    border-color: rgba(192, 132, 252, 0.15);
}

/* Premium multi-color hover dynamics */
.value-card:nth-child(1):hover {
    transform: translateY(-8px) scale(1.01) !important;
    border-color: rgba(14, 165, 233, 0.35);
    box-shadow: 0 25px 50px rgba(14, 165, 233, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

[data-theme="dark"] .value-card:nth-child(1):hover {
    border-color: rgba(56, 189, 248, 0.5);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35), 0 0 40px rgba(14, 165, 233, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.value-card:nth-child(1):hover .value-card__icon-svg {
    background: rgba(14, 165, 233, 0.12);
    border-color: rgba(14, 165, 233, 0.3);
    transform: scale(1.05) translateY(-2px) translateZ(30px);
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.18);
}

[data-theme="dark"] .value-card:nth-child(1):hover .value-card__icon-svg {
    background: rgba(56, 189, 248, 0.18);
    border-color: rgba(56, 189, 248, 0.4);
    box-shadow: 0 4px 20px rgba(56, 189, 248, 0.3);
}

.value-card:nth-child(2):hover {
    transform: translateY(-8px) scale(1.01) !important;
    border-color: rgba(20, 184, 166, 0.35);
    box-shadow: 0 25px 50px rgba(20, 184, 166, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

[data-theme="dark"] .value-card:nth-child(2):hover {
    border-color: rgba(45, 212, 191, 0.5);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35), 0 0 40px rgba(20, 184, 166, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.value-card:nth-child(2):hover .value-card__icon-svg {
    background: rgba(20, 184, 166, 0.12);
    border-color: rgba(20, 184, 166, 0.3);
    transform: scale(1.05) translateY(-2px) translateZ(30px);
    box-shadow: 0 4px 15px rgba(20, 184, 166, 0.18);
}

[data-theme="dark"] .value-card:nth-child(2):hover .value-card__icon-svg {
    background: rgba(45, 212, 191, 0.18);
    border-color: rgba(45, 212, 191, 0.4);
    box-shadow: 0 4px 20px rgba(45, 212, 191, 0.3);
}

.value-card:nth-child(3):hover {
    transform: translateY(-8px) scale(1.01) !important;
    border-color: rgba(168, 85, 247, 0.35);
    box-shadow: 0 25px 50px rgba(168, 85, 247, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

[data-theme="dark"] .value-card:nth-child(3):hover {
    border-color: rgba(192, 132, 252, 0.5);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35), 0 0 40px rgba(168, 85, 247, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.value-card:nth-child(3):hover .value-card__icon-svg {
    background: rgba(168, 85, 247, 0.12);
    border-color: rgba(168, 85, 247, 0.3);
    transform: scale(1.05) translateY(-2px) translateZ(30px);
    box-shadow: 0 4px 15px rgba(168, 85, 247, 0.18);
}

[data-theme="dark"] .value-card:nth-child(3):hover .value-card__icon-svg {
    background: rgba(192, 132, 252, 0.18);
    border-color: rgba(192, 132, 252, 0.4);
    box-shadow: 0 4px 20px rgba(192, 132, 252, 0.3);
}

.value-card:nth-child(4):hover {
    transform: translateY(-8px) scale(1.01) !important;
    border-color: rgba(14, 165, 233, 0.35);
    box-shadow: 0 25px 50px rgba(14, 165, 233, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

[data-theme="dark"] .value-card:nth-child(4):hover {
    border-color: rgba(56, 189, 248, 0.5);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35), 0 0 40px rgba(14, 165, 233, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.value-card:nth-child(4):hover .value-card__icon-svg {
    background: rgba(14, 165, 233, 0.12);
    border-color: rgba(14, 165, 233, 0.3);
    transform: scale(1.05) translateY(-2px) translateZ(30px);
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.18);
}

[data-theme="dark"] .value-card:nth-child(4):hover .value-card__icon-svg {
    background: rgba(56, 189, 248, 0.18);
    border-color: rgba(56, 189, 248, 0.4);
    box-shadow: 0 4px 20px rgba(56, 189, 248, 0.3);
}

/* Hover transform handled by JS for 3D tilt */

.card-icon-3d,
.value-card__icon-3d {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    position: relative;
    transform-style: preserve-3d;
    transform: translateZ(40px);
    pointer-events: none;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Premium Layered 3D Icons */
.icon-3d-layers {
    position: relative;
    width: 48px;
    height: 48px;
    transform-style: preserve-3d;
    transition: transform 0.6s var(--ease-out-expo);
}

.value-card:hover .icon-3d-layers {
    transform: translateZ(20px) rotateX(10deg) rotateY(10deg);
}

.icon-3d-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    transition: all 0.4s var(--ease-out-expo);
}

.icon-3d-svg--main {
    color: #0EA5E9;
    z-index: 2;
    filter: drop-shadow(0 4px 12px rgba(14, 165, 233, 0.3));
}

.icon-3d-svg--shadow {
    color: rgba(14, 165, 233, 0.2);
    transform: translateZ(-10px) translateY(4px) translateX(4px);
    z-index: 1;
    filter: blur(1px);
}

.icon-3d-glass {
    position: absolute;
    width: 72px;
    height: 72px;
    background: rgba(14, 165, 233, 0.05);
    border: 1px solid rgba(14, 165, 233, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transform: translateZ(-20px);
    z-index: 0;
}

[data-theme="dark"] .icon-3d-glass {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.1);
}

/* Icon-specific colors */
[data-icon="logic"] .icon-3d-svg--main {
    color: #0EA5E9;
}

[data-icon="logic"] .icon-3d-svg--shadow {
    color: rgba(14, 165, 233, 0.3);
}

[data-icon="debate"] .icon-3d-svg--main {
    color: #20b8a6;
}

[data-icon="debate"] .icon-3d-svg--shadow {
    color: rgba(32, 184, 166, 0.3);
}

[data-icon="debate"] .icon-3d-glass {
    background: rgba(32, 184, 166, 0.05);
    border-color: rgba(32, 184, 166, 0.1);
}

[data-icon="accountability"] .icon-3d-svg--main {
    color: #A855F7;
}

[data-icon="accountability"] .icon-3d-svg--shadow {
    color: rgba(168, 85, 247, 0.3);
}



[data-icon="truth"] .cube-3d__face {
    background: rgba(244, 63, 94, 0.2);
    color: var(--rose);
}

@keyframes cube-float {

    0%,
    100% {
        transform: translateY(0) rotateX(0deg) rotateY(0deg);
    }

    50% {
        transform: translateY(-15px) rotateX(180deg) rotateY(180deg);
    }
}

.value-card,
.feature-card,
.advantage-card {
    transform-style: preserve-3d;
    will-change: transform;
    transition: transform 0.15s ease-out, box-shadow 0.4s ease;
}

.value-card__text {
    flex-grow: 1;
    transform-style: preserve-3d;
    transform: translateZ(20px);
}

.value-card:nth-child(4) .value-card__icon {
    color: var(--rose);
    background: rgba(244, 63, 94, 0.1);
}

.value-card__text {
    flex-grow: 1;
}

.value-card h4 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.value-card p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 0;
}


/* === ADVANTAGES SECTION — ORBITAL ACCELERATOR === */
.section--advantages {
    padding: 200px 60px;
    background: var(--bg);
    perspective: 2000px;
    overflow: hidden;
    position: relative;
}

/* Enforce dark text for section header elements on white background */
.section--advantages .section__label {
    color: var(--text-secondary);
}

.section--advantages .section__title {
    color: var(--text-primary);
}

.advantages-orbital {
    position: relative;
    max-width: 1200px;
    margin: 80px auto;
    height: 700px;
    display: flex;
    justify-content: center;
    align-items: center;
    transform-style: preserve-3d;
}

/* === 3D VIBRANT CORE (USER REQUEST) === */
.orbital-core.core-3d {
    position: absolute;
    width: 220px;
    height: 220px;
    background: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none;
    z-index: 10;
    transform-style: preserve-3d;
}

.gyroscope {
    position: absolute;
    inset: -30px;
    transform-style: preserve-3d;
    animation: gyro-tumble 15s linear infinite;
    will-change: transform;
}

@media (max-width: 768px) {
    .gyro-ring.rz {
        display: none;
    }
}

.gyro-ring {
    position: absolute;
    inset: 0;
    border: 2px solid transparent;
    border-radius: 50%;
}

.gyro-ring.rx {
    border-color: rgba(14, 165, 233, 0.6);
    transform: rotateX(60deg);
    animation: spin-ring-x 8s linear infinite;
}

.gyro-ring.ry {
    border-top: 2px solid #a855f7;
    border-bottom: 2px solid #a855f7;
    transform: rotateY(60deg);
    animation: spin-ring-y 12s linear infinite;
}

.gyro-ring.rz {
    border-left: 2px dashed #14b8a6;
    border-right: 2px dashed #14b8a6;
    transform: rotateZ(45deg);
    animation: spin-ring-z 10s linear infinite;
}

.gyro-sphere {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 160px;
    height: 160px;
    margin: -80px 0 0 -80px;
    border-radius: 50%;
    /* Solid Brand Blue radial gradient */
    background: radial-gradient(circle at 30% 30%, #38bdf8, #0ea5e9, #0284c7);
    box-shadow: 0 0 60px rgba(14, 165, 233, 0.6), inset -10px -10px 30px rgba(0, 0, 0, 0.2);
    transform: translateZ(0);
    /* Anchor in center of gyro */
}

@keyframes gyro-tumble {
    0% {
        transform: rotateX(0deg) rotateY(0deg);
    }

    100% {
        transform: rotateX(360deg) rotateY(360deg);
    }
}

@keyframes spin-ring-x {
    100% {
        transform: rotateX(60deg) rotateZ(360deg);
    }
}

@keyframes spin-ring-y {
    100% {
        transform: rotateY(60deg) rotateZ(-360deg);
    }
}

@keyframes spin-ring-z {
    100% {
        transform: rotateZ(45deg) rotateX(360deg);
    }
}

@keyframes gradient-shift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.orbital-core h3 {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 800;
    color: #fff;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    /* Readable against gradient sphere */
    z-index: 5;
    position: relative;
    /* Above gyro */
}

.orbital-core__glow {
    position: absolute;
    inset: -20px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.4) 0%, transparent 60%);
    animation: core-pulse 4s ease-in-out infinite;
    z-index: -1;
}

@keyframes core-pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.6;
    }

    50% {
        transform: scale(1.3);
        opacity: 1;
    }
}

.orbital-ring {
    position: absolute;
    width: 850px;
    height: 850px;
    border: 2px dashed rgba(14, 165, 233, 0.3);
    /* Datariot Blue ring */
    border-radius: 50%;
    transform-style: preserve-3d;
    transform: rotateX(60deg) rotateZ(0deg);
    /* GSAP will animate rotateZ */
}

.orbital-node {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 320px;
    padding: 30px;
    background: var(--surface);
    border: 1px solid var(--border);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    transform-style: preserve-3d;
    transition: all 0.3s ease;
}

/* Distribute nodes around the ring. 
   Counter-rotate them so they face the camera correctly while the ring rotates. */
.on--1 {
    transform: translate(-50%, -50%) rotateZ(0deg) translateX(425px) rotateZ(0deg) rotateX(-60deg);
}

.on--2 {
    transform: translate(-50%, -50%) rotateZ(60deg) translateX(425px) rotateZ(-60deg) rotateX(-60deg);
}

.on--3 {
    transform: translate(-50%, -50%) rotateZ(120deg) translateX(425px) rotateZ(-120deg) rotateX(-60deg);
}

.on--4 {
    transform: translate(-50%, -50%) rotateZ(180deg) translateX(425px) rotateZ(-180deg) rotateX(-60deg);
}

.on--5 {
    transform: translate(-50%, -50%) rotateZ(240deg) translateX(425px) rotateZ(-240deg) rotateX(-60deg);
}

.on--6 {
    transform: translate(-50%, -50%) rotateZ(300deg) translateX(425px) rotateZ(-300deg) rotateX(-60deg);
}

.orbital-node h4 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.orbital-node p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.advantage-card__number {
    position: absolute;
    top: -20px;
    right: 20px;
    font-family: 'Oxanium', monospace;
    font-size: 50px;
    font-weight: 800;
    color: rgba(14, 165, 233, 0.15);
}

@media (max-width: 1024px) {
    .advantages-orbital {
        height: auto;
        flex-direction: column;
        gap: 40px;
        margin: 40px auto;
        transform: none !important;
    }

    .orbital-core {
        position: relative;
        margin-bottom: 30px;
        transform: scale(0.7);
        /* Shrink core on mobile to prevent overflow */
    }

    .orbital-core.core-3d {
        width: 160px;
        height: 160px;
    }

    .gyro-sphere {
        width: 120px;
        height: 120px;
        margin: -60px 0 0 -60px;
    }

    .orbital-ring {
        position: relative;
        width: 100%;
        height: auto;
        border: none;
        transform: none !important;
        display: flex;
        flex-direction: column;
        gap: 24px;
    }

    .orbital-node {
        position: relative;
        top: auto;
        left: auto;
        transform: none !important;
        width: 100%;
    }
}


/* === FEATURES SECTION — TECHNICAL MODULAR === */
.section--features {
    padding: 140px 60px;
    position: relative;
    overflow: hidden;
}

/* === 3D FEATURES REDESIGN — NO BORDERS === */
.section--3d-features {
    perspective: 2000px;
    padding: 120px 60px;
}

/* Big ambient glow behind the whole section */
.feature-section-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70vw;
    height: 70vw;
    background: radial-gradient(ellipse at center,
            rgba(14, 165, 233, 0.08) 0%,
            rgba(20, 184, 166, 0.04) 40%,
            transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.feature__title--3d {
    font-family: var(--font-display);
    font-size: clamp(48px, 6vw, 84px);
    font-weight: 900;
    line-height: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transform-style: flat !important;
}

.text-layer {
    position: relative;
    display: block;
    color: var(--text-primary);
    transform: none !important;
}

.text-layer--accent {
    color: var(--accent-bright);
    transform: none !important;
    text-shadow: 0 10px 30px var(--accent-glow);
}

.text-layer::before {
    content: attr(data-text);
    position: absolute;
    inset: 0;
    color: rgba(255, 255, 255, 0.05);
    transform: translateZ(-20px) translateY(5px);
    filter: blur(4px);
}

/* === FEATURES SECTION — TECHNICAL MATRIX (BENTO) === */
.section--features {
    padding: 120px 60px;
    background: radial-gradient(circle at 0% 0%, rgba(14, 165, 233, 0.05), transparent 50%);
}

.features__matrix {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 240px;
    gap: 24px;
    margin-top: 80px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* === FEATURES SECTION — HOLOGRAPHIC FRAGMENTS (WHITE LIGHT AESTHETIC) === */
.section--features {
    padding: 160px 60px;
    background: var(--bg);
    position: relative;
    overflow: hidden;
}

/* 3D Technical Grid Background (Adapted for White) */
.section--features::before {
    content: '';
    position: absolute;
    inset: -100%;
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    transform: perspective(1000px) rotateX(60deg) translateZ(-200px);
    pointer-events: none;
    opacity: 1;
}

.features__fragments {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 80px auto 0;
}

.feature-fragment {
    position: relative;
    padding: 24px 20px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(248, 250, 252, 0.75));
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.015), inset 0 1px 0 rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    min-height: 380px;
    overflow: hidden;
}

[data-theme="dark"] .feature-fragment {
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.55), rgba(8, 12, 24, 0.6));
    border: 1px solid rgba(255, 255, 255, 0.04);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

.fragment-glow {
    position: absolute;
    inset: -50px;
    pointer-events: none;
    z-index: 0;
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.5s ease;
    transform: scale(0.9);
}

.feature-fragment:hover .fragment-glow {
    opacity: 0.15;
    transform: scale(1.1);
}

.glow--argue {
    background: radial-gradient(circle at center, rgba(239, 68, 68, 0.45), transparent 60%);
}

.glow--respond {
    background: radial-gradient(circle at center, rgba(99, 102, 241, 0.45), transparent 60%);
}

.glow--vote {
    background: radial-gradient(circle at center, rgba(16, 185, 129, 0.45), transparent 60%);
}

.feature-fragment--argue:hover {
    transform: translateY(-8px);
    border-color: rgba(239, 68, 68, 0.35);
    box-shadow: 0 20px 40px rgba(239, 68, 68, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.feature-fragment--respond:hover {
    transform: translateY(-8px);
    border-color: rgba(99, 102, 241, 0.35);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.feature-fragment--vote:hover {
    transform: translateY(-8px);
    border-color: rgba(16, 185, 129, 0.35);
    box-shadow: 0 20px 40px rgba(16, 185, 129, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

[data-theme="dark"] .feature-fragment--argue:hover {
    border-color: rgba(239, 68, 68, 0.45);
    box-shadow: 0 20px 40px rgba(239, 68, 68, 0.15), 0 0 25px rgba(239, 68, 68, 0.08);
}

[data-theme="dark"] .feature-fragment--respond:hover {
    border-color: rgba(99, 102, 241, 0.45);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.15), 0 0 25px rgba(99, 102, 241, 0.08);
}

[data-theme="dark"] .feature-fragment--vote:hover {
    border-color: rgba(16, 185, 129, 0.45);
    box-shadow: 0 20px 40px rgba(16, 185, 129, 0.15), 0 0 25px rgba(16, 185, 129, 0.08);
}

.fragment-visual {
    position: relative;
    z-index: 2;
    height: 135px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(241, 245, 249, 0.4) 0%, rgba(226, 232, 240, 0.4) 100%);
    border: 1px solid rgba(226, 232, 240, 0.85);
    box-shadow: inset 0 2px 4px rgba(15, 23, 42, 0.02), 0 4px 12px rgba(15, 23, 42, 0.01);
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-theme="dark"] .fragment-visual {
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.6) 0%, rgba(8, 12, 24, 0.8) 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3), 0 4px 12px rgba(0, 0, 0, 0.15);
}

.feature-fragment:hover .fragment-visual {
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.08), 0 12px 32px rgba(0, 0, 0, 0.15);
}

.feature-fragment--argue:hover .fragment-visual {
    border-color: rgba(239, 68, 68, 0.3);
}

.feature-fragment--respond:hover .fragment-visual {
    border-color: rgba(99, 102, 241, 0.3);
}

.feature-fragment--vote:hover .fragment-visual {
    border-color: rgba(16, 185, 129, 0.3);
}

/* === CARD 1: ARGUE VISUALS (Webcam/Recording) === */
.visual-argue {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.camera-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(15, 23, 42, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15, 23, 42, 0.04) 1px, transparent 1px);
    background-size: 15px 15px;
    background-position: center;
    pointer-events: none;
    opacity: 0.7;
}

[data-theme="dark"] .camera-grid {
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
}

.rec-indicator {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(239, 68, 68, 0.06);
    border: 1px solid rgba(239, 68, 68, 0.18);
    padding: 3px 8px;
    border-radius: 6px;
    font-family: monospace;
    font-size: 9px;
    font-weight: 700;
    color: #ef4444;
    letter-spacing: 0.5px;
}

[data-theme="dark"] .rec-indicator {
    background: rgba(239, 68, 68, 0.12);
    border: 1px solid rgba(239, 68, 68, 0.25);
}

.rec-dot {
    width: 6px;
    height: 6px;
    background: #ef4444;
    border-radius: 50%;
    box-shadow: 0 0 8px #ef4444;
    animation: rec-pulse-glow 1s infinite alternate;
}

@keyframes rec-pulse-glow {
    0% { opacity: 0.4; transform: scale(0.85); }
    100% { opacity: 1; transform: scale(1.15); }
}

.telemetry-top-right {
    position: absolute;
    top: 12px;
    right: 12px;
    font-family: monospace;
    font-size: 9px;
    color: rgba(15, 23, 42, 0.45);
    font-weight: 600;
    letter-spacing: 0.5px;
}

[data-theme="dark"] .telemetry-top-right {
    color: rgba(255, 255, 255, 0.4);
}

.telemetry-bottom {
    position: absolute;
    bottom: 10px;
    left: 12px;
    font-family: monospace;
    font-size: 8px;
    color: rgba(15, 23, 42, 0.35);
    font-weight: 600;
    letter-spacing: 0.5px;
}

[data-theme="dark"] .telemetry-bottom {
    color: rgba(255, 255, 255, 0.3);
}

.focus-box {
    position: relative;
    width: 100px;
    height: 62px;
    border: 1px dashed rgba(15, 23, 42, 0.12);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease;
}

[data-theme="dark"] .focus-box {
    border-color: rgba(255, 255, 255, 0.12);
}

.feature-fragment--argue:hover .focus-box {
    border-color: rgba(239, 68, 68, 0.25);
    transform: scale(1.05);
}

.bracket {
    position: absolute;
    width: 8px;
    height: 8px;
    border: 1.5px solid #ef4444;
    transition: all 0.3s ease;
}

.br--tl { top: -2px; left: -2px; border-right: none; border-bottom: none; }
.br--tr { top: -2px; right: -2px; border-left: none; border-bottom: none; }
.br--bl { bottom: -2px; left: -2px; border-right: none; border-top: none; }
.br--br { bottom: -2px; right: -2px; border-left: none; border-top: none; }

.audio-waves {
    display: flex;
    align-items: center;
    gap: 3px;
    height: 30px;
}

.wave-bar {
    width: 2.5px;
    height: 12px;
    background: linear-gradient(180deg, #f59e0b, #ef4444);
    border-radius: 4px;
    animation: wave-bounce-glow 0.7s ease-in-out infinite alternate;
}

.wb--1 { height: 10px; animation-delay: -0.35s; }
.wb--2 { height: 22px; animation-delay: -0.15s; }
.wb--3 { height: 32px; animation-delay: -0.55s; }
.wb--4 { height: 15px; animation-delay: -0.25s; }
.wb--5 { height: 26px; animation-delay: -0.45s; }
.wb--6 { height: 18px; animation-delay: -0.65s; }
.wb--7 { height: 8px; animation-delay: -0.5s; }

@keyframes wave-bounce-glow {
    0% { transform: scaleY(0.45); opacity: 0.7; }
    100% { transform: scaleY(1.15); opacity: 1; filter: drop-shadow(0 0 4px rgba(239, 68, 68, 0.6)); }
}

/* === CARD 2: RESPOND VISUALS (Face-Off & Bridge) === */
.visual-respond {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 36px;
}

.debate-bg-grid {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(99, 102, 241, 0.04) 0%, transparent 80%);
    pointer-events: none;
}

[data-theme="dark"] .debate-bg-grid {
    background: radial-gradient(circle at center, rgba(99, 102, 241, 0.08) 0%, transparent 80%);
}

.debate-avatar {
    position: relative;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.avatar--pro {
    background: radial-gradient(circle, rgba(14, 165, 233, 0.08) 0%, rgba(14, 165, 233, 0.02) 100%);
    border: 1px solid rgba(14, 165, 233, 0.3);
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.06);
}

[data-theme="dark"] .avatar--pro {
    background: radial-gradient(circle, rgba(14, 165, 233, 0.2) 0%, rgba(14, 165, 233, 0.05) 100%);
    border: 1px solid rgba(14, 165, 233, 0.4);
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.15);
}

.avatar--con {
    background: radial-gradient(circle, rgba(139, 92, 246, 0.08) 0%, rgba(139, 92, 246, 0.02) 100%);
    border: 1px solid rgba(139, 92, 246, 0.3);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.06);
}

[data-theme="dark"] .avatar--con {
    background: radial-gradient(circle, rgba(139, 92, 246, 0.2) 0%, rgba(139, 92, 246, 0.05) 100%);
    border: 1px solid rgba(139, 92, 246, 0.4);
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.15);
}

.feature-fragment--respond:hover .avatar--pro {
    transform: scale(1.08) translateX(-4px);
    box-shadow: 0 6px 20px rgba(14, 165, 233, 0.25);
}

.feature-fragment--respond:hover .avatar--con {
    transform: scale(1.08) translateX(4px);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.25);
}

.avatar-ring-outer {
    position: absolute;
    inset: -5px;
    border: 1px dashed rgba(14, 165, 233, 0.25);
    border-radius: 50%;
    animation: rotate-clockwise 12s linear infinite;
}

[data-theme="dark"] .avatar-ring-outer {
    border-color: rgba(14, 165, 233, 0.35);
}

.avatar--con .avatar-ring-outer {
    border-color: rgba(139, 92, 246, 0.25);
}

[data-theme="dark"] .avatar--con .avatar-ring-outer {
    border-color: rgba(139, 92, 246, 0.35);
}

.avatar-ring-inner {
    position: absolute;
    inset: -2px;
    border: 1px solid rgba(15, 23, 42, 0.05);
    border-radius: 50%;
}

[data-theme="dark"] .avatar-ring-inner {
    border-color: rgba(255, 255, 255, 0.05);
}

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

.avatar-initials {
    font-family: 'Oxanium', monospace;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.avatar--pro .avatar-initials {
    color: #0284c7;
}

[data-theme="dark"] .avatar--pro .avatar-initials {
    color: #38bdf8;
    text-shadow: 0 0 8px rgba(56, 189, 248, 0.5);
}

.avatar--con .avatar-initials {
    color: #6d28d9;
}

[data-theme="dark"] .avatar--con .avatar-initials {
    color: #a78bfa;
    text-shadow: 0 0 8px rgba(167, 139, 250, 0.5);
}

.debate-bridge {
    position: relative;
    width: 50px;
    height: 16px;
    z-index: 1;
}

.bridge-svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}

.bridge-path {
    stroke-dasharray: 4, 2;
    animation: flow-dash 1.5s linear infinite;
}

@keyframes flow-dash {
    0% { stroke-dashoffset: 6; }
    100% { stroke-dashoffset: 0; }
}

.bridge-pulse {
    position: absolute;
    top: 50%;
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #0ea5e9;
    box-shadow: 0 0 6px rgba(14, 165, 233, 0.6);
    transform: translateY(-50%);
    animation: bridge-travel-glow 2s cubic-gradient(0.4, 0, 0.2, 1) infinite;
}

[data-theme="dark"] .bridge-pulse {
    background: #fff;
    box-shadow: 0 0 8px #0ea5e9, 0 0 16px #8b5cf6;
}

@keyframes bridge-travel-glow {
    0% { left: 0%; opacity: 0; }
    15% { opacity: 1; }
    85% { opacity: 1; }
    100% { left: 100%; opacity: 0; }
}

.challenge-alert {
    position: absolute;
    top: 12px;
    font-family: 'Oxanium', monospace;
    font-size: 8px;
    font-weight: 700;
    color: #6d28d9;
    background: rgba(139, 92, 246, 0.06);
    border: 1px solid rgba(139, 92, 246, 0.18);
    padding: 2px 6px;
    border-radius: 4px;
    letter-spacing: 0.5px;
    animation: pulse-alert 2s ease-in-out infinite;
}

[data-theme="dark"] .challenge-alert {
    color: #8b5cf6;
    background: rgba(139, 92, 246, 0.12);
    border: 1px solid rgba(139, 92, 246, 0.25);
}

@keyframes pulse-alert {
    0%, 100% { opacity: 0.8; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.05); }
}

/* === CARD 3: VOTE VISUALS (Logic Dial & Verdict) === */
.visual-vote {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.vote-bg-grid {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(16, 185, 129, 0.04) 0%, transparent 80%);
    pointer-events: none;
}

[data-theme="dark"] .vote-bg-grid {
    background: radial-gradient(circle at center, rgba(16, 185, 129, 0.08) 0%, transparent 80%);
}

.logic-meter {
    position: relative;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.meter-svg {
    transform: rotate(-90deg);
    width: 100%;
    height: 100%;
}

.meter-track {
    fill: none;
    stroke: rgba(15, 23, 42, 0.06);
    stroke-width: 7;
}

[data-theme="dark"] .meter-track {
    stroke: rgba(255, 255, 255, 0.05);
}

.meter-fill {
    fill: none;
    stroke-width: 7;
    stroke-dasharray: 251.2;
    stroke-dashoffset: 251.2;
    stroke-linecap: round;
    animation: fill-draw 2.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fill-draw {
    from { stroke-dashoffset: 251.2; }
    to { stroke-dashoffset: 45; } 
}

.logic-score {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.score-num {
    font-family: 'Oxanium', monospace;
    font-size: 19px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1;
}

[data-theme="dark"] .score-num {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(16, 185, 129, 0.4);
}

.score-label {
    font-family: 'Inter', sans-serif;
    font-size: 7px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: rgba(15, 23, 42, 0.5);
    margin-top: 3px;
}

[data-theme="dark"] .score-label {
    color: rgba(255, 255, 255, 0.4);
}

.vote-badge {
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: 'Oxanium', monospace;
    font-size: 9px;
    font-weight: 800;
    color: #059669;
    background: rgba(16, 185, 129, 0.06);
    border: 1px solid rgba(16, 185, 129, 0.18);
    padding: 3px 8px;
    border-radius: 6px;
    letter-spacing: 0.5px;
}

[data-theme="dark"] .vote-badge {
    color: #10b981;
    background: rgba(16, 185, 129, 0.12);
    border: 1px solid rgba(16, 185, 129, 0.25);
}

.badge-dot {
    width: 4px;
    height: 4px;
    background: #059669;
    border-radius: 50%;
    box-shadow: 0 0 4px rgba(5, 150, 105, 0.5);
    animation: rec-pulse-glow 0.8s infinite alternate;
}

[data-theme="dark"] .badge-dot {
    background: #10b981;
    box-shadow: 0 0 6px #10b981;
}

/* === CARD CONTENT & TYPOGRAPHY === */
.fragment-content {
    position: relative;
    z-index: 3;
    padding: 0 !important;
    width: 100%;
}

.fragment-tag {
    font-family: 'Oxanium', monospace;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
    display: inline-block;
    text-transform: uppercase;
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
}

.tag--argue {
    color: #ef4444;
}

.tag--respond {
    color: #6366f1;
}

.tag--vote {
    color: #10b981;
}

.feature-fragment h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
    line-height: 1.3;
}

[data-theme="dark"] .feature-fragment h3 {
    color: #ffffff;
}

.feature-fragment p {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: #475569;
    line-height: 1.5;
    opacity: 0.9;
}

[data-theme="dark"] .feature-fragment p {
    color: #94a3b8;
}

.feature__title--3d {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(32px, 4.5vw, 48px);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: #0f172a;
    text-shadow: none !important;
}

[data-theme="dark"] .feature__title--3d {
    color: #ffffff;
}

.text-layer {
    display: block;
    color: #0f172a;
}

[data-theme="dark"] .text-layer {
    color: #ffffff;
}

.text-layer--accent {
    background: linear-gradient(135deg, #0ea5e9, #6366f1, #10b981);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

@media (max-width: 1024px) {
    .features__fragments {
        grid-template-columns: 1fr;
        max-width: 460px;
        gap: 20px;
        margin-top: 50px;
    }

    .feature-fragment {
        min-height: auto;
        padding: 24px;
    }

    .fragment-visual {
        height: 130px;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .features__fragments {
        gap: 16px;
    }

    .feature-fragment {
        padding: 24px 20px;
    }

    .fragment-visual {
        height: 130px;
        transform: none !important;
    }

    .fragment-content {
        transform: none !important;
    }

    .feature-fragment h3 {
        font-size: 19px;
        margin-bottom: 8px;
    }

    .feature-fragment p {
        font-size: 13px;
        line-height: 1.5;
    }
}

@media (max-width: 480px) {
    .features__fragments {
        max-width: 100%;
        gap: 14px;
        margin-top: 40px;
        padding: 0 12px;
    }

    .feature-fragment {
        padding: 20px 16px;
        border-radius: 20px;
    }

    .fragment-visual {
        height: 120px;
        border-radius: 14px;
        margin-bottom: 16px;
    }

    /* Card 1 specific mobile sizing */
    .focus-box {
        width: 86px;
        height: 58px;
    }

    .audio-waves {
        height: 24px;
    }

    .wave-bar {
        width: 2px;
    }

    /* Card 2 specific mobile sizing */
    .visual-respond {
        gap: 24px;
    }

    .debate-avatar {
        width: 38px;
        height: 38px;
    }

    .avatar-initials {
        font-size: 9px;
    }

    .debate-bridge {
        width: 36px;
        height: 12px;
    }

    .bridge-pulse {
        width: 5px;
        height: 5px;
    }

    /* Card 3 specific mobile sizing */
    .logic-meter {
        width: 72px;
        height: 72px;
    }

    .score-num {
        font-size: 18px;
    }
}



/* ═══════════════════════════════════════════════════════
   DESCRIPTIVE 3D ELEMENT WRAPPER
═══════════════════════════════════════════════════════ */
.feat3d {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    overflow: hidden;
    border-radius: inherit;
}

/* 1. HOLO-CASCADE (Feed) */
.holo-cascade {
    width: 200px;
    height: 250px;
    position: relative;
    transform-style: preserve-3d;
}

.h-voxel {
    position: absolute;
    width: 40px;
    height: 30px;
    background: rgba(14, 165, 233, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: voxel-fall 3.5s linear infinite;
}

@keyframes voxel-fall {
    0% {
        transform: translateY(-120px) rotateY(0deg) translateZ(-50px);
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    80% {
        opacity: 1;
    }

    100% {
        transform: translateY(220px) rotateY(360deg) translateZ(100px);
        opacity: 0;
    }
}

.hv--1 {
    left: 10%;
    animation-delay: 0s;
}

.hv--2 {
    left: 30%;
    animation-delay: 0.5s;
    width: 30px;
    height: 20px;
}

.hv--3 {
    left: 50%;
    animation-delay: 1.2s;
    width: 50px;
    height: 35px;
}

.hv--4 {
    left: 75%;
    animation-delay: 1.8s;
    width: 35px;
    height: 25px;
}

.hv--5 {
    left: 25%;
    animation-delay: 2.3s;
}

.hv--6 {
    left: 85%;
    animation-delay: 2.8s;
}

[data-theme="dark"] .feed-card {
    background: #09090b;
    backdrop-filter: blur(20px);
}

/* ──────────────────────────────
   ARENA: Two opposing forces colliding
────────────────────────────── */
/* 2. HOLO-SHIELD (Arena) */
.holo-shield {
    width: 160px;
    height: 160px;
    position: relative;
    transform-style: preserve-3d;
}

.shield-ring {
    position: absolute;
    inset: 0;
    border: 2px dashed rgba(14, 165, 233, 0.5);
    border-radius: 50%;
    animation: shield-rotate 8s linear infinite;
}

.sr--2 {
    inset: 35px;
    border-style: dotted;
    animation-duration: 4s;
    animation-direction: reverse;
}

.shield-core {
    position: absolute;
    inset: 55px;
    background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
    filter: blur(10px);
    animation: crystal-pulse 2s ease-in-out infinite;
}

.shield-scan {
    position: absolute;
    inset: -15px;
    background: conic-gradient(from 0deg, transparent, rgba(14, 165, 233, 0.25), transparent 35%);
    border-radius: 50%;
    animation: shield-rotate 3s linear infinite;
}

/* 3. HOLO-CRYSTAL (Score) */
.holo-crystal {
    width: 100px;
    height: 150px;
    position: relative;
    transform-style: preserve-3d;
    animation: crystal-float 5s ease-in-out infinite;
}

.crystal-facet {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.4), rgba(255, 255, 255, 0.1));
    border: 1px solid rgba(255, 255, 255, 0.3);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    backdrop-filter: blur(5px);
}

.cf--1 {
    transform: rotateY(0deg) translateZ(40px);
}

.cf--2 {
    transform: rotateY(90deg) translateZ(40px);
}

.cf--3 {
    transform: rotateY(180deg) translateZ(40px);
}

.cf--4 {
    transform: rotateY(270deg) translateZ(40px);
}

.crystal-core {
    position: absolute;
    inset: 30px;
    background: var(--accent);
    filter: blur(15px);
    animation: crystal-pulse 2s infinite;
}


/* ──────────────────────────────
   JURY: Orbiting vote particles
────────────────────────────── */
.feat3d--jury {
    display: flex;
    align-items: center;
    justify-content: center;
}

.jury-center {
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    top: calc(35% - 25px);
    left: calc(50% - 25px);
    background: radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.3), rgba(14, 165, 233, 0.6));
    box-shadow: 0 0 40px rgba(14, 165, 233, 0.6), 0 0 80px rgba(14, 165, 233, 0.2);
    animation: center-pulse 4s ease-in-out infinite;
}

@keyframes center-pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.1);
        opacity: 1;
    }
}

.jury-orbit {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.08);
    top: 35%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.jury-orbit--1 {
    width: 110px;
    height: 110px;
    animation: orbit-cw 4s linear infinite;
}

.jury-orbit--2 {
    width: 170px;
    height: 170px;
    animation: orbit-ccw 7s linear infinite;
}

.jury-orbit--3 {
    width: 230px;
    height: 230px;
    animation: orbit-cw 10s linear infinite;
}

@keyframes orbit-cw {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes orbit-ccw {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(-360deg);
    }
}

.jury-dot {
    position: absolute;
    top: -8px;
    left: 50%;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #fff;
    transform: translateX(-50%);
}

.jury-dot--teal {
    background: #14b8a6;
}

.jury-dot--purple {
    background: #a855f7;
}

/* ──────────────────────────────
   PROFILE: DNA identity helix
────────────────────────────── */
.feat3d--profile {
    perspective: 600px;
    overflow: visible;
}

.dna-strand {
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    animation: dna-sway 5s ease-in-out infinite;
}

.dna-strand--a {
    transform: translateX(calc(-50% - 30px)) rotateY(0deg);
}

.dna-strand--b {
    transform: translateX(calc(-50% + 30px)) rotateY(0deg);
    animation-delay: -2.5s;
}


/* 4. HOLO-JURY (Governance) */
.holo-jury {
    width: 180px;
    height: 180px;
    position: relative;
    transform-style: preserve-3d;
}

.j-ring {
    position: absolute;
    inset: 30px;
    border: 1px solid rgba(14, 165, 233, 0.25);
    border-radius: 50%;
    transform: rotateX(80deg);
}

.j-node {
    position: absolute;
    width: 14px;
    height: 14px;
    background: #fff;
    border-radius: 50%;
    animation: node-orbit 7s linear infinite;
}

.jn--1 {
    animation-delay: 0s;
}

.jn--2 {
    animation-delay: -2.3s;
}

.jn--3 {
    animation-delay: -4.6s;
}

@keyframes node-orbit {
    0% {
        transform: rotate(0deg) translateX(75px) rotate(0deg);
    }

    100% {
        transform: rotate(360deg) translateX(75px) rotate(-360deg);
    }
}

/* 5. HOLO-DNA (Identity) */
.holo-dna {
    width: 130px;
    height: 240px;
    position: relative;
    transform-style: preserve-3d;
    animation: shield-rotate 20s linear infinite;
}

.dna-helix {
    position: absolute;
    width: 10px;
    height: 100%;
    background: linear-gradient(to bottom, var(--accent), transparent);
    border-radius: 5px;
}

.dna-helix--b {
    transform: rotateY(180deg) translateZ(45px);
}

.dna-helix--a {
    transform: translateZ(45px);
}

.dna-bar {
    position: absolute;
    top: calc(var(--i) * 45px);
    left: 50%;
    width: 90px;
    height: 2px;
    background: rgba(255, 255, 255, 0.25);
    margin-left: -45px;
    transform: translateZ(45px);
}

/* Base Utility Animations */
@keyframes shield-rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes crystal-float {

    0%,
    100% {
        transform: translateY(0) rotateY(0deg);
    }

    50% {
        transform: translateY(-25px) rotateY(180deg);
    }
}

@keyframes crystal-pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.25);
        opacity: 0.9;
    }
}



/* ── Responsive & Mobile Polishing ── */
@media (max-width: 1024px) {
    .section--3d-features {
        padding: 80px 24px;
    }

    .features__grid--overlap {
        display: flex;
        flex-direction: column;
        gap: 32px;
    }

    .feature-card--3d {
        height: 380px;
        transform: none !important;
    }

    .feature-card__content-3d {
        padding: 0 28px 28px;
    }

    /* Scale down 3D visuals slightly for tablet */
    .feat3d {
        transform: scale(0.85);
        transform-origin: top center;
    }
}

@media (max-width: 640px) {
    .feature-card--3d {
        height: 340px;
    }

    /* Heavily scale and reposition 3D visuals for mobile */
    .feat3d {
        transform: scale(0.65);
        transform-origin: center top;
        top: 10% !important;
    }

    .holo-shield,
    .holo-crystal,
    .holo-jury,
    .holo-dna {
        transform: scale(0.8);
        transform-origin: center top;
    }

    .dna-strand {
        height: 140px;
    }

    .feature-card__text-3d h3 {
        font-size: 20px !important;
    }

    .feature-card__text-3d p {
        font-size: 13px !important;
    }
}

/* Fallback for mobile/touch where hover doesn't exist */
@media (hover: none) {
    .feature-card--3d {
        animation: mobile-float 6s ease-in-out infinite;
    }

    .feature-card--3d:nth-child(even) {
        animation-delay: -3s;
    }
}

@keyframes mobile-float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}


/* === APP SCREENS SECTION === */
/* === APP SCREENS SECTION — PREMIUM SHOWCASE === */
.section--screens {
    padding: 120px 60px;
    background: radial-gradient(circle at 50% 100%, rgba(14, 165, 233, 0.05), transparent 70%);
}

.screens__showcase-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 80px;
}

.screens__showcase {
    position: relative;
    width: 100%;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 2000px;
}

/* Background Glowing Orbs */
.showcase__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 1;
    opacity: 0.3;
}

.showcase__glow--1 {
    width: 400px;
    height: 400px;
    background: var(--accent);
    top: 10%;
    left: 20%;
    animation: glow-pulse-soft 8s infinite alternate;
}

.showcase__glow--2 {
    width: 300px;
    height: 300px;
    background: var(--cyan);
    bottom: 10%;
    right: 20%;
    animation: glow-pulse-soft 8s infinite alternate-reverse;
}

@keyframes glow-pulse-soft {
    from {
        opacity: 0.2;
        transform: scale(1) translate(0, 0);
    }

    to {
        opacity: 0.4;
        transform: scale(1.2) translate(10%, 10%);
    }
}

/* Base Phone Mockup */
.phone-mockup {
    position: absolute;
    width: 280px;
    height: 580px;
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 5;
    transform-style: preserve-3d;
    background: #020617;
    /* Solid base to fill any 3D rotation gaps */
    border-radius: 42px;
    /* Set outer radius */
}

/* 3D Side Rail (The "Thickness" of the phone) */
.phone-mockup::after {
    content: '';
    position: absolute;
    inset: -1px;
    /* Slightly larger to overlap and hide gaps */
    background: linear-gradient(90deg, #1e293b, #334155, #1e293b);
    border-radius: 42px;
    /* Unified radius */
    transform: translateZ(-4px);
    /* Pushes the 'back' of the phone slightly away */
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: -1;
}

.phone-mockup__inner {
    position: relative;
    width: 100%;
    height: 100%;
    background: #020617;
    /* Matches base */
    border-radius: 42px;
    /* Fully unified radius */
    border: 1.5px solid #334155;
    /* Surgical steel frame */
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.5),
        inset 0 0 2px rgba(255, 255, 255, 0.2);
    overflow: hidden;
}

/* Phone positioned detail: Front Speaker */
.phone-mockup__inner::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 4px;
    background: #0f172a;
    border-radius: 2px;
    z-index: 12;
    border: 0.5px solid rgba(255, 255, 255, 0.1);
}

.phone-mockup__glass {
    position: absolute;
    inset: 0;
    z-index: 10;
    background: linear-gradient(105deg,
            rgba(255, 255, 255, 0.12) 0%,
            rgba(255, 255, 255, 0.05) 20%,
            transparent 40%,
            rgba(255, 255, 255, 0.03) 60%,
            rgba(255, 255, 255, 0.08) 100%);
    pointer-events: none;
}

.phone-mockup__screen {
    position: absolute;
    inset: 4px;
    /* Tiny bezel for realism */
    border-radius: 38px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.phone-mockup__screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.phone-mockup__bezel {
    display: none;
    /* Keep physical notch hidden for edge-to-edge feel */
}

/* Side Buttons */
.phone-mockup--center::before {
    content: '';
    position: absolute;
    left: -2px;
    top: 100px;
    width: 3px;
    height: 40px;
    background: #475569;
    border-radius: 2px 0 0 2px;
    z-index: 10;
}

/* Phone Positions */
.phone-mockup--left {
    transform: translateX(-350px) rotateY(25deg) scale(0.9);
    z-index: 4;
    filter: blur(1px) brightness(0.7);
}

.phone-mockup--center {
    z-index: 10;
    transform: translateZ(100px);
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.9);
}

.phone-mockup--right {
    transform: translateX(350px) rotateY(-25deg) scale(0.9);
    z-index: 4;
    filter: blur(1px) brightness(0.7);
}

/* Showcase Interactions */
.screens__showcase:hover .phone-mockup--left {
    transform: translateX(-400px) rotateY(35deg) scale(0.85);
}

.screens__showcase:hover .phone-mockup--right {
    transform: translateX(400px) rotateY(-35deg) scale(0.85);
}

.phone-mockup--center:hover {
    transform: translateZ(150px) translateY(-20px) scale(1.02);
}

.phone-mockup--center:hover .phone-mockup__screen img {
    transform: scale(1.05);
}

/* Floating Icon Decor */
.phone-mockup__floating-icon {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 50px;
    height: 50px;
    background: var(--accent);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #020408;
    box-shadow: 0 10px 30px var(--accent-glow);
    z-index: 15;
    animation: icon-float 3s infinite ease-in-out;
}

@keyframes icon-float {

    0%,
    100% {
        transform: translateY(0) rotate(0);
    }

    50% {
        transform: translateY(-10px) rotate(5deg);
    }
}

/* Description Grid */
.screens__description-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    width: 100%;
    margin-top: 20px;
}

.desc-item {
    text-align: center;
    padding: 24px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s ease;
    opacity: 0.6;
}

.desc-item--active,
.desc-item:hover {
    opacity: 1;
    background: #09090b;
    border-color: var(--accent);
    transform: translateY(-5px);
}

.desc-item h3 {
    font-family: 'Oxanium', monospace;
    font-size: 18px;
    color: var(--text-primary);
    margin-bottom: 12px;
}

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

/* Mobile Adjustments */
@media (max-width: 1024px) {
    .screens__showcase {
        height: 500px;
    }

    .phone-mockup {
        width: 200px;
        height: 415px;
    }

    .phone-mockup--left {
        transform: translateX(-180px) rotateY(20deg) scale(0.85);
    }

    .phone-mockup--right {
        transform: translateX(180px) rotateY(-20deg) scale(0.85);
    }

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

@media (max-width: 600px) {
    .screens__showcase {
        height: 380px;
    }

    .phone-mockup {
        width: 140px;
        /* Smaller base size for mobile */
        height: 290px;
    }

    .phone-mockup--left {
        display: block;
        /* Show again */
        transform: translateX(-100px) rotateY(20deg) scale(0.85);
        filter: blur(1px) brightness(0.8);
    }

    .phone-mockup--right {
        display: block;
        /* Show again */
        transform: translateX(100px) rotateY(-20deg) scale(0.85);
        filter: blur(1px) brightness(0.8);
    }

    .phone-mockup--center {
        z-index: 10;
        transform: translateZ(60px) scale(1.1);
        filter: none;
    }
}




.mock-phone__ui {
    width: 100%;
    height: 100%;
    position: relative;
    background: var(--bg);
}

/* The Feed Mock */
.mock-phone__ui--video {
    background: linear-gradient(180deg, rgba(14, 165, 233, 0.1) 0%, #111827 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mock-video-play {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.mock-video-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 12px;
}

.mock-video-tag {
    font-size: 8px;
    padding: 2px 6px;
    background: var(--accent);
    color: white;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 4px;
}

.mock-video-title {
    font-size: 10px;
    font-weight: 600;
    color: white;
}

/* Debates Mock */
.mock-phone__ui--thread {
    padding: 16px 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mock-thread-header {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-primary);
    padding-bottom: 8px;
    margin-bottom: 4px;
}

.mock-thread-arg {
    height: 32px;
    border-radius: 6px;
    border: 1px solid var(--border);
    background: var(--surface);
    position: relative;
}

.mock-thread-arg::before {
    content: '';
    position: absolute;
    top: 6px;
    bottom: 6px;
    left: 6px;
    width: 3px;
    border-radius: 2px;
}

.mock-thread-arg--for::before {
    background: #0EA5E9;
}

.mock-thread-arg--against::before {
    background: #f43f5e;
}

/* Profile Mock */
.mock-phone__ui--profile {
    padding: 24px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.mock-profile-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--cyan));
}

.mock-profile-stats {
    display: flex;
    gap: 8px;
    width: 100%;
}

.mock-stat {
    flex: 1;
    height: 36px;
    border-radius: 6px;
    background: var(--surface);
    border: 1px solid var(--border);
}

.mock-profile-dna {
    width: 100%;
    height: 80px;
    border-radius: 12px;
    background: var(--surface);
    border: 1px solid var(--border);
}

.screen-card__text h3 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.screen-card__text p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-secondary);
}

/* === DEBATE ARENA SECTION === */
/* === ARENA FORGE (HOW IT WORKS) === */
.section--debates {
    padding: 150px 60px;
    background: #020617;
    position: relative;
    overflow: hidden;
}

.arena-forge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 80px;
}

.forge-lead {
    max-width: 700px;
    text-align: center;
}

.forge-lead p {
    font-size: 20px;
    line-height: 1.8;
    color: var(--text-secondary);
}

.forge-pipeline {
    position: relative;
    width: 100%;
    max-width: 1000px;
    padding: 60px 0;
    display: flex;
    flex-direction: column;
    gap: 120px;
}

.forge-conduit {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, var(--accent), var(--accent), transparent);
    opacity: 0.3;
}

.forge-node {
    position: relative;
    width: 45%;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.forge-node--left {
    align-self: flex-start;
    text-align: right;
}

.forge-node--right {
    align-self: flex-end;
    text-align: left;
}

.node-content {
    position: relative;
    padding: 32px;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    border-radius: 12px;
    transition: all 0.4s var(--ease-out-expo);
}

.forge-node:hover .node-content {
    background: #09090b;
    transform: translateZ(20px);
}

.node-num {
    display: block;
    font-family: 'Oxanium', monospace;
    font-size: 32px;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 16px;
    opacity: 0.5;
}

.node-content h4 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.node-content p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-secondary);
}

.node-pulse {
    position: absolute;
    top: 50%;
    width: 12px;
    height: 12px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 15px var(--accent-glow);
}

.forge-node--left .node-pulse {
    right: -56px;
    transform: translateY(-50%);
}

.forge-node--right .node-pulse {
    left: -56px;
    transform: translateY(-50%);
}

.node-pulse::after {
    content: '';
    position: absolute;
    inset: -10px;
    border: 1px solid var(--accent);
    border-radius: 50%;
    animation: node-ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes node-ping {

    75%,
    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

.node-connector {
    position: absolute;
    top: 50%;
    width: 60px;
    height: 2px;
    overflow: visible;
}

.forge-node--left .node-connector {
    right: -45px;
    transform: translateY(-50%);
}

.forge-node--right .node-connector {
    left: -45px;
    transform: translateY(-50%);
}

.node-connector path {
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    animation: connector-flow 3s linear infinite;
}

@keyframes connector-flow {
    100% {
        stroke-dashoffset: 0;
    }
}

@media (max-width: 768px) {
    .forge-conduit {
        left: 20px;
        transform: none;
    }

    .forge-node {
        width: calc(100% - 40px);
        align-self: flex-end;
        text-align: left;
        margin-bottom: 40px;
        /* Add space between stacked nodes */
    }

    .node-content {
        padding: 24px;
        /* Simpler padding for mobile */
    }

    .forge-node--left .node-pulse,
    .forge-node--right .node-pulse {
        left: -30px;
        right: auto;
    }

    .forge-node--left .node-connector,
    .forge-node--right .node-connector {
        display: none;
    }
}


/* Debate card mock */
.debate-card-mock {
    padding: 28px;
    border-radius: 16px;
    background: var(--surface);
    border: 1px solid var(--border);
    transition: all 0.3s var(--ease-out-expo);
}

.mock-phone__ui--brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    height: 100%;
    padding: 20px;
}

.mock-brand-logo {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.mock-brand-name {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--text-primary);
}

.debate-card-mock__header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 16px;
}

.debate-card-mock__tag {
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 100px;
    background: rgba(251, 146, 60, 0.12);
    color: #fb923c;
    font-weight: 500;
}

.debate-card-mock__score {
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 100px;
    background: rgba(34, 197, 94, 0.12);
    color: #0EA5E9;
    font-weight: 600;
}

.debate-card-mock__thesis {
    font-family: var(--font-display);
    font-size: 16px;
    line-height: 1.5;
    font-weight: 600;
    margin-bottom: 16px;
}

.debate-card-mock__meta {
    display: flex;
    gap: 16px;
    font-size: 12px;
    color: var(--text-tertiary);
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.debate-card-mock__args {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.debate-arg {
    padding: 14px 16px;
    border-radius: 10px;
    border: 1px solid var(--border);
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.debate-arg--for {
    border-left: 2px solid #0EA5E9;
}

.debate-arg--against {
    border-left: 2px solid #f43f5e;
}

.debate-arg__label {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 2px 6px;
    border-radius: 4px;
    flex-shrink: 0;
    margin-top: 2px;
}

.debate-arg--for .debate-arg__label {
    background: rgba(34, 197, 94, 0.12);
    color: #0EA5E9;
}

.debate-arg--against .debate-arg__label {
    background: rgba(244, 63, 94, 0.12);
    color: #f43f5e;
}

.debate-arg p {
    font-size: 12px;
    line-height: 1.5;
    color: var(--text-secondary);
    flex: 1;
}

.debate-arg__votes {
    font-size: 11px;
    color: var(--text-tertiary);
    flex-shrink: 0;
}

/* === LIVE STATS SECTION === */
.section--live {
    padding: 100px 60px;
}

.live__grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 48px;
}

.live-card {
    padding: 16px 24px;
    border-radius: 16px;
    background: var(--surface);
    border: none;
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.3s var(--ease-out-expo);
}

.live-card:hover {
    transform: translateX(4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.live-card__pulse {
    position: relative;
    width: 8px;
    height: 8px;
    flex-shrink: 0;
    border-radius: 50%;
    background: #0EA5E9;
    box-shadow: 0 0 8px rgba(34, 197, 94, 0.5);
    animation: pulse-dot 2s infinite;
}

.live-card__number {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.02em;
    min-width: 56px;
}

.live-card__label {
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: 450;
    flex: 1;
}


/* Live Feed */
.live__feed {
    border-radius: 16px;
    background: var(--surface);
    border: 1px solid var(--border);
    overflow: hidden;
}

.live__feed-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
}

.live__feed-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #0EA5E9;
    animation: pulse-dot 1.5s infinite;
}

.live__feed-items {
    max-height: 240px;
    overflow-y: auto;
    scrollbar-width: thin;
}

.live__feed-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    border-bottom: 1px solid var(--border);
    font-size: 13px;
    color: var(--text-secondary);
    animation: fadeInUp 0.3s var(--ease-out-expo);
}

.live__feed-item:last-child {
    border-bottom: none;
}

.live__feed-item__icon {
    font-size: 16px;
    flex-shrink: 0;
}

.live__feed-item__text {
    flex: 1;
}

.live__feed-item__time {
    font-size: 11px;
    color: var(--text-tertiary);
    flex-shrink: 0;
}

/* === BETA SECTION === */
.section--beta {
    padding: 160px 60px;
    position: relative;
    overflow: hidden;
    background: transparent;
}

/* Background Animated Glows */
.beta-bg-glows {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.beta-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.15;
}

.beta-glow--1 {
    width: 600px;
    height: 600px;
    background: #0EA5E9;
    top: -100px;
    right: -100px;
    animation: float-slow 20s infinite alternate;
}

.beta-glow--2 {
    width: 500px;
    height: 500px;
    background: #38bdf8;
    bottom: -100px;
    left: -100px;
    animation: float-slow 15s infinite alternate-reverse;
}

.beta__layout {
    display: flex;
    flex-direction: row;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.beta__info {
    flex: 1;
}

.beta__perks {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 48px;
}

.beta__perk {
    display: flex;
    gap: 24px;
    align-items: center;
}

.beta__perk-tag {
    font-family: var(--font-tech);
    font-size: 11px;
    font-weight: 700;
    color: #0EA5E9;
    letter-spacing: 1.5px;
    flex-shrink: 0;
    display: inline-block;
    padding: 6px 12px;
    border-radius: 6px;
    border: 1px solid rgba(14, 165, 233, 0.15);
    background: rgba(14, 165, 233, 0.03);
    width: 130px;
    text-align: center;
}

[data-theme="dark"] .beta__perk-tag {
    border-color: rgba(14, 165, 233, 0.25);
    background: rgba(14, 165, 233, 0.05);
}

.beta__perk h4 {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--text-primary);
}

.beta__perk p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-secondary);
}

.beta__card {
    flex: 1;
    perspective: 1000px;
}

.beta__card-inner {
    padding: 50px 40px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.85), rgba(248, 250, 252, 0.7));
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border: 1px solid rgba(14, 165, 233, 0.18);
    border-radius: 32px;
    position: relative;
    overflow: hidden;
    box-shadow:
        0 30px 80px rgba(14, 165, 233, 0.04),
        0 10px 30px rgba(0, 0, 0, 0.015);
    z-index: 1;
    transition: all 0.5s var(--ease-out-expo);
}

.beta__card-inner:hover {
    transform: translateY(-6px);
    box-shadow: 0 40px 100px rgba(14, 165, 233, 0.08);
}

[data-theme="dark"] .beta__card-inner {
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.75), rgba(8, 12, 24, 0.8));
    border-color: rgba(255, 255, 255, 0.06);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

.card-tech-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(14, 165, 233, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(14, 165, 233, 0.03) 1px, transparent 1px);
    background-size: 20px 20px;
    pointer-events: none;
    z-index: 0;
    opacity: 0.6;
}

[data-theme="dark"] .card-tech-grid {
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
}

.beta__card-meta {
    font-family: var(--font-tech);
    font-size: 9px;
    color: #0EA5E9;
    margin-bottom: 24px;
    letter-spacing: 2px;
    font-weight: 700;
    display: block;
    opacity: 0.8;
    position: relative;
    z-index: 1;
}

.beta__card-title {
    position: relative;
    z-index: 1;
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 850;
    margin-bottom: 12px;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.beta__card-desc {
    position: relative;
    z-index: 1;
    font-size: 14.5px;
    color: var(--text-secondary);
    margin-bottom: 28px;
    line-height: 1.5;
}

.beta__input-wrap {
    position: relative;
    z-index: 1;
    background: #ffffff;
    border: 1px solid rgba(14, 165, 233, 0.2);
    border-radius: 16px;
    padding: 6px 6px 6px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.01);
}

[data-theme="dark"] .beta__input-wrap {
    background: rgba(8, 12, 24, 0.6);
    border-color: rgba(255, 255, 255, 0.08);
}

.beta__input-wrap:focus-within {
    border-color: #0EA5E9;
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.12);
}

.beta__input-wrap input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 12px 0;
    color: var(--text-primary);
    font-family: var(--font-tech);
    font-size: 14.5px;
    outline: none;
}

.beta__submit-btn {
    height: 48px;
    padding: 0 24px;
    background: transparent;
    color: #0EA5E9;
    border-radius: 12px;
    border: 1px solid rgba(14, 165, 233, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-family: var(--font-tech);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.2px;
    white-space: nowrap;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: none;
}

[data-theme="dark"] .beta__submit-btn {
    border-color: rgba(255, 255, 255, 0.15);
    color: #94a3b8;
}

.beta__submit-btn:hover {
    background: #0f172a;
    color: #ffffff;
    border-color: #0f172a;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(15, 23, 42, 0.1);
}

[data-theme="dark"] .beta__submit-btn:hover {
    background: #ffffff;
    color: #0f172a;
    border-color: #ffffff;
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.1);
}

.beta__card-note {
    display: block;
    margin-top: 20px;
    font-size: 13px;
    color: var(--text-tertiary);
    text-align: center;
}

.beta__success {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px;
    background: #ffffff;
    border-radius: 40px;
    text-align: center;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.1);
}

[data-theme="dark"] .beta__success {
    background: rgba(15, 23, 42, 0.8);
}

.beta__success-icon {
    width: 72px;
    height: 72px;
    background: rgba(34, 197, 94, 0.1);
    color: #0EA5E9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin-bottom: 24px;
    font-weight: 800;
}

.beta__success h3 {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--text-primary);
}

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


/* === FOOTER — Expanded === */
.footer {
    padding: 120px 60px 48px;
    background: var(--bg);
    border-top: 1px solid var(--border);
}

.footer__top {
    display: grid;
    grid-template-columns: 1.5fr 3fr;
    gap: 80px;
    padding: 100px 48px;
    margin-bottom: 48px;
    border-bottom: 1px solid var(--border);
    position: relative;
    z-index: 1;
}

.footer__brand {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 900;
    letter-spacing: 2px;
    color: #D8E7FA;
}

[data-theme="light"] .footer__logo {
    color: #051827;
}

.footer__tagline {
    font-size: 14px;
    color: var(--text-tertiary);
    line-height: 1.6;
}

.footer__columns {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer__col h5 {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-primary);
    margin-bottom: 24px;
}

.footer__col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer__col a {
    display: block;
    font-size: 14px;
    color: var(--text-tertiary);
    margin-bottom: 12px;
    transition: all 0.3s;
    text-decoration: none;
}

.footer__col a:hover {
    color: var(--accent);
    transform: translateX(4px);
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    font-size: 13px;
    color: var(--text-tertiary);
}


.footer__bottom-links {
    display: flex;
    gap: 16px;
}

.footer__bottom-links a {
    font-size: 12px;
    color: var(--text-tertiary);
    transition: color 0.3s;
}

.footer__bottom-links a:hover {
    color: var(--text-primary);
}

/* === FADE-IN ANIMATION === */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Intersection Observer animated elements */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s var(--ease-out-expo);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

.reveal-delay-4 {
    transition-delay: 0.4s;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .section--hero {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
        gap: 40px;
        padding: 40px 60px;
    }

    .hero__content {
        max-width: 100%;
    }

    .hero__actions {
        justify-content: center;
    }

    .about__grid,
    .vision__content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .feature-card--large {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .sidebar {
        display: none;
    }

    .sidebar.mobile-open {
        display: flex;
        position: fixed !important;
        width: 100%;
        height: 100vh;
        top: 0;
        left: 0;
        bottom: 0;
        border-radius: 0;
        z-index: 20000;
        /* Extremely high to cover everything */
        box-shadow: 0 0 50px rgba(0, 0, 0, 0.3);
        visibility: visible;
        opacity: 1;
        background: var(--bg);
    }

    .sidebar.mobile-open .sidebar__link-text {
        opacity: 1;
    }

    .mobile-nav-toggle {
        display: flex;
    }

    .main {
        margin-left: 0;
    }

    .section {
        padding: 60px 24px;
    }

    .section--hero {
        padding: 40px 24px;
    }

    .hero__title {
        font-size: clamp(48px, 14vw, 80px);
    }

    .hero__phone {
        width: 200px;
        height: 400px;
    }

    .hero__dna-visual {
        transform: scale(0.8);
    }

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

    .footer {
        padding: 40px 24px;
    }

    .footer__top {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .footer__brand {
        align-items: center;
    }

    .footer__columns {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 32px;
        text-align: left;
    }

    .footer__container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero__title {
        font-size: clamp(38px, 12vw, 60px);
    }

    .hero__actions {
        flex-direction: column;
        width: 100%;
        gap: 16px;
    }

    .hero__actions .btn {
        width: 100%;
        justify-content: center;
    }

    .live__grid {
        grid-template-columns: 1fr !important;
    }

    .footer__columns {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 40px 20px;
    }

    .section--beta {
        padding: 80px 24px;
    }

    .beta__layout {
        flex-direction: column;
        gap: 60px;
    }

    .beta__card {
        width: 100%;
        max-width: 100%;
    }

    .beta__card-inner {
        padding: 40px 24px;
        border-radius: 32px;
    }

    .beta__card-title {
        font-size: 24px;
        text-align: center;
    }

    .beta__card-desc {
        text-align: center;
    }

    .beta__input-wrap {
        flex-direction: column;
        padding: 8px;
        background: var(--surface-2);
    }

    .beta__input-wrap input {
        width: 100%;
        padding: 12px 16px;
        text-align: center;
    }

    .beta__submit-btn {
        width: 100%;
    }
}

/* === THEME TOGGLE BUTTON === */
.theme-toggle {
    position: fixed;
    top: 20px;
    right: 24px;
    z-index: 9999;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--surface);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all 0.4s var(--ease-out-expo);
}

.theme-toggle:hover {
    border-color: var(--accent);
    color: var(--text-primary);
    transform: rotate(20deg) scale(1.1);
    box-shadow: 0 0 20px var(--accent-glow);
}

.theme-toggle__icon {
    transition: all 0.4s var(--ease-out-expo);
    position: absolute;
}

.theme-toggle__icon--sun {
    opacity: 0;
    transform: rotate(-90deg) scale(0.5);
}

.theme-toggle__icon--moon {
    opacity: 1;
    transform: rotate(0) scale(1);
}

/* Sun visible in light mode */
[data-theme="light"] .theme-toggle__icon--sun {
    opacity: 1;
    transform: rotate(0) scale(1);
}

[data-theme="light"] .theme-toggle__icon--moon {
    opacity: 0;
    transform: rotate(90deg) scale(0.5);
}

[data-theme="light"] .theme-toggle {
    background: rgba(255, 255, 255, 0.7);
}

/* ============================
   LIGHT THEME
   ============================ */
[data-theme="light"] {
    --bg: #ffffff;
    --bg-elevated: #ffffff;
    --surface: #ffffff;
    --surface-2: #f8fafc;
    --border: rgba(0, 0, 0, 0.06);
    --border-hover: rgba(0, 0, 0, 0.12);

    --text-primary: #111827;
    --text-secondary: rgba(17, 24, 39, 0.65);
    --text-tertiary: rgba(17, 24, 39, 0.4);
    --text-accent: #64748b;

    --accent: #64748b;
    --accent-glow: rgba(100, 116, 139, 0.15);
    --accent-2: #475569;
    --accent-bright: #334155;

    --cyan: #64748b;
    --cyan-glow: rgba(100, 116, 139, 0.08);
}

[data-theme="light"] body {
    background: var(--bg);
}

[data-theme="light"] .ambient-glow {
    opacity: 0 !important;
    display: none !important;
}

[data-theme="light"] .mouse-spotlight {
    display: none !important;
}

[data-theme="light"] .floating-orb {
    opacity: 0 !important;
    display: none !important;
}

[data-theme="light"] .grid-overlay {
    background-image: none;
    box-shadow: none !important;
}

[data-theme="light"] .sidebar {
    background: rgba(255, 255, 255, 0.85);
}

[data-theme="light"] .hero__phone {
    background: linear-gradient(145deg, #ffffff, #eef0f5);
    box-shadow:
        0 0 60px rgba(100, 116, 139, 0.06),
        0 30px 60px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

[data-theme="light"] .hero__phone-inner {
    background: #f0f2f7;
}

[data-theme="light"] .hero__letter {
    background: linear-gradient(180deg,
            #111827 0%,
            #64748b 50%,
            #0EA5E9 100%);
    background-size: 100% 300%;
    -webkit-background-clip: text;
    background-clip: text;
}

[data-theme="light"] .hero__letter::before {
    color: #0EA5E9;
}

[data-theme="light"] .hero__letter::after {
    color: #e11d48;
}

[data-theme="light"] .value-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.75) 0%, rgba(248, 250, 252, 0.85) 100%);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.015), inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border-color: rgba(0, 0, 0, 0.05);
}

[data-theme="light"] .value-card:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.85) 0%, rgba(248, 250, 252, 0.95) 100%);
}

[data-theme="light"] .beta__input-wrap {
    background: #f1f5f9;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.04);
}

[data-theme="light"] .beta__card-title {
    color: #0f172a;
}

[data-theme="light"] .beta__card-desc {
    color: rgba(17, 24, 39, 0.6);
}

[data-theme="light"] .feature-card__icon {
    background: rgba(100, 116, 139, 0.08);
    border-color: rgba(100, 116, 139, 0.12);
}

[data-theme="light"] .phone-ui__card--1 {
    background: linear-gradient(135deg, rgba(100, 116, 139, 0.08), rgba(100, 116, 139, 0.02));
}

[data-theme="light"] .phone-ui__card--2 {
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.08), rgba(14, 165, 233, 0.02));
}

[data-theme="light"] .phone-ui__card--3 {
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.08), rgba(14, 165, 233, 0.02));
}

[data-theme="light"] .mobile-nav-toggle {
    background: rgba(255, 255, 255, 0.8);
}

[data-theme="light"] .mobile-nav-toggle span {
    background: var(--text-primary);
}

[data-theme="light"] .btn--primary {
    box-shadow: 0 4px 14px rgba(100, 116, 139, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

[data-theme="light"] .btn--primary:hover {
    box-shadow: 0 8px 25px rgba(100, 116, 139, 0.35), 0 4px 15px rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .section--hero,
[data-theme="light"] .section--global,
[data-theme="light"] .section--advantages,
[data-theme="light"] .section--manifesto,
[data-theme="light"] .section--features,
[data-theme="light"] .section--screens,
[data-theme="light"] .section--debates,
[data-theme="light"] .section--live,
[data-theme="light"] .section--beta,
[data-theme="light"] .footer {
    background: #ffffff !important;
}

[data-theme="light"] .section--manifesto::before,
[data-theme="light"] .section--features::before,
[data-theme="light"] .section--debates::before,
[data-theme="light"] .section--live::before,
[data-theme="light"] .section--beta::before {
    opacity: 0.08;
}

[data-theme="light"] .top-branding {
    background: var(--bg) !important;
    backdrop-filter: blur(12px);
    border-bottom-color: rgba(0, 0, 0, 0.05);
}

[data-theme="light"] body {
    box-shadow: none !important;
}

[data-theme="light"] main {
    box-shadow: none !important;
}

[data-theme="light"] .footer__top {
    border-color: var(--border);
}

[data-theme="light"] .btn--ghost:hover {
    background: rgba(0, 0, 0, 0.05);
}

[data-theme="light"] .beta__input-wrap {
    background: #f8fafc;
    border-color: rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .beta__input-wrap input {
    color: #111827 !important;
}

[data-theme="light"] .scroll-indicator__line {
    background: linear-gradient(to bottom, var(--accent-2), transparent);
}

[data-theme="light"] .mock-phone__ui--video {
    background: linear-gradient(180deg, rgba(100, 116, 139, 0.1) 0%, #f1f5f9 100%);
}

[data-theme="light"] .mock-thread-arg,
[data-theme="light"] .mock-stat,
[data-theme="light"] .mock-profile-dna {
    background: #f8fafc;
}

[data-theme="light"] .mock-video-title {
    color: #111827;
}

/* Smooth theme transition on all elements */
body,
.sidebar,
.value-card,
.feature-card,
.debate-card-mock,
.live-card,
.live__feed,
.beta__card-inner,
.hero__phone,
.hero__phone-inner,
.theme-toggle,
.btn,
.mobile-nav-toggle,
.footer {
    transition: background 0.5s var(--ease-out-expo),
        color 0.5s var(--ease-out-expo),
        border-color 0.5s var(--ease-out-expo),
        box-shadow 0.5s var(--ease-out-expo);
}

/* Responsive for new sections */
@media (max-width: 1024px) {

    .manifesto__content,
    .debates__content,
    .beta__layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer__top {
        flex-direction: column;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .footer__columns {
        flex-wrap: wrap;
        gap: 32px;
    }

    .footer {
        padding: 40px 24px 20px;
    }

    .footer__bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

/* === HERO SHIMMER REDESIGN === */
.top-nav {
    position: absolute;
    top: 48px;
    right: 140px;
    display: flex;
    align-items: center;
    z-index: 1000;
    background: transparent !important;
}

@media (max-width: 1024px) {
    .top-nav {
        right: 60px;
    }
}

@media (max-width: 768px) {
    .top-nav {
        position: absolute;
        top: 20px;
        right: 20px;
        padding: 0;
        justify-content: flex-end;
    }
}

.hero--shimmer {
    position: relative;
    overflow: hidden;
    padding-top: 120px;
    /* offset for top-nav */
}

.hero__shimmer-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(-45deg, #0f172a, #334155, #94a3b8, #e2e8f0, #f8fafc);
    background-size: 400% 400%;
    animation: shimmer-bg 15s ease infinite;
    opacity: 0.35;
    filter: blur(40px);
}

[data-theme="light"] .hero__shimmer-bg {
    background: #ffffff !important;
    animation: none;
    opacity: 1;
}

.hero__shimmer-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: radial-gradient(circle at center, transparent 0%, rgba(2, 4, 8, 0.8) 100%);
}

[data-theme="light"] .hero__shimmer-overlay {
    background: none !important;
}

@keyframes shimmer-bg {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.hero__content--centered {
    margin: 0;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    z-index: 10;
    max-width: 800px;
    width: auto;
}

.hero__content--left {
    margin: 0;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    z-index: 10;
    max-width: 800px;
    width: auto;
    flex: 1;
}

.hero__content--left .hero__sub-copy {
    align-items: flex-start;
    text-align: left;
}

.hero__content--left .hero__brand-text {
    text-align: left;
}

.hero__brand-center {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 40px;
    animation: fadeInUp 1s var(--ease-out-expo) 0.3s both;
}

.hero__brand-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 40px;
    animation: fadeInUp 1s var(--ease-out-expo) 0.3s both;
}

.hero__brand-logo-wrap {
    width: 160px;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transform-style: preserve-3d;
}

/* Removed empty light theme logo wrap styling */

.hero__brand-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 0 20px rgba(56, 189, 248, 0.2));
}

.hero__logo-pulse {
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
    animation: pulse-slow 3s infinite alternate;
}

@keyframes pulse-slow {
    from {
        transform: scale(0.9);
        opacity: 0.5;
    }

    to {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.hero__brand-text {
    font-family: 'Syncopate', sans-serif, var(--font-tech);
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-right: -0.25em;
    line-height: 1;
    color: #38BDF8;
    position: relative;
    transition: all 0.4s ease;
    text-shadow: 0 0 30px rgba(56, 189, 248, 0.3);
}

.hero__tagline {
    font-family: var(--font-display);
    font-size: clamp(18px, 3vw, 32px);
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--text-primary);
    margin-bottom: 32px;
    opacity: 0.9;
}

.hero__sub-copy-wrap {
    margin-bottom: 48px;
}

.hero__sub-copy {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

.hero__sub-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.hero__sub-item svg {
    color: #38BDF8;
    filter: drop-shadow(0 0 8px rgba(56, 189, 248, 0.4));
}

.hero__sub-item:hover {
    color: #38BDF8;
    transform: translateX(5px);
}

.hero__tagline {
    font-family: var(--font-display);
    font-size: clamp(18px, 3vw, 32px);
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--accent-bright);
    margin-top: 8px;
    opacity: 0.85;
    animation: fadeInUp 1s var(--ease-out-expo) 0.6s both;
}

[data-theme="light"] .hero__tagline {
    color: var(--text-primary);
    opacity: 0.7;
}

.hero__sub-copy {
    font-family: var(--font-body);
    font-size: clamp(14px, 1.8vw, 18px);
    font-weight: 400;
    color: var(--text-secondary);
    max-width: 560px;
    line-height: 1.6;
    margin-top: 12px;
    animation: fadeInUp 1s var(--ease-out-expo) 0.9s both;
}

.hero__content--centered .hero__actions {
    justify-content: center;
    margin-top: 16px;
}

/* === FLYING BIRDS ANIMATION === */
.birds-container {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 10;
    overflow: hidden;
}

.bird {
    position: absolute;
    width: 20px;
    height: 12px;
    color: rgba(255, 255, 255, 0.9);
    animation: bird-fly linear infinite;
}

.bird svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    animation: bird-wing 0.6s ease-in-out infinite alternate;
}

.bird--1 {
    top: 15%;
    left: -50px;
    animation-duration: 25s;
    animation-delay: 0s;
}

.bird--2 {
    top: 25%;
    left: -50px;
    animation-duration: 30s;
    animation-delay: -5s;
    scale: 0.8;
}

.bird--3 {
    top: 40%;
    left: -50px;
    animation-duration: 22s;
    animation-delay: -10s;
    scale: 0.6;
}

.bird--4 {
    top: 10%;
    right: -50px;
    animation: bird-fly-reverse 28s linear infinite;
    animation-delay: -15s;
    scale: 0.7;
}

.bird--5 {
    top: 60%;
    right: -50px;
    animation: bird-fly-reverse 35s linear infinite;
    animation-delay: -2s;
    scale: 0.5;
}

@keyframes bird-fly {
    0% {
        transform: translateX(0) translateY(0);
    }

    100% {
        transform: translateX(calc(100vw + 100px)) translateY(-50px);
    }
}

@keyframes bird-fly-reverse {
    0% {
        transform: translateX(0) translateY(0);
    }

    100% {
        transform: translateX(calc(-100vw - 100px)) translateY(30px);
    }
}

@keyframes bird-wing {
    0% {
        transform: scaleY(0.3);
    }

    100% {
        transform: scaleY(1);
    }
}

/* For Lenis Smooth Scrolling */
html.lenis,
html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-scrolling iframe {
    pointer-events: none;
}

/* For GSAP Split Text */
.split-line {
    overflow: hidden;
    line-height: inherit;
    /* Ensure no clipping of descenders */
    padding-bottom: 0.1em;
    /* extra space to prevent clipping */
}

/* === GEEX-STYLE SPINNING BACKGROUND === */
.abstract-spin {
    position: absolute;
    pointer-events: none;
    z-index: 1;
    /* Above shimmer bg, below text */
    mix-blend-mode: screen;
}

.abstract-spin--1 {
    top: 50%;
    right: 5%;
    width: 600px;
    height: 600px;
    transform: translateY(-50%);
    animation: spin3d-1 40s linear infinite;
    transform-style: preserve-3d;
    opacity: 0.15;
}

.abstract-spin--2 {
    top: 20%;
    left: 8%;
    width: 250px;
    height: 250px;
    color: var(--text-secondary);
    animation: spin3d-2 20s linear infinite;
}

@keyframes spin3d-1 {
    0% {
        transform: translateY(-50%) rotateX(60deg) rotateZ(0deg);
    }

    100% {
        transform: translateY(-50%) rotateX(60deg) rotateZ(360deg);
    }
}

@keyframes spin3d-2 {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* === MOBILE ADAPTATION FOR 3D ELEMENTS === */
@media (max-width: 768px) {
    .hero__brand-logo-wrap {
        width: 100px;
        height: 100px;
    }

    .abstract-spin--1 {
        width: 300px;
        height: 300px;
        right: -10%;
        opacity: 0.1;
    }

    .abstract-spin--2 {
        width: 160px;
        height: 160px;
        top: 15%;
        left: 5%;
    }

    .section--hero {
        padding: 0 24px;
        flex-direction: column;
        justify-content: center;
        gap: 40px;
    }

    .hero__brand-text {
        font-family: 'Syncopate', sans-serif;
        font-size: min(8vw, 36px) !important;
        letter-spacing: 0.1em !important;
        margin-right: 0 !important;
        color: #38BDF8;
    }

    /* Manifesto Mobile Optimization */
    .section--manifesto {
        padding: 40px 24px 20px;
    }

    .value-card {
        padding: 16px;
        gap: 16px;
    }

    .value-card__icon {
        padding: 8px;
    }

    .value-card h4 {
        font-size: 15px;
        margin-bottom: 4px;
    }

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

@media (max-width: 480px) {
    .hero__brand-text {
        font-size: min(12vw, 42px);
        letter-spacing: 0.15em;
    }

    .abstract-spin--1 {
        width: 200px;
        height: 200px;
    }
}

/* === 3D FLOATING VIDEO CARDS (SHORT VIDEO THEME) === */
.short-video-float {
    position: absolute;
    width: 140px;
    height: 250px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    pointer-events: none;
    z-index: 1;
    transform-style: preserve-3d;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8), inset 0 0 20px rgba(255, 255, 255, 0.1);
}

.short-video-float::before {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
}

.short-video-float::after {
    content: '▶';
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    position: absolute;
    margin-left: 2px;
}

/* Overlay gradient for premium feel */
.short-video-float .float-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.1), rgba(14, 165, 233, 0.1));
    border-radius: inherit;
}

/* ========================================
   GLOBAL PLATFORM SECTION — Base Chain
   ======================================== */
/* === GLOBAL NETWORK SECTION === */
.section--global {
    background: var(--bg-main);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.global__layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.global__visual {
    position: relative;
    background: radial-gradient(circle at center, rgba(14, 165, 233, 0.05) 0%, transparent 70%);
    border-radius: 40px;
    padding: 20px;
}

.global__map-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    max-width: 600px;
    margin: 0 auto;
}

#canvas-3d-globe {
    width: 100%;
    height: 100%;
}

.globe-overlay-stats {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
    z-index: 2;
}

.stat-box {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.85), rgba(248, 250, 252, 0.7));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(14, 165, 233, 0.12);
    padding: 14px 20px;
    border-radius: 12px;
    text-align: center;
    min-width: 120px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.02);
}

[data-theme="dark"] .stat-box {
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.8), rgba(8, 12, 24, 0.85));
    border-color: rgba(255, 255, 255, 0.05);
}

.stat-box__label {
    display: block;
    font-family: var(--font-tech);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--text-tertiary);
    text-transform: uppercase;
    margin-bottom: 4px;
}

.stat-box__value {
    font-family: var(--font-tech);
    font-size: 22px;
    font-weight: 800;
    color: #0EA5E9;
}

.global__content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.cluster-boxes {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cluster-box {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(248, 250, 252, 0.65));
    border: 1px solid rgba(14, 165, 233, 0.1);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

[data-theme="dark"] .cluster-box {
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.4), rgba(8, 12, 24, 0.5));
    border-color: rgba(255, 255, 255, 0.04);
}

.cluster-box:hover {
    transform: translateY(-4px);
    border-color: rgba(14, 165, 233, 0.25);
    box-shadow: 0 16px 40px rgba(14, 165, 233, 0.04);
}

[data-theme="dark"] .cluster-box:hover {
    border-color: rgba(14, 165, 233, 0.3);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
}

.cluster-box__tag {
    font-family: var(--font-tech);
    font-size: 10px;
    font-weight: 700;
    color: #0EA5E9;
    letter-spacing: 1.5px;
    display: inline-block;
    margin-bottom: 14px;
}

.cluster-box h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.cluster-box p {
    font-size: 14px;
    line-height: 1.55;
    color: var(--text-secondary);
}

@media (max-width: 1024px) {
    .global__layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 80px 24px 60px !important;
    }

    .section--global {
        padding-top: 100px !important;
        min-height: auto !important;
    }

    .global__visual {
        border-radius: 24px;
        padding: 0 !important;
        margin-top: 0 !important;
    }

    .global__map-wrap {
        width: 100% !important;
        max-width: 340px !important;
        aspect-ratio: 1 / 1 !important;
        height: auto !important;
        min-height: 300px !important;
        /* Ensure visibility */
        margin: 20px auto !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
    }

    #canvas-3d-globe {
        width: 100% !important;
        height: 100% !important;
        position: relative !important;
    }

    .globe-overlay-stats {
        position: relative !important;
        bottom: 0 !important;
        left: 0 !important;
        transform: none !important;
        margin: 20px auto 0 !important;
        display: flex !important;
        flex-direction: row !important;
        gap: 12px !important;
        width: 100% !important;
        justify-content: center !important;
    }

    .stat-box {
        padding: 12px 16px !important;
        min-width: 110px !important;
        flex: 1 !important;
    }
}


/* === TOP RIGHT LOGO === */
.top-right-logo {
    position: fixed;
    top: 32px;
    right: 48px;
    z-index: 2000;
    transition: all 0.3s var(--ease-out-expo);
    background: var(--surface) !important;
    padding: 10px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(14, 165, 233, 0.2), 0 0 0 1px rgba(14, 165, 233, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.top-right-logo:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 12px 40px rgba(14, 165, 233, 0.3);
}

.top-right-logo img {
    height: 44px;
    width: auto;
    filter: drop-shadow(0 4px 12px rgba(14, 165, 233, 0.15));
}

@media (max-width: 768px) {
    .top-right-logo {
        top: 20px;
        right: auto;
        left: 20px;
        /* Move logo to the left on mobile to avoid overlapping the CTA on the right */
    }

    .top-right-logo img {
        height: 32px;
    }
}

[data-theme="dark"] .top-right-logo img {
    filter: drop-shadow(0 0 20px var(--accent-glow));
}

[data-theme="light"] img[src*="logo.png"] {
    filter: invert(1) hue-rotate(180deg) brightness(0.8) contrast(1.5);
}

/* Custom Adjustments for light mode 3D objects */
[data-theme="light"] .feat3d {
    filter: saturate(1.2) contrast(1.1);
}

[data-theme="light"] .arena-sphere {
    opacity: 0.9;
}

[data-theme="light"] .lbar {
    background: linear-gradient(to top, var(--accent), var(--accent-bright));
}

[data-theme="light"] .jury-center {
    background: var(--accent);
}

/* ==============================
   HERO CTA BUTTON
   ============================== */
.hero__cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 32px;
    padding: 14px 32px;
    background: #0EA5E9;
    color: #ffffff;
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 700;
    border-radius: 12px;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: all 0.3s var(--ease-out-expo);
    box-shadow: 0 4px 20px rgba(14, 165, 233, 0.35);
    animation: fadeInUp 0.8s var(--ease-out-expo) 0.9s both;
}

.hero__cta-btn:hover {
    background: #38bdf8;
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(14, 165, 233, 0.5);
}

[data-theme="light"] .hero__cta-btn {
    background: #0EA5E9;
    color: #fff;
}

/* ==============================
   DEBATE LIVE MOCKUP
   ============================== */
/* ==============================
   PREMIUM ARENA (TERMINAL CORE)
   ============================== */
.arena-showcase {
    background: transparent;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    position: relative;
    overflow: visible;
    margin-top: 60px;
    border: none;
}

[data-theme="dark"] .arena-showcase {
    background: transparent;
    border-color: transparent;
}

.arena-showcase__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 48px;
    border-bottom: none;
    padding-bottom: 0px;
}

.arena-status {
    display: flex;
    align-items: center;
    gap: 12px;
}

.arena-status__dot {
    width: 10px;
    height: 10px;
    background: #38BDF8;
    border-radius: 50%;
    animation: pulse-blue 2s infinite;
    box-shadow: 0 0 12px rgba(56, 189, 248, 0.6);
}

@keyframes pulse-blue {
    0% {
        transform: scale(0.9);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.1);
        opacity: 1;
        box-shadow: 0 0 20px rgba(56, 189, 248, 0.8);
    }

    100% {
        transform: scale(0.9);
        opacity: 0.8;
    }
}

.arena-status__text {
    font-family: var(--font-tech);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.5px;
    color: var(--text-secondary);
}

.arena-timer {
    text-align: right;
}

.timer-label {
    display: block;
    font-family: var(--font-tech);
    font-size: 10px;
    color: var(--text-tertiary);
    letter-spacing: 1.5px;
}

.timer-val {
    font-family: var(--font-tech);
    font-size: 20px;
    font-weight: 700;
    color: #38BDF8;
}

.arena-grid {
    display: flex;
    align-items: stretch;
    gap: 32px;
    margin-bottom: 56px;
}

.arena-panel {
    flex: 1;
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
    box-shadow: none;
    transition: all 0.4s var(--ease-out-expo);
}

.arena-panel:hover {
    transform: translateY(-4px);
    box-shadow: none;
}

[data-theme="dark"] .arena-panel {
    background: transparent;
    border-color: transparent;
}

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

.side-tag {
    font-family: var(--font-tech);
    font-size: 10px;
    font-weight: 700;
    padding: 0;
    border-radius: 0;
    background: transparent !important;
    box-shadow: none !important;
    letter-spacing: 1.5px;
}

.side-tag--for {
    color: #38BDF8;
}

.side-tag--against {
    color: #8B5CF6;
}

[data-theme="dark"] .side-tag--against {
    color: #C084FC;
}

.handle {
    font-family: var(--font-tech);
    font-size: 12px;
    color: var(--text-secondary);
}

/* === TERMINAL WINDOW DECORATION === */
.terminal-window {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(217, 228, 255, 0.05);
    background: rgba(12, 13, 18, 0.65);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
    transition: all 0.4s var(--ease-out-expo);
}

[data-theme="dark"] .terminal-window {
    border-color: rgba(217, 228, 255, 0.05);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
}

.terminal-window:hover {
    border-color: rgba(217, 228, 255, 0.12);
    box-shadow: 0 30px 80px rgba(56, 189, 248, 0.08);
}

.terminal-window__header {
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(217, 228, 255, 0.04);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px;
}

[data-theme="dark"] .terminal-window__header {
    background: rgba(255, 255, 255, 0.02);
    border-bottom-color: rgba(217, 228, 255, 0.04);
}

.terminal-window__dots {
    display: flex;
    gap: 6px;
}

.terminal-window__dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}

.dot--red { background: #ef4444; opacity: 0.8; }
.dot--yellow { background: #eab308; opacity: 0.8; }
.dot--green { background: #22c55e; opacity: 0.8; }

.terminal-window__title {
    font-family: var(--font-tech);
    font-size: 9px;
    color: var(--text-tertiary);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.panel-terminal {
    background: transparent;
    padding: 24px;
    font-family: 'JetBrains Mono', 'Fira Code', monospace;
    font-size: 12.5px;
    line-height: 1.7;
    color: #EEEEF0;
    min-height: 110px;
    position: relative;
    border: none;
    box-shadow: none;
    overflow: hidden;
}

/* Subtle Scanline Effect */
.panel-terminal::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(18, 16, 16, 0) 50%,
            rgba(0, 0, 0, 0.1) 50%), linear-gradient(90deg,
            rgba(255, 0, 0, 0.01),
            rgba(0, 255, 0, 0.005),
            rgba(0, 0, 255, 0.01));
    background-size: 100% 4px, 3px 100%;
    pointer-events: none;
    z-index: 2;
    opacity: 0.3;
}

.terminal-line {
    position: relative;
    z-index: 3;
    margin-bottom: 4px;
}

/* Syntax Highlighting */
.term-prompt {
    color: #818cf8;
    font-weight: 700;
    margin-right: 6px;
}

.term-keyword {
    color: #38bdf8;
    font-weight: 600;
}

.term-keyword--warn {
    color: #fb7185;
}

.term-success {
    color: #34d399;
    font-weight: 600;
    text-shadow: 0 0 8px rgba(52, 211, 153, 0.3);
}

.term-warn {
    color: #fbbf24;
    font-weight: 600;
    text-shadow: 0 0 8px rgba(251, 191, 36, 0.3);
}

.term-accent {
    color: #c084fc;
    font-weight: 600;
}

.term-blink {
    animation: blink 1s infinite;
}

.terminal-cursor {
    width: 6px;
    height: 14px;
    background: #38bdf8;
    display: inline-block;
    animation: blink 1s infinite;
    box-shadow: 0 0 8px rgba(56, 189, 248, 0.8);
    vertical-align: middle;
    position: relative;
    z-index: 3;
}

.panel-stats {
    display: flex;
    align-items: center;
    gap: 16px;
}

.stat-bar {
    flex: 1;
    height: 4px;
    background: rgba(217, 228, 255, 0.05);
    border-radius: 100px;
    overflow: hidden;
}

[data-theme="dark"] .stat-bar {
    background: rgba(217, 228, 255, 0.05);
}

.stat-bar__fill {
    height: 100%;
    background: linear-gradient(90deg, #2563EB, #38BDF8) !important;
    border-radius: 100px;
    box-shadow: 0 0 12px rgba(56, 189, 248, 0.3);
}

.stat-bar__fill--against {
    background: linear-gradient(90deg, #7C3AED, #C084FC) !important;
    box-shadow: 0 0 12px rgba(192, 132, 252, 0.3);
}

.stat-val {
    font-family: var(--font-tech);
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
}

.arena-separator {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.vs-badge {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(12, 13, 18, 0.8) !important;
    border: 1px solid rgba(217, 228, 255, 0.1) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-tech);
    font-weight: 700;
    font-size: 11px;
    color: #EEEEF0 !important;
    box-shadow: 0 0 20px rgba(56, 189, 248, 0.15) !important;
    z-index: 2;
    letter-spacing: 1px;
}

[data-theme="dark"] .vs-badge {
    background: rgba(12, 13, 18, 0.8) !important;
    border-color: rgba(217, 228, 255, 0.1) !important;
}

.data-line {
    flex: 1;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(217, 228, 255, 0.1), transparent);
}

/* === EDITORIAL QUOTATION FOR MOTION === */
.arena-topic-alt {
    text-align: left;
    margin-bottom: 48px;
    padding: 24px 0;
    background: transparent !important;
    border-radius: 0;
    border: none;
    border-left: 2px solid rgba(217, 228, 255, 0.15) !important;
    padding-left: 24px;
}

[data-theme="dark"] .arena-topic-alt {
    background: transparent !important;
}

.topic-meta {
    font-family: var(--font-tech);
    font-size: 10px;
    color: #38BDF8;
    margin-bottom: 12px;
    letter-spacing: 2px;
    font-weight: 700;
}

.topic-content {
    font-family: 'Outfit', sans-serif !important;
    font-size: 26px !important;
    font-weight: 300 !important;
    color: var(--text-primary) !important;
    max-width: 100%;
    margin: 0;
    line-height: 1.45 !important;
    font-style: normal !important;
    letter-spacing: -0.02em !important;
}

.arena-cta {
    display: flex;
    gap: 20px;
}

.vote-btn {
    flex: 1;
    padding: 18px 24px;
    border-radius: 12px;
    border: 1px solid rgba(217, 228, 255, 0.08) !important;
    background: rgba(217, 228, 255, 0.02) !important;
    font-family: var(--font-tech);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    color: var(--text-secondary);
}

[data-theme="dark"] .vote-btn {
    border-color: rgba(217, 228, 255, 0.08);
    color: var(--text-secondary);
}

.vote-btn--for:hover {
    background: rgba(37, 99, 235, 0.08) !important;
    border-color: rgba(56, 189, 248, 0.3) !important;
    color: #38BDF8 !important;
    box-shadow: 0 0 20px rgba(56, 189, 248, 0.12) !important;
    transform: translateY(-2px);
}

.vote-btn--against:hover {
    background: rgba(124, 58, 237, 0.08) !important;
    border-color: rgba(192, 132, 252, 0.3) !important;
    color: #C084FC !important;
    box-shadow: 0 0 20px rgba(192, 132, 252, 0.12) !important;
    transform: translateY(-2px);
}

.vote-btn--cast {
    border-color: rgba(52, 211, 153, 0.4) !important;
    color: #34d399 !important;
    box-shadow: 0 0 20px rgba(52, 211, 153, 0.15) !important;
}

/* === Arena: AI Fact Check Demo === */
.factcheck-demo {
    margin: 40px 0;
    padding: 28px;
    border-radius: 20px;
    border: 1px solid rgba(217, 228, 255, 0.08);
    background: rgba(217, 228, 255, 0.02);
}

.factcheck-demo__hint {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0 0 20px;
    line-height: 1.5;
}

.factcheck-demo__claims {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.claim-chip {
    padding: 10px 16px;
    border-radius: 100px;
    border: 1px solid rgba(217, 228, 255, 0.1);
    background: rgba(217, 228, 255, 0.03);
    font-family: 'JetBrains Mono', 'Fira Code', monospace;
    font-size: 11.5px;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.claim-chip:hover {
    border-color: rgba(56, 189, 248, 0.35);
    color: #38BDF8;
    box-shadow: 0 0 16px rgba(56, 189, 248, 0.12);
    transform: translateY(-1px);
}

.claim-chip--active {
    border-color: rgba(56, 189, 248, 0.5);
    background: rgba(37, 99, 235, 0.1);
    color: #38BDF8;
}

.factcheck-output {
    min-height: 132px;
}

.term-danger {
    color: #f87171;
    font-weight: 600;
    text-shadow: 0 0 8px rgba(248, 113, 113, 0.3);
}

@media (max-width: 768px) {
    .factcheck-demo {
        padding: 18px;
        margin: 28px 0;
    }

    .claim-chip {
        font-size: 10.5px;
        padding: 9px 12px;
    }
}

/* Mobile adjustments */
@media (max-width: 1024px) {
    .arena-grid {
        flex-direction: column;
        gap: 24px;
    }

    .arena-separator {
        flex-direction: row;
        height: 48px;
        margin: 8px 0;
    }

    .data-line {
        width: 100%;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(217, 228, 255, 0.1), transparent);
    }
}

@media (max-width: 768px) {
    .arena-showcase {
        padding: 0;
        border-radius: 0;
    }

    .arena-showcase__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        margin-bottom: 32px;
    }

    .arena-timer {
        text-align: left;
    }

    .arena-panel {
        padding: 24px;
        border-radius: 24px;
    }

    .panel-terminal {
        font-size: 11px;
        padding: 16px;
        min-height: 110px;
    }

    .topic-content {
        font-size: 18px;
    }

    .arena-cta {
        flex-direction: column;
        gap: 12px;
    }

    .vote-btn {
        padding: 16px;
        font-size: 12px;
    }
}

/* ==============================
   APP INTERFACE SHOWCASE
   ============================== */
.section--interface {
    background: var(--bg-main);
    padding: 120px 0;
}

.interface__main-visual {
    width: 100%;
    max-width: 1200px;
    margin: 60px auto 0;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(0, 0, 0, 0.05);
    background: #fff;
}

.interface__full-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

@media (max-width: 768px) {
    .section--interface {
        padding: 60px 0;
    }

    .interface__main-visual {
        width: 100% !important;
        max-width: 100% !important;
        margin: 40px -20px 0 !important;
        padding: 0 20px !important;
        border-radius: 0 !important;
        overflow-x: auto !important;
        box-shadow: none !important;
        border: none !important;
        background: transparent !important;
        -webkit-overflow-scrolling: touch;
    }

    .interface__full-img {
        width: 100% !important;
        height: auto !important;
        max-width: 100% !important;
        display: block !important;
        object-fit: contain !important;
        border-radius: 16px;
    }
}

/* ============================================================
   ULTIMATE MOBILE OPTIMIZATIONS (FIXED)
   ============================================================ */
@media (max-width: 768px) {
    .section__header {
        text-align: center !important;
        padding: 0 20px !important;
    }
}

/* APP DOWNLOAD BUTTONS */
.app-downloads {
    display: flex;
    gap: 16px;
    margin-top: 32px;
    position: relative;
    z-index: 10;
    justify-content: flex-start;
}

.app-dl-btn {
    position: relative;
    display: flex;
    align-items: center;
    background: #09090b;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    padding: 8px 24px;
    border-radius: 14px;
    cursor: pointer;
    transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s, background 0.2s;
    overflow: hidden;
    min-width: 180px;
    justify-content: flex-start;
    text-align: left;
}

.app-dl-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent, #0EA5E9);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(14, 165, 233, 0.2);
}

.app-dl-text {
    display: flex;
    flex-direction: column;
    margin-left: 12px;
}

.app-dl-small {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.app-dl-large {
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.5px;
}

.app-dl-soon {
    position: absolute;
    inset: 0;
    background: #0EA5E9;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 18px;
    letter-spacing: 3px;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.app-dl-btn.show-soon .app-dl-soon {
    opacity: 1;
}

.app-dl-btn.show-soon {
    border-color: var(--accent, #0EA5E9);
}

/* FORCED LEFT ALIGNMENT */
#hero .hero__content--centered,
#hero .hero__brand-center {
    margin: 0 !important;
    align-items: flex-start !important;
    text-align: left !important;
    max-width: 800px !important;
}

#hero .hero__sub-copy {
    align-items: flex-start !important;
    text-align: left !important;
}

#hero .app-downloads {
    justify-content: flex-start !important;
}

/* ==========================================
   HERO 3D PHONE SHOWCASE — CINEMATIC
   ========================================== */
.hero__phone-showcase {
    position: relative;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 560px;
    perspective: 1800px;
    z-index: 10;
    animation: phone-entrance 1.8s cubic-bezier(0.16, 1, 0.3, 1) 0.6s both;
}

@keyframes phone-entrance {
    from {
        opacity: 0;
        transform: translateY(80px) scale(0.7);
        filter: blur(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

/* Ambient glow behind phone */
.hero__phone-glow {
    position: absolute;
    width: 400px;
    height: 500px;
    background: radial-gradient(ellipse, rgba(56, 189, 248, 0.2) 0%, rgba(14, 165, 233, 0.08) 40%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
    z-index: 0;
    animation: phone-glow-pulse 4s ease-in-out infinite alternate;
}

@keyframes phone-glow-pulse {
    from {
        opacity: 0.5;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1.15);
    }
}

/* Phone frame — realistic 3D */
.hero__phone-frame {
    position: relative;
    width: 270px;
    height: 560px;
    background: #000;
    border-radius: 36px;
    /* Less oval, more modern square-ish round */
    padding: 5px;
    /* Minimal bezels */
    z-index: 2;
    transform-style: preserve-3d;
    animation: phone-3d-float 6s ease-in-out infinite;
    /* Clean high-fidelity hardware look */
    box-shadow:
        0 0 0 1px #1a1a2e,
        0 0 0 2px rgba(255, 255, 255, 0.1),
        0 30px 80px rgba(0, 0, 0, 0.8),
        inset 0 0 1px rgba(255, 255, 255, 0.2);
    overflow: hidden;
}

@keyframes phone-3d-float {

    0%,
    100% {
        transform: rotateY(-12deg) rotateX(5deg) translateY(0px);
    }

    25% {
        transform: rotateY(-6deg) rotateX(2deg) translateY(-15px);
    }

    50% {
        transform: rotateY(8deg) rotateX(-3deg) translateY(-8px);
    }

    75% {
        transform: rotateY(2deg) rotateX(6deg) translateY(-20px);
    }
}

/* Light mode adjustments */
[data-theme="light"] .hero__phone-frame {
    background: linear-gradient(145deg, #f8fafc 0%, #e2e8f0 50%, #f1f5f9 100%);
    box-shadow:
        0 0 0 1px rgba(0, 0, 0, 0.08),
        0 25px 60px rgba(0, 0, 0, 0.15),
        0 0 80px rgba(56, 189, 248, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        inset 0 -1px 0 rgba(0, 0, 0, 0.05);
}

[data-theme="light"] .hero__phone-glow {
    background: radial-gradient(ellipse, rgba(56, 189, 248, 0.12) 0%, rgba(14, 165, 233, 0.04) 40%, transparent 70%);
}

/* Notch */
.phone__notch {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 28px;
    background: #0a0a14;
    border-radius: 0 0 16px 16px;
    z-index: 20;
}

[data-theme="light"] .phone__notch {
    background: #1e293b;
}

/* Screen */
.phone__screen {
    width: 100%;
    height: 100%;
    background: #000;
    border-radius: 32px;
    /* Matching the new stricter frame radius */
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
    -webkit-mask-image: -webkit-radial-gradient(white, black);
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
}

[data-theme="light"] .phone__screen {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

/* Status bar */
.phone__status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px 0;
    /* Adjusted padding */
    height: 34px;
    font-size: 12px;
    font-weight: 600;
    color: #ffffff;
    /* Pure white for better visibility */
    position: relative;
    z-index: 30;
    /* Higher than notch */
}

.phone__time {
    font-size: 13px;
    font-weight: 700;
}

.phone__status-icons {
    display: flex;
    gap: 4px;
    align-items: center;
    opacity: 0.6;
}

/* App header */
.phone__app-header {
    padding: 8px 16px 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

[data-theme="light"] .phone__app-header {
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.phone__app-logo {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'Syncopate', sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: #38BDF8;
    letter-spacing: 2px;
}

.phone__app-logo-img {
    width: 18px;
    height: 18px;
    border-radius: 50%;
}

.phone__app-nav {
    display: flex;
    gap: 10px;
}

.phone__nav-item {
    font-size: 10px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.35);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s;
}

.phone__nav-item--active {
    color: #38BDF8;
}

[data-theme="light"] .phone__nav-item {
    color: rgba(0, 0, 0, 0.3);
}

[data-theme="light"] .phone__nav-item--active {
    color: #0284c7;
}

/* Video card — the star of the show */
.phone__video-card {
    margin: 10px 12px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
    animation: card-cinematic-open 4s cubic-bezier(0.16, 1, 0.3, 1) 1.5s both;
    transform-origin: center top;
}

@keyframes card-cinematic-open {
    0% {
        opacity: 0;
        transform: scale(0.3) translateY(40px) rotateX(15deg);
        filter: blur(10px) brightness(2);
    }

    30% {
        opacity: 1;
        transform: scale(1.05) translateY(-5px) rotateX(-2deg);
        filter: blur(0) brightness(1.2);
    }

    50% {
        transform: scale(0.98) translateY(2px) rotateX(1deg);
        filter: blur(0) brightness(1);
    }

    100% {
        opacity: 1;
        transform: scale(1) translateY(0) rotateX(0);
        filter: blur(0) brightness(1);
    }
}

[data-theme="light"] .phone__video-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

/* Video thumbnail */
.phone__video-thumbnail {
    position: relative;
    width: 100%;
    height: 140px;
    overflow: hidden;
}

.phone__video-thumbnail--small {
    height: 100px;
}

/* Animated gradient poster simulating video */
.phone__video-poster {
    position: absolute;
    inset: 0;
    background: linear-gradient(-45deg, #0f172a, #1e3a5f, #0f766e, #1e3a5f, #0f172a);
    background-size: 400% 400%;
    animation: video-poster-shift 8s ease infinite;
}

.phone__video-poster::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 30% 40%, rgba(56, 189, 248, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(139, 92, 246, 0.2) 0%, transparent 50%);
    animation: poster-glow-move 6s ease-in-out infinite alternate;
}

@keyframes video-poster-shift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes poster-glow-move {
    0% {
        opacity: 0.6;
        transform: scale(1);
    }

    100% {
        opacity: 1;
        transform: scale(1.2);
    }
}

.phone__video-poster--alt {
    background: linear-gradient(-45deg, #1a0533, #2d1b69, #1e3a5f, #2d1b69, #1a0533);
    background-size: 400% 400%;
    animation: video-poster-shift 10s ease infinite reverse;
}

.phone__video-poster--alt::after {
    background:
        radial-gradient(circle at 60% 30%, rgba(168, 85, 247, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 70%, rgba(56, 189, 248, 0.2) 0%, transparent 50%);
}

[data-theme="light"] .phone__video-poster {
    background: linear-gradient(-45deg, #e2e8f0, #bae6fd, #99f6e4, #bae6fd, #e2e8f0);
    background-size: 400% 400%;
}

[data-theme="light"] .phone__video-poster--alt {
    background: linear-gradient(-45deg, #ede9fe, #c4b5fd, #bae6fd, #c4b5fd, #ede9fe);
    background-size: 400% 400%;
}

/* Play button */
.phone__play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 44px;
    height: 44px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.3);
    animation: play-btn-pop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 2.8s both;
    box-shadow: 0 0 30px rgba(56, 189, 248, 0.3);
}

.phone__play-btn svg {
    margin-left: 3px;
}

@keyframes play-btn-pop {
    0% {
        transform: translate(-50%, -50%) scale(0) rotate(-180deg);
    }

    100% {
        transform: translate(-50%, -50%) scale(1) rotate(0);
    }
}

/* Pulsing ring on play button */
.phone__play-btn::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px solid rgba(56, 189, 248, 0.4);
    animation: play-ring-pulse 2s ease-in-out infinite 3s;
}

@keyframes play-ring-pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.6;
    }

    50% {
        transform: scale(1.4);
        opacity: 0;
    }
}

/* Duration badge */
.phone__video-duration {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(0, 0, 0, 0.75);
    color: white;
    font-size: 9px;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 4px;
    font-family: var(--font-tech);
    letter-spacing: 0.5px;
}

/* LIVE badge */
.phone__video-live-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: #ef4444;
    color: white;
    font-size: 8px;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 4px;
    letter-spacing: 1.5px;
    animation: live-pulse 1.5s ease-in-out infinite;
    box-shadow: 0 0 15px rgba(239, 68, 68, 0.5);
}

@keyframes live-pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

/* Video info */
.phone__video-info {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px 6px;
}

.phone__video-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, #38BDF8, #8B5CF6);
    flex-shrink: 0;
    animation: avatar-ring-glow 3s ease-in-out infinite alternate;
}

.phone__video-avatar--alt {
    background: linear-gradient(135deg, #8B5CF6, #EC4899);
}

@keyframes avatar-ring-glow {
    0% {
        box-shadow: 0 0 0 2px rgba(56, 189, 248, 0.3);
    }

    100% {
        box-shadow: 0 0 0 2px rgba(139, 92, 246, 0.5);
    }
}

.phone__video-meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.phone__video-title {
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

[data-theme="light"] .phone__video-title {
    color: #0f172a;
}

.phone__video-author {
    font-size: 9px;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 500;
}

[data-theme="light"] .phone__video-author {
    color: #64748b;
}

/* Stats bar */
.phone__video-stats {
    display: flex;
    gap: 14px;
    padding: 4px 12px 10px;
    align-items: center;
}

.phone__stat {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.4);
}

.phone__stat svg {
    opacity: 0.5;
}

.phone__stat--score {
    color: #fbbf24;
    font-weight: 700;
}

.phone__stat--score svg {
    opacity: 1;
    stroke: #fbbf24;
}

[data-theme="light"] .phone__stat {
    color: #94a3b8;
}

[data-theme="light"] .phone__stat--score {
    color: #d97706;
}

/* Secondary card */
.phone__video-card--secondary {
    opacity: 0.5;
    animation: card-cinematic-open 4s cubic-bezier(0.16, 1, 0.3, 1) 2.2s both;
    transform-origin: center top;
}

/* Bottom nav */
.phone__bottom-nav {
    margin-top: auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 10px 16px 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

[data-theme="light"] .phone__bottom-nav {
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.phone__bottom-item {
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.3);
    transition: color 0.3s;
}

.phone__bottom-item--active {
    color: #38BDF8;
}

.phone__bottom-item--create {
    color: #38BDF8;
    animation: create-btn-glow 2s ease-in-out infinite alternate;
}

@keyframes create-btn-glow {
    0% {
        filter: drop-shadow(0 0 4px rgba(56, 189, 248, 0.3));
    }

    100% {
        filter: drop-shadow(0 0 12px rgba(56, 189, 248, 0.6));
    }
}

[data-theme="light"] .phone__bottom-item {
    color: #94a3b8;
}

[data-theme="light"] .phone__bottom-item--active {
    color: #0284c7;
}

[data-theme="light"] .phone__bottom-item--create {
    color: #0284c7;
}

/* Floating reaction bubbles */
.hero__phone-reactions {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 5;
}

.phone__reaction {
    position: absolute;
    font-size: 22px;
    opacity: 0;
    animation: reaction-float 4s ease-in-out infinite;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.3));
}

.phone__reaction--1 {
    right: -20px;
    top: 30%;
    animation-delay: 3s;
}

.phone__reaction--2 {
    left: -25px;
    top: 45%;
    animation-delay: 4.5s;
}

.phone__reaction--3 {
    right: -15px;
    bottom: 35%;
    animation-delay: 5.5s;
}

.phone__reaction--4 {
    left: -20px;
    bottom: 25%;
    animation-delay: 7s;
}

@keyframes reaction-float {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.5);
    }

    15% {
        opacity: 1;
        transform: translateY(0) scale(1.1);
    }

    30% {
        transform: translateY(-10px) scale(1);
    }

    60% {
        opacity: 0.8;
        transform: translateY(-30px) scale(0.9);
    }

    100% {
        opacity: 0;
        transform: translateY(-60px) scale(0.5);
    }
}

/* Reflection line on phone */
.hero__phone-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, transparent 100%);
    border-radius: 40px 40px 0 0;
    z-index: 3;
    pointer-events: none;
}

/* Scanning light effect over phone */
.hero__phone-frame::after {
    content: '';
    position: absolute;
    top: -100%;
    left: -50%;
    width: 200%;
    height: 50px;
    background: linear-gradient(180deg, transparent, rgba(56, 189, 248, 0.1), transparent);
    transform: rotate(-5deg);
    animation: phone-scan-line 5s linear infinite;
    z-index: 4;
    pointer-events: none;
}

@keyframes phone-scan-line {
    0% {
        top: -20%;
    }

    100% {
        top: 120%;
    }
}

/* === RESPONSIVE — Phone Showcase === */
@media (max-width: 1024px) {
    .section--hero {
        flex-direction: column;
        padding: 120px 32px 60px;
        gap: 40px;
    }

    .hero__phone-showcase {
        min-height: 480px;
        order: -1;
    }

    .hero__phone-frame {
        width: 240px;
        height: 480px;
        animation: phone-3d-float-mobile 6s ease-in-out infinite;
    }

    @keyframes phone-3d-float-mobile {

        0%,
        100% {
            transform: rotateY(-5deg) rotateX(3deg) translateY(0);
        }

        50% {
            transform: rotateY(5deg) rotateX(-3deg) translateY(-12px);
        }
    }
}

@media (max-width: 768px) {
    .hero__phone-showcase {
        min-height: 420px;
    }

    .hero__phone-frame {
        width: 220px;
        height: 440px;
        border-radius: 32px;
    }

    .phone__screen {
        border-radius: 24px;
    }

    .phone__notch {
        width: 80px;
        height: 24px;
        border-radius: 0 0 12px 12px;
    }

    .phone__reaction {
        font-size: 18px;
    }
}

/* =============================================================
   MANIFESTO V2 — Premium Redesign
   ============================================================= */

/* --- Section Base --- */
.manifesto-v2 {
    position: relative;
    padding: 120px 0 100px !important;
    overflow: hidden;
    background: #08090D !important;
    color: #EEEEF0 !important;
    z-index: 1;
}

.manifesto-v2::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(to bottom, #08090D 0%, rgba(8, 9, 13, 0) 30%, rgba(8, 9, 13, 0) 70%, #08090D 100%), url('assets/terminal-concept.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.05;
    filter: invert(1);
    pointer-events: none;
    z-index: -1;
}

[data-theme="light"] .manifesto-v2 {
    background: #08090D !important;
    color: #EEEEF0 !important;
}

/* --- Decorative Layer --- */
.manifesto-v2__decor {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.manifesto-v2__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.12;
    will-change: transform;
}

.manifesto-v2__orb--1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.4), transparent 70%);
    top: -15%;
    right: -5%;
    animation: manifesto-orb-float-1 18s ease-in-out infinite;
}

.manifesto-v2__orb--2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.3), transparent 70%);
    bottom: -10%;
    left: -8%;
    animation: manifesto-orb-float-2 22s ease-in-out infinite;
}

.manifesto-v2__orb--3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.25), transparent 70%);
    top: 40%;
    left: 50%;
    animation: manifesto-orb-float-3 15s ease-in-out infinite;
}

@keyframes manifesto-orb-float-1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-40px, 30px) scale(1.1); }
    66% { transform: translate(20px, -20px) scale(0.95); }
}

@keyframes manifesto-orb-float-2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(50px, -40px) scale(1.15); }
}

@keyframes manifesto-orb-float-3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    40% { transform: translate(-30px, 20px) scale(1.05); }
    80% { transform: translate(25px, -15px) scale(0.9); }
}

.manifesto-v2__grid-lines {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(14, 165, 233, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(14, 165, 233, 0.06) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black 20%, transparent 70%);
}

.manifesto-v2__radial-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 600px;
    background: radial-gradient(ellipse, rgba(14, 165, 233, 0.04) 0%, transparent 60%);
    pointer-events: none;
}

/* --- Inner content container --- */
.manifesto-v2__inner {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}

/* --- Label row --- */
.manifesto-v2__label-row {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 48px;
}

.manifesto-v2__label {
    font-family: 'Oxanium', monospace;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #0284c7;
    white-space: nowrap;
}

.manifesto-v2__label-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, rgba(14, 165, 233, 0.25), transparent);
}

/* --- Headline --- */
.manifesto-v2__headline {
    font-family: 'Syncopate', sans-serif !important;
    text-transform: uppercase !important;
    font-size: clamp(24px, 3.8vw, 44px);
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 0.08em;
    color: #EEEEF0 !important;
    margin-bottom: 24px;
    max-width: 900px;
}

[data-theme="light"] .manifesto-v2__headline {
    color: #0F172A !important;
}

.manifesto-v2__highlight {
    background: linear-gradient(135deg, #D9E4FF 0%, #A5C6FF 40%, #8B5CF6 100%) !important;
    background-clip: text !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    position: relative;
    display: inline-block;
}

.manifesto-v2__highlight::after {
    display: none !important;
}

.manifesto-v2__subheadline {
    font-family: 'Inter', sans-serif;
    font-size: clamp(16px, 2vw, 20px);
    font-weight: 400;
    color: #8E90A0 !important;
    max-width: 600px;
    line-height: 1.6;
    margin-bottom: 50px;
}

[data-theme="light"] .manifesto-v2__subheadline {
    color: #8E90A0 !important;
}

/* --- Quote block --- */
.manifesto-v2__quote-block {
    position: relative;
    padding: 20px 0 40px;
    margin-bottom: 60px;
    background: transparent;
    border: none;
    border-radius: 0;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    max-width: 820px;
    box-shadow: none;
}

.manifesto-v2__quote-mark {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 160px;
    color: rgba(2, 132, 199, 0.07);
    position: absolute;
    left: -28px;
    top: -50px;
    line-height: 1;
    pointer-events: none;
}

[data-theme="dark"] .manifesto-v2__quote-mark {
    color: rgba(56, 189, 248, 0.07);
}

.manifesto-v2__quote {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(20px, 2.4vw, 26px);
    font-style: italic;
    font-weight: 400;
    line-height: 1.65;
    color: #1e293b;
    margin: 0;
    position: relative;
    z-index: 1;
}

[data-theme="light"] .manifesto-v2__quote {
    color: #1e293b !important;
}

[data-theme="dark"] .manifesto-v2__quote {
    color: #f1f5f9 !important;
}

.manifesto-v2__quote em {
    font-style: normal;
    color: #0284c7;
    font-weight: 600;
    border-bottom: 2px solid rgba(2, 132, 199, 0.15);
}

[data-theme="dark"] .manifesto-v2__quote em {
    color: #38bdf8;
    border-color: rgba(56, 189, 248, 0.25);
}

/* --- Signature --- */
.manifesto-v2__signature {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(226, 232, 240, 0.6);
}

[data-theme="dark"] .manifesto-v2__signature {
    border-color: rgba(255, 255, 255, 0.05);
}

.manifesto-v2__sig-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(15, 23, 42, 0.04);
    border: 1px solid rgba(15, 23, 42, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #475569;
    font-family: monospace;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

[data-theme="dark"] .manifesto-v2__sig-avatar {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.08);
    color: #e2e8f0;
}

.manifesto-v2__sig-meta {
    display: flex;
    flex-direction: column;
}

.manifesto-v2__sig-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #0f172a;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

[data-theme="dark"] .manifesto-v2__sig-name {
    color: #f8fafc;
}

.manifesto-v2__sig-title {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 500;
    color: #64748b;
}

[data-theme="dark"] .manifesto-v2__sig-title {
    color: rgba(248, 250, 252, 0.6);
}

/* --- Cards Row --- */
.manifesto-v2__cards {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.manifesto-v2__cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin-top: 28px;
}

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

.manifesto-v2__card {
    position: relative;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(248, 250, 252, 0.95));
    border: 1px solid rgba(0, 0, 0, 0.045);
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.01);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
}

[data-theme="dark"] .manifesto-v2__card {
    background: linear-gradient(180deg, rgba(10, 15, 30, 0.55), rgba(5, 8, 16, 0.65));
    border-color: rgba(255, 255, 255, 0.03);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.manifesto-v2__card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.04);
}

.manifesto-v2__card--1:hover { border-color: rgba(14, 165, 233, 0.3); }
.manifesto-v2__card--2:hover,
.manifesto-v2__card--full:hover { border-color: rgba(99, 102, 241, 0.3); }
.manifesto-v2__card--3:hover { border-color: rgba(16, 185, 129, 0.3); }

[data-theme="dark"] .manifesto-v2__card--1:hover { border-color: rgba(56, 189, 248, 0.4); }
[data-theme="dark"] .manifesto-v2__card--2:hover,
[data-theme="dark"] .manifesto-v2__card--full:hover { border-color: rgba(139, 92, 246, 0.4); }
[data-theme="dark"] .manifesto-v2__card--3:hover { border-color: rgba(16, 185, 129, 0.4); }

.manifesto-v2__card-inner {
    padding: 28px 24px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.manifesto-v2__card--full {
    background: rgba(12, 13, 18, 0.45) !important;
    border: none !important;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.03), 0 0 40px rgba(217, 228, 255, 0.02) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    transform-style: preserve-3d;
    perspective: 2000px;
    border-radius: 24px !important;
    overflow: visible;
    position: relative;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s ease;
}

.manifesto-v2__card--full:hover {
    transform: translateY(-4px) scale(1.005) !important;
    border: none !important;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 0 50px rgba(217, 228, 255, 0.05) !important;
}

[data-theme="dark"] .manifesto-v2__card--full {
    background: rgba(12, 13, 18, 0.45) !important;
    border: none !important;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.03), 0 0 40px rgba(217, 228, 255, 0.02) !important;
}

/* Micro-grid background disabled for premium clean layout */
.manifesto-v2__card--full::before {
    display: none;
}

/* Card Header Status Bar - disabled */
.manifesto-v2__card-status-bar {
    display: none;
}

.manifesto-v2__card-inner--full {
    display: flex;
    flex-direction: row;
    padding: 64px 72px;
    gap: 64px;
    align-items: center;
    transform-style: preserve-3d;
}

.manifesto-v2__card-content {
    flex: 1.0;
    display: flex;
    flex-direction: column;
    transform-style: preserve-3d;
    transition: transform 0.1s ease;
}

.manifesto-v2__card-visual-wrapper {
    flex: 1.4;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    transform-style: preserve-3d;
    transition: transform 0.1s ease;
}

.manifesto-v2__card-graphic-box.manifesto-v2__card-graphic-box--full {
    width: 100%;
    height: 520px;
    background: transparent;
    border: none;
    box-shadow: none;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: visible;
    padding: 0;
    transform: translateZ(50px);
    transform-style: preserve-3d;
}

/* Disabled overlays */
.manifesto-v2__card-graphic-box--full::after {
    display: none;
}

/* --- Premium Large Borderless Screenshot --- */
.manifesto-v2__screenshot {
    width: 380px;
    height: auto;
    border-radius: 16px;
    border: none !important; /* Absolutely no outlines */
    outline: none !important;
    box-shadow: 
        0 30px 80px rgba(15, 23, 42, 0.18),
        0 10px 25px rgba(15, 23, 42, 0.12);
    transform: perspective(1200px) rotateX(10deg) rotateY(-18deg) rotateZ(5deg);
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.7s ease;
    display: block;
}

.manifesto-v2__card--full:hover .manifesto-v2__screenshot {
    transform: perspective(1200px) rotateX(6deg) rotateY(-10deg) rotateZ(3deg) scale(1.05);
    box-shadow: 
        0 40px 100px rgba(15, 23, 42, 0.25),
        0 15px 35px rgba(15, 23, 42, 0.18);
}

.manifesto-v2__card-stats-row {
    display: flex;
    gap: 40px;
    margin-top: auto;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.manifesto-v2__card-stats-row .manifesto-v2__card-stat {
    border-top: none;
    padding-top: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}

.manifesto-v2__card--full .manifesto-v2__card-stat-num,
[data-theme="dark"] .manifesto-v2__card--full .manifesto-v2__card-stat-num {
    color: #D9E4FF !important;
    text-shadow: 0 0 10px rgba(217, 228, 255, 0.4);
}

.manifesto-v2__card-tag,
[data-theme="dark"] .manifesto-v2__card-tag {
    font-family: 'Space Grotesk', sans-serif !important;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #D9E4FF !important;
    text-shadow: 0 0 10px rgba(217, 228, 255, 0.3);
    margin-bottom: 20px;
    display: inline-block;
}

.manifesto-v2__card-graphic-box {
    height: 64px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(15, 23, 42, 0.02);
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.015);
    overflow: hidden;
    position: relative;
}

[data-theme="dark"] .manifesto-v2__card-graphic-box {
    background: rgba(255, 255, 255, 0.015);
    border-color: rgba(255, 255, 255, 0.02);
}

.manifesto-graphic {
    width: 100%;
    height: 100%;
    display: block;
}

.manifesto-v2__card-graphic-box--full .manifesto-graphic {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Custom Vector Animations */
@keyframes wave-jitter {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-1.5px) scaleY(1.05); }
}
.wave-noise {
    animation: wave-jitter 0.8s ease-in-out infinite alternate;
}

@keyframes sine-pulse {
    0% { stroke-dashoffset: 0; }
    100% { stroke-dashoffset: 70; }
}
.wave-clean {
    stroke-dasharray: 60, 10;
    animation: sine-pulse 3s linear infinite;
}

@keyframes tree-pulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}
.debate-tree {
    animation: tree-pulse 2s ease-in-out infinite;
}

@keyframes node-flash {
    0% { r: 2px; opacity: 0.5; }
    100% { r: 3.5px; opacity: 1; filter: drop-shadow(0 0 3px #8b5cf6); }
}
.pulse-node {
    animation: node-flash 1.5s infinite alternate;
}

@keyframes pulse-green {
    0% { r: 1.5px; opacity: 0.4; }
    100% { r: 3px; opacity: 1; filter: drop-shadow(0 0 4px #10b981); }
}
.pulse-node-green {
    animation: pulse-green 1.2s infinite alternate;
}

@keyframes pulse-red {
    0% { r: 1.5px; opacity: 0.4; }
    100% { r: 3px; opacity: 1; filter: drop-shadow(0 0 4px #ef4444); }
}
.pulse-node-red {
    animation: pulse-red 1.2s infinite alternate;
}

@keyframes branch-flow {
    0% { stroke-dashoffset: 10; }
    100% { stroke-dashoffset: 0; }
}
.debate-tree-branch-for-sub1,
.debate-tree-branch-for-sub2,
.debate-tree-branch-against-sub1,
.debate-tree-branch-against-sub2 {
    stroke-dasharray: 4, 3;
    animation: branch-flow 1.5s linear infinite;
}

@keyframes scan-up-down {
    0%, 100% { transform: translateY(-12px); }
    50% { transform: translateY(12px); }
}
.camera-scan {
    animation: scan-up-down 3s ease-in-out infinite;
}

/* Card Text */
.manifesto-v2__card-title {
    font-family: 'Space Grotesk', sans-serif !important;
    font-size: 32px;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
    line-height: 1.25;
    color: #ffffff;
    background: linear-gradient(to right, #ffffff 60%, #cbd5e1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.manifesto-v2__card-desc {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.65;
    color: #94a3b8;
    flex: 1;
    margin-bottom: 28px;
}

/* Card stat counter */
.manifesto-v2__card-stat {
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: flex-start;
}

.manifesto-v2__card-stat-label {
    font-family: 'Inter', sans-serif !important;
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase !important;
    letter-spacing: 0.05em;
    color: #8E90A0 !important;
}

.manifesto-v2__card-stat-num {
    font-family: 'Space Grotesk', sans-serif !important;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: #D9E4FF !important;
    text-shadow: 0 0 10px rgba(217, 228, 255, 0.4);
    text-transform: uppercase !important;
}

[data-theme="dark"] .manifesto-v2__card-stat-num {
    color: #D9E4FF !important;
    text-shadow: 0 0 10px rgba(217, 228, 255, 0.4);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .manifesto-v2__inner {
        padding: 0 40px;
    }

    .manifesto-v2__cards {
        max-width: 100%;
        gap: 20px;
    }

    .manifesto-v2__headline {
        font-size: clamp(30px, 5vw, 44px);
    }
}

@media (max-width: 768px) {
    .manifesto-v2 {
        padding: 80px 0 60px !important;
    }

    .manifesto-v2__inner {
        padding: 0 24px;
    }

    .manifesto-v2__headline {
        font-size: 26px;
    }

    .manifesto-v2__quote-block {
        padding: 16px 0 32px;
        margin-bottom: 40px;
    }

    .manifesto-v2__quote {
        font-size: 19px;
    }

    .manifesto-v2__cards {
        gap: 16px;
        max-width: 100%;
    }

    .manifesto-v2__card-inner--full {
        flex-direction: column; /* Text on top, image on bottom */
        padding: 40px 24px;
        gap: 40px;
        align-items: center;
    }

    .manifesto-v2__card-content {
        flex: auto;
        align-items: center;
        text-align: center;
    }

    .manifesto-v2__card-stats-row {
        width: 100%;
        justify-content: center;
        gap: 24px;
        border-top: 1px solid rgba(15, 23, 42, 0.08);
        padding-top: 20px;
    }
    
    [data-theme="dark"] .manifesto-v2__card-stats-row {
        border-color: rgba(15, 23, 42, 0.08);
    }

    .manifesto-v2__card-stat {
        align-items: center;
    }

    .manifesto-v2__card-graphic-box.manifesto-v2__card-graphic-box--full {
        height: auto;
        min-height: 280px;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .manifesto-v2__screenshot {
        width: 260px;
        max-width: 100%;
        transform: perspective(1000px) rotateX(8deg) rotateY(-12deg) rotateZ(3deg);
    }

    .manifesto-v2__card--full:hover .manifesto-v2__screenshot {
        transform: perspective(1000px) rotateX(5deg) rotateY(-8deg) rotateZ(2deg) scale(1.02);
    }
}

/* =============================================================
   APP INTERFACE SHOWCASE RESPONSIVE & COMPACT SIZING
   ============================================================= */
.interface__triple-screens {
    display: flex !important;
    flex-direction: row !important;
    gap: 30px !important;
    justify-content: center !important;
    align-items: center !important;
    margin: 60px auto 0 !important;
    max-width: 960px !important; /* Limit maximum width on PC so cards stay phone-sized */
    width: 100% !important;
}

.interface__screen-card {
    flex: 1 !important;
    border-radius: 20px !important;
    overflow: hidden !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4) !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    transition: transform 0.4s ease !important;
}

.interface__screen-card:nth-child(1) {
    transform: perspective(1000px) rotateY(5deg) !important;
}

.interface__screen-card:nth-child(2) {
    flex: 1 !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4) !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    z-index: 10 !important;
    transform: none !important;
}

.interface__screen-card:nth-child(3) {
    transform: perspective(1000px) rotateY(-5deg) !important;
}

/* Light Theme tweaks for shadows & borders */
[data-theme="light"] .interface__screen-card {
    box-shadow: 0 15px 40px rgba(15, 23, 42, 0.12) !important;
    border: 1px solid rgba(15, 23, 42, 0.05) !important;
}

[data-theme="light"] .interface__screen-card:nth-child(2) {
    box-shadow: 0 30px 70px rgba(15, 23, 42, 0.22) !important;
    border: 1px solid rgba(15, 23, 42, 0.08) !important;
}

/* Responsive details for mobile/tablet */
@media (max-width: 768px) {
    .interface__triple-screens {
        gap: 12px !important;
        margin-top: 40px !important;
        max-width: 100% !important;
        padding: 0 16px !important;
    }
}

/* ==========================================================================
   CYBERPUNK моноширинные шрифты для надписей, кнопок и тегов
   ========================================================================== */
.fragment-tag,
.side-tag,
.cluster-box__tag,
.beta__perk-tag,
.topic-meta,
.terminal-line,
.rec-indicator,
.telemetry-top-right,
.telemetry-bottom,
.logic-score,
.vote-badge,
.vote-btn,
.header__link--cta,
.app-dl-btn,
.sidebar__link,
.sidebar__version,
.top-branding__text,
.header__link {
    font-family: var(--font-tech) !important;
    text-transform: uppercase !important;
}

/* ==========================================================================
   DEBATE COMPETITION ILLUSTRATION & LIGHT THEME OVERRIDES (Manifesto Section)
   ========================================================================== */

/* Force clean white background in light mode */
[data-theme="light"] .manifesto-v2 {
    background: #FFFFFF !important;
    color: #111827 !important;
}

[data-theme="light"] .manifesto-v2__headline {
    color: #0F172A !important;
}

[data-theme="light"] .manifesto-v2__subheadline {
    color: #4B5563 !important;
}

[data-theme="light"] .manifesto-v2__highlight {
    background: linear-gradient(135deg, #2563EB 0%, #3B82F6 40%, #8B5CF6 100%) !important;
    background-clip: text !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}

[data-theme="light"] .manifesto-v2__highlight::after {
    display: none !important;
}

[data-theme="light"] .manifesto-v2__orb--1 {
    background: radial-gradient(circle, rgba(37, 99, 235, 0.05), transparent 70%);
}
[data-theme="light"] .manifesto-v2__orb--2 {
    background: radial-gradient(circle, rgba(139, 92, 246, 0.04), transparent 70%);
}
[data-theme="light"] .manifesto-v2__orb--3 {
    background: radial-gradient(circle, rgba(56, 189, 248, 0.03), transparent 70%);
}

/* Premium Light Theme Glass Card for Manifesto (Borderless & Seamless) */
[data-theme="light"] .manifesto-v2__card--full {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    transform: none !important;
}

[data-theme="light"] .manifesto-v2__card--full:hover {
    transform: none !important;
    border: none !important;
    box-shadow: none !important;
}

/* Dark theme card overrides (Borderless) */
[data-theme="dark"] .manifesto-v2__card--full {
    border: none !important;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45) !important;
}
[data-theme="dark"] .manifesto-v2__card--full:hover {
    border: none !important;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.55) !important;
}

/* Tag & Stats overrides for Light Theme */
[data-theme="light"] .manifesto-v2__card-tag {
    color: #2563EB !important;
    background: rgba(37, 99, 235, 0.05) !important;
    border: none !important;
    padding: 6px 12px !important;
    border-radius: 8px !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    display: inline-block !important;
    font-family: var(--font-tech) !important;
}

[data-theme="light"] .manifesto-v2__card-stat-num {
    color: #2563EB !important;
    text-shadow: none !important;
    font-family: var(--font-tech) !important;
    font-weight: 700 !important;
}

[data-theme="light"] .manifesto-v2__card-stat-label {
    color: #4B5563 !important;
    font-family: var(--font-tech) !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    font-size: 10px !important;
    letter-spacing: 0.08em !important;
}

[data-theme="light"] .manifesto-v2__card-stats-row {
    border-top: 1px solid rgba(0, 0, 0, 0.06) !important;
}

.manifesto-v2__label {
    font-family: var(--font-tech) !important;
    font-weight: 700 !important;
}

/* --- Debate Arena Vector Graphic Styling --- */
.debate-arena-graphic {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: visible;
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
}

.debate-svg {
    width: 100%;
    height: 100%;
    max-height: 520px;
    display: block;
    overflow: visible;
}

/* Spotlight animations */
@keyframes spotlightLeftGlow {
    0%, 100% { opacity: 0.12; }
    50% { opacity: 0.22; }
}
@keyframes spotlightRightGlow {
    0%, 100% { opacity: 0.12; }
    50% { opacity: 0.22; }
}
.spotlight-beam--left {
    animation: spotlightLeftGlow 8s ease-in-out infinite;
    transform-origin: 180px 30px;
    transition: all 0.5s ease;
}
.spotlight-beam--right {
    animation: spotlightRightGlow 8s ease-in-out infinite;
    transform-origin: 620px 30px;
    transition: all 0.5s ease;
}

/* Debater interactivity */
.speaker-group {
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
}
.speaker-group:hover {
    transform: scale(1.03) translateY(-4px);
}

.speaker-group--left:hover ~ .spotlight-beam--left {
    animation: none;
    opacity: 0.35;
    fill: #FDE047;
}

.speaker-group--right:hover ~ .spotlight-beam--right {
    animation: none;
    opacity: 0.35;
    fill: #FDE047;
}

/* Speech Wave Animations */
@keyframes pulseWaveLeft {
    0% { stroke-dashoffset: 0; opacity: 0.15; }
    50% { opacity: 0.6; }
    100% { stroke-dashoffset: -20; opacity: 0.15; }
}
@keyframes pulseWaveRight {
    0% { stroke-dashoffset: 0; opacity: 0.15; }
    50% { opacity: 0.6; }
    100% { stroke-dashoffset: 20; opacity: 0.15; }
}

.speech-wave--left-1 {
    animation: pulseWaveLeft 4s linear infinite;
}
.speech-wave--left-2 {
    animation: pulseWaveLeft 3s linear infinite reverse;
}
.speech-wave--right-1 {
    animation: pulseWaveRight 4s linear infinite;
}
.speech-wave--right-2 {
    animation: pulseWaveRight 3s linear infinite reverse;
}

/* VS central core animations */
@keyframes vsPulse {
    0%, 100% { transform: scale(1); opacity: 0.4; }
    50% { transform: scale(1.18); opacity: 0.8; }
}
.vs-glow-pulse {
    animation: vsPulse 4s ease-in-out infinite;
    transform-origin: 400px 240px;
}
.vs-circle {
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.vs-node-group:hover .vs-circle {
    transform: scale(1.12);
    stroke: #D97706;
}
.vs-node-group {
    cursor: pointer;
}

/* Dark mode adjustments for SVG elements */
[data-theme="dark"] .debate-grid-lines line {
    stroke: rgba(255, 255, 255, 0.03);
}
[data-theme="dark"] .vs-circle {
    fill: #0F172A;
}
[data-theme="dark"] .vs-text {
    fill: #FBBF24;
}

/* ==========================================================================
   HOW IT WORKS SECTION REDESIGN (Borderless, Platform Style & Premium Title)
   ========================================================================== */

/* Monospace bracketed tech label */
.section--features .section__label {
    font-family: 'Oxanium', monospace !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    letter-spacing: 0.15em !important;
    color: #8E90A0 !important;
    background: none !important;
    -webkit-text-fill-color: initial !important;
    text-fill-color: initial !important;
    animation: none !important;
}

[data-theme="light"] .section--features .section__label {
    color: #4B5563 !important;
}

/* Premium Syncopate brand title */
.feature__title--3d {
    font-family: 'Syncopate', sans-serif !important;
    text-transform: uppercase !important;
    font-size: clamp(24px, 3.8vw, 44px) !important;
    font-weight: 700 !important;
    line-height: 1.3 !important;
    letter-spacing: 0.08em !important;
    margin-bottom: 40px !important;
    display: block !important;
}

.feature__title--3d .text-layer {
    display: inline-block !important;
    color: #EEEEF0 !important;
}

[data-theme="light"] .feature__title--3d .text-layer {
    color: #0F172A !important;
}

.feature__title--3d .text-layer--accent {
    background: linear-gradient(135deg, #D9E4FF 0%, #A5C6FF 40%, #8B5CF6 100%) !important;
    background-clip: text !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    text-shadow: none !important;
}

[data-theme="light"] .feature__title--3d .text-layer--accent {
    background: linear-gradient(135deg, #2563EB 0%, #3B82F6 40%, #8B5CF6 100%) !important;
    background-clip: text !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}

.feature__title--3d .text-layer::before {
    display: none !important;
}

/* Borderless and seamless feature cards */
.feature-fragment {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

.feature-fragment:hover {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

/* Borderless visual containers */
.fragment-visual {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    margin-bottom: 24px !important;
}

.feature-fragment:hover .fragment-visual {
    box-shadow: none !important;
}

/* Remove hover border colors */
.feature-fragment--argue:hover,
.feature-fragment--respond:hover,
.feature-fragment--vote:hover,
[data-theme="dark"] .feature-fragment--argue:hover,
[data-theme="dark"] .feature-fragment--respond:hover,
[data-theme="dark"] .feature-fragment--vote:hover {
    border: none !important;
    box-shadow: none !important;
}

/* --- High-fidelity SVG Animations for How It Works --- */
.rec-dot-blink {
    animation: recBlink 1.2s infinite alternate;
}
@keyframes recBlink {
    0% { opacity: 0.2; }
    100% { opacity: 1; }
}

.focus-reticle {
    transform-origin: 0px 0px;
    animation: reticleSpin 20s linear infinite;
}
@keyframes reticleSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.radar-hand-group {
    transform-origin: 0px 0px;
    animation: radarHandSweep 5s linear infinite;
}
@keyframes radarHandSweep {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.ping-ring {
    transform-origin: 0px 0px;
    animation: ringPing 2.5s ease-out infinite;
}
@keyframes ringPing {
    0% { transform: scale(0.85); opacity: 0.9; }
    100% { transform: scale(1.6); opacity: 0; }
}

.ping-ring-slow {
    transform-origin: 0px 0px;
    animation: ringPingSlow 3.5s ease-out infinite;
}
@keyframes ringPingSlow {
    0% { transform: scale(0.85); opacity: 0.7; }
    100% { transform: scale(1.4); opacity: 0; }
}

/* Audio wave bar height animations (varying delay for organic speech look) */
.wave-bar-anim {
    transform-origin: 50% 100%;
}
.wba-1 { animation: wbaBounce 1s ease-in-out infinite alternate; }
.wba-2 { animation: wbaBounce 0.8s ease-in-out infinite alternate; animation-delay: -0.2s; }
.wba-3 { animation: wbaBounce 1.2s ease-in-out infinite alternate; animation-delay: -0.4s; }
.wba-4 { animation: wbaBounce 0.7s ease-in-out infinite alternate; animation-delay: -0.1s; }
.wba-5 { animation: wbaBounce 1.1s ease-in-out infinite alternate; animation-delay: -0.6s; }
.wba-6 { animation: wbaBounce 0.9s ease-in-out infinite alternate; animation-delay: -0.3s; }
.wba-7 { animation: wbaBounce 1.3s ease-in-out infinite alternate; animation-delay: -0.7s; }
.wba-8 { animation: wbaBounce 0.8s ease-in-out infinite alternate; animation-delay: -0.5s; }
.wba-9 { animation: wbaBounce 0.8s ease-in-out infinite alternate; animation-delay: -0.5s; }
.wba-10 { animation: wbaBounce 1.3s ease-in-out infinite alternate; animation-delay: -0.7s; }
.wba-11 { animation: wbaBounce 0.9s ease-in-out infinite alternate; animation-delay: -0.3s; }
.wba-12 { animation: wbaBounce 1.1s ease-in-out infinite alternate; animation-delay: -0.6s; }
.wba-13 { animation: wbaBounce 0.7s ease-in-out infinite alternate; animation-delay: -0.1s; }
.wba-14 { animation: wbaBounce 1.2s ease-in-out infinite alternate; animation-delay: -0.4s; }
.wba-15 { animation: wbaBounce 0.8s ease-in-out infinite alternate; animation-delay: -0.2s; }
.wba-16 { animation: wbaBounce 1s ease-in-out infinite alternate; }

@keyframes wbaBounce {
    0% { transform: scaleY(0.25); }
    100% { transform: scaleY(1.3); }
}

/* Holographic Debate Arena Animations */
.flow-path-left {
    stroke-dashoffset: 200;
    animation: flowPacketsLeft 3s linear infinite;
}
.flow-path-right {
    stroke-dashoffset: -200;
    animation: flowPacketsRight 3s linear infinite;
}
@keyframes flowPacketsLeft {
    to { stroke-dashoffset: 0; }
}
@keyframes flowPacketsRight {
    to { stroke-dashoffset: 0; }
}

/* ==============================
   ORVELIS AI CORE SECTION STYLES
   ============================== */
.section--ai {
    background: transparent;
    position: relative;
    overflow: visible !important;
    z-index: 1;
}

.section--ai::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 900px;
    height: 900px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.08) 0%, rgba(139, 92, 246, 0.02) 50%, rgba(0, 0, 0, 0) 70%);
    pointer-events: none;
    z-index: 0;
}

.section--ai::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(to bottom, #08090D 0%, rgba(8, 9, 13, 0) 30%, rgba(8, 9, 13, 0) 70%, #08090D 100%), url('assets/sphere-concept.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.8;
    pointer-events: none;
    z-index: -1;
}

[data-theme="light"] .section--ai::after {
    opacity: 0.8 !important;
    background-image: linear-gradient(to bottom, #ffffff 0%, rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, 0) 70%, #ffffff 100%), url('assets/sphere-concept.jpg') !important;
}

[data-theme="light"] .section--ai::before {
    background: radial-gradient(circle, rgba(14, 165, 233, 0.04) 0%, rgba(139, 92, 246, 0.01) 50%, rgba(255, 255, 255, 0) 70%) !important;
}

.ai-core-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* --- CARD CONTAINER (subtle translucent glass, borderless, glowing shadows) --- */
.ai-showcase__visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.orvelis-canvas-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    z-index: 1;
    pointer-events: none;
    opacity: 0.85;
}

/* --- CARD CONTAINER (subtle translucent glass, borderless, glowing shadows) --- */
.orvelis-card-container {
    position: relative;
    border-radius: 28px;
    padding: 36px;
    display: flex;
    flex-direction: column;
    gap: 0;
    transition: transform 0.1s ease-out, box-shadow 0.5s ease;
    transform-style: preserve-3d;
    overflow: visible !important;
    z-index: 2;
    width: 100%;
    max-width: 480px;
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
}

.orvelis-card-glare {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 28px;
    pointer-events: none;
    z-index: 10;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.orvelis-card-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 28px;
    padding: 1.5px;
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.45), rgba(139, 92, 246, 0.15) 30%, rgba(255, 255, 255, 0.05) 70%, rgba(56, 189, 248, 0.35));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
    display: block !important;
}

.orvelis-card-container::after {
    display: none;
}

.orvelis-card-container:hover {
    transform: none;
}

/* Theme-dependent overrides for Orvelis Card contrast */
[data-theme="light"] .orvelis-title {
    color: #111827 !important;
}
[data-theme="light"] .orvelis-subtitle {
    color: rgba(17, 24, 39, 0.6) !important;
}
[data-theme="light"] .orvelis-score-num {
    color: #111827 !important;
}
[data-theme="light"] .orvelis-subcard-desc {
    color: rgba(17, 24, 39, 0.65) !important;
}
[data-theme="light"] .orvelis-subcard-label {
    color: rgba(17, 24, 39, 0.7) !important;
}
[data-theme="light"] .orvelis-score-status {
    color: #0284c7 !important;
}
[data-theme="light"] .orvelis-card-container {
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.8) 0%, rgba(240, 244, 248, 0.75) 100%) !important;
    border: none !important;
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.8), 0 0 30px rgba(14, 165, 233, 0.03) !important;
}
[data-theme="light"] .orvelis-card-container::before {
    background: linear-gradient(135deg, rgba(2, 132, 199, 0.35), rgba(109, 40, 217, 0.1) 30%, rgba(0, 0, 0, 0.03) 70%, rgba(2, 132, 199, 0.25)) !important;
}
[data-theme="light"] .orvelis-card-container:hover {
    box-shadow: 0 40px 80px rgba(15, 23, 42, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 0 40px rgba(14, 165, 233, 0.06) !important;
}
[data-theme="light"] .orvelis-subcard {
    background: rgba(255, 255, 255, 0.6) !important;
    border: none !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03), inset 0 1px 0 rgba(255, 255, 255, 0.8) !important;
}
[data-theme="light"] .orvelis-subcard:hover {
    background: rgba(255, 255, 255, 0.75) !important;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.9) !important;
}
[data-theme="light"] .analysis-tag--essence {
    color: #0284c7 !important;
    background: rgba(14, 165, 233, 0.08) !important;
}
[data-theme="light"] .analysis-tag--manipulation {
    color: #dc2626 !important;
    background: rgba(220, 38, 38, 0.08) !important;
}
[data-theme="light"] .orvelis-icon-wrapper {
    background: rgba(14, 165, 233, 0.06) !important;
    border: 1px solid rgba(14, 165, 233, 0.1) !important;
}
[data-theme="light"] .orvelis-robot-icon {
    stroke: #0284c7 !important;
}

[data-theme="dark"] .orvelis-title {
    color: #EEEEF0 !important;
}
[data-theme="dark"] .orvelis-subtitle {
    color: rgba(148, 163, 184, 0.65) !important;
}
[data-theme="dark"] .orvelis-score-num {
    color: #EEEEF0 !important;
}
[data-theme="dark"] .orvelis-subcard-desc {
    color: rgba(148, 163, 184, 0.6) !important;
}
[data-theme="dark"] .orvelis-subcard-label {
    color: rgba(148, 163, 184, 0.7) !important;
}
[data-theme="dark"] .orvelis-score-status {
    color: #38BDF8 !important;
}
[data-theme="dark"] .orvelis-card-container {
    background: linear-gradient(165deg, rgba(14, 165, 233, 0.04) 0%, rgba(10, 15, 30, 0.75) 50%, rgba(5, 8, 18, 0.9) 100%) !important;
    border: none !important;
    box-shadow: inset 0 0 30px rgba(14, 165, 233, 0.02), 0 30px 70px rgba(0, 0, 0, 0.5), 0 0 40px rgba(14, 165, 233, 0.05) !important;
}
[data-theme="dark"] .orvelis-card-container::before {
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.45), rgba(139, 92, 246, 0.15) 30%, rgba(255, 255, 255, 0.05) 70%, rgba(56, 189, 248, 0.35)) !important;
}
[data-theme="dark"] .orvelis-card-container:hover {
    box-shadow: inset 0 0 40px rgba(14, 165, 233, 0.12), 0 45px 90px rgba(0, 0, 0, 0.7), 0 0 50px rgba(14, 165, 233, 0.15) !important;
}
[data-theme="dark"] .orvelis-subcard {
    background: rgba(10, 15, 30, 0.65) !important;
    border: none !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.05) !important;
}
[data-theme="dark"] .orvelis-subcard:hover {
    background: rgba(10, 15, 30, 0.8) !important;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
}
[data-theme="dark"] .analysis-tag--essence {
    color: #38BDF8 !important;
    background: rgba(56, 189, 248, 0.08) !important;
}
[data-theme="dark"] .analysis-tag--manipulation {
    color: #F87171 !important;
    background: rgba(248, 113, 113, 0.08) !important;
}
[data-theme="dark"] .orvelis-icon-wrapper {
    background: rgba(56, 189, 248, 0.05) !important;
    border: 1px solid rgba(56, 189, 248, 0.1) !important;
}
[data-theme="dark"] .orvelis-robot-icon {
    stroke: #38bdf8 !important;
}

/* --- HEADER --- */
.orvelis-header {
    display: flex;
    align-items: center;
    gap: 14px;
    z-index: 5;
    position: relative;
    transform-style: preserve-3d;
}

.orvelis-icon-wrapper {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(56, 189, 248, 0.03);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.orvelis-robot-icon {
    stroke: rgba(56, 189, 248, 0.6) !important;
}

.orvelis-title-wrap {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.orvelis-title {
    font-family: 'Space Grotesk', 'Inter', sans-serif !important;
    font-size: 17px !important;
    font-weight: 700 !important;
    color: #EEEEF0 !important;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0 !important;
}

.orvelis-status-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.orvelis-subtitle {
    font-family: var(--font-tech);
    font-size: 10px;
    color: rgba(148, 163, 184, 0.65);
    letter-spacing: 1.8px;
    text-transform: uppercase;
    font-weight: 600;
}

.orvelis-dot-sep {
    color: rgba(148, 163, 184, 0.3);
    font-size: 10px;
}

.orvelis-status-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    position: relative;
}

.orvelis-status-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #10B981;
    box-shadow: 0 0 6px rgba(16, 185, 129, 0.5);
}

.orvelis-status-pulse {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #10B981;
    animation: status-pulse-badge 2.5s infinite ease-in-out;
}

@keyframes status-pulse-badge {
    0% { transform: translateY(-50%) scale(1); opacity: 0.5; }
    50% { transform: translateY(-50%) scale(2.5); opacity: 0; }
    100% { transform: translateY(-50%) scale(1); opacity: 0; }
}

.orvelis-status-text {
    font-family: var(--font-tech);
    font-size: 9px;
    font-weight: 600;
    color: rgba(16, 185, 129, 0.7);
    letter-spacing: 1px;
}

/* --- SUBCARDS (3D elevated subcards on top of the main glassmorphic card) --- */
.orvelis-subcard {
    border: none;
    padding: 20px;
    margin-top: 20px;
    border-radius: 18px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transform-style: preserve-3d;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    z-index: 5;
}

.orvelis-subcard::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: 18px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.03)) !important;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
    display: block !important;
}

[data-theme="light"] .orvelis-subcard::before {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.01)) !important;
}

.orvelis-subcard:hover {
    transform: none;
}

.orvelis-subcard-header {
    display: flex;
    align-items: center;
    gap: 6px;
}

.orvelis-subcard-label {
    font-family: var(--font-tech);
    font-size: 10px;
    font-weight: 700;
    color: rgba(148, 163, 184, 0.7);
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.orvelis-score-row {
    display: flex;
    align-items: baseline;
    gap: 14px;
}

.orvelis-score-num {
    font-family: 'Inter', sans-serif !important;
    font-size: 48px;
    font-weight: 300;
    color: #EEEEF0;
    line-height: 1;
    letter-spacing: -2px;
    -webkit-text-fill-color: unset;
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
}

.orvelis-trend-badge {
    display: inline-flex;
    align-items: center;
    padding: 3px 7px;
    border-radius: 5px;
    background: transparent;
    border: none;
    color: rgba(16, 185, 129, 0.8);
    font-family: var(--font-tech);
    font-size: 10px;
    font-weight: 600;
}

.orvelis-trend-text {
    margin-left: 1px;
}

.orvelis-score-status {
    font-family: var(--font-tech);
    font-size: 10px;
    font-weight: 700;
    color: rgba(56, 189, 248, 0.75);
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.orvelis-subcard-desc {
    font-size: 13px;
    line-height: 1.6;
    color: rgba(148, 163, 184, 0.6);
    margin: 0;
}

/* --- ANALYSIS TAGS (borderless, subtle tint only) --- */
.analysis-tag-box {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.analysis-tag {
    align-self: flex-start;
    font-family: var(--font-tech);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 4px 10px;
    border-radius: 5px;
}

.analysis-tag--essence {
    color: #38BDF8;
    background: rgba(56, 189, 248, 0.08);
    border: none;
}

.analysis-tag--manipulation {
    color: #F87171;
    background: rgba(248, 113, 113, 0.08);
    border: none;
}

/* ==========================================================
   COMPREHENSIVE MOBILE RESPONSIVE OPTIMIZATION
   ========================================================== */

/* --- Tablet: 1024px --- */
@media (max-width: 1024px) {
    .main {
        margin-left: 0 !important;
    }

    .sidebar {
        display: none;
    }
    .sidebar.mobile-open {
        display: flex;
    }

    .mobile-nav-toggle {
        display: flex !important;
    }

    .section {
        padding: 100px 32px !important;
        min-height: auto !important;
    }

    /* Manifesto */
    .manifesto-v2__card-inner--full {
        flex-direction: column !important;
    }
    .manifesto-v2__card-content {
        max-width: 100% !important;
    }
    .manifesto-v2__card-visual-wrapper {
        width: 100% !important;
    }
    .manifesto-v2__card-graphic-box--full {
        min-height: 250px;
    }

    /* Interface triple screens */
    .interface__triple-screens {
        flex-direction: column !important;
        gap: 20px !important;
        align-items: center !important;
    }

    /* Arena grid */
    .arena-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    .arena-separator {
        flex-direction: row !important;
        order: 0 !important;
    }

    /* Orvelis AI Core */
    .ai-core-layout {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }

    /* Beta layout */
    .beta__layout {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }

    /* Footer */
    .footer__columns {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

/* --- Mobile: 768px --- */
@media (max-width: 768px) {
    .section {
        padding: 80px 20px 60px !important;
        min-height: auto !important;
    }

    .section__title {
        font-size: clamp(24px, 6vw, 36px) !important;
        line-height: 1.15 !important;
    }

    .section__label {
        font-size: 10px !important;
    }

    /* Manifesto */
    .manifesto-v2__headline {
        font-size: clamp(22px, 5.5vw, 32px) !important;
        line-height: 1.2 !important;
    }
    .manifesto-v2__subheadline {
        font-size: 14px !important;
    }
    .manifesto-v2__card-stats-row {
        flex-direction: column !important;
        gap: 16px !important;
    }
    .manifesto-v2__card {
        border-radius: 20px !important;
    }
    .debate-arena-graphic {
        max-width: 100% !important;
        overflow: hidden;
    }
    .debate-svg {
        width: 100% !important;
        height: auto !important;
    }

    /* Feature Fragments */
    .features__fragments {
        display: flex !important;
        flex-direction: column !important;
        gap: 24px !important;
        padding: 0 !important;
    }
    .feature-fragment,
    .feature-fragment--large {
        width: 100% !important;
        max-width: 100% !important;
        padding: 24px 16px !important;
    }
    .fragment-visual {
        max-width: 100% !important;
        margin: 0 auto 16px !important;
    }
    .fragment-content {
        text-align: center !important;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .fragment-content h3 {
        font-size: 20px !important;
    }
    .fragment-content p {
        font-size: 14px !important;
    }

    /* Interface */
    .interface__triple-screens {
        flex-direction: row !important;
        gap: 12px !important;
        align-items: stretch !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 40px auto 0 !important;
        padding: 0 16px !important;
        display: flex !important;
    }
    .interface__screen-card,
    .interface__screen-card:nth-child(1),
    .interface__screen-card:nth-child(2),
    .interface__screen-card:nth-child(3) {
        max-width: none !important;
        width: 100% !important;
        transform: none !important;
        flex: 1 !important;
        margin: 0 !important;
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25) !important;
        border-radius: 12px !important;
    }
    .interface__screen-card img {
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    /* Arena */
    .arena-showcase {
        padding: 20px !important;
        border-radius: 20px !important;
    }
    .arena-showcase__header {
        flex-direction: column !important;
        gap: 12px !important;
    }
    .arena-grid {
        grid-template-columns: 1fr !important;
    }
    .arena-panel {
        padding: 16px !important;
    }
    .arena-cta {
        flex-direction: column !important;
        gap: 12px !important;
    }
    .vote-btn {
        width: 100% !important;
        text-align: center !important;
    }

    /* Orvelis AI Core section */
    .section--ai {
        padding: 60px 16px !important;
    }
    .ai-core-layout {
        display: flex !important;
        flex-direction: column !important;
        gap: 32px !important;
    }
    .orvelis-card-container {
        padding: 24px !important;
        border-radius: 22px !important;
    }
    .orvelis-subcard {
        padding: 14px 16px !important;
        margin-top: 16px !important;
        border-radius: 12px !important;
    }
    .orvelis-score-num {
        font-size: 40px !important;
    }
    .ai-showcase__content {
        text-align: center !important;
    }
    .ai-showcase__content .section__title {
        font-size: 24px !important;
    }
    .ai-showcase__content .manifesto-v2__card-desc {
        font-size: 14px !important;
    }
    .ai-showcase__content .cluster-boxes {
        gap: 16px !important;
    }
    .ai-showcase__content .cluster-box {
        padding: 20px !important;
        text-align: left !important;
    }

    /* Global Network */
    .section--global {
        padding: 60px 16px !important;
    }
    .global__layout {
        display: flex !important;
        flex-direction: column !important;
        gap: 32px !important;
    }
    .global__map-wrap {
        max-width: 320px !important;
    }

    /* Beta */
    .beta__layout {
        display: flex !important;
        flex-direction: column !important;
        gap: 32px !important;
        text-align: center !important;
    }
    .beta__card-inner {
        padding: 28px 20px !important;
    }
    .beta__inline-form .beta__input-wrap {
        flex-direction: column !important;
        gap: 12px !important;
    }
    .beta__submit-btn {
        width: 100% !important;
    }
    .beta__perks {
        align-items: center;
    }

    /* Footer */
    .footer__top {
        flex-direction: column !important;
        gap: 32px !important;
        text-align: center !important;
    }
    .footer__columns {
        grid-template-columns: repeat(2, 1fr) !important;
        text-align: left !important;
        gap: 24px !important;
    }
    .footer__bottom {
        flex-direction: column !important;
        gap: 16px !important;
        text-align: center !important;
    }
}

/* --- Small phone: 480px --- */
@media (max-width: 480px) {
    .section {
        padding: 60px 14px 50px !important;
    }

    .section__title {
        font-size: 22px !important;
        letter-spacing: -0.5px !important;
    }

    /* Hero tweaks */
    .hero__brand-text {
        font-size: 40px !important;
        letter-spacing: -2px !important;
    }
    .hero__tagline {
        font-size: 15px !important;
    }
    .hero__phone-frame {
        width: 220px !important;
        height: 460px !important;
    }
    .app-downloads {
        flex-direction: column !important;
        gap: 12px !important;
        width: 100% !important;
    }
    .app-dl-btn {
        width: 100% !important;
        justify-content: center !important;
    }

    /* Manifesto */
    .manifesto-v2__headline {
        font-size: 20px !important;
    }
    .manifesto-v2__card-stat-num {
        font-size: 11px !important;
    }
    .manifesto-v2__card-stat-label {
        font-size: 8px !important;
    }

    /* Feature fragments */
    .feature-fragment {
        padding: 20px 14px !important;
    }

    /* Arena */
    .arena-showcase {
        padding: 16px !important;
        border-radius: 16px !important;
    }
    .terminal-window {
        font-size: 11px !important;
    }
    .arena-topic-alt {
        padding: 16px !important;
    }

    /* Orvelis */
    .orvelis-card-container {
        padding: 18px !important;
        border-radius: 18px !important;
    }
    .orvelis-header {
        gap: 12px !important;
    }
    .orvelis-icon-wrapper {
        width: 40px !important;
        height: 40px !important;
    }
    .orvelis-title {
        font-size: 14px !important;
    }
    .orvelis-score-num {
        font-size: 36px !important;
    }
    .orvelis-subcard {
        padding: 12px 14px !important;
        margin-top: 12px !important;
        border-radius: 10px !important;
    }

    /* Beta */
    .beta__card-inner {
        padding: 24px 16px !important;
    }
    .beta__card-title {
        font-size: 20px !important;
    }

    /* Footer */
    .footer__container {
        padding: 40px 16px !important;
    }
    .footer__columns {
        grid-template-columns: 1fr !important;
    }
}

/* --- Touch device hover fix --- */
@media (hover: none) {
    .orvelis-card-container:hover,
    .orvelis-subcard:hover,
    .cluster-box:hover,
    .feature-fragment:hover {
        transform: none !important;
    }
}