/* ══════════════════════════════════════════
   INEXXUS 2026 — BREAK YOUR LIMITS
   Performance Agency · Dark + Neon Green
   ══════════════════════════════════════════ */

:root {
    --inx-green: #00de9a;
    --inx-green-dark: #00b87d;
    --inx-green-glow: rgba(0, 222, 154, 0.4);
    --inx-green-soft: rgba(0, 222, 154, 0.08);

    --inx-bg: #0a0a0e;
    --inx-bg-card: #15151c;
    --inx-bg-elevated: #1c1c25;
    --inx-bg-deep: #050507;

    --inx-border: rgba(255, 255, 255, 0.06);
    --inx-border-hover: rgba(0, 222, 154, 0.25);

    --inx-text: #f0f0f0;
    --inx-text-dim: #9aa0aa;
    --inx-text-muted: #5a5f6a;

    --inx-orange: #ff6b35;
    --inx-purple: #a855f7;
    --inx-cyan: #00e5ff;

    --inx-radius: 16px;
    --inx-radius-sm: 10px;
    --inx-radius-lg: 24px;

    --inx-ease: cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: clamp(14px, 1vw + 10px, 16px);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--inx-bg);
    color: var(--inx-text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ── i18n flash prevention ── */
.i18n-loading [data-i18n],
.i18n-loading [data-i18n-placeholder] { visibility: hidden; }
.i18n-ready [data-i18n],
.i18n-ready [data-i18n-placeholder] { visibility: visible; }

/* ══════════════════════════════════════════
   TYPOGRAPHY HELPERS
   ══════════════════════════════════════════ */
.section {
    padding: 120px 0;
    position: relative;
}

.section-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--inx-green);
    margin-bottom: 18px;
    padding: 6px 14px;
    background: var(--inx-green-soft);
    border: 1px solid var(--inx-border-hover);
    border-radius: 999px;
}

.section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(34px, 5vw, 56px);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -1.5px;
    margin-bottom: 22px;
    color: var(--inx-text);
}

.section-desc {
    font-size: clamp(16px, 1.5vw + 8px, 19px);
    color: var(--inx-text-dim);
    max-width: 680px;
    line-height: 1.7;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header .section-desc { margin: 0 auto; }

.gradient-text {
    background: linear-gradient(135deg, var(--inx-green) 0%, var(--inx-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.green-text { color: var(--inx-green); }

/* ══════════════════════════════════════════
   BUTTONS
   ══════════════════════════════════════════ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s var(--inx-ease);
    border: none;
    cursor: pointer;
    font-family: inherit;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--inx-green);
    color: var(--inx-bg);
    box-shadow: 0 0 0 0 var(--inx-green-glow);
    animation: pulseGlow 2.4s var(--inx-ease) infinite;
}

.btn-primary:hover {
    background: #00ffaa;
    transform: translateY(-2px);
    box-shadow: 0 12px 40px var(--inx-green-glow);
}

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

.btn-ghost:hover {
    background: var(--inx-green-soft);
    border-color: var(--inx-green);
    transform: translateY(-2px);
}

@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 0 0 var(--inx-green-glow); }
    50% { box-shadow: 0 0 0 14px rgba(0, 222, 154, 0); }
}

/* ══════════════════════════════════════════
   SCROLL PROGRESS BAR
   ══════════════════════════════════════════ */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg, var(--inx-green), var(--inx-cyan));
    z-index: 9999;
    box-shadow: 0 0 12px var(--inx-green-glow);
    transition: width 0.05s linear;
}

/* ══════════════════════════════════════════
   NAVBAR
   ══════════════════════════════════════════ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 18px 0;
    transition: all 0.3s var(--inx-ease);
}

.navbar.scrolled {
    background: rgba(10, 10, 14, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--inx-border);
    padding: 12px 0;
}

.nav-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 12px;
}

.nav-logo-img {
    height: 36px;
    width: auto;
    filter: drop-shadow(0 0 12px var(--inx-green-glow));
    transition: filter 0.3s;
}

.nav-logo:hover .nav-logo-img {
    filter: drop-shadow(0 0 18px var(--inx-green));
}

.nav-logo-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--inx-text);
    letter-spacing: -0.5px;
}

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

.nav-link {
    color: var(--inx-text-dim);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 10px 16px;
    border-radius: 8px;
    transition: all 0.2s;
}

.nav-link:hover {
    color: var(--inx-text);
    background: rgba(255, 255, 255, 0.04);
}

.nav-cta {
    background: var(--inx-green);
    color: var(--inx-bg);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 22px;
    border-radius: 999px;
    margin-left: 12px;
    transition: all 0.2s;
}

.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 24px var(--inx-green-glow);
}

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

/* Language Selector */
.lang-selector { position: relative; }

.lang-current {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--inx-border);
    border-radius: 8px;
    padding: 7px 12px;
    cursor: pointer;
    transition: all 0.2s;
    color: var(--inx-text);
}

.lang-current:hover { border-color: var(--inx-border-hover); }

.lang-flag {
    width: 22px;
    height: 14px;
    border-radius: 2px;
    object-fit: cover;
}

.lang-chevron { transition: transform 0.2s; }
.lang-selector.open .lang-chevron { transform: rotate(180deg); }

.lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: var(--inx-bg-card);
    border: 1px solid var(--inx-border);
    border-radius: 12px;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.25s;
    min-width: 170px;
    z-index: 100;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lang-selector.open .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 11px 16px;
    background: none;
    border: none;
    color: var(--inx-text-dim);
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
}

.lang-option:hover {
    background: var(--inx-green-soft);
    color: var(--inx-green);
}

/* Hamburger */
.nav-hamburger {
    display: none;
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--inx-border);
    border-radius: 8px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    cursor: pointer;
}

.nav-hamburger span {
    width: 18px;
    height: 2px;
    background: var(--inx-text);
    transition: all 0.3s;
}

.nav-hamburger.active span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ══════════════════════════════════════════
   HERO SECTION
   ══════════════════════════════════════════ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 0 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    opacity: 0.35;
    filter: hue-rotate(80deg) saturate(1.2) brightness(0.8);
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background:
        radial-gradient(ellipse at 50% 30%, rgba(0, 222, 154, 0.12), transparent 60%),
        linear-gradient(180deg, var(--inx-bg) 0%, transparent 30%, transparent 70%, var(--inx-bg) 100%);
}

.hero-grid {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image:
        linear-gradient(rgba(0, 222, 154, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 222, 154, 0.06) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black, transparent);
    -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black, transparent);
}

.hero-particles {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    pointer-events: none;
}

.hero-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--inx-green);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--inx-green);
    animation: particleFloat 8s ease-in-out infinite;
    opacity: 0;
}

@keyframes particleFloat {
    0%, 100% { transform: translateY(0) scale(0.8); opacity: 0; }
    50% { transform: translateY(-60px) scale(1.2); opacity: 0.9; }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
    text-align: center;
}

.hero-pre {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    background: var(--inx-green-soft);
    border: 1px solid var(--inx-border-hover);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--inx-green);
    margin-bottom: 28px;
    text-transform: uppercase;
}

.hero-pre-dot {
    width: 8px;
    height: 8px;
    background: var(--inx-green);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--inx-green);
    animation: blink 1.6s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(40px, 7vw, 88px);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -2.5px;
    margin-bottom: 28px;
    color: var(--inx-text);
}

.hero-title .rotate-wrap {
    display: inline-block;
    position: relative;
    color: var(--inx-green);
    text-shadow: 0 0 40px var(--inx-green-glow);
    min-width: 0;
}

.hero-title .rotate-wrap::after {
    content: '|';
    display: inline-block;
    color: var(--inx-green);
    margin-left: 4px;
    animation: caret 1s steps(2) infinite;
}

@keyframes caret {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.hero-subtitle {
    font-size: clamp(16px, 1.5vw + 8px, 20px);
    color: var(--inx-text-dim);
    max-width: 720px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
    padding: 32px 24px;
    background: rgba(21, 21, 28, 0.5);
    border: 1px solid var(--inx-border);
    border-radius: var(--inx-radius);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.hero-stat { text-align: center; }

.hero-stat-value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 700;
    color: var(--inx-green);
    line-height: 1;
    margin-bottom: 8px;
    text-shadow: 0 0 30px var(--inx-green-glow);
}

.hero-stat-label {
    font-size: 12px;
    color: var(--inx-text-dim);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
}

.hero-scroll {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.hero-scroll-text {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--inx-text-muted);
}

.hero-scroll-line {
    width: 2px;
    height: 40px;
    background: linear-gradient(180deg, var(--inx-green), transparent);
    position: relative;
    overflow: hidden;
}

.hero-scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: var(--inx-green);
    box-shadow: 0 0 12px var(--inx-green);
    animation: scrollDown 2s var(--inx-ease) infinite;
}

@keyframes scrollDown {
    0% { top: -50%; }
    100% { top: 100%; }
}

/* ══════════════════════════════════════════
   HERO COSMOS — Spinning Planet & Orbital Rings
   ══════════════════════════════════════════ */
.hero-cosmos {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 900px;
    height: 900px;
    pointer-events: none;
    z-index: 0;
    opacity: 0.85;
}

/* Drifting star field */
.cosmos-stars {
    position: absolute;
    inset: 0;
    pointer-events: none;
    animation: starsDrift 60s linear infinite;
}

.cosmos-star {
    position: absolute;
    width: 2px;
    height: 2px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 4px rgba(255, 255, 255, 0.6);
    opacity: 0;
    animation: starTwinkle 4s ease-in-out infinite;
}

@keyframes starTwinkle {
    0%, 100% { opacity: 0; transform: scale(0.8); }
    50% { opacity: 1; transform: scale(1.2); }
}

@keyframes starsDrift {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Main cosmic system container */
.cosmos-system {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    transform: translate(-50%, -50%);
    transform-style: preserve-3d;
    perspective: 1400px;
}

/* ── Orbital rings (3 nested rings) ── */
.orbit-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 1px solid var(--inx-green);
    border-radius: 50%;
    transform-style: preserve-3d;
    box-shadow: 0 0 30px rgba(0, 222, 154, 0.15) inset;
}

.orbit-ring-1 {
    width: 280px;
    height: 280px;
    margin: -140px 0 0 -140px;
    border-color: rgba(0, 222, 154, 0.4);
    transform: rotateX(75deg) rotateY(0deg);
    animation: orbitSpin1 18s linear infinite;
}

.orbit-ring-2 {
    width: 420px;
    height: 420px;
    margin: -210px 0 0 -210px;
    border-color: rgba(0, 229, 255, 0.3);
    transform: rotateX(70deg) rotateZ(30deg);
    animation: orbitSpin2 28s linear infinite reverse;
}

.orbit-ring-3 {
    width: 560px;
    height: 560px;
    margin: -280px 0 0 -280px;
    border-color: rgba(0, 222, 154, 0.18);
    transform: rotateX(72deg) rotateZ(-20deg);
    animation: orbitSpin3 42s linear infinite;
}

@keyframes orbitSpin1 {
    from { transform: rotateX(75deg) rotateZ(0deg); }
    to { transform: rotateX(75deg) rotateZ(360deg); }
}

@keyframes orbitSpin2 {
    from { transform: rotateX(70deg) rotateZ(30deg); }
    to { transform: rotateX(70deg) rotateZ(390deg); }
}

@keyframes orbitSpin3 {
    from { transform: rotateX(72deg) rotateZ(-20deg); }
    to { transform: rotateX(72deg) rotateZ(340deg); }
}

/* Orbiting dots traveling along each ring */
.orbit-dot {
    position: absolute;
    top: 50%;
    left: 100%;
    width: 10px;
    height: 10px;
    margin: -5px 0 0 -5px;
    border-radius: 50%;
    background: var(--inx-green);
    box-shadow: 0 0 16px var(--inx-green), 0 0 30px var(--inx-green);
}

.orbit-dot-1 {
    background: var(--inx-green);
    box-shadow: 0 0 18px var(--inx-green), 0 0 36px var(--inx-green);
    width: 12px;
    height: 12px;
}

.orbit-dot-2 {
    background: var(--inx-cyan);
    box-shadow: 0 0 18px var(--inx-cyan), 0 0 36px var(--inx-cyan);
    width: 10px;
    height: 10px;
}

.orbit-dot-3 {
    background: var(--inx-green);
    box-shadow: 0 0 16px var(--inx-green), 0 0 32px var(--inx-green);
    width: 8px;
    height: 8px;
}

/* ── Central planet/sphere ── */
.cosmos-planet {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 180px;
    height: 180px;
    margin: -90px 0 0 -90px;
    transform-style: preserve-3d;
}

.planet-core {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background:
        radial-gradient(circle at 32% 32%, #ffffff 0%, #00ffaa 8%, #00de9a 25%, #00b87d 45%, #006b45 75%, #003322 100%);
    box-shadow:
        inset -22px -22px 60px rgba(0, 0, 0, 0.55),
        inset 14px 14px 40px rgba(0, 255, 170, 0.35),
        0 0 80px var(--inx-green-glow),
        0 0 140px rgba(0, 222, 154, 0.3);
    animation: planetSpin 24s linear infinite;
}

/* Surface texture overlay (simulated meridians) */
.planet-core::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background:
        repeating-linear-gradient(90deg, transparent 0, transparent 14px, rgba(0, 0, 0, 0.18) 14px, rgba(0, 0, 0, 0.18) 15px),
        repeating-linear-gradient(0deg, transparent 0, transparent 22px, rgba(255, 255, 255, 0.06) 22px, rgba(255, 255, 255, 0.06) 23px);
    mix-blend-mode: overlay;
    opacity: 0.7;
}

.planet-core::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: radial-gradient(ellipse at 28% 25%, rgba(255, 255, 255, 0.55), transparent 35%);
    pointer-events: none;
}

@keyframes planetSpin {
    0%, 100% { filter: hue-rotate(0deg) brightness(1); transform: scale(1); }
    50% { filter: hue-rotate(20deg) brightness(1.15); transform: scale(1.04); }
}

.planet-glow {
    position: absolute;
    inset: -40px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 222, 154, 0.4) 0%, transparent 60%);
    animation: planetGlowPulse 4s ease-in-out infinite;
    z-index: -1;
    filter: blur(20px);
}

@keyframes planetGlowPulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.95; transform: scale(1.18); }
}

/* Tilted equatorial ring around the planet (Saturn-like) */
.planet-rings {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 300px;
    margin: -150px 0 0 -150px;
    border: 2px solid rgba(0, 222, 154, 0.5);
    border-radius: 50%;
    transform: rotateX(78deg) rotateZ(-15deg);
    box-shadow:
        0 0 30px rgba(0, 222, 154, 0.3),
        inset 0 0 20px rgba(0, 222, 154, 0.2);
}

.planet-rings::before {
    content: '';
    position: absolute;
    inset: 16px;
    border: 1px solid rgba(0, 229, 255, 0.4);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.2);
}

.planet-rings::after {
    content: '';
    position: absolute;
    inset: 30px;
    border: 1px solid rgba(0, 222, 154, 0.3);
    border-radius: 50%;
}

/* Outer aura/halo */
.cosmos-aura {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 700px;
    height: 700px;
    margin: -350px 0 0 -350px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 222, 154, 0.08) 0%, transparent 55%);
    animation: auraBreath 6s ease-in-out infinite;
    pointer-events: none;
    filter: blur(40px);
}

@keyframes auraBreath {
    0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.12); }
}

/* Make sure hero content is above the cosmos */
.hero-content { position: relative; z-index: 5; }

/* Slight darkening overlay so cosmos doesn't compete with text */
.hero-overlay {
    background:
        radial-gradient(ellipse at 50% 50%, transparent 0%, rgba(10, 10, 14, 0.5) 50%, var(--inx-bg) 100%);
}

@media (max-width: 992px) {
    .hero-cosmos { width: 700px; height: 700px; }
    .cosmos-system { width: 460px; height: 460px; }
    .orbit-ring-1 { width: 220px; height: 220px; margin: -110px 0 0 -110px; }
    .orbit-ring-2 { width: 320px; height: 320px; margin: -160px 0 0 -160px; }
    .orbit-ring-3 { width: 420px; height: 420px; margin: -210px 0 0 -210px; }
    .cosmos-planet { width: 140px; height: 140px; margin: -70px 0 0 -70px; }
    .planet-rings { width: 230px; height: 230px; margin: -115px 0 0 -115px; }
}

@media (max-width: 576px) {
    .hero-cosmos { width: 500px; height: 500px; opacity: 0.6; }
    .cosmos-system { width: 360px; height: 360px; }
    .orbit-ring-1 { width: 180px; height: 180px; margin: -90px 0 0 -90px; }
    .orbit-ring-2 { width: 260px; height: 260px; margin: -130px 0 0 -130px; }
    .orbit-ring-3 { width: 340px; height: 340px; margin: -170px 0 0 -170px; }
    .cosmos-planet { width: 110px; height: 110px; margin: -55px 0 0 -55px; }
    .planet-rings { width: 180px; height: 180px; margin: -90px 0 0 -90px; }
}

/* ══════════════════════════════════════════
   LOGO BAR
   ══════════════════════════════════════════ */
.logo-bar {
    padding: 60px 0;
    border-top: 1px solid var(--inx-border);
    border-bottom: 1px solid var(--inx-border);
    background: var(--inx-bg-deep);
}

.logo-bar-title {
    text-align: center;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--inx-text-muted);
    margin-bottom: 32px;
}

/* ── Infinite Marquee (logo bar + press wall) ── */
.marquee {
    position: relative;
    width: 100%;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
    mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}

.marquee-track {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 12px 30px;
    width: max-content;
    animation: marqueeScroll 35s linear infinite;
}

.marquee-track-reverse {
    animation: marqueeScrollReverse 38s linear infinite;
    gap: 36px;
}

.marquee:hover .marquee-track,
.marquee:hover .marquee-track-reverse {
    animation-play-state: paused;
}

@keyframes marqueeScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@keyframes marqueeScrollReverse {
    from { transform: translateX(-50%); }
    to { transform: translateX(0); }
}

.marquee-item {
    height: 42px;
    width: auto;
    flex-shrink: 0;
    opacity: 0.55;
    filter: grayscale(1) brightness(1.4);
    transition: all 0.3s var(--inx-ease);
}

.marquee-item:hover {
    opacity: 1;
    filter: grayscale(0) brightness(1);
    transform: scale(1.1);
}

/* ══════════════════════════════════════════
   QUEM SOMOS
   ══════════════════════════════════════════ */
.about {
    background: var(--inx-bg);
    position: relative;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-img-wrap {
    position: relative;
    border-radius: var(--inx-radius-lg);
    overflow: hidden;
    border: 1px solid var(--inx-border-hover);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), 0 0 60px var(--inx-green-soft);
}

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

.about-img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 60%, rgba(0, 222, 154, 0.15));
    pointer-events: none;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 36px;
}

.about-stat {
    background: var(--inx-bg-card);
    border: 1px solid var(--inx-border);
    border-radius: var(--inx-radius);
    padding: 24px;
    transition: all 0.3s var(--inx-ease);
}

.about-stat:hover {
    border-color: var(--inx-border-hover);
    transform: translateY(-4px);
    background: var(--inx-bg-elevated);
}

.about-stat-num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 38px;
    font-weight: 700;
    color: var(--inx-green);
    line-height: 1;
    margin-bottom: 6px;
}

.about-stat-label {
    font-size: 13px;
    color: var(--inx-text-dim);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ══════════════════════════════════════════
   WHY INEXXUS — 4 Cards
   ══════════════════════════════════════════ */
.why {
    background: var(--inx-bg-deep);
    position: relative;
}

.why::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: radial-gradient(circle at 20% 30%, var(--inx-green-soft), transparent 50%);
    pointer-events: none;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}

.why-card {
    background: var(--inx-bg-card);
    border: 1px solid var(--inx-border);
    border-radius: var(--inx-radius);
    padding: 32px 28px;
    transition: all 0.4s var(--inx-ease);
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--inx-green), var(--inx-cyan));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--inx-ease);
}

.why-card:hover {
    border-color: var(--inx-border-hover);
    transform: translateY(-8px);
    background: var(--inx-bg-elevated);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px var(--inx-border-hover);
}

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

.why-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: var(--inx-green-soft);
    border: 1px solid var(--inx-border-hover);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    color: var(--inx-green);
}

.why-icon svg { width: 28px; height: 28px; }

.why-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 21px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--inx-text);
}

.why-card p {
    font-size: 14.5px;
    color: var(--inx-text-dim);
    line-height: 1.65;
}

/* ══════════════════════════════════════════
   IEPC METHODOLOGY
   ══════════════════════════════════════════ */
.iepc {
    background: var(--inx-bg);
    position: relative;
}

.iepc-banner {
    background: linear-gradient(135deg, var(--inx-green-soft), transparent);
    border: 1px solid var(--inx-border-hover);
    border-radius: var(--inx-radius-lg);
    padding: 24px 32px;
    text-align: center;
    margin-bottom: 56px;
    font-size: 18px;
    color: var(--inx-text);
}

.iepc-banner strong {
    color: var(--inx-green);
    font-weight: 700;
}

.iepc-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    counter-reset: iepc;
}

.iepc-step {
    background: var(--inx-bg-card);
    border: 1px solid var(--inx-border);
    border-radius: var(--inx-radius);
    padding: 36px 28px;
    text-align: center;
    position: relative;
    transition: all 0.4s var(--inx-ease);
    counter-increment: iepc;
}

.iepc-step::before {
    content: counter(iepc, decimal-leading-zero);
    position: absolute;
    top: 18px;
    right: 22px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--inx-green-soft);
    line-height: 1;
}

.iepc-step:hover {
    border-color: var(--inx-border-hover);
    transform: translateY(-6px);
    background: var(--inx-bg-elevated);
}

.iepc-letter {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: var(--inx-green);
    color: var(--inx-bg);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 22px;
    box-shadow: 0 0 30px var(--inx-green-glow);
}

.iepc-step h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--inx-text);
}

.iepc-step p {
    font-size: 14px;
    color: var(--inx-text-dim);
    line-height: 1.6;
}

/* ══════════════════════════════════════════
   SPRINTS DE PERFORMANCE
   ══════════════════════════════════════════ */
.sprints {
    background: var(--inx-bg-deep);
    overflow: hidden;
}

.sprints-roadmap {
    position: relative;
    padding: 40px 0;
}

.sprints-line {
    position: absolute;
    top: 50%;
    left: 5%;
    right: 5%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--inx-green), var(--inx-cyan), var(--inx-green), transparent);
    transform: translateY(-50%);
}

.sprints-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    position: relative;
}

.sprint-node {
    background: var(--inx-bg-card);
    border: 1px solid var(--inx-border-hover);
    border-radius: var(--inx-radius);
    padding: 28px 22px;
    text-align: center;
    position: relative;
    transition: all 0.4s var(--inx-ease);
}

.sprint-node:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 50px rgba(0, 222, 154, 0.15);
    background: var(--inx-bg-elevated);
}

.sprint-dot {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: var(--inx-green);
    border-radius: 50%;
    border: 4px solid var(--inx-bg-deep);
    box-shadow: 0 0 16px var(--inx-green);
}

.sprint-month {
    font-size: 11px;
    font-weight: 700;
    color: var(--inx-green);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
    margin-top: 16px;
}

.sprint-node h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--inx-text);
}

.sprint-node p {
    font-size: 13px;
    color: var(--inx-text-dim);
    line-height: 1.55;
}

/* ══════════════════════════════════════════
   FUNNEL COMPARISON — Animated SVG Funnels
   ══════════════════════════════════════════ */
.funnel {
    background: var(--inx-bg);
    position: relative;
    overflow: hidden;
}

.funnel::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(255, 107, 53, 0.06), transparent 40%),
        radial-gradient(circle at 80% 50%, var(--inx-green-soft), transparent 40%);
    pointer-events: none;
}

.funnel-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: stretch;
    position: relative;
    z-index: 1;
}

.funnel-card {
    background: var(--inx-bg-card);
    border: 1px solid var(--inx-border);
    border-radius: var(--inx-radius-lg);
    padding: 32px 28px;
    position: relative;
    transition: transform 0.4s var(--inx-ease);
    display: flex;
    flex-direction: column;
}

.funnel-card.traditional {
    border-color: rgba(255, 107, 53, 0.18);
}

.funnel-card.traditional::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #ff6b35, transparent);
    border-radius: var(--inx-radius-lg) var(--inx-radius-lg) 0 0;
}

.funnel-card.inexxus {
    border-color: var(--inx-border-hover);
    box-shadow: 0 30px 80px rgba(0, 222, 154, 0.12);
    background: linear-gradient(180deg, var(--inx-bg-card), rgba(0, 222, 154, 0.04));
}

.funnel-card.inexxus::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--inx-green), var(--inx-cyan), transparent);
    border-radius: var(--inx-radius-lg) var(--inx-radius-lg) 0 0;
    box-shadow: 0 0 20px var(--inx-green-glow);
}

.funnel-card-header {
    text-align: center;
    margin-bottom: 16px;
}

.funnel-tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 5px 12px;
    border-radius: 999px;
    margin-bottom: 12px;
}

.funnel-card.traditional .funnel-tag {
    color: #ff6b35;
    background: rgba(255, 107, 53, 0.08);
    border: 1px solid rgba(255, 107, 53, 0.25);
}

.funnel-card.inexxus .funnel-tag {
    color: var(--inx-green);
    background: var(--inx-green-soft);
    border: 1px solid var(--inx-border-hover);
}

.funnel-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--inx-text);
    margin: 0;
}

/* ── SVG Funnel Visualization ── */
.funnel-viz {
    position: relative;
    width: 100%;
    aspect-ratio: 320 / 360;
    max-height: 360px;
    margin-bottom: 20px;
}

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

/* Particle styles */
.funnel-particle {
    fill: #5a5f6a;
    opacity: 0;
}

.funnel-particle.green {
    fill: var(--inx-green);
    filter: drop-shadow(0 0 4px var(--inx-green));
}

.funnel-particle.cyan {
    fill: var(--inx-cyan);
    filter: drop-shadow(0 0 4px var(--inx-cyan));
}

/* Leak arrow pulse */
.leak-arrows path {
    animation: leakPulse 2s ease-in-out infinite;
}

@keyframes leakPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.capture-marks path {
    animation: capturePulse 2s ease-in-out infinite;
}

@keyframes capturePulse {
    0%, 100% { opacity: 0.7; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

/* ── Funnel Stats Footer ── */
.funnel-stats {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 12px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--inx-border);
    border-radius: var(--inx-radius);
    margin-top: auto;
}

.funnel-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.funnel-stat-val {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--inx-text);
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

.funnel-stat-bad .funnel-stat-val {
    color: #ff6b35;
}

.funnel-stat-good .funnel-stat-val {
    color: var(--inx-green);
    text-shadow: 0 0 20px var(--inx-green-glow);
}

.funnel-stat-lbl {
    font-size: 10px;
    color: var(--inx-text-dim);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-top: 4px;
    font-weight: 600;
}

/* ── Big Delta Multiplier Below ── */
.funnel-delta {
    margin-top: 48px;
    padding: 36px 48px;
    background: linear-gradient(135deg, var(--inx-bg-card), rgba(0, 222, 154, 0.05));
    border: 1px solid var(--inx-border-hover);
    border-radius: var(--inx-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 36px;
    flex-wrap: wrap;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 222, 154, 0.08);
    position: relative;
    overflow: hidden;
}

.funnel-delta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, var(--inx-green-soft), transparent 60%);
    pointer-events: none;
}

.funnel-delta-multiplier {
    display: flex;
    align-items: baseline;
    line-height: 1;
    position: relative;
}

.multiplier-x {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(64px, 9vw, 96px);
    font-weight: 700;
    background: linear-gradient(135deg, var(--inx-green), var(--inx-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 60px var(--inx-green-glow);
    letter-spacing: -3px;
}

.multiplier-suffix {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(40px, 6vw, 60px);
    font-weight: 700;
    color: var(--inx-text);
    margin-left: 4px;
}

.funnel-delta-text {
    text-align: left;
    max-width: 380px;
    position: relative;
}

.funnel-delta-text strong {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(20px, 2.5vw, 26px);
    font-weight: 700;
    color: var(--inx-text);
    line-height: 1.2;
    margin-bottom: 6px;
}

.funnel-delta-text span {
    font-size: 15px;
    color: var(--inx-text-dim);
    line-height: 1.5;
}

/* ══════════════════════════════════════════
   PRODUCTS — OmniU Flagship
   ══════════════════════════════════════════ */
.products {
    background: var(--inx-bg-deep);
    position: relative;
    overflow: hidden;
}

.product-flagship {
    background: linear-gradient(135deg, var(--inx-bg-card) 0%, rgba(0, 222, 154, 0.06) 100%);
    border: 1px solid var(--inx-border-hover);
    border-radius: var(--inx-radius-lg);
    padding: 56px;
    margin-bottom: 32px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 56px;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.product-flagship::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, var(--inx-green-soft), transparent 60%);
    pointer-events: none;
}

.product-flagship-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--inx-green);
    color: var(--inx-bg);
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.product-flagship h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.05;
    letter-spacing: -1px;
}

.product-flagship h3 .green {
    color: var(--inx-green);
    text-shadow: 0 0 30px var(--inx-green-glow);
}

.product-flagship p {
    font-size: 17px;
    color: var(--inx-text-dim);
    line-height: 1.7;
    margin-bottom: 28px;
}

.product-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-bottom: 32px;
}

.product-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--inx-text);
}

.product-feature svg {
    color: var(--inx-green);
    flex-shrink: 0;
}

.product-flagship-visual {
    position: relative;
    height: 100%;
    min-height: 460px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ══════════════════════════════════════════
   OMNIU LIVE DASHBOARD MOCKUP
   Big revenue counter + sales chart + KPIs + toasts
   ══════════════════════════════════════════ */
.omniu-dashboard {
    position: relative;
    width: 100%;
    max-width: 480px;
    background: linear-gradient(180deg, var(--inx-bg-elevated) 0%, var(--inx-bg-card) 100%);
    border: 1px solid var(--inx-border-hover);
    border-radius: 20px;
    padding: 24px 22px 20px;
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(255, 255, 255, 0.03) inset,
        0 0 60px rgba(0, 222, 154, 0.12);
    backdrop-filter: blur(20px);
}

/* Glow halo behind the dashboard */
.omniu-dashboard::before {
    content: '';
    position: absolute;
    inset: -40px;
    background: radial-gradient(ellipse at 50% 50%, rgba(0, 222, 154, 0.18), transparent 60%);
    z-index: -1;
    pointer-events: none;
    filter: blur(30px);
}

/* ── Header ── */
.dash-header {
    margin-bottom: 18px;
}

.dash-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.8px;
    color: var(--inx-text-dim);
    text-transform: uppercase;
    margin-bottom: 10px;
}

.dash-status-dot {
    width: 8px;
    height: 8px;
    background: var(--inx-green);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--inx-green);
    animation: liveBlink 1.4s ease-in-out infinite;
}

@keyframes liveBlink {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.85); }
}

.dash-revenue {
    display: flex;
    align-items: baseline;
    gap: 6px;
    font-family: 'Space Grotesk', sans-serif;
    line-height: 1;
    margin-bottom: 8px;
}

.dash-currency {
    font-size: 22px;
    font-weight: 600;
    color: var(--inx-text-dim);
}

.dash-value {
    font-size: clamp(36px, 4.5vw, 48px);
    font-weight: 700;
    color: var(--inx-text);
    letter-spacing: -1.5px;
    background: linear-gradient(135deg, #ffffff 0%, var(--inx-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-variant-numeric: tabular-nums;
    text-shadow: 0 0 40px rgba(0, 222, 154, 0.3);
}

.dash-delta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--inx-green-soft);
    border: 1px solid var(--inx-border-hover);
    color: var(--inx-green);
    padding: 5px 11px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.3px;
}

/* ── Chart ── */
.dash-chart {
    position: relative;
    margin-bottom: 18px;
    height: 160px;
}

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

.chart-area {
    opacity: 0;
    transition: opacity 0.6s ease 0.4s;
}

.omniu-dashboard.in-view .chart-area {
    opacity: 1;
}

.chart-line {
    stroke-dasharray: 700;
    stroke-dashoffset: 700;
}

.omniu-dashboard.in-view .chart-line {
    animation: lineDraw 2.4s cubic-bezier(0.65, 0, 0.35, 1) forwards;
}

@keyframes lineDraw {
    to { stroke-dashoffset: 0; }
}

.dot {
    fill: var(--inx-green);
    opacity: 0;
    transform-box: fill-box;
    transform-origin: center;
}

.omniu-dashboard.in-view .dot {
    animation: dotPop 0.4s var(--inx-ease) forwards;
}

.omniu-dashboard.in-view .dot:nth-child(1) { animation-delay: 0.5s; }
.omniu-dashboard.in-view .dot:nth-child(2) { animation-delay: 0.7s; }
.omniu-dashboard.in-view .dot:nth-child(3) { animation-delay: 0.9s; }
.omniu-dashboard.in-view .dot:nth-child(4) { animation-delay: 1.1s; }
.omniu-dashboard.in-view .dot:nth-child(5) { animation-delay: 1.3s; }
.omniu-dashboard.in-view .dot:nth-child(6) { animation-delay: 1.6s; }
.omniu-dashboard.in-view .dot:nth-child(7) { animation-delay: 1.9s; }
.omniu-dashboard.in-view .dot:nth-child(8) { animation-delay: 2.2s; }

@keyframes dotPop {
    0% { opacity: 0; transform: scale(0); }
    60% { opacity: 1; transform: scale(1.6); }
    100% { opacity: 1; transform: scale(1); }
}

.dot-end {
    fill: var(--inx-cyan);
    filter: drop-shadow(0 0 12px var(--inx-green));
    opacity: 0;
}

.omniu-dashboard.in-view .dot-end {
    animation: dotPop 0.5s var(--inx-ease) 2.4s forwards;
}

.dot-pulse {
    fill: var(--inx-green);
    opacity: 0;
    transform-origin: 440px 18px;
}

.omniu-dashboard.in-view .dot-pulse {
    animation: dotPulse 2s ease-out 2.4s infinite;
}

@keyframes dotPulse {
    0% { opacity: 0.6; transform: scale(0.4); }
    100% { opacity: 0; transform: scale(2.5); }
}

/* Tooltip on the spike */
.chart-tooltip {
    position: absolute;
    top: -8px;
    right: -10px;
    background: var(--inx-bg-deep);
    border: 1px solid var(--inx-green);
    border-radius: 10px;
    padding: 8px 12px;
    box-shadow: 0 8px 30px var(--inx-green-glow);
    opacity: 0;
    transform: translateY(8px) scale(0.9);
    transition: all 0.5s var(--inx-ease) 2.6s;
    min-width: 110px;
}

.omniu-dashboard.in-view .chart-tooltip {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.chart-tooltip::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 18px;
    width: 8px;
    height: 8px;
    background: var(--inx-bg-deep);
    border-right: 1px solid var(--inx-green);
    border-bottom: 1px solid var(--inx-green);
    transform: rotate(45deg);
}

.tt-label {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--inx-text-dim);
    margin-bottom: 2px;
}

.tt-value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--inx-text);
    line-height: 1.1;
}

.tt-delta {
    font-size: 10px;
    font-weight: 700;
    color: var(--inx-green);
    margin-top: 2px;
}

/* ── KPI Cards ── */
.dash-kpis {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.kpi-card {
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid var(--inx-border);
    border-radius: 10px;
    padding: 12px 12px 10px;
    transition: all 0.3s var(--inx-ease);
    position: relative;
    overflow: hidden;
}

.kpi-card:hover {
    border-color: var(--inx-border-hover);
    background: var(--inx-green-soft);
    transform: translateY(-2px);
}

.kpi-label {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.2px;
    color: var(--inx-text-dim);
    text-transform: uppercase;
    margin-bottom: 4px;
}

.kpi-value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--inx-text);
    line-height: 1;
    margin-bottom: 6px;
    font-variant-numeric: tabular-nums;
}

.kpi-spark {
    width: 100%;
    height: 18px;
    display: block;
    opacity: 0.85;
}

/* ── Floating Toasts ── */
.dash-toasts {
    position: absolute;
    top: 22px;
    right: -180px;
    width: 230px;
    pointer-events: none;
}

.dash-toast {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--inx-bg-deep);
    border: 1px solid var(--inx-border-hover);
    border-radius: 12px;
    padding: 10px 12px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6), 0 0 24px var(--inx-green-soft);
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.5s var(--inx-ease);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.dash-toast.show {
    opacity: 1;
    transform: translateX(0);
}

.toast-icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--inx-bg);
    flex-shrink: 0;
}

.toast-icon.green { background: var(--inx-green); }
.toast-icon.orange { background: var(--inx-orange); color: white; }
.toast-icon.cyan { background: var(--inx-cyan); }
.toast-icon.purple { background: var(--inx-purple); color: white; }

.toast-body { min-width: 0; flex: 1; }

.toast-title {
    font-size: 12px;
    font-weight: 600;
    color: var(--inx-text);
    line-height: 1.2;
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.toast-meta {
    font-size: 10px;
    color: var(--inx-text-dim);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ── Responsive ── */
@media (max-width: 1280px) {
    .dash-toasts {
        right: -150px;
        width: 200px;
    }
}

@media (max-width: 1100px) {
    .dash-toasts {
        position: relative;
        right: auto;
        top: auto;
        width: 100%;
        margin-top: 16px;
        height: 56px;
    }
    .omniu-dashboard {
        max-width: 560px;
    }
}

@media (max-width: 576px) {
    .product-flagship-visual { min-height: auto; }
    .omniu-dashboard {
        padding: 20px 16px 16px;
    }
    .dash-value { font-size: 32px; }
    .dash-chart { height: 130px; }
    .kpi-value { font-size: 16px; }
    .dash-kpis { gap: 6px; }
    .kpi-card { padding: 9px 8px 8px; }
}

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

.product-card {
    background: var(--inx-bg-card);
    border: 1px solid var(--inx-border);
    border-radius: var(--inx-radius);
    padding: 28px;
    transition: all 0.4s var(--inx-ease);
}

.product-card:hover {
    border-color: var(--inx-border-hover);
    transform: translateY(-6px);
    background: var(--inx-bg-elevated);
}

.product-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--inx-green-soft);
    border: 1px solid var(--inx-border-hover);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    color: var(--inx-green);
}

.product-card h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--inx-text);
}

.product-card p {
    font-size: 13.5px;
    color: var(--inx-text-dim);
    line-height: 1.6;
}

/* ══════════════════════════════════════════
   PLANS
   ══════════════════════════════════════════ */
.plans {
    background: var(--inx-bg);
}

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

.plan-card {
    background: var(--inx-bg-card);
    border: 1px solid var(--inx-border);
    border-radius: var(--inx-radius-lg);
    padding: 36px 28px;
    transition: all 0.4s var(--inx-ease);
    position: relative;
    display: flex;
    flex-direction: column;
}

.plan-card.featured {
    border-color: var(--inx-green);
    background: linear-gradient(180deg, var(--inx-bg-card), rgba(0, 222, 154, 0.06));
    transform: scale(1.04);
    box-shadow: 0 20px 60px rgba(0, 222, 154, 0.18);
}

.plan-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--inx-green);
    color: var(--inx-bg);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 6px 14px;
    border-radius: 999px;
    box-shadow: 0 6px 20px var(--inx-green-glow);
}

.plan-card:hover:not(.featured) {
    border-color: var(--inx-border-hover);
    transform: translateY(-6px);
}

.plan-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--inx-text);
    margin-bottom: 6px;
}

.plan-tag {
    font-size: 12px;
    color: var(--inx-green);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    margin-bottom: 22px;
}

.plan-desc {
    font-size: 14px;
    color: var(--inx-text-dim);
    line-height: 1.6;
    margin-bottom: 24px;
    min-height: 70px;
}

.plan-features {
    list-style: none;
    margin-bottom: 28px;
    flex: 1;
}

.plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    font-size: 13.5px;
    color: var(--inx-text);
    border-bottom: 1px solid var(--inx-border);
}

.plan-features li:last-child { border-bottom: none; }

.plan-features li svg {
    color: var(--inx-green);
    flex-shrink: 0;
    margin-top: 3px;
}

.plan-cta {
    display: block;
    text-align: center;
    padding: 14px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    border: 1px solid var(--inx-border-hover);
    background: transparent;
    color: var(--inx-text);
}

.plan-card.featured .plan-cta {
    background: var(--inx-green);
    color: var(--inx-bg);
    border-color: var(--inx-green);
}

.plan-cta:hover {
    background: var(--inx-green);
    color: var(--inx-bg);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px var(--inx-green-glow);
}

/* ══════════════════════════════════════════
   ANCHORING — R$60k Internal Team
   ══════════════════════════════════════════ */
.anchor {
    background: var(--inx-bg-deep);
    position: relative;
    overflow: hidden;
}

.anchor::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 30%, rgba(255, 107, 53, 0.08), transparent 50%),
        radial-gradient(ellipse at 70% 70%, var(--inx-green-soft), transparent 50%);
    pointer-events: none;
}

.anchor-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.anchor-comparison {
    max-width: 980px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.anchor-row {
    background: var(--inx-bg-card);
    border-radius: var(--inx-radius-lg);
    padding: 32px 36px;
    border: 1px solid var(--inx-border);
    transition: all 0.4s var(--inx-ease);
    position: relative;
    overflow: hidden;
}

.anchor-row.internal {
    border-color: rgba(255, 107, 53, 0.3);
    background: linear-gradient(135deg, var(--inx-bg-card), rgba(255, 107, 53, 0.03));
}

.anchor-row.inexxus {
    border-color: var(--inx-border-hover);
    background: linear-gradient(135deg, var(--inx-bg-card), rgba(0, 222, 154, 0.05));
    box-shadow: 0 30px 80px rgba(0, 222, 154, 0.12);
}

.anchor-row.inexxus::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--inx-green), var(--inx-cyan));
    box-shadow: 0 0 20px var(--inx-green-glow);
}

.anchor-row-label {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 18px;
}

.anchor-row-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.anchor-row-icon.orange {
    background: rgba(255, 107, 53, 0.12);
    border: 1px solid rgba(255, 107, 53, 0.3);
    color: var(--inx-orange);
}

.anchor-row-icon.green {
    background: var(--inx-green-soft);
    border: 1px solid var(--inx-border-hover);
    padding: 8px;
}

.anchor-row-icon.green img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 10px var(--inx-green-glow));
}

.anchor-row-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--inx-text);
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.anchor-row-desc {
    font-size: 13px;
    color: var(--inx-text-dim);
    margin-top: 3px;
}

/* Bar visualization */
.anchor-row-bar {
    position: relative;
    height: 70px;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid var(--inx-border);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.anchor-bar-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    transition: width 1.6s cubic-bezier(0.65, 0, 0.35, 1);
}

.anchor-bar-internal {
    background: linear-gradient(90deg, rgba(255, 107, 53, 0.5), rgba(255, 107, 53, 0.15));
    border-right: 2px solid var(--inx-orange);
    box-shadow: 0 0 40px rgba(255, 107, 53, 0.3);
}

.anchor-bar-inexxus {
    background: linear-gradient(90deg, rgba(0, 222, 154, 0.55), rgba(0, 229, 255, 0.18));
    border-right: 2px solid var(--inx-green);
    box-shadow: 0 0 40px rgba(0, 222, 154, 0.4);
}

.anchor-row.in-view .anchor-bar-internal { width: 100%; }
.anchor-row.in-view .anchor-bar-inexxus { width: 25%; }

.anchor-bar-amount {
    position: relative;
    z-index: 2;
    padding-left: 24px;
    display: flex;
    align-items: baseline;
    gap: 4px;
    font-family: 'Space Grotesk', sans-serif;
    line-height: 1;
}

.anchor-currency {
    font-size: 22px;
    font-weight: 700;
    color: var(--inx-text-dim);
}

.anchor-num {
    font-size: clamp(32px, 4.5vw, 44px);
    font-weight: 700;
    color: var(--inx-text);
    font-variant-numeric: tabular-nums;
}

.anchor-row.internal .anchor-num {
    text-shadow: 0 0 30px rgba(255, 107, 53, 0.4);
}

.anchor-period-small {
    font-size: 14px;
    color: var(--inx-text-dim);
    margin-left: 6px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
}

.anchor-fraction {
    font-size: 13px;
    color: var(--inx-text-dim);
    font-family: 'Inter', sans-serif;
    font-weight: 500;
}

.anchor-fraction-big {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(28px, 4vw, 38px);
    font-weight: 700;
    background: linear-gradient(135deg, var(--inx-green), var(--inx-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px var(--inx-green-glow);
    margin: 0 8px;
    letter-spacing: -1px;
}

/* Tags */
.anchor-row-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.anchor-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
}

.anchor-tag.bad {
    background: rgba(255, 107, 53, 0.08);
    border: 1px solid rgba(255, 107, 53, 0.25);
    color: var(--inx-orange);
}

.anchor-tag.good {
    background: var(--inx-green-soft);
    border: 1px solid var(--inx-border-hover);
    color: var(--inx-green);
}

/* VS divider between rows */
.anchor-vs {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 24px 0;
    position: relative;
}

.anchor-vs::before,
.anchor-vs::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--inx-border-hover), transparent);
    max-width: 200px;
}

.anchor-vs span {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--inx-text-dim);
    padding: 8px 24px;
    background: var(--inx-bg-deep);
    border: 1px solid var(--inx-border);
    border-radius: 999px;
    letter-spacing: 2px;
    margin: 0 16px;
}

.anchor-sub {
    font-size: 16px;
    color: var(--inx-text-dim);
    max-width: 580px;
    margin: 40px auto 0;
    text-align: center;
    position: relative;
    z-index: 1;
}

/* ══════════════════════════════════════════
   PRESS WALL
   ══════════════════════════════════════════ */
.press {
    background: var(--inx-bg);
    padding: 100px 0;
}

.marquee-press {
    margin-top: 20px;
}

.marquee-press .press-item {
    flex-shrink: 0;
    background: var(--inx-bg-card);
    border: 1px solid var(--inx-border);
    border-radius: var(--inx-radius);
    padding: 22px 32px;
    height: 100px;
    min-width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s var(--inx-ease);
}

.marquee-press .press-item:hover {
    border-color: var(--inx-border-hover);
    background: var(--inx-bg-elevated);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 222, 154, 0.15);
}

.marquee-press .press-item img {
    max-width: 100%;
    max-height: 50px;
    width: auto;
    height: auto;
    object-fit: contain;
    opacity: 0.55;
    filter: grayscale(1) brightness(1.6);
    transition: all 0.3s;
}

.marquee-press .press-item:hover img {
    opacity: 1;
    filter: grayscale(0) brightness(1.2);
}

/* ══════════════════════════════════════════
   CASES / TESTIMONIALS
   ══════════════════════════════════════════ */
.cases {
    background: var(--inx-bg-deep);
    position: relative;
    overflow: hidden;
}

.cases::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 30%, var(--inx-green-soft), transparent 50%);
    pointer-events: none;
}

.cases-layout {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 36px;
    position: relative;
    z-index: 1;
}

/* ── Featured Video ── */
.cases-feature {
    background: var(--inx-bg-card);
    border: 1px solid var(--inx-border-hover);
    border-radius: var(--inx-radius-lg);
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), 0 0 60px var(--inx-green-soft);
    transition: all 0.4s var(--inx-ease);
    align-self: start;
}

.cases-feature:hover {
    transform: translateY(-4px);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6), 0 0 80px rgba(0, 222, 154, 0.2);
}

.feature-video {
    position: relative;
    aspect-ratio: 16 / 9;
    background: var(--inx-bg-deep);
}

.feature-video iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.feature-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 22px 26px;
    border-top: 1px solid var(--inx-border);
}

.feature-meta-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--inx-green);
    color: var(--inx-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 0 24px var(--inx-green-glow);
}

.feature-meta-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--inx-text);
    line-height: 1.2;
}

.feature-meta-sub {
    font-size: 13px;
    color: var(--inx-text-dim);
    margin-top: 3px;
}

/* ── Quote Cards ── */
.cases-quotes {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.quote-card {
    background: var(--inx-bg-card);
    border: 1px solid var(--inx-border);
    border-radius: var(--inx-radius);
    padding: 24px 26px;
    position: relative;
    transition: all 0.4s var(--inx-ease);
    overflow: hidden;
}

.quote-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--inx-green), var(--inx-cyan));
    opacity: 0;
    transition: opacity 0.4s var(--inx-ease);
}

.quote-card:hover {
    border-color: var(--inx-border-hover);
    transform: translateX(-4px);
    background: var(--inx-bg-elevated);
    box-shadow: -8px 12px 40px rgba(0, 0, 0, 0.4);
}

.quote-card:hover::before {
    opacity: 1;
}

.quote-mark {
    position: absolute;
    top: 6px;
    right: 18px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 70px;
    font-weight: 700;
    line-height: 1;
    color: var(--inx-green);
    opacity: 0.18;
    pointer-events: none;
}

.quote-text {
    font-size: 14.5px;
    color: var(--inx-text);
    line-height: 1.6;
    margin-bottom: 18px;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.quote-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.quote-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--inx-bg);
    font-weight: 700;
    font-size: 13px;
    font-family: 'Space Grotesk', sans-serif;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    flex-shrink: 0;
}

.quote-name {
    font-size: 13px;
    font-weight: 700;
    color: var(--inx-text);
    line-height: 1.2;
}

.quote-role {
    font-size: 11px;
    color: var(--inx-text-dim);
    margin-top: 2px;
}

.quote-metric {
    display: flex;
    align-items: baseline;
    gap: 8px;
    padding-top: 14px;
    border-top: 1px solid var(--inx-border);
}

.metric-num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--inx-green);
    text-shadow: 0 0 18px var(--inx-green-glow);
    line-height: 1;
}

.metric-lbl {
    font-size: 11px;
    color: var(--inx-text-dim);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ══════════════════════════════════════════
   GLOBAL PRESENCE
   ══════════════════════════════════════════ */
.global {
    background: var(--inx-bg);
    overflow: hidden;
    position: relative;
}

/* ── World Map ── */
.global-map {
    width: 100%;
    max-width: 980px;
    margin: 30px auto 50px;
    position: relative;
}

.world-map {
    width: 100%;
    height: auto;
    display: block;
    overflow: visible;
}

/* Procedurally generated continent dots */
.world-dot {
    fill: rgba(255, 255, 255, 0.12);
}

/* Connection lines between markers — animated draw */
.connection-line {
    stroke-dasharray: 8 6;
    stroke-dashoffset: 0;
    animation: dashDraw 8s linear infinite;
}

@keyframes dashDraw {
    to { stroke-dashoffset: -200; }
}

/* Markers */
.map-marker {
    cursor: pointer;
}

.marker-glow {
    transform-origin: center;
    animation: markerGlowPulse 2.4s ease-in-out infinite;
}

.marker-ring {
    transform-origin: center;
    transform-box: fill-box;
    animation: markerRingExpand 2.4s ease-out infinite;
}

.marker-dot {
    filter: drop-shadow(0 0 8px var(--inx-green));
}

@keyframes markerGlowPulse {
    0%, 100% { opacity: 0.4; transform: scale(0.9); }
    50% { opacity: 1; transform: scale(1.1); }
}

@keyframes markerRingExpand {
    0% { opacity: 0.9; r: 16; }
    100% { opacity: 0; r: 36; }
}

.map-marker[data-marker="pt"] .marker-glow,
.map-marker[data-marker="pt"] .marker-ring { animation-delay: 0.6s; }
.map-marker[data-marker="ae"] .marker-glow,
.map-marker[data-marker="ae"] .marker-ring { animation-delay: 1.2s; }
.map-marker[data-marker="ph"] .marker-glow,
.map-marker[data-marker="ph"] .marker-ring { animation-delay: 1.8s; }

.map-marker:hover .marker-dot {
    transform: scale(1.4);
    transform-box: fill-box;
    transform-origin: center;
}

/* Country cards */
.global-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.global-card {
    background: var(--inx-bg-card);
    border: 1px solid var(--inx-border);
    border-radius: var(--inx-radius);
    padding: 32px 26px;
    text-align: center;
    transition: all 0.4s var(--inx-ease);
    position: relative;
    overflow: hidden;
}

.global-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 100%, var(--inx-green-soft), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
}

.global-card:hover::before { opacity: 1; }

.global-card:hover {
    border-color: var(--inx-border-hover);
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 222, 154, 0.15);
}

.global-card-num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: var(--inx-green);
    letter-spacing: 2px;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.global-card h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 21px;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--inx-text);
    position: relative;
    z-index: 1;
}

.global-card p {
    font-size: 13px;
    color: var(--inx-text-dim);
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
}

.global-card-tag {
    display: inline-block;
    font-size: 9px;
    font-weight: 700;
    color: var(--inx-text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--inx-border);
    border-radius: 999px;
    position: relative;
    z-index: 1;
}

/* ══════════════════════════════════════════
   FINAL CTA / FORM
   ══════════════════════════════════════════ */
.contact {
    background: var(--inx-bg-deep);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, var(--inx-green-soft), transparent 60%);
    pointer-events: none;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.contact-info h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -1.5px;
    margin-bottom: 22px;
}

.contact-info h2 .green {
    color: var(--inx-green);
    text-shadow: 0 0 30px var(--inx-green-glow);
}

.contact-info p {
    font-size: 17px;
    color: var(--inx-text-dim);
    line-height: 1.7;
    margin-bottom: 32px;
}

.contact-perks {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-perk {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--inx-text);
    font-size: 15px;
}

.contact-perk svg { color: var(--inx-green); flex-shrink: 0; }

.contact-form {
    background: var(--inx-bg-card);
    border: 1px solid var(--inx-border-hover);
    border-radius: var(--inx-radius-lg);
    padding: 40px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 14px;
}

.form-group {
    margin-bottom: 14px;
}

.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--inx-text-dim);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: var(--inx-bg-deep);
    border: 1px solid var(--inx-border);
    border-radius: var(--inx-radius-sm);
    padding: 14px 16px;
    color: var(--inx-text);
    font-size: 15px;
    font-family: inherit;
    transition: all 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--inx-green);
    background: var(--inx-bg-card);
    box-shadow: 0 0 0 3px var(--inx-green-soft);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
    font-family: inherit;
}

.form-submit {
    width: 100%;
    padding: 16px;
    background: var(--inx-green);
    color: var(--inx-bg);
    border: none;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 36px var(--inx-green-glow);
}

.form-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.form-success {
    display: none;
    text-align: center;
    padding: 40px 20px;
}

.form-success.show { display: block; }

.form-success-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: var(--inx-green);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 40px var(--inx-green-glow);
}

.form-success h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--inx-text);
    margin-bottom: 8px;
}

.form-success p {
    color: var(--inx-text-dim);
    font-size: 15px;
}

/* ══════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════ */
.footer {
    background: var(--inx-bg-deep);
    border-top: 1px solid var(--inx-border);
    padding: 80px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 56px;
}

.footer-brand-row {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.footer-brand-logo {
    height: 44px;
    width: auto;
    filter: drop-shadow(0 0 14px var(--inx-green-glow));
}

.footer-brand-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 30px;
    font-weight: 700;
    color: var(--inx-text);
    letter-spacing: -0.5px;
}

.footer-tagline {
    color: var(--inx-text-dim);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 24px;
    max-width: 320px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: var(--inx-bg-card);
    border: 1px solid var(--inx-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--inx-text-dim);
    transition: all 0.2s;
    text-decoration: none;
}

.footer-social a:hover {
    background: var(--inx-green);
    color: var(--inx-bg);
    border-color: var(--inx-green);
    transform: translateY(-2px);
}

.footer-col h5 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--inx-text);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 18px;
}

.footer-col ul { list-style: none; }

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul a {
    color: var(--inx-text-dim);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-col ul a:hover { color: var(--inx-green); }

.footer-bottom {
    border-top: 1px solid var(--inx-border);
    padding-top: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    color: var(--inx-text-muted);
    font-size: 13px;
}

.footer-bottom a {
    color: var(--inx-text-dim);
    text-decoration: none;
    margin-left: 18px;
}

.footer-bottom a:hover { color: var(--inx-green); }

/* ══════════════════════════════════════════
   SCROLL ANIMATIONS
   ══════════════════════════════════════════ */
[data-animate] {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--inx-ease), transform 0.8s var(--inx-ease);
}

[data-animate].visible {
    opacity: 1;
    transform: translateY(0);
}

[data-animate="fade-left"] { transform: translateX(-40px); }
[data-animate="fade-left"].visible { transform: translateX(0); }

[data-animate="fade-right"] { transform: translateX(40px); }
[data-animate="fade-right"].visible { transform: translateX(0); }

[data-animate="zoom-in"] { transform: scale(0.92); }
[data-animate="zoom-in"].visible { transform: scale(1); }

/* ══════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════ */

/* ── Global overflow protection ── */
html { overflow-x: hidden; }

/* ── Tablet ≤1100px ── */
@media (max-width: 1100px) {
    .why-grid,
    .iepc-grid,
    .global-grid { grid-template-columns: repeat(2, 1fr); }
    .plans-grid { grid-template-columns: repeat(2, 1fr); }
    .sprints-grid { grid-template-columns: repeat(3, 1fr); }
    .sprints-line { display: none; }
    .press-grid { grid-template-columns: repeat(3, 1fr); }
    .product-flagship { grid-template-columns: 1fr; padding: 40px; }
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid { grid-template-columns: 1fr; gap: 48px; }
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .funnel-grid { grid-template-columns: 1fr; gap: 28px; }
    .cases-layout { grid-template-columns: 1fr; gap: 28px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

/* ── Mobile ≤780px ── */
@media (max-width: 780px) {
    .section { padding: 60px 0; }
    .section-header { margin-bottom: 40px; }

    /* ── Mobile Navigation: Full-screen glassmorphism overlay ── */
    .nav-links {
        display: none;
        position: fixed;
        top: 0; left: 0; right: 0; bottom: 0;
        background: rgba(10, 10, 14, 0.94);
        backdrop-filter: blur(28px);
        -webkit-backdrop-filter: blur(28px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 6px;
        z-index: 99;
        opacity: 0;
        transition: opacity 0.35s var(--inx-ease);
        pointer-events: none;
    }
    .nav-links.open {
        display: flex;
        opacity: 1;
        pointer-events: auto;
        animation: navFadeIn 0.35s ease forwards;
    }
    @keyframes navFadeIn {
        from { opacity: 0; }
        to { opacity: 1; }
    }
    .nav-links.open .nav-link {
        color: rgba(255, 255, 255, 0.85);
        font-size: 20px;
        font-weight: 600;
        padding: 16px 36px;
        border-radius: 12px;
        width: auto;
        text-align: center;
        transition: all 0.2s;
    }
    .nav-links.open .nav-link:hover {
        background: rgba(0, 222, 154, 0.1);
        color: var(--inx-green);
    }
    .nav-links.open .nav-cta {
        margin-top: 12px;
        margin-left: 0;
        padding: 16px 40px;
        font-size: 16px;
        width: auto;
    }
    .nav-hamburger {
        display: flex;
        position: relative;
        z-index: 101;
        width: 44px;
        height: 44px;
    }

    /* ── Hero ── */
    .hero { padding: 110px 0 50px; min-height: auto; }
    .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .hero-stat-value { font-size: 28px; }
    .hero-stat-label { font-size: 11px; letter-spacing: 1px; }
    .hero-ctas { flex-direction: column; align-items: center; }
    .hero-ctas .btn { width: 100%; justify-content: center; max-width: 340px; }
    .hero-subtitle { margin-bottom: 32px; }
    .hero-scroll { display: none; }

    /* ── Grids → 1-col ── */
    .why-grid,
    .iepc-grid,
    .global-grid,
    .plans-grid,
    .sprints-grid,
    .products-grid { grid-template-columns: 1fr; }

    .press-grid { grid-template-columns: repeat(2, 1fr); }

    /* ── Cards: tighter padding ── */
    .why-card, .iepc-step, .sprint-node, .product-card { padding: 24px 20px; }
    .anchor-card,
    .product-flagship,
    .contact-form { padding: 28px 20px; }

    /* ── Plans ── */
    .plan-card.featured { transform: none; }
    .plan-card { padding: 28px 22px; }

    /* ── Footer ── */
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; text-align: center; gap: 12px; }
    .footer-bottom div a { margin: 0 8px; }

    /* ── Forms ── */
    .form-row { grid-template-columns: 1fr; }

    /* ── Funnel comparison label ── */
    .funnel-delta { flex-direction: column; text-align: center; gap: 12px; }
}

/* ── Small phone ≤480px ── */
@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .section { padding: 48px 0; }
    .section-header { margin-bottom: 28px; }
    .hero { padding: 90px 0 40px; }
    .hero-title { font-size: 36px; letter-spacing: -1px; }
    .hero-pre { font-size: 10px; letter-spacing: 2px; padding: 6px 14px; }
    .hero-stats { padding: 20px 16px; gap: 12px; }
    .hero-stat-value { font-size: 24px; }
    .anchor-amount { font-size: 52px; }
    .footer-grid { grid-template-columns: 1fr; }
    .plan-card, .why-card, .product-card { padding: 22px 18px; }
    .press-grid { grid-template-columns: 1fr; }
}

/* ── Reduced motion support ── */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
