/* ============================================
   ZYNQOR Website - Premium Dark Theme
   ============================================ */

/* CSS Variables */
:root {
    /* Core Colors */
    --bg-primary: #050507;
    --bg-secondary: #0a0a0f;
    --bg-card: #0f1018;
    --bg-elevated: #14151f;

    /* Accent Colors */
    --accent-primary: #00d4ff;
    --accent-secondary: #0891b2;
    --accent-gradient: linear-gradient(135deg, #00d4ff 0%, #0891b2 100%);
    --glow-primary: rgba(0, 212, 255, 0.4);
    --glow-secondary: rgba(8, 145, 178, 0.3);

    /* Status */
    --success: #22c55e;
    --warning: #f59e0b;
    --danger: #ef4444;

    /* Text */
    --text-primary: #ffffff;
    --text-secondary: #94a3b8;
    --text-muted: #8892a4;

    /* Borders */
    --border-color: rgba(255, 255, 255, 0.06);
    --border-hover: rgba(255, 255, 255, 0.12);

    /* Glass */
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);

    /* Spacing — fluid, full-page responsive */
    --container-max: 1400px;
    --container-wide: 93vw;
    --section-padding: clamp(50px, 5vw, 100px);

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.6);
    --shadow-glow: 0 0 60px var(--glow-primary);
}

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

html {
    scroll-behavior: smooth;
    scroll-snap-type: none;
}

body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    /* FPS mode: fps.js will set overflow:hidden on body via JS only on index.html */
    -webkit-font-smoothing: antialiased;
}

/* Global fixed background grid — subtle depth across all sections */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 212, 255, 0.022) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 212, 255, 0.022) 1px, transparent 1px);
    background-size: 70px 70px;
    pointer-events: none;
    z-index: 0;
}

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

ul {
    list-style: none;
}

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

/* Every section snaps to its top edge on scroll */
section {
    scroll-snap-align: start;
}

/* Container — fluid, full-page responsive */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 clamp(24px, 3vw, 80px);
    width: 100%;
}

/* ============================================
   Navigation
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 72px;
    background: rgba(5, 5, 7, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 212, 255, 0.06);
    transition: all var(--transition-normal);
    box-shadow: 0 1px 40px rgba(0, 0, 0, 0.5);
}

.navbar.navbar-hidden {
    transform: translateY(-100%);
    pointer-events: none;
}

.navbar.scrolled {
    background: rgba(5, 5, 7, 0.96);
    border-bottom-color: rgba(0, 212, 255, 0.1);
    box-shadow: 0 1px 40px rgba(0, 0, 0, 0.7), 0 0 80px rgba(0, 212, 255, 0.03);
}

/* Slide navbar off the top when user scrolls down */
.navbar.navbar-hidden {
    transform: translateY(-100%);
}

.navbar .container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 4px;
    height: 100%;
    text-decoration: none;
    position: relative;
}


/* Hex icon */
.logo-icon {
    height: 61px;
    width: auto;
    object-fit: contain;
    margin-top: -24px;
    margin-bottom: -25px;
    position: relative;
    z-index: 2;
    mix-blend-mode: screen;
    filter: drop-shadow(0 0 12px rgba(0, 212, 255, 0.5));
    transition: filter 0.3s ease, transform 0.3s ease;
}

.logo-icon:hover {
    filter: drop-shadow(0 0 22px rgba(0, 212, 255, 0.85));
    transform: scale(1.05);
}

/* Logo text */
.logo-text-img {
    height: 39px;
    width: auto;
    object-fit: contain;
    align-self: flex-end;
    margin-bottom: 12px;
    position: relative;
    z-index: 2;
    mix-blend-mode: screen;
    filter: brightness(1.2) drop-shadow(0 0 6px rgba(0, 212, 255, 0.15));
    transition: filter 0.3s ease;
}

/* Typewriter cycling text in nav center */
.nav-typewriter {
    display: flex;
    align-items: center;
    gap: 3px;
    flex: 1;
    justify-content: center;
    font-family: 'Syne', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    white-space: nowrap;
    overflow: hidden;
    padding: 0 32px;
    pointer-events: none;
    user-select: none;
}

/* Gradient shimmer on the cycling text */
.typewriter-text {
    background: linear-gradient(90deg,
            #00d4ff 0%,
            #a855f7 40%,
            #00d4ff 80%,
            #a855f7 100%);
    background-size: 250% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: tw-shimmer 4s linear infinite;
    filter: drop-shadow(0 0 6px rgba(0, 212, 255, 0.35));
}

@keyframes tw-shimmer {
    0% {
        background-position: 0% center;
    }

    100% {
        background-position: 250% center;
    }
}

/* Glowing cursor */
.typewriter-cursor {
    -webkit-text-fill-color: var(--accent-primary);
    color: var(--accent-primary);
    font-weight: 300;
    font-size: 15px;
    line-height: 1;
    animation: tw-cursor-glow 0.8s step-end infinite;
}

@keyframes tw-cursor-glow {

    0%,
    100% {
        opacity: 1;
        text-shadow: 0 0 10px rgba(0, 212, 255, 0.9), 0 0 20px rgba(0, 212, 255, 0.4);
    }

    50% {
        opacity: 0;
        text-shadow: none;
    }
}

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

.nav-links li a {
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.3px;
    color: var(--text-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 16px;
    border-radius: 10px;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;

    /* Holographic Edge 3D: raised surface gradient */
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);

    /* Holographic Edge 3D: beveled borders */
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-left: 1px solid rgba(255, 255, 255, 0.12);
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.4);

    /* Holographic Edge 3D: depth shadow + inner highlight */
    box-shadow:
        0 3px 6px rgba(0, 0, 0, 0.35),
        0 1px 2px rgba(0, 0, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

/* Holographic Edge: prismatic border shimmer */
.nav-links li a::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg,
            transparent 15%,
            rgba(0, 212, 255, 0.5) 30%,
            rgba(8, 145, 178, 0.5) 50%,
            rgba(0, 212, 255, 0.4) 70%,
            transparent 85%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
    background-size: 300% 300%;
    animation: holoShift 4s linear infinite;
    pointer-events: none;
    z-index: 1;
}

.nav-links li a:hover::before {
    opacity: 1;
}

@keyframes holoShift {
    0% {
        background-position: 0% 0%;
    }

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

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

.nav-links li a:hover {
    color: #fff;
    background: linear-gradient(180deg, rgba(0, 212, 255, 0.12) 0%, rgba(0, 212, 255, 0.04) 100%);
    border-top-color: rgba(0, 212, 255, 0.35);
    border-left-color: rgba(0, 212, 255, 0.2);
    border-right-color: rgba(0, 212, 255, 0.15);
    border-bottom-color: rgba(0, 0, 0, 0.5);

    transform: translateY(-4px) scale(1.06);
    box-shadow:
        0 8px 20px rgba(0, 212, 255, 0.2),
        0 4px 8px rgba(0, 0, 0, 0.35),
        0 0 18px rgba(0, 212, 255, 0.08),
        inset 0 1px 0 rgba(0, 212, 255, 0.2);
}

/* Holographic Edge 3D: pressed state */
.nav-links li a:active {
    transform: translateY(1px) scale(0.97);
    background: linear-gradient(180deg, rgba(0, 212, 255, 0.06) 0%, rgba(0, 212, 255, 0.1) 100%);
    border-top-color: rgba(0, 0, 0, 0.3);
    border-bottom-color: rgba(255, 255, 255, 0.08);
    box-shadow:
        0 1px 2px rgba(0, 0, 0, 0.4),
        inset 0 2px 6px rgba(0, 0, 0, 0.25);
}

.nav-links li a:active::before {
    opacity: 0.6;
}

/* Download Free — reset .btn + .btn-primary, inherit nav-link styles */
.nav-links li a.btn,
.nav-links li a.btn.btn-primary {
    margin-left: 8px;
    gap: 0 !important;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%) !important;
    color: var(--text-primary) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-left: 1px solid rgba(255, 255, 255, 0.12) !important;
    border-right: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.4) !important;
    box-shadow:
        0 3px 6px rgba(0, 0, 0, 0.35),
        0 1px 2px rgba(0, 0, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.12) !important;
}

.nav-links li a.btn:hover,
.nav-links li a.btn.btn-primary:hover {
    color: #fff !important;
    background: linear-gradient(180deg, rgba(0, 212, 255, 0.12) 0%, rgba(0, 212, 255, 0.04) 100%) !important;
    border-top-color: rgba(0, 212, 255, 0.35) !important;
    border-left-color: rgba(0, 212, 255, 0.2) !important;
    border-right-color: rgba(0, 212, 255, 0.15) !important;
    border-bottom-color: rgba(0, 0, 0, 0.5) !important;
    transform: translateY(-4px) scale(1.06) !important;
    box-shadow:
        0 8px 20px rgba(0, 212, 255, 0.2),
        0 4px 8px rgba(0, 0, 0, 0.35),
        0 0 18px rgba(0, 212, 255, 0.08),
        inset 0 1px 0 rgba(0, 212, 255, 0.2) !important;
}

.nav-links li a.btn:active,
.nav-links li a.btn.btn-primary:active {
    transform: translateY(1px) scale(0.97) !important;
    background: linear-gradient(180deg, rgba(0, 212, 255, 0.06) 0%, rgba(0, 212, 255, 0.1) 100%) !important;
    border-top-color: rgba(0, 0, 0, 0.3) !important;
    border-bottom-color: rgba(255, 255, 255, 0.08) !important;
    box-shadow:
        0 1px 2px rgba(0, 0, 0, 0.4),
        inset 0 2px 6px rgba(0, 0, 0, 0.25) !important;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all var(--transition-normal);
}

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    transition: all var(--transition-normal);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--accent-primary);
    color: var(--bg-primary);
    overflow: hidden;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
    transform: skewX(-20deg);
    animation: shimmer-sweep 3s ease-in-out infinite;
}

@keyframes shimmer-sweep {
    0% {
        left: -100%;
    }

    50%,
    100% {
        left: 150%;
    }
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 40px rgba(0, 212, 255, 0.5), 0 8px 24px rgba(0, 0, 0, 0.3);
}

.btn-glow::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: var(--accent-gradient);
    border-radius: 12px;
    z-index: -1;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.btn-glow:hover::before {
    opacity: 1;
}

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

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent-primary);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    border: 1px solid transparent;
}

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

.btn-dark {
    background: var(--bg-primary);
    color: var(--text-primary);
    border: 1px solid var(--border-hover);
}

.btn-dark:hover {
    background: var(--bg-secondary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-gold {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: var(--bg-primary);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(245, 158, 11, 0.4);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 15px;
}

.btn-block {
    width: 100%;
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    padding: 88px 0 48px;
    overflow: hidden;
    z-index: 50;
    background: var(--bg-primary);
}

/* Hero scrolling bar: in normal flow, not overlapping */
.hero .logo-scroll {
    position: relative;
    bottom: auto;
    margin-top: 20px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse 90% 60% at 50% -10%, rgba(0, 212, 255, 0.18) 0%, transparent 55%),
        radial-gradient(ellipse 70% 50% at 85% 65%, rgba(8, 145, 178, 0.14) 0%, transparent 55%),
        radial-gradient(ellipse 50% 40% at 15% 80%, rgba(0, 212, 255, 0.06) 0%, transparent 50%);
    z-index: -2;
}

/* Hero ambient orbs for visual depth */
.hero-orb-1,
.hero-orb-2,
.hero-orb-3 {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
    z-index: -1;
}

.hero-orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.12) 0%, transparent 70%);
    top: -200px;
    left: -100px;
    animation: orb-drift-1 12s ease-in-out infinite;
}

.hero-orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(8, 145, 178, 0.14) 0%, transparent 70%);
    top: 100px;
    right: -50px;
    animation: orb-drift-2 15s ease-in-out infinite;
}

.hero-orb-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.08) 0%, transparent 70%);
    bottom: 50px;
    left: 30%;
    animation: orb-drift-1 18s ease-in-out infinite reverse;
}

@keyframes orb-drift-1 {

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

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

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

@keyframes orb-drift-2 {

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

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

    66% {
        transform: translate(25px, -15px);
    }
}

.hero-glow {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(ellipse, var(--glow-primary), transparent 70%);
    filter: blur(100px);
    opacity: 0.3;
    z-index: -1;
    animation: glow-pulse 8s ease-in-out infinite;
}

@keyframes glow-pulse {

    0%,
    100% {
        opacity: 0.3;
        transform: translateX(-50%) scale(1);
    }

    50% {
        opacity: 0.5;
        transform: translateX(-50%) scale(1.1);
    }
}

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

.hero-content {
    max-width: 600px;
    text-align: center;
}

.hero-badge {
    display: none;
    /* Moved – now shown below mockup as .hero-badge-bottom */
}

.hero-badge-bottom {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px 8px 14px;
    background: rgba(0, 212, 255, 0.08);
    border: 1px solid rgba(0, 212, 255, 0.25);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    color: var(--accent-primary);
    margin-top: 20px;
    margin-bottom: 24px;
    align-self: center;
    width: fit-content;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4), 0 0 20px rgba(0, 212, 255, 0.08);
    animation: float-badge 6s ease-in-out 1s infinite;
}

@keyframes float-badge {

    0%,
    100% {
        transform: perspective(1200px) rotateY(-5deg) rotateX(2deg) translateY(0);
    }

    50% {
        transform: perspective(1200px) rotateY(-5deg) rotateX(2deg) translateY(-8px);
    }
}

.badge-pulse {
    width: 8px;
    height: 8px;
    background: var(--accent-primary);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 0 0 0 var(--glow-primary);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 212, 255, 0.6);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(0, 212, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 212, 255, 0);
    }
}

.hero-title {
    font-size: clamp(42px, 5vw, 60px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: 24px;
}

.gradient-text {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
    justify-content: center;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 500;
}

.trust-badge svg {
    color: var(--accent-primary);
}

/* Hero Visual */
.hero-visual {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero-mockup {
    perspective: 1000px;
    position: relative;
}

.mockup-window {
    background: linear-gradient(180deg, #0d0f1a 0%, #090b14 100%);
    border-radius: 16px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    overflow: hidden;
    width: 520px;
    min-height: 420px;
    box-shadow:
        0 0 0 1px rgba(0, 212, 255, 0.08),
        0 0 60px rgba(0, 212, 255, 0.15),
        0 0 120px rgba(8, 145, 178, 0.1),
        0 32px 80px rgba(0, 0, 0, 0.8);
    transform: perspective(1200px) rotateY(-5deg) rotateX(2deg);
    transition: transform var(--transition-slow);
    animation: float 6s ease-in-out infinite;
    position: relative;
}

/* Glowing top edge */
.mockup-window::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.8), rgba(8, 145, 178, 0.6), transparent);
    z-index: 1;
}

.mockup-window:hover {
    transform: perspective(1200px) rotateY(0deg) rotateX(0deg);
}

@keyframes float {

    0%,
    100% {
        transform: perspective(1200px) rotateY(-5deg) rotateX(2deg) translateY(0);
    }

    50% {
        transform: perspective(1200px) rotateY(-5deg) rotateX(2deg) translateY(-15px);
    }
}

.window-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(0, 0, 0, 0.3) 100%);
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
    position: relative;
    z-index: 1;
}

.window-controls {
    display: flex;
    gap: 8px;
}

.control {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.control.red {
    background: #ff5f56;
}

.control.yellow {
    background: #ffbd2e;
}

.control.green {
    background: #27ca40;
}

.window-title {
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.5px;
    margin-left: auto;
    margin-right: auto;
    text-transform: uppercase;
}

.window-content {
    padding: 14px;
}

.status-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 14px;
    background: linear-gradient(90deg, rgba(34, 197, 94, 0.12) 0%, rgba(34, 197, 94, 0.04) 100%);
    border-radius: 8px;
    border: 1px solid rgba(34, 197, 94, 0.2);
    margin-bottom: 12px;
    font-size: 12px;
    font-weight: 600;
    color: var(--success);
    letter-spacing: 0.3px;
}

.status-indicator {
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.trade-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 12px;
}

.trade-item {
    display: grid;
    grid-template-columns: 1fr auto auto auto auto;
    gap: 10px;
    align-items: center;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.025);
    border-radius: 8px;
    font-size: 13px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-left: 2px solid transparent;
    transition: all var(--transition-fast);
}

.trade-item:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.08);
    border-left-color: var(--accent-primary);
}

.trade-item.copying {
    border-left-color: var(--accent-primary);
    border-color: rgba(0, 212, 255, 0.15);
    background: rgba(0, 212, 255, 0.04);
}

.trade-pair {
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.3px;
}

.trade-action {
    padding: 3px 9px;
    border-radius: 5px;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.trade-action.buy {
    background: rgba(34, 197, 94, 0.18);
    color: #4ade80;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.trade-action.sell {
    background: rgba(239, 68, 68, 0.18);
    color: #f87171;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.trade-size {
    color: var(--text-secondary);
}

.trade-profit {
    font-weight: 600;
}

.trade-profit.positive {
    color: var(--success);
}

.trade-profit.negative {
    color: var(--danger);
}

.trade-profit.neutral {
    color: var(--text-muted);
}

.trade-sync {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
}

.trade-sync.synced {
    color: var(--success);
}

.copying-status {
    color: var(--accent-primary);
}

.copy-spinner {
    width: 12px;
    height: 12px;
    border: 2px solid transparent;
    border-top-color: var(--accent-primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.stats-bar {
    display: flex;
    justify-content: space-between;
    padding: 12px 14px;
    background: linear-gradient(90deg, rgba(0, 212, 255, 0.04) 0%, rgba(8, 145, 178, 0.04) 100%);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-top: 1px solid rgba(0, 212, 255, 0.1);
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.stats-bar .stat-label {
    font-size: 9px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stats-bar .stat-value {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.stats-bar .stat-value.highlight {
    color: var(--accent-primary);
}

.stats-bar .stat-value.positive {
    color: var(--success);
}

/* ── Account Connection Flow ── */
.accounts-flow {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    margin-top: 8px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-top: 1px solid rgba(0, 212, 255, 0.08);
}

.flow-master {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.flow-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 6px rgba(34, 197, 94, 0.6);
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {

    0%,
    100% {
        box-shadow: 0 0 4px rgba(34, 197, 94, 0.4);
    }

    50% {
        box-shadow: 0 0 10px rgba(34, 197, 94, 0.9);
    }
}

.flow-master-info {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.flow-master-label {
    font-size: 10px;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: 0.3px;
}

.flow-master-id {
    font-size: 9px;
    color: var(--text-muted);
    font-family: 'JetBrains Mono', monospace, sans-serif;
}

.flow-arrow-group {
    display: flex;
    align-items: center;
    gap: 2px;
    flex: 1;
}

.flow-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, rgba(0, 212, 255, 0.3), rgba(0, 212, 255, 0.6));
    position: relative;
    overflow: visible;
}

/* Traveling dot — glowing packet moving Master → Slaves */
.flow-line::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0%;
    transform: translate(-50%, -50%);
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #00d4ff;
    box-shadow: 0 0 8px rgba(0, 212, 255, 1), 0 0 18px rgba(0, 212, 255, 0.6);
    animation: travel-dot 2s ease-in-out infinite;
}

@keyframes travel-dot {
    0% {
        left: 0%;
        opacity: 0;
    }

    10% {
        left: 5%;
        opacity: 1;
    }

    90% {
        left: 95%;
        opacity: 1;
    }

    100% {
        left: 100%;
        opacity: 0;
    }
}


.flow-chevron {
    flex-shrink: 0;
}

.flow-slaves {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex-shrink: 0;
}

.flow-slave-pill {
    font-size: 9px;
    font-weight: 600;
    color: var(--accent-primary);
    padding: 2px 8px;
    border-radius: 20px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    background: rgba(0, 212, 255, 0.06);
    letter-spacing: 0.3px;
    white-space: nowrap;
    transition: all 0.2s ease;
}

.flow-slave-pill:hover {
    background: rgba(0, 212, 255, 0.12);
    border-color: rgba(0, 212, 255, 0.4);
}

/* Logo Scroll */
.logo-scroll {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 14px 0;
    background: linear-gradient(180deg, transparent, var(--bg-secondary));
    overflow: hidden;
}

.logo-track {
    display: flex;
    gap: 60px;
    animation: scroll 30s linear infinite;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.platform-logo {
    flex-shrink: 0;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
    opacity: 0.6;
    white-space: nowrap;
}

/* ============================================
   Stats Section
   ============================================ */
.stats-section {
    padding: 28px 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.stats-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

/* Duplicate rule cleanup — single definition */
.stat-card {
    flex: 1;
    text-align: center;
    padding: 16px 24px;
    background: none;
    border: none;
    border-right: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 0;
    transition: background 0.2s ease;
}

.stat-card:last-child {
    border-right: none;
}

.stat-card:hover {
    background: rgba(0, 212, 255, 0.04);
    transform: none;
    box-shadow: none;
}

.stat-number {
    font-size: 32px;
    font-weight: 800;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
    line-height: 1;
    letter-spacing: -0.5px;
}

.stat-text {
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* ============================================
   Section Styling
   ============================================ */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
}

.section-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(0, 212, 255, 0.08);
    border: 1px solid rgba(0, 212, 255, 0.15);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent-primary);
    margin-bottom: 20px;
}

.section-title {
    font-size: clamp(30px, 3.5vw, 44px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.5px;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

/* Gradient underline beneath section titles */
.section-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--accent-gradient);
    border-radius: 3px;
}

.section-subtitle {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ============================================
   Features Section
   ============================================ */
.features {
    padding: var(--section-padding) 0;
    position: relative;
    overflow: hidden;
}

/* Ambient dual-orb glow behind features */
.features::before {
    content: '';
    position: absolute;
    top: 15%;
    left: 50%;
    transform: translateX(-50%);
    width: 1000px;
    height: 700px;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(0, 212, 255, 0.045) 0%, transparent 55%),
        radial-gradient(ellipse at 70% 50%, rgba(8, 145, 178, 0.045) 0%, transparent 55%);
    pointer-events: none;
    z-index: 0;
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.012);
    border-radius: 12px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.035);
    border-top: 2px solid transparent;
    position: relative;
    overflow: hidden;
    /* web-design skill: never use transition-all, only transform+shadow */
    transition:
        transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

/* Bento grid sizes */
.feature-card.bento-2 {
    grid-column: span 2;
}

.feature-card.bento-4 {
    grid-column: span 4;
}

/* Stagger entrance animation (JS adds .visible + animationDelay) */
@keyframes card-reveal {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

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

.feature-card.visible {
    animation: card-reveal 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) backwards;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--accent-gradient);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.feature-card:hover {
    transform: translateY(-6px) scale(1.005);
    background: rgba(255, 255, 255, 0.025);
    border-color: rgba(0, 212, 255, 0.15);
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(0, 212, 255, 0.08),
        0 0 40px rgba(0, 212, 255, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

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

.feature-card.featured {
    grid-row: span 2;
    background: linear-gradient(180deg, rgba(0, 212, 255, 0.04) 0%, rgba(0, 212, 255, 0.01) 50%, rgba(255, 255, 255, 0.012) 100%);
    border-color: rgba(0, 212, 255, 0.15);
    box-shadow: 0 0 80px rgba(0, 212, 255, 0.03), inset 0 1px 0 rgba(0, 212, 255, 0.06);
}

.feature-badge {
    position: absolute;
    top: -12px;
    right: 24px;
    padding: 6px 14px;
    background: var(--accent-primary);
    color: var(--bg-primary);
    font-size: 11px;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.feature-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 10px;
    margin-bottom: 16px;
    color: var(--accent-primary);
}

.feature-icon.lightning {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.15), rgba(8, 145, 178, 0.15));
}

.feature-card h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 10px;
}

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

.feature-list {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

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

.feature-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--accent-primary);
    border-radius: 50%;
}

/* ============================================
   Stats — Live Badge, Sparklines, Latency Bars
   ============================================ */
.stats-live-badge {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--success);
    padding: 0 28px 0 0;
    border-right: 1px solid rgba(255, 255, 255, 0.07);
    white-space: nowrap;
    flex-shrink: 0;
}

.live-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--success);
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.6);
    animation: live-pulse 1.8s ease-in-out infinite;
}

@keyframes live-pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.6);
    }

    50% {
        box-shadow: 0 0 0 5px rgba(34, 197, 94, 0);
    }
}

.stat-sparkline {
    display: block;
    width: 100%;
    height: 20px;
    margin-top: 8px;
    opacity: 0.7;
}

.stat-latency-bars {
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 20px;
    margin-top: 8px;
    justify-content: center;
}

.stat-latency-bars span {
    width: 4px;
    background: var(--accent-primary);
    border-radius: 2px;
    opacity: 0.7;
    animation: bar-pulse 1.4s ease-in-out infinite;
}

.stat-latency-bars span:nth-child(1) {
    height: 6px;
    animation-delay: 0s;
}

.stat-latency-bars span:nth-child(2) {
    height: 12px;
    animation-delay: 0.15s;
}

.stat-latency-bars span:nth-child(3) {
    height: 8px;
    animation-delay: 0.3s;
}

.stat-latency-bars span:nth-child(4) {
    height: 15px;
    animation-delay: 0.45s;
}

.stat-latency-bars span:nth-child(5) {
    height: 4px;
    animation-delay: 0.6s;
}

@keyframes bar-pulse {

    0%,
    100% {
        opacity: 0.4;
        transform: scaleY(1);
    }

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

/* ============================================
   Feature Card Visuals (bento hero elements)
   ============================================ */

/* Shared visual container */
.feature-visual {
    position: absolute;
    pointer-events: none;
}

/* --- Latency Visual (ping rings) --- */
.latency-visual {
    right: 16px;
    bottom: 16px;
    width: auto;
    height: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 6px;
    overflow: visible;
}

.ping-center {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-primary);
    box-shadow: 0 0 8px rgba(0, 212, 255, 0.6);
    position: relative;
    z-index: 2;
    animation: ping-pulse 1.8s ease-in-out infinite;
}

@keyframes ping-pulse {

    0%,
    100% {
        opacity: 1;
        box-shadow: 0 0 8px rgba(0, 212, 255, 0.6);
    }

    50% {
        opacity: 0.5;
        box-shadow: 0 0 16px rgba(0, 212, 255, 0.9);
    }
}

.ping-ring {
    display: none;
}

.ping-label {
    position: relative;
    bottom: auto;
    right: auto;
    font-size: 11px;
    font-weight: 700;
    color: var(--accent-primary);
    letter-spacing: 0.5px;
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
}

/* --- Security Visual (rotating ring) --- */
.security-visual {
    right: 18px;
    bottom: 18px;
    width: auto;
    height: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 4px;
}

.security-ring-svg {
    width: 32px;
    height: 32px;
    animation: ring-spin 8s linear infinite;
    transform-origin: center;
}

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

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

.security-check {
    position: relative;
    bottom: auto;
    display: flex;
    align-items: center;
    gap: 2px;
    font-size: 8px;
    font-weight: 600;
    color: var(--success);
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 20px;
    padding: 1px 5px;
    white-space: nowrap;
}

.security-icon {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.12), rgba(8, 145, 178, 0.12));
}

/* --- Daily Loss Limit (bento-4 wide card layout) --- */
.feature-card.bento-4 {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.bento-wide-inner {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.bento-wide-text h3 {
    margin-bottom: 8px;
}

.bento-wide-text p {
    margin-bottom: 0;
}

.danger-icon {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    flex-shrink: 0;
}

/* Drawdown progress bar */
.drawdown-visual {
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 8px 14px;
}

.drawdown-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.drawdown-pct {
    font-size: 13px;
    font-weight: 700;
    color: var(--warning);
    text-transform: none;
    letter-spacing: 0;
}

.drawdown-limit {
    color: var(--text-muted);
    font-weight: 400;
}

.drawdown-track {
    position: relative;
    height: 8px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    overflow: visible;
    margin-bottom: 6px;
}

.drawdown-fill {
    height: 100%;
    width: 0%;
    border-radius: 4px;
    background: linear-gradient(90deg, #22c55e 0%, #f59e0b 60%, #ef4444 100%);
    animation: drawdown-animate 2.5s 0.8s ease-out forwards;
}

@keyframes drawdown-animate {
    from {
        width: 0%;
    }

    to {
        width: 32%;
    }

    /* 3.2% of 10% scale = 32% fill */
}

.drawdown-threshold {
    position: absolute;
    top: -4px;
    left: 50%;
    /* threshold at 5% = 50% of 10% scale */
    width: 2px;
    height: 16px;
    background: #ef4444;
    border-radius: 1px;
    box-shadow: 0 0 6px rgba(239, 68, 68, 0.6);
}

.drawdown-ticks {
    display: flex;
    justify-content: space-between;
    font-size: 10px;
    color: var(--text-muted);
    margin-top: 4px;
}

.threshold-tick {
    color: #ef4444;
    font-weight: 600;
}

/* ============================================
   How It Works
   ============================================ */
.how-it-works {
    padding: var(--section-padding) 0;
    background: var(--bg-secondary);
}

.steps-container {
    position: relative;
}

.steps-line {
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-primary) 30%, var(--accent-secondary) 70%, transparent);
    opacity: 0.5;
}

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

.step-card {
    text-align: center;
    position: relative;
}

.step-number {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-gradient);
    border-radius: 50%;
    font-size: 28px;
    font-weight: 800;
    color: var(--bg-primary);
    margin: 0 auto 28px;
    box-shadow:
        0 0 0 8px rgba(0, 212, 255, 0.06),
        0 0 0 16px rgba(0, 212, 255, 0.03),
        0 0 60px rgba(0, 212, 255, 0.4),
        0 8px 24px rgba(0, 0, 0, 0.4);
    transition: box-shadow var(--transition-normal), transform var(--transition-normal);
}

.step-card:hover .step-number {
    box-shadow:
        0 0 0 10px rgba(0, 212, 255, 0.08),
        0 0 0 20px rgba(0, 212, 255, 0.04),
        0 0 80px rgba(0, 212, 255, 0.5),
        0 12px 32px rgba(0, 0, 0, 0.4);
    transform: scale(1.08);
}

.step-content h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 14px;
}

.step-content p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.7;
    max-width: 320px;
    margin: 0 auto;
}

/* ============================================
   Pricing Section
   ============================================ */
.pricing {
    padding: var(--section-padding) 0;
}

.duration-selector {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.duration-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    cursor: pointer;
    transition: all var(--transition-normal);
    min-width: 110px;
    font-size: 14px;
}

.duration-btn:hover {
    border-color: rgba(0, 212, 255, 0.3);
    background: rgba(0, 212, 255, 0.05);
}

.duration-btn.active {
    border-color: var(--accent-primary);
    background: rgba(0, 212, 255, 0.1);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.15);
}

.duration-btn.best-value {
    position: relative;
    overflow: visible;
}

.duration-btn.best-value::after {
    content: 'BEST VALUE';
    position: absolute;
    top: -10px;
    right: -8px;
    padding: 3px 8px;
    background: var(--success);
    color: var(--bg-primary);
    font-size: 9px;
    font-weight: 700;
    border-radius: 50px;
    letter-spacing: 0.5px;
}

.duration-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: 0.2px;
}

.duration-save {
    font-size: 10px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.duration-btn.active .duration-save {
    color: var(--accent-primary);
}

.pricing-total {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    margin-top: 8px;
}

.total-amount {
    font-size: 12px;
    color: var(--text-muted);
}

.total-savings {
    font-size: 12px;
    font-weight: 700;
    color: var(--success);
}

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

.pricing-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
    border-radius: 16px;
    padding: 32px 28px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    backdrop-filter: blur(16px);
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(0, 212, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.12);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
}

.pricing-card.popular {
    border-color: rgba(0, 212, 255, 0.3);
    background: linear-gradient(180deg, rgba(0, 212, 255, 0.12) 0%, rgba(0, 212, 255, 0.03) 40%, rgba(255, 255, 255, 0.02) 100%);
    transform: scale(1.03);
    box-shadow:
        0 0 0 1px rgba(0, 212, 255, 0.2),
        0 0 80px rgba(0, 212, 255, 0.08),
        0 24px 64px rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.pricing-card.popular::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent-gradient);
    border-radius: 16px 16px 0 0;
    opacity: 1;
}

.pricing-card.popular:hover {
    transform: scale(1.03) translateY(-8px);
    box-shadow:
        0 0 0 1px rgba(0, 212, 255, 0.35),
        0 0 100px rgba(0, 212, 255, 0.12),
        0 32px 80px rgba(0, 0, 0, 0.5);
}

.pricing-card.ultimate {
    border-color: rgba(245, 158, 11, 0.2);
    background: linear-gradient(180deg, rgba(245, 158, 11, 0.06) 0%, rgba(245, 158, 11, 0.01) 40%, rgba(255, 255, 255, 0.02) 100%);
}

.pricing-card.ultimate::before {
    background: linear-gradient(90deg, transparent, rgba(245, 158, 11, 0.4), transparent);
}

.pricing-card.ultimate:hover {
    border-color: rgba(245, 158, 11, 0.3);
    box-shadow: 0 20px 60px rgba(245, 158, 11, 0.06), 0 0 40px rgba(245, 158, 11, 0.04);
}

.popular-badge {
    position: absolute;
    top: -11px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-gradient);
    color: #0a0f1c;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    white-space: nowrap;
    box-shadow: 0 4px 16px rgba(0, 212, 255, 0.3);
}

.pricing-header {
    text-align: center;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.pricing-header h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #fff;
}

.pricing-desc {
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 16px;
    letter-spacing: 0.3px;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.price-currency {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-muted);
}

.price-amount {
    font-size: 52px;
    font-weight: 800;
    line-height: 1;
}

.pricing-card.ultimate .price-amount {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-period {
    font-size: 14px;
    color: var(--text-muted);
}

.pricing-features {
    margin-bottom: 28px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.85);
    border-bottom: none;
}

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

.pricing-features svg {
    width: 18px;
    height: 18px;
    color: var(--success);
    flex-shrink: 0;
}

.pricing-features strong {
    color: var(--text-primary);
}

.pricing-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 50px;
    padding: 20px;
    background: rgba(34, 197, 94, 0.08);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 12px;
    color: var(--text-secondary);
    font-size: 14px;
}

.pricing-guarantee svg {
    color: var(--success);
    flex-shrink: 0;
}

.pricing-guarantee strong {
    color: var(--text-primary);
}

/* ============================================
   Partners Section
   ============================================ */
.recommended {
    padding: var(--section-padding) 0;
    background: var(--bg-secondary);
}

.partners-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

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

.partners-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.partners-header svg {
    color: var(--accent-primary);
}

.partners-header h3 {
    font-size: 16px;
    font-weight: 600;
}

a.partner-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    transition: all var(--transition-normal);
    text-decoration: none;
    cursor: pointer;
}

a.partner-card:hover {
    border-color: rgba(0, 212, 255, 0.3);
    background: rgba(0, 212, 255, 0.05);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.partner-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    white-space: nowrap;
}

.partner-desc {
    font-size: 13px;
    color: var(--text-muted);
    flex: 1;
}

.partner-badge {
    padding: 4px 10px;
    font-size: 10px;
    font-weight: 700;
    border-radius: 50px;
    letter-spacing: 0.5px;
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-secondary);
    border: 1px solid var(--glass-border);
    white-space: nowrap;
}

.partner-badge.popular {
    background: rgba(0, 212, 255, 0.12);
    color: var(--accent-primary);
    border-color: rgba(0, 212, 255, 0.25);
}

.partner-badge.recommended {
    background: rgba(34, 197, 94, 0.12);
    color: var(--success);
    border-color: rgba(34, 197, 94, 0.25);
}

.partner-disclaimer {
    text-align: center;
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 32px;
    opacity: 0.7;
}

/* ============================================
   Testimonials
   ============================================ */
.testimonials {
    padding: var(--section-padding) 0;
    background: var(--bg-secondary);
}

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

.testimonial-card {
    background: var(--glass-bg);
    border-radius: 20px;
    padding: 36px;
    border: 1px solid var(--glass-border);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: -10px;
    left: 24px;
    font-size: 120px;
    font-weight: 800;
    color: rgba(0, 212, 255, 0.06);
    line-height: 1;
    pointer-events: none;
    font-family: Georgia, serif;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 212, 255, 0.2);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 212, 255, 0.06);
}

.testimonial-stars {
    color: #f59e0b;
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-gradient);
    border-radius: 50%;
    font-weight: 700;
    font-size: 16px;
    color: var(--bg-primary);
}

.author-avatar-img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent-primary);
}

.author-info strong {
    display: block;
    font-size: 15px;
    margin-bottom: 2px;
}

.author-info span {
    font-size: 13px;
    color: var(--text-muted);
}

/* ============================================
   FAQ Section
   ============================================ */
.faq {
    padding: var(--section-padding) 0;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
}

/* Last row: answers expand upward so they don't get cut off */
.faq-item:nth-last-child(-n+2) {
    display: flex;
    flex-direction: column-reverse;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 0;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 17px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: color var(--transition-fast);
}

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

.faq-question svg {
    width: 20px;
    height: 20px;
    color: var(--text-muted);
    flex-shrink: 0;
    transition: transform var(--transition-normal);
}

.faq-item.open .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.faq-item.open .faq-answer {
    max-height: 200px;
}

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

/* ============================================
   Affiliates Section
   ============================================ */
.affiliates {
    padding: 60px 0;
}


.affiliate-card {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.06), rgba(8, 145, 178, 0.06));
    border: 1px solid rgba(0, 212, 255, 0.15);
    border-radius: 20px;
    padding: 48px 56px;
}

.affiliate-content {
    display: flex;
    align-items: center;
    gap: 32px;
}

.affiliate-icon {
    flex-shrink: 0;
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 16px;
    color: var(--accent-primary);
}

.affiliate-text {
    flex: 1;
}

.affiliate-text h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
}

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

/* ============================================
   CTA Section — Two-Column Download Layout
   ============================================ */
.cta-section {
    padding: 0;
    background: transparent;
    position: relative;
    overflow: hidden;
    width: 100%;
}

/* Two-column grid */
.cta-layout {
    display: grid;
    grid-template-columns: 1.3fr 0.9fr;
    gap: clamp(40px, 5vw, 72px);
    align-items: center;
    width: 100%;
}

/* LEFT: Download CTA */
.cta-left {
    position: relative;
    z-index: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Ambient glow behind headline */
.cta-glow {
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: 500px;
    height: 300px;
    background: radial-gradient(ellipse, rgba(0, 212, 255, 0.14) 0%, rgba(8, 145, 178, 0.06) 40%, transparent 70%);
    filter: blur(70px);
    pointer-events: none;
    z-index: -1;
    animation: ctaGlowPulse 6s ease-in-out infinite;
}

@keyframes ctaGlowPulse {

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

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

/* Legacy h2 fallback */
.cta-left h2 {
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 800;
    margin-bottom: 24px;
    color: var(--text-primary);
    letter-spacing: -2.5px;
    line-height: 1.05;
}

/* CTA Branded Logo */
.cta-brand-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-bottom: 28px;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.cta-brand-logo:hover {
    transform: scale(1.03);
}

.cta-get-label {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 8px rgba(0, 212, 255, 0.3));
}

.cta-logo-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cta-logo-icon {
    height: 80px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.4));
    transition: filter 0.3s ease, transform 0.3s ease;
}

.cta-brand-logo:hover .cta-logo-icon {
    filter: drop-shadow(0 0 30px rgba(0, 212, 255, 0.7));
    transform: scale(1.08);
}

.cta-logo-text {
    height: 56px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 12px rgba(0, 212, 255, 0.15));
    transition: filter 0.3s ease;
}

.cta-brand-logo:hover .cta-logo-text {
    filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.35));
}

.cta-left p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 36px;
    line-height: 1.7;
    max-width: 460px;
}

.cta-buttons {
    margin-bottom: 28px;
}

.cta-buttons .btn-lg {
    padding: 18px 48px;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 0.3px;
}

/* Meta pills — glassmorphic chips */
.cta-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 28px;
}

.cta-meta-pill {
    display: inline-flex;
    align-items: center;
    padding: 7px 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 0.3px;
    backdrop-filter: blur(4px);
    transition: all 0.3s ease;
}

.cta-meta-pill:hover {
    border-color: rgba(0, 212, 255, 0.2);
    color: var(--text-secondary);
    background: rgba(0, 212, 255, 0.04);
}

/* Trust badges */
.cta-trust {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.cta-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 500;
    transition: color 0.3s ease;
}

.cta-trust-item:hover {
    color: var(--accent-primary);
}

.cta-trust-item svg {
    width: 18px;
    height: 18px;
    color: var(--accent-primary);
    filter: drop-shadow(0 0 6px rgba(0, 212, 255, 0.35));
    flex-shrink: 0;
}

/* RIGHT: Quick Start Guide */
.cta-right {
    display: flex;
    align-items: center;
}

.cta-quickstart {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 28px 32px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    position: relative;
    backdrop-filter: blur(12px);
    overflow: hidden;
    transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.cta-quickstart:hover {
    border-color: rgba(0, 212, 255, 0.2);
    box-shadow:
        0 16px 48px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(0, 212, 255, 0.06);
}

/* Animated shimmer border */
.cta-quickstart::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg,
            transparent 20%,
            rgba(0, 212, 255, 0.35) 40%,
            rgba(8, 145, 178, 0.3) 60%,
            transparent 80%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
    background-size: 300% 300%;
    animation: ctaShimmerBorder 4s linear infinite;
    pointer-events: none;
}

.cta-quickstart:hover::before {
    opacity: 1;
}

@keyframes ctaShimmerBorder {
    0% {
        background-position: 0% 0%;
    }

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

/* Ambient glow inside quickstart */
.cta-quickstart::after {
    content: '';
    position: absolute;
    top: -60%;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(ellipse, rgba(0, 212, 255, 0.06), transparent 70%);
    filter: blur(40px);
    pointer-events: none;
    z-index: 0;
}

.cta-quickstart-title {
    margin-bottom: 18px;
}

.cta-qs-badge {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 50px;
    font-size: 10px;
    font-weight: 600;
    color: var(--accent-primary);
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.cta-quickstart-title h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    letter-spacing: -0.3px;
}

/* Steps */
.cta-step {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 12px 14px;
    position: relative;
    z-index: 1;
    border-radius: 12px;
    border: 1px solid transparent;
    transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    cursor: default;
}

.cta-step:hover {
    background: rgba(0, 212, 255, 0.03);
    border-color: rgba(0, 212, 255, 0.1);
    transform: translateX(6px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.cta-step:not(:last-of-type)::after {
    content: '';
    position: absolute;
    left: 29px;
    top: 48px;
    bottom: -4px;
    width: 1px;
    background: linear-gradient(to bottom, rgba(0, 212, 255, 0.3), rgba(0, 212, 255, 0.03));
    transition: background 0.3s ease;
}

.cta-step:hover:not(:last-of-type)::after {
    background: linear-gradient(to bottom, rgba(0, 212, 255, 0.6), rgba(0, 212, 255, 0.1));
}

.cta-step-num {
    width: 32px;
    height: 32px;
    min-width: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 212, 255, 0.1);
    border: 1.5px solid rgba(0, 212, 255, 0.3);
    border-radius: 50%;
    font-size: 13px;
    font-weight: 800;
    color: var(--accent-primary);
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.4);
    box-shadow: 0 0 12px rgba(0, 212, 255, 0.08);
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
}

.cta-step:hover .cta-step-num {
    transform: scale(1.15);
    box-shadow:
        0 0 0 4px rgba(0, 212, 255, 0.12),
        0 0 20px rgba(0, 212, 255, 0.25);
    background: rgba(0, 212, 255, 0.18);
    border-color: rgba(0, 212, 255, 0.5);
}

/* Ripple ring on step number hover */
.cta-step-num::after {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 1.5px solid rgba(0, 212, 255, 0.15);
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    pointer-events: none;
}

.cta-step:hover .cta-step-num::after {
    opacity: 1;
    transform: scale(1);
    animation: ctaStepRipple 2s ease-in-out infinite;
}

@keyframes ctaStepRipple {

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

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

.cta-step-body {
    transition: transform 0.3s ease;
}

.cta-step:hover .cta-step-body {
    transform: translateX(2px);
}

.cta-step-body h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 3px;
    transition: color 0.3s ease;
}

.cta-step:hover .cta-step-body h4 {
    color: var(--accent-primary);
}

.cta-step-body p {
    font-size: 12.5px;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
    transition: color 0.3s ease;
}

.cta-step:hover .cta-step-body p {
    color: var(--text-secondary);
}

/* System requirements footnote */
.cta-sysreq {
    margin-top: 12px;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 10.5px;
    color: var(--text-muted);
    opacity: 0.7;
}

.cta-sysreq span {
    font-weight: 600;
    color: var(--text-secondary);
}

/* Affiliate bar — compact inline */
.cta-affiliate-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: clamp(24px, 3vh, 40px);
    padding: 14px 24px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    transition: all 0.3s ease;
}

.cta-affiliate-bar:hover {
    border-color: rgba(0, 212, 255, 0.12);
    background: rgba(0, 212, 255, 0.02);
}

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

.cta-affiliate-text svg {
    color: var(--accent-primary);
    flex-shrink: 0;
    filter: drop-shadow(0 0 4px rgba(0, 212, 255, 0.3));
}

.cta-affiliate-text strong {
    color: var(--text-primary);
}

/* ============================================
   Footer — Premium 3-Layer Layout (Stripe/Linear)
   ============================================ */
.footer {
    background: var(--bg-primary);
    padding: 20px 0 10px;
    border-top: none;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.12) 30%, rgba(8, 145, 178, 0.12) 70%, transparent);
}

/* Premium background glow */
.footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 0%, rgba(0, 200, 255, 0.06), transparent 60%);
    pointer-events: none;
    z-index: 0;
}

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

/* ── Brand Column (inside nav grid) ── */
.footer-brand-logo {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: transform 0.3s ease, filter 0.3s ease;
    text-decoration: none;
}

.footer-brand-logo:hover {
    transform: scale(1.05);
}

.footer-logo-icon {
    height: 48px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 12px rgba(0, 212, 255, 0.5));
    transition: filter 0.3s ease, transform 0.3s ease;
}

.footer-logo-text {
    height: 30px;
    width: auto;
    object-fit: contain;
    align-self: flex-end;
    margin-bottom: 4px;
    filter: brightness(1.2) drop-shadow(0 0 6px rgba(0, 212, 255, 0.15));
    transition: filter 0.3s ease;
}

.footer-brand-logo:hover .footer-logo-icon {
    filter: drop-shadow(0 0 22px rgba(0, 212, 255, 0.85));
}

.footer-brand-logo:hover .footer-logo-text {
    filter: brightness(1.4) drop-shadow(0 0 10px rgba(0, 212, 255, 0.3));
}

.footer-tagline {
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.3px;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-brand-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.6;
    margin: 0;
}

/* Social Icons — Glass Buttons */
.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 6px;
    justify-content: center;
}

.footer-social a {
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    color: var(--text-muted);
    transition: all 0.25s ease;
    padding: 0;
    margin: 0;
    text-decoration: none;
}

.footer-social a svg {
    width: 14px;
    height: 14px;
    display: block;
}

.footer-social a:hover {
    color: var(--accent-primary);
    border-color: rgba(0, 224, 255, 0.3);
    background: rgba(0, 224, 255, 0.15);
    box-shadow: 0 0 12px rgba(0, 224, 255, 0.3);
    transform: translateY(-2px);
}

/* ── Footer Nav Container ── */
.footer-nav {
    margin-top: 0;
    padding: 0;
}

.footer-links-group {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1fr 1fr 1fr;
    gap: 0;
}

/* Brand column */
.footer-brand-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 4px;
    margin-right: 0;
    padding-right: 30px;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-links:first-child {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.footer-links {
    padding-left: 0;
    border-left: none;
}

.footer-links:not(.footer-brand-col) {
    padding-top: 20px;
    padding-left: 24px;
}

.footer-links h4 {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 14px;
}

.footer-links h4::before {
    display: none;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.footer-links a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
    transition: all 0.25s ease;
    display: block;
    padding: 7px 0;
    text-decoration: none;
    position: relative;
}

.footer-links a:hover {
    color: #00e0ff;
    transform: translateX(3px);
}

/* ── LAYER 1: Affiliate CTA Card ── */
.footer-affiliate-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin: 10px 0 24px;
    padding: 28px 36px;
    background: rgba(10, 15, 25, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 18px;
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    cursor: pointer;
    backdrop-filter: blur(8px);
    box-shadow: 0 0 0 1px rgba(0, 220, 255, 0.08), 0 10px 40px rgba(0, 0, 0, 0.6);
}

.footer-affiliate-cta:hover {
    border-color: rgba(0, 212, 255, 0.2);
    background: rgba(0, 212, 255, 0.03);
    box-shadow: 0 0 0 1px rgba(0, 220, 255, 0.15), 0 12px 48px rgba(0, 0, 0, 0.5), 0 0 32px rgba(0, 212, 255, 0.08);
    transform: translateY(-3px);
}

.footer-affiliate-left {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    flex: 1;
}

.footer-affiliate-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 212, 255, 0.08);
    border: 1px solid rgba(0, 212, 255, 0.15);
    border-radius: 14px;
    color: var(--accent-primary);
    transition: all 0.3s ease;
}

.footer-affiliate-cta:hover .footer-affiliate-icon {
    background: rgba(0, 212, 255, 0.15);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
}

.footer-affiliate-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.footer-affiliate-body strong {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
}

.footer-affiliate-body span {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
}

.footer-affiliate-perks {
    display: flex;
    gap: 20px;
    margin-top: 8px;
    flex-wrap: wrap;
}

.affiliate-perk {
    font-size: 13px !important;
    font-weight: 600;
    color: var(--accent-primary) !important;
    letter-spacing: 0.3px;
}

.footer-affiliate-body b {
    color: var(--accent-primary);
    font-weight: 700;
}

.footer-affiliate-btn {
    flex-shrink: 0;
    padding: 16px 36px;
    background: var(--accent-primary);
    color: var(--bg-primary);
    font-size: 14px;
    font-weight: 700;
    border-radius: 12px;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.footer-affiliate-cta:hover .footer-affiliate-btn {
    background: var(--accent-secondary);
    box-shadow: 0 4px 20px rgba(0, 212, 255, 0.35);
}

/* ── LAYER 3: Footer Bottom Bar ── */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    margin-top: 0;
    padding-top: 6px;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    margin: 0;
}

.footer-bottom .disclaimer {
    margin-top: 10px;
    font-size: 12px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.3);
}

/* ============================================
   Partners Section
   ============================================ */
.partners {
    padding: var(--section-padding) 0;
    background: var(--bg-secondary);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
}

.partner-category h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.partner-category h3 svg {
    color: var(--accent-primary);
}

.partner-cards {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-height: 340px;
    overflow-y: auto;
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.partner-cards::-webkit-scrollbar {
    display: none;
}

.partner-cards a.partner-card {
    scroll-snap-align: start;
    flex-shrink: 0;
}


/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 1100px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        max-width: 700px;
        margin: 0 auto;
    }

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

    .trust-badges {
        justify-content: center;
    }

    .hero-visual {
        display: flex;
        justify-content: center;
        width: 100%;
    }

    .mockup-window {
        max-width: 460px;
        transform: none;
        animation: none;
    }

    .hero-orb {
        display: none;
    }

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

    .feature-card.featured {
        grid-row: auto;
    }

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

    .footer-links-group {
        grid-template-columns: repeat(3, 1fr);
        gap: 28px;
    }

    .footer-links:first-child {
        grid-column: 1 / -1;
        margin-bottom: 8px;
    }

    .footer-affiliate-cta {
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 80px;
    }


    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: rgba(5, 5, 7, 0.98);
        backdrop-filter: blur(20px);
        padding: 24px;
        gap: 20px;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu-btn {
        display: flex;
    }

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

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

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

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

    .stat-number {
        font-size: 36px;
    }

    .features-grid,
    .steps-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .steps-line {
        display: none;
    }

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

    .pricing-card.popular {
        order: -1;
        transform: none;
    }

    .pricing-card.popular:hover {
        transform: translateY(-6px);
    }

    .cta-content {
        padding: 0 10px;
    }

    .footer-links-group {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .footer-links:first-child {
        grid-column: 1 / -1;
        align-items: center;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-affiliate-cta {
        flex-direction: column;
        text-align: center;
        gap: 16px;
        padding: 24px 20px;
    }

    .footer-affiliate-body {
        align-items: center;
    }

    .footer-affiliate-btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 120px 0 60px;
    }


    .hero-cta {
        flex-direction: column;
    }

    .hero-cta .btn {
        width: 100%;
    }

    .trust-badges {
        flex-direction: column;
        gap: 12px;
    }

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

    .duration-selector {
        flex-wrap: wrap;
        gap: 8px;
    }

    .duration-btn {
        min-width: 100px;
        padding: 10px 16px;
    }

    .cta-meta {
        flex-direction: column;
        gap: 6px;
    }

    .cta-meta span:nth-child(even) {
        display: none;
    }

    .footer-links-group {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .footer-links:first-child {
        grid-column: 1 / -1;
    }

    .footer-social {
        justify-content: center;
    }

    .partners-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .partner-card {
        flex-wrap: wrap;
    }

    .partner-logo {
        min-width: 100%;
        margin-bottom: -8px;
    }

    .affiliate-content {
        flex-direction: column;
        text-align: center;
    }

    .affiliate-card {
        padding: 36px 24px;
    }
}

/* ============================================
   Large Screen Optimizations
   ============================================ */
@media (min-width: 1440px) {
    :root {
        --container-max: 1400px;
    }

    .hero-content {
        max-width: 700px;
    }

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

    .pricing-grid {
        gap: 32px;
    }

    .testimonials-grid {
        gap: 32px;
    }
}

@media (min-width: 1680px) {
    :root {
        --container-max: var(--container-wide);
    }
}

@media (min-width: 1920px) {
    :root {
        --container-max: var(--container-wide);
        --section-padding: clamp(100px, 8vw, 160px);
    }

    .section-title {
        font-size: clamp(42px, 3.5vw, 56px);
    }

    .hero h1 {
        font-size: clamp(56px, 4vw, 72px);
    }

    .hero-subtitle {
        font-size: 22px;
    }

    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .testimonials-grid {
        gap: 40px;
    }

    .stat-number {
        font-size: 56px;
    }
}

@media (min-width: 2560px) {
    :root {
        --container-max: var(--container-wide);
        --section-padding: clamp(120px, 8vw, 180px);
    }

    .section-title {
        font-size: clamp(52px, 3.5vw, 68px);
    }

    .hero h1 {
        font-size: clamp(64px, 4vw, 80px);
    }

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

    .pricing-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .pricing-card {
        padding: 48px;
    }

    .testimonial-card {
        padding: 48px;
    }

    .stat-number {
        font-size: 64px;
    }
}

/* ============================================
   Navbar Responsive for Medium Screens
   ============================================ */
@media (max-width: 1400px) {
    .nav-links {
        gap: 6px;
    }

    .nav-links li a {
        font-size: 13px;
        padding: 8px 12px;
    }
}

@media (max-width: 1200px) {
    .nav-links {
        gap: 4px;
    }

    .nav-links li a {
        font-size: 12px;
        padding: 6px 10px;
    }
}

@media (max-width: 1024px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }
}

/* ============================================
   MDX-INSPIRED DESIGN UPGRADES
   ============================================ */

/* ---- 1. HERO CINEMATIC ENTRANCE ---- */
@keyframes heroFadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
        filter: blur(10px);
    }

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

@keyframes heroScaleIn {
    from {
        opacity: 0;
        transform: scale(0.9) rotateY(-5deg) rotateX(2deg);
    }

    to {
        opacity: 1;
        transform: scale(1) rotateY(-5deg) rotateX(2deg);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-60px);
        filter: blur(6px);
    }

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

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(60px);
        filter: blur(6px);
    }

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

@keyframes revealUp {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.95);
    }

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

@keyframes blurIn {
    from {
        opacity: 0;
        filter: blur(20px);
    }

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

/* Hero element entrance choreography */
.hero-badge {
    opacity: 0;
    animation: heroFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}

.hero-title {
    opacity: 0;
    animation: heroFadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
}

.hero-subtitle {
    opacity: 0;
    animation: heroFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.65s forwards;
}

.hero-cta {
    opacity: 0;
    animation: heroFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.85s forwards;
}

.trust-badges {
    opacity: 0;
    animation: heroFadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) 1.05s forwards;
}

.hero-visual {
    opacity: 0;
    animation: heroScaleIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
}

/* ---- 2. FLOATING GRADIENT ORBS ---- */
.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
    pointer-events: none;
    will-change: transform;
}

.hero-orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.18), transparent 70%);
    top: -10%;
    left: -5%;
    animation: orbFloat1 25s ease-in-out infinite;
}

.hero-orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(8, 145, 178, 0.15), transparent 70%);
    top: 30%;
    right: -10%;
    animation: orbFloat2 30s ease-in-out infinite;
}

.hero-orb-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1), transparent 70%);
    bottom: -5%;
    left: 40%;
    animation: orbFloat3 20s ease-in-out infinite;
}

@keyframes orbFloat1 {

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

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

    50% {
        transform: translate(20px, 80px) scale(0.95);
    }

    75% {
        transform: translate(-40px, 30px) scale(1.05);
    }
}

@keyframes orbFloat2 {

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

    25% {
        transform: translate(-50px, 60px) scale(1.05);
    }

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

    75% {
        transform: translate(-20px, -40px) scale(0.95);
    }
}

@keyframes orbFloat3 {

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

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

    66% {
        transform: translate(-50px, -20px) scale(0.9);
    }
}

/* CTA section orbs */
.cta-section {
    position: relative;
    overflow: hidden;
}

.cta-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    z-index: 0;
    pointer-events: none;
}

.cta-orb-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.12), transparent 70%);
    top: -20%;
    left: 10%;
    animation: orbFloat1 20s ease-in-out infinite;
}

.cta-orb-2 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(8, 145, 178, 0.1), transparent 70%);
    bottom: -15%;
    right: 10%;
    animation: orbFloat2 25s ease-in-out infinite;
}

/* ---- 3. ENHANCED CARD INTERACTIONS ---- */
.feature-card {
    perspective: 800px;
    transform-style: preserve-3d;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
        box-shadow 0.4s ease,
        border-color 0.4s ease !important;
}

.feature-card:hover {
    transform: translateY(-8px) rotateX(2deg) rotateY(-2deg) !important;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(0, 212, 255, 0.08) !important;
    border-color: rgba(0, 212, 255, 0.2) !important;
}

/* Shimmer border effect */
.feature-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg,
            transparent 20%,
            rgba(0, 212, 255, 0.3) 40%,
            rgba(8, 145, 178, 0.3) 60%,
            transparent 80%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
    background-size: 300% 300%;
    animation: shimmerBorder 3s linear infinite;
    pointer-events: none;
}

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

@keyframes shimmerBorder {
    0% {
        background-position: 0% 0%;
    }

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

/* Featured card glow enhancement */
.feature-card.featured:hover {
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 0 60px rgba(0, 212, 255, 0.15) !important;
}

/* Pricing card hover */
.pricing-card {
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
        box-shadow 0.4s ease !important;
}

.pricing-card:hover {
    transform: translateY(-10px) !important;
    box-shadow:
        0 24px 60px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(0, 212, 255, 0.06) !important;
}

/* Testimonial card stagger */
.testimonial-card {
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
        box-shadow 0.4s ease !important;
}

.testimonial-card:hover {
    transform: translateY(-6px) !important;
    box-shadow:
        0 16px 48px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(0, 212, 255, 0.05) !important;
}

/* ---- 4. SCROLL ANIMATION CLASSES ---- */
.reveal-left {
    opacity: 0;
    transform: translateX(-60px);
    filter: blur(6px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right {
    opacity: 0;
    transform: translateX(60px);
    filter: blur(6px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-up {
    opacity: 0;
    transform: translateY(50px) scale(0.95);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-blur {
    opacity: 0;
    filter: blur(20px);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.revealed {
    opacity: 1 !important;
    transform: translateX(0) translateY(0) scale(1) !important;
    filter: blur(0) !important;
}

/* ---- 5. TYPOGRAPHY POWER-UP ---- */
.hero-title {
    font-size: clamp(48px, 6vw, 72px) !important;
    font-weight: 800;
    line-height: 1.05 !important;
    letter-spacing: -2px !important;
}

.gradient-text {
    text-shadow: 0 0 40px rgba(0, 212, 255, 0.3);
}

.section-title {
    text-shadow: 0 0 60px rgba(0, 212, 255, 0.08);
}

/* Animated underline on section titles */
.section-title::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: var(--accent-gradient);
    border-radius: 2px;
    margin: 6px auto 0;
    transition: width 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.section-header.in-view .section-title::after {
    width: 60px;
}

/* ---- 6. NAVBAR GLASS UPGRADE ---- */
.navbar.scrolled {
    background: rgba(5, 5, 7, 0.85) !important;
    backdrop-filter: blur(30px) !important;
    -webkit-backdrop-filter: blur(30px) !important;
    border-bottom-color: transparent !important;
    box-shadow:
        0 1px 0 rgba(0, 212, 255, 0.08),
        0 4px 30px rgba(0, 0, 0, 0.3) !important;
}

/* Nav link holographic edge is handled by .nav-links li a::before above */

/* ---- 7. SECTION DIVIDERS ---- */
.section-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.15) 30%, rgba(8, 145, 178, 0.15) 70%, transparent);
    border: none;
    margin: 0;
}

/* Sections with subtle gradient mesh */
.features,
.pricing,
.testimonials,
.faq {
    position: relative;
}

.features::before,
.pricing::before,
.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.12) 30%, rgba(8, 145, 178, 0.12) 70%, transparent);
}

/* Stats section glow */
.stats-section {
    position: relative;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 200px;
    background: radial-gradient(ellipse, rgba(0, 212, 255, 0.06), transparent 70%);
    filter: blur(60px);
    z-index: -1;
    pointer-events: none;
}

/* ---- SCROLL-TO-TOP BUTTON GLOW ---- */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.2);
    color: var(--accent-primary);
    cursor: pointer;
    z-index: 100;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-top-btn.visible {
    opacity: 1;
    transform: translateY(0);
}

.scroll-top-btn:hover {
    background: rgba(0, 212, 255, 0.2);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
    transform: translateY(-3px);
}

/* ============================================
   PREMIUM CARD ANIMATION EFFECTS (v5.0)
   ============================================ */

/* ---- PRICING CARD SHIMMER BORDER ---- */
.pricing-card {
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg,
            transparent 20%,
            rgba(0, 212, 255, 0.3) 40%,
            rgba(8, 145, 178, 0.3) 60%,
            transparent 80%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s ease;
    background-size: 300% 300%;
    animation: shimmerBorder 3s linear infinite;
    pointer-events: none;
}

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

/* Popular pricing card: always-on glow pulse */
.pricing-card.popular::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.06), rgba(8, 145, 178, 0.04));
    z-index: -1;
    animation: glowPulse 3s ease-in-out infinite;
    pointer-events: none;
}

/* Ultimate pricing card: gold shimmer */
.pricing-card.ultimate::before {
    background: linear-gradient(135deg,
            transparent 20%,
            rgba(245, 158, 11, 0.4) 40%,
            rgba(217, 119, 6, 0.3) 60%,
            transparent 80%) !important;
}

.pricing-card.ultimate:hover {
    box-shadow:
        0 24px 60px rgba(0, 0, 0, 0.4),
        0 0 50px rgba(245, 158, 11, 0.12) !important;
}

/* ---- TESTIMONIAL CARD GLASSMORPHIC GLOW ---- */
.testimonial-card {
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(0, 212, 255, 0.06),
            transparent);
    transition: left 0.7s ease;
    pointer-events: none;
    z-index: 0;
}

.testimonial-card:hover::before {
    left: 120%;
}

.testimonial-card::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg,
            transparent 30%,
            rgba(0, 212, 255, 0.25) 50%,
            transparent 70%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.testimonial-card:hover::after {
    opacity: 1;
}

.testimonial-card:hover {
    border-color: rgba(0, 212, 255, 0.15) !important;
    background: rgba(255, 255, 255, 0.04) !important;
    backdrop-filter: blur(4px);
}

/* ---- STEP CARD GLOW RING ---- */
.step-card {
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.step-card:hover {
    transform: translateY(-8px);
}

.step-number {
    position: relative;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
        box-shadow 0.4s ease;
}

.step-card:hover .step-number {
    transform: scale(1.1);
    box-shadow:
        0 0 40px var(--glow-primary),
        0 0 80px rgba(0, 212, 255, 0.15),
        inset 0 0 20px rgba(255, 255, 255, 0.1);
}

/* Ripple ring around step number */
.step-number::after {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 2px solid rgba(0, 212, 255, 0.2);
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    pointer-events: none;
}

.step-card:hover .step-number::after {
    opacity: 1;
    transform: scale(1);
    animation: stepRipple 2s ease-in-out infinite;
}

@keyframes stepRipple {

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

    50% {
        transform: scale(1.15);
        opacity: 0;
    }
}

/* Step content fade-in */
.step-content {
    transition: transform 0.4s ease;
}

.step-card:hover .step-content {
    transform: translateY(-4px);
}

/* ---- STAT CARD GRADIENT BORDER REVEAL ---- */
.stat-card {
    position: relative;
    padding: 28px 16px;
    border-radius: 16px;
    border: 1px solid transparent;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 1px;
    background: var(--accent-gradient);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

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

.stat-card:hover {
    transform: translateY(-6px) scale(1.03);
    background: rgba(0, 212, 255, 0.03);
}

/* Stat number glow on hover */
.stat-card:hover .stat-number {
    filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.4));
    transition: filter 0.4s ease;
}

/* ---- PARTNER CARD ENHANCED HOVER ---- */
a.partner-card {
    position: relative;
    overflow: hidden;
}

a.partner-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(0, 212, 255, 0.08),
            transparent);
    transition: left 0.6s ease;
    pointer-events: none;
}

a.partner-card:hover::before {
    left: 150%;
}

a.partner-card:hover {
    transform: translateY(-3px) scale(1.02) !important;
    box-shadow:
        0 8px 30px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(0, 212, 255, 0.06) !important;
}

a.partner-card:hover .partner-badge {
    background: rgba(0, 212, 255, 0.15);
    color: var(--accent-primary);
    border-color: rgba(0, 212, 255, 0.3);
    transition: all 0.3s ease;
}

/* ---- FAQ ITEM ACCENT SLIDE ---- */
.faq-item {
    position: relative;
    transition: all 0.3s ease;
}

.faq-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 0;
    background: var(--accent-gradient);
    border-radius: 3px;
    transition: height 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.faq-item:hover::before,
.faq-item.open::before {
    height: 100%;
}

.faq-item:hover {
    padding-left: 16px;
}

.faq-item.open {
    padding-left: 16px;
    background: rgba(0, 212, 255, 0.02);
    border-radius: 8px;
}

/* ---- KEYFRAMES ---- */
@keyframes glowPulse {

    0%,
    100% {
        opacity: 0.4;
        filter: blur(8px);
    }

    50% {
        opacity: 0.7;
        filter: blur(12px);
    }
}

/* ---- 3D TILT EFFECT SUPPORT ---- */
.feature-card.tilt-active,
.pricing-card.tilt-active {
    will-change: transform;
    transition: box-shadow 0.3s ease, border-color 0.3s ease !important;
}

/* ---- INTERACTIVE ICON SPIN ---- */
.feature-icon {
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1),
        background 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: rotateY(180deg);
    background: rgba(0, 212, 255, 0.18);
}

/* ---- DURATION BUTTON GLOW ---- */
.duration-btn {
    position: relative;
    overflow: hidden;
}

.duration-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.15), transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
    pointer-events: none;
}

.duration-btn:hover::before {
    width: 200%;
    height: 200%;
}

/* ---- REDUCED MOTION ---- */
@media (prefers-reduced-motion: reduce) {

    .feature-card,
    .pricing-card,
    .testimonial-card,
    .step-card,
    .stat-card,
    a.partner-card,
    .faq-item,
    .step-number,
    .feature-icon,
    .duration-btn {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
    }

    .step-card:hover .step-number::after,
    .pricing-card.popular::after {
        animation: none !important;
    }
}

/* ============================================
   Video Demo Modal
   ============================================ */
.video-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.video-modal.active {
    display: flex;
}

.video-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    animation: modalFadeIn 0.3s ease;
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 960px;
    z-index: 1;
    animation: modalScaleIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.video-modal-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    /* 16:9 aspect ratio */
    border-radius: 16px;
    overflow: hidden;
    box-shadow:
        0 24px 80px rgba(0, 0, 0, 0.6),
        0 0 40px rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.video-modal-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-modal-close {
    position: absolute;
    top: -48px;
    right: 0;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    z-index: 2;
}

.video-modal-close:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(0, 212, 255, 0.4);
    box-shadow: 0 0 16px rgba(0, 212, 255, 0.2);
    transform: scale(1.1);
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes modalScaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ============================================
   Fix: Hide redundant section badge pills
   (FAQ, FEATURES, HOW IT WORKS, PRICING etc.)
   ============================================ */
.section-badge {
    display: none;
}

/* ============================================
   Fix: Scroll offset for fixed 72px navbar
   Prevents sections being hidden under nav
   when clicking anchor links
   ============================================ */
section[id] {
    scroll-margin-top: 80px;
}

/* ============================================
   Section Scroll Reveal Animations
   All sections except .hero start hidden and
   animate in when they enter the viewport.
   ============================================ */

/* Base hidden state */
section:not(.hero) {
    opacity: 0;
    transition:
        opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
}

/* Direction variants — assigned by JS */
section:not(.hero).reveal-from-bottom {
    transform: translateY(60px);
}

section:not(.hero).reveal-from-left {
    transform: translateX(-70px);
}

section:not(.hero).reveal-from-right {
    transform: translateX(70px);
}

/* Triggered state — section fully visible */
section:not(.hero).section-visible {
    opacity: 1 !important;
    transform: none !important;
}

/* ============================================
   PREMIUM ANIMATION SYSTEM v2.0
   GPU-accelerated, purposeful motion
   ============================================ */

/* ── Hero Parallax Grid ───────────────────── */
.hero-grid {
    position: absolute;
    inset: -20%;
    background-image:
        linear-gradient(rgba(0, 212, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 212, 255, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    transform-origin: center center;
    transition: transform 0.12s linear;
    z-index: 0;
    pointer-events: none;
    will-change: transform;
}

/* ── Floating Hero Particles ─────────────── */
.hero-particle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
    will-change: transform, opacity;
}

@keyframes particle-float {
    0% {
        transform: translateY(0) translateX(0) scale(1);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 0.6;
    }

    100% {
        transform: translateY(-100vh) translateX(var(--drift, 30px)) scale(0.4);
        opacity: 0;
    }
}

/* ── Hero Content Stagger ────────────────── */
.hero-content .hero-badge,
.hero-content .hero-title,
.hero-content .hero-subtitle,
.hero-content .hero-cta,
.hero-content .trust-badges {
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-content.hero-animated .hero-badge {
    opacity: 1;
    transform: none;
    transition-delay: 0.05s;
}

.hero-content.hero-animated .hero-title {
    opacity: 1;
    transform: none;
    transition-delay: 0.15s;
}

.hero-content.hero-animated .hero-subtitle {
    opacity: 1;
    transform: none;
    transition-delay: 0.28s;
}

.hero-content.hero-animated .hero-cta {
    opacity: 1;
    transform: none;
    transition-delay: 0.40s;
}

.hero-content.hero-animated .trust-badges {
    opacity: 1;
    transform: none;
    transition-delay: 0.52s;
}

/* Hero mockup stagger */
.hero-visual {
    opacity: 0;
    transform: translateX(30px);
    transition:
        opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.35s,
        transform 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.35s;
}

.hero-visual.hero-visual-animated {
    opacity: 1;
    transform: none;
}

/* ── Magnetic Button ─────────────────────── */
.btn-primary {
    transition:
        transform 0.25s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.25s cubic-bezier(0.22, 1, 0.36, 1),
        background 0.25s ease;
    will-change: transform;
}

/* Click ripple */
.btn-ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    transform: scale(0);
    pointer-events: none;
    animation: btn-ripple-anim 0.55s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes btn-ripple-anim {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* ── Feature Card Shine Sweep ────────────── */
.feature-card {
    --shine-x: 50%;
    --shine-y: 50%;
    overflow: hidden;
}

.feature-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle 200px at var(--shine-x) var(--shine-y),
            rgba(255, 255, 255, 0.07) 0%,
            transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    border-radius: inherit;
    z-index: 2;
}

.feature-card:hover::after {
    opacity: 1;
}

/* ── Feature Icon Glow Pulse ─────────────── */
.feature-icon {
    transition:
        transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.4s ease;
}

.feature-card:hover .feature-icon {
    transform: rotate(-8deg) scale(1.15);
    animation: icon-glow-pulse 2s ease-in-out infinite;
}

/* Unique gradient per icon position */
.feature-card:nth-child(1) .feature-icon {
    box-shadow: 0 0 0 0 rgba(0, 212, 255, 0.5);
}

.feature-card:nth-child(2) .feature-icon {
    box-shadow: 0 0 0 0 rgba(8, 145, 178, 0.5);
}

.feature-card:nth-child(3) .feature-icon {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5);
}

.feature-card:nth-child(4) .feature-icon {
    box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.5);
}

.feature-card:nth-child(5) .feature-icon {
    box-shadow: 0 0 0 0 rgba(0, 212, 255, 0.5);
}

.feature-card:nth-child(6) .feature-icon {
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.5);
}

.feature-card:nth-child(1) .feature-icon svg {
    stroke: #00d4ff;
}

.feature-card:nth-child(2) .feature-icon svg {
    stroke: #a855f7;
}

.feature-card:nth-child(3) .feature-icon svg {
    stroke: #22c55e;
}

.feature-card:nth-child(4) .feature-icon svg {
    stroke: #f59e0b;
}

.feature-card:nth-child(5) .feature-icon svg {
    stroke: #00d4ff;
}

.feature-card:nth-child(6) .feature-icon svg {
    stroke: #f87171;
}

.feature-card:nth-child(7) .feature-icon svg {
    stroke: #818cf8;
}

.feature-card:nth-child(8) .feature-icon svg {
    stroke: #34d399;
}

.feature-card:nth-child(9) .feature-icon svg {
    stroke: #fb923c;
}

.feature-card:nth-child(10) .feature-icon svg {
    stroke: #22d3ee;
}

.feature-card:nth-child(11) .feature-icon svg {
    stroke: #4ade80;
}

/* Gradient icon backgrounds */
.feature-card:nth-child(1) .feature-icon {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.15), rgba(0, 212, 255, 0.03));
}

.feature-card:nth-child(2) .feature-icon {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.15), rgba(168, 85, 247, 0.03));
}

.feature-card:nth-child(3) .feature-icon {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.15), rgba(34, 197, 94, 0.03));
}

.feature-card:nth-child(4) .feature-icon {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.15), rgba(245, 158, 11, 0.03));
}

.feature-card:nth-child(5) .feature-icon {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.15), rgba(0, 212, 255, 0.03));
}

.feature-card:nth-child(6) .feature-icon {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.15), rgba(239, 68, 68, 0.03));
}

.feature-card:nth-child(7) .feature-icon {
    background: linear-gradient(135deg, rgba(129, 140, 248, 0.15), rgba(129, 140, 248, 0.03));
}

.feature-card:nth-child(8) .feature-icon {
    background: linear-gradient(135deg, rgba(52, 211, 153, 0.15), rgba(52, 211, 153, 0.03));
}

.feature-card:nth-child(9) .feature-icon {
    background: linear-gradient(135deg, rgba(251, 146, 60, 0.15), rgba(251, 146, 60, 0.03));
}

.feature-card:nth-child(10) .feature-icon {
    background: linear-gradient(135deg, rgba(167, 139, 250, 0.15), rgba(167, 139, 250, 0.03));
}

.feature-card:nth-child(11) .feature-icon {
    background: linear-gradient(135deg, rgba(74, 222, 128, 0.15), rgba(74, 222, 128, 0.03));
}

@keyframes icon-glow-pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(0, 212, 255, 0);
    }

    50% {
        box-shadow: 0 0 20px 6px rgba(0, 212, 255, 0.25);
    }
}

/* ── Pricing Card Border Sweep ───────────── */
.pricing-card {
    position: relative;
    isolation: isolate;
}

.pricing-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    background: conic-gradient(from var(--border-angle, 0deg),
            transparent 15%,
            rgba(0, 212, 255, 0.6) 30%,
            rgba(8, 145, 178, 0.6) 50%,
            rgba(0, 212, 255, 0.5) 65%,
            transparent 80%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, mask-composite: exclude;
    padding: 1px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
    pointer-events: none;
}

.pricing-card:hover::before {
    opacity: 1;
    animation: border-rotate 3s linear infinite;
}

@property --border-angle {
    syntax: '<angle>';
    inherits: false;
    initial-value: 0deg;
}

@keyframes border-rotate {
    to {
        --border-angle: 360deg;
    }
}

/* ── Pricing Rising Particles ────────────── */
.pricing-particle {
    position: absolute;
    bottom: 0;
    border-radius: 50%;
    pointer-events: none;
    z-index: 5;
    will-change: transform, opacity;
    animation: pricing-rise var(--duration, 1.2s) cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes pricing-rise {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 0.9;
    }

    100% {
        transform: translateY(-120px) translateX(var(--drift, 10px));
        opacity: 0;
    }
}

/* ── Holographic border on popular pricing card ── */
.pricing-card.popular {
    position: relative;
}

.pricing-card.popular::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    background: linear-gradient(135deg,
            rgba(0, 212, 255, 0.15) 0%,
            rgba(8, 145, 178, 0.15) 50%,
            rgba(0, 212, 255, 0.15) 100%);
    background-size: 200% 200%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    padding: 2px;
    z-index: -1;
    animation: holo-border-shift 4s linear infinite;
    pointer-events: none;
}

@keyframes holo-border-shift {
    0% {
        background-position: 0% 0%;
    }

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

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

/* ── Popular badge pulse ─────────────────── */
.popular-badge {
    animation: popular-pulse-glow 2.5s ease-in-out infinite;
}

@keyframes popular-pulse-glow {

    0%,
    100% {
        box-shadow: 0 0 8px rgba(0, 212, 255, 0.3);
    }

    50% {
        box-shadow: 0 0 20px rgba(0, 212, 255, 0.7), 0 0 40px rgba(0, 212, 255, 0.2);
    }
}

/* ── Pricing 3D Card Lift ────────────────── */
.pricing-card {
    transition:
        transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}

.pricing-card:hover {
    transform: perspective(800px) translateY(-12px) translateZ(20px) !important;
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.6),
        0 0 40px rgba(0, 212, 255, 0.12);
}

.pricing-card.popular:hover {
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.6),
        0 0 60px rgba(0, 212, 255, 0.25);
}

/* ── Price Counter Transition ────────────── */
.price-amount {
    display: inline-block;
    transition:
        opacity 0.2s ease,
        transform 0.2s ease;
    will-change: opacity, transform;
}

/* ── Feature Card Stronger 3D ────────────── */
.feature-card:hover {
    transform: perspective(800px) rotateX(-2deg) rotateY(2deg) translateY(-10px) !important;
    box-shadow:
        0 24px 48px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(0, 212, 255, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

/* Step cards hover */
.step-card {
    transition:
        transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.4s ease;
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(0, 212, 255, 0.06);
}

/* Step number glow on hover */
.step-card:hover .step-number {
    box-shadow:
        0 0 0 4px rgba(0, 212, 255, 0.15),
        0 0 20px rgba(0, 212, 255, 0.3);
    transform: scale(1.08);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
}

/* ── Scroll-to-top enhanced ──────────────── */
.scroll-top-btn {
    transition:
        transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.3s ease,
        opacity 0.3s ease,
        visibility 0.3s ease;
}

.scroll-top-btn:hover {
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 8px 24px rgba(0, 212, 255, 0.4);
}

/* ── Testimonial card hover ──────────────── */
.testimonial-card {
    transition:
        transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.4s ease,
        border-color 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.06);
    border-color: rgba(0, 212, 255, 0.2);
}

/* ── Partner card enhanced hover ─────────── */
.partner-card {
    transition:
        transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.35s ease,
        border-color 0.25s ease;
}

.partner-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.5), 0 0 16px rgba(0, 212, 255, 0.06);
    border-color: rgba(0, 212, 255, 0.18);
}

/* ── FAQ enhanced ────────────────────────── */
.faq-item {
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.faq-item:hover {
    border-color: rgba(0, 212, 255, 0.15);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

/* ── Core Features Grid (3-column equal) ── */
.features-grid-core {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.features-grid-core .feature-card {
    min-height: 220px;
}

.features-grid-core .feature-visual {
    margin-top: 16px;
}

/* ── Advanced Features Section ── */
.advanced-features {
    position: relative;
    background: linear-gradient(180deg, #050507 0%, #0a0a16 50%, #050507 100%);
}

.advanced-features::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(8, 145, 178, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.section-badge-advanced {
    background: rgba(8, 145, 178, 0.12);
    color: #22d3ee;
    border-color: rgba(8, 145, 178, 0.3);
}

.gradient-text-purple {
    background: linear-gradient(135deg, #22d3ee 0%, #0891b2 50%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.features-grid-advanced {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.features-grid-advanced .feature-card.bento-4 {
    grid-column: 1 / -1;
}

.advanced-features .feature-card {
    border-color: rgba(8, 145, 178, 0.1);
}

.advanced-features .feature-card:hover {
    border-color: rgba(8, 145, 178, 0.3);
    box-shadow: 0 12px 40px rgba(8, 145, 178, 0.12);
}

.advanced-features .feature-icon {
    color: #22d3ee;
    background: rgba(8, 145, 178, 0.1);
    border-color: rgba(8, 145, 178, 0.2);
}

/* ── Trial Banner ── */
.trial-banner {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(0, 212, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.15);
    border-radius: 12px;
    padding: 14px 20px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.trial-banner-icon {
    font-size: 20px;
    flex-shrink: 0;
}

.trial-banner-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.trial-banner-text strong {
    color: var(--text-primary);
    font-size: 14px;
}

.trial-banner-text span {
    color: var(--text-muted);
    font-size: 13px;
}

.btn-sm {
    padding: 8px 18px;
    font-size: 13px;
    border-radius: 8px;
    white-space: nowrap;
}

/* ── Pricing Grid (3-column) ── */
.pricing-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    max-width: 1060px;
    margin: 0 auto;
    gap: 24px;
}

/* ── Premium Animations ── */

/* Parallax grid (injected by JS) */
.hero-parallax-grid {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.03;
    background-image:
        linear-gradient(rgba(0, 212, 255, 0.8) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 212, 255, 0.8) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 0;
    transition: transform 0.1s ease;
}

/* Floating particles */
@keyframes floatUp {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0.7;
    }

    100% {
        transform: translateY(-100px) scale(0.3);
        opacity: 0;
    }
}

.hero-particle {
    position: absolute;
    border-radius: 50%;
    background: rgba(0, 212, 255, 0.6);
    pointer-events: none;
    animation: floatUp linear infinite;
}

/* Shine on feature cards */
.feature-card {
    overflow: hidden;
}

.feature-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.04), transparent);
    pointer-events: none;
    transition: left 0.5s ease;
}

.feature-card:hover .feature-shine {
    left: 160%;
}

/* Pricing particle rise */
@keyframes priceParticleRise {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0.8;
    }

    100% {
        transform: translateY(-60px) scale(0);
        opacity: 0;
    }
}

.price-particle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    animation: priceParticleRise 1.2s ease-out forwards;
}

/* Scroll-reveal base */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

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

/* ============================================
   #2  Reduced Motion — Accessibility
   ============================================ */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .hero-orb,
    .ping-ring,
    .badge-pulse,
    .copy-spinner,
    .logo-track,
    .flow-chevron,
    .hero-glow {
        animation: none !important;
    }

    .mockup-window {
        transform: none !important;
    }
}

/* ============================================
   #12  Focus-Visible — Keyboard Navigation
   ============================================ */
:focus-visible {
    outline: 2px solid var(--accent-primary);
    outline-offset: 3px;
    border-radius: 4px;
}

.btn:focus-visible {
    outline: 2px solid var(--accent-primary);
    outline-offset: 3px;
    box-shadow: 0 0 0 4px rgba(0, 212, 255, 0.2);
}

a:focus-visible {
    outline: 2px solid var(--accent-primary);
    outline-offset: 2px;
}

/* ============================================
   #11  Feature Card Hierarchy
   ============================================ */
.feature-card:first-child {
    border-color: rgba(0, 212, 255, 0.15);
    box-shadow:
        var(--shadow-md),
        0 0 40px rgba(0, 212, 255, 0.06);
}

.feature-card:first-child .feature-icon {
    transform: scale(1.1);
}

/* ============================================
   #7  Static Marquee Badge Rows
   ============================================ */
.logo-scroll.static {
    overflow: visible;
    -webkit-mask-image: none;
    mask-image: none;
}

.logo-scroll.static .logo-track {
    animation: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    width: auto;
}

/* ============================================
   #16  SVG Accessibility & Optimization
   ============================================ */
.feature-icon svg,
.btn svg,
.nav-links svg,
.hero-badge-bottom svg,
.trust-badge svg,
.footer-social svg {
    pointer-events: none;
    flex-shrink: 0;
}

/* ============================================
   Pricing Intro — Social Proof Stats
   ============================================ */
.pricing-stats {
    display: flex;
    align-items: center;
    gap: clamp(24px, 4vw, 56px);
    margin-bottom: clamp(32px, 5vh, 56px);
}

.pricing-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.pricing-stat-number {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    letter-spacing: -1px;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
}

.pricing-stat-label {
    font-size: 13px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
}

.pricing-stat-divider {
    width: 1px;
    height: 48px;
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.12), transparent);
}

/* Pricing Intro — Guarantee Shield */
.pricing-shield {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    border: 1px solid rgba(0, 212, 255, 0.15);
    border-radius: 100px;
    background: rgba(0, 212, 255, 0.04);
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: clamp(32px, 5vh, 56px);
}

.pricing-shield svg {
    flex-shrink: 0;
    filter: drop-shadow(0 0 4px rgba(0, 212, 255, 0.4));
}

/* Responsive */
@media (max-width: 600px) {
    .pricing-stats {
        gap: 20px;
    }

    .pricing-stat-number {
        font-size: 24px;
    }

    .pricing-stat-divider {
        height: 36px;
    }

    .pricing-shield {
        font-size: 12px;
        padding: 8px 16px;
    }
}

/* ============================================
   Pricing Intro — Plan Preview Strip
   ============================================ */
.plan-preview {
    display: flex;
    gap: 16px;
    margin-top: clamp(16px, 2vh, 24px);
    width: 100%;
    max-width: 680px;
}

.plan-preview-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 20px 12px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(8px);
    transition: border-color 0.3s ease, transform 0.3s ease;
    position: relative;
}

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

.plan-preview-popular {
    border-color: rgba(0, 212, 255, 0.25);
    background: rgba(0, 212, 255, 0.04);
}

.plan-preview-badge {
    position: absolute;
    top: -10px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 2px 10px;
    border-radius: 100px;
    background: var(--accent-gradient);
    color: #0a0f1c;
}

.plan-preview-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: 0.5px;
}

.plan-preview-price {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
}

.plan-preview-price small {
    font-size: 13px;
    font-weight: 400;
    color: var(--text-muted);
}

.plan-preview-for {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 600px) {
    .plan-preview {
        gap: 8px;
    }

    .plan-preview-card {
        padding: 14px 8px;
    }

    .plan-preview-price {
        font-size: 22px;
    }
}


/* ═══════════════════════════════════════════════════════════════
   FLOATING 3D GEOMETRIC SHAPES v2.0 — Premium Background Decoration
   Drifting, popping, fading wireframe shapes across entire viewport.
   Behavior inspired by hero-orb drift system.
   ═══════════════════════════════════════════════════════════════ */

/* ── Base style for all geo shapes ── */
.geo-float {
    position: fixed;
    pointer-events: none;
    z-index: 15;
    transform-style: preserve-3d;
    will-change: transform, opacity;
}

/* ── Shape 1: Top-left cube — drifts right-down ── */
.geo-float-1 {
    top: 6%;
    left: 3%;
    width: 55px;
    height: 55px;
    border: 1.5px solid rgba(0, 212, 255, 0.18);
    border-radius: 3px;
    animation: geoDrift1 22s ease-in-out infinite, geoSpin1 20s linear infinite, geoPulse1 8s ease-in-out infinite;
}

/* ── Shape 2: Top-right small box ── */
.geo-float-2 {
    top: 10%;
    right: 5%;
    width: 38px;
    height: 38px;
    border: 1.5px solid rgba(0, 212, 255, 0.15);
    border-radius: 2px;
    animation: geoDrift2 26s ease-in-out infinite, geoSpin2 25s linear infinite, geoPulse2 10s ease-in-out 2s infinite;
}

/* ── Shape 3: Right-center diamond ── */
.geo-float-3 {
    top: 38%;
    right: 3%;
    width: 32px;
    height: 32px;
    border: 1.5px solid rgba(0, 212, 255, 0.14);
    animation: geoDrift3 18s ease-in-out infinite, geoSpinDiamond 15s linear infinite, geoPulse1 12s ease-in-out 1s infinite;
}

/* ── Shape 4: Left-center ring ── */
.geo-float-4 {
    top: 45%;
    left: 2%;
    width: 42px;
    height: 42px;
    border: 1.5px solid rgba(0, 212, 255, 0.12);
    border-radius: 50%;
    animation: geoDrift4 24s ease-in-out infinite, geoSpinRing 20s linear infinite, geoPulse2 9s ease-in-out 3s infinite;
}

/* ── Shape 5: Bottom-right small square ── */
.geo-float-5 {
    bottom: 18%;
    right: 6%;
    width: 28px;
    height: 28px;
    border: 1.5px solid rgba(0, 212, 255, 0.16);
    border-radius: 2px;
    animation: geoDrift5 20s ease-in-out infinite, geoSpin1 28s linear infinite reverse, geoPulse1 7s ease-in-out 4s infinite;
}

/* ── Shape 6: Bottom-left diamond ── */
.geo-float-6 {
    bottom: 12%;
    left: 5%;
    width: 36px;
    height: 36px;
    border: 1.5px solid rgba(0, 212, 255, 0.14);
    animation: geoDrift6 28s ease-in-out infinite, geoSpinDiamond 22s linear infinite reverse, geoPulse2 11s ease-in-out 2s infinite;
}

/* ── Shape 7: Mid-right tiny box ── */
.geo-float-7 {
    top: 65%;
    right: 10%;
    width: 22px;
    height: 22px;
    border: 1px solid rgba(0, 212, 255, 0.12);
    border-radius: 1px;
    animation: geoDrift7 19s ease-in-out infinite, geoSpin2 16s linear infinite, geoPulse1 13s ease-in-out 5s infinite;
}

/* ── Shape 8: Top-center small ring ── */
.geo-float-8 {
    top: 20%;
    left: 42%;
    width: 26px;
    height: 26px;
    border: 1px solid rgba(0, 212, 255, 0.10);
    border-radius: 50%;
    animation: geoDrift8 30s ease-in-out infinite, geoSpinRing 18s linear infinite reverse, geoPulse2 14s ease-in-out 1s infinite;
}

/* ── Shape 9: Left upper-mid square ── */
.geo-float-9 {
    top: 28%;
    left: 8%;
    width: 24px;
    height: 24px;
    border: 1px solid rgba(0, 212, 255, 0.13);
    border-radius: 2px;
    animation: geoDrift9 23s ease-in-out infinite, geoSpin1 19s linear infinite, geoPulse1 10s ease-in-out 6s infinite;
}

/* ── Shape 10: Bottom-center diamond ── */
.geo-float-10 {
    bottom: 30%;
    left: 35%;
    width: 20px;
    height: 20px;
    border: 1px solid rgba(0, 212, 255, 0.10);
    animation: geoDrift10 25s ease-in-out infinite, geoSpinDiamond 20s linear infinite, geoPulse2 8s ease-in-out 3s infinite;
}


/* ═══════════════════════════════════════════════════
   DRIFT KEYFRAMES — Orb-like floating motion paths
   ═══════════════════════════════════════════════════ */

@keyframes geoDrift1 {

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

    25% {
        transform: translate(30px, -20px);
    }

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

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

@keyframes geoDrift2 {

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

    33% {
        transform: translate(-25px, 15px);
    }

    66% {
        transform: translate(15px, -25px);
    }
}

@keyframes geoDrift3 {

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

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

    60% {
        transform: translate(10px, 20px);
    }
}

@keyframes geoDrift4 {

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

    40% {
        transform: translate(25px, -15px);
    }

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

@keyframes geoDrift5 {

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

    25% {
        transform: translate(-15px, 20px);
    }

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

    75% {
        transform: translate(-25px, -20px);
    }
}

@keyframes geoDrift6 {

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

    35% {
        transform: translate(20px, -25px);
    }

    65% {
        transform: translate(-15px, 15px);
    }
}

@keyframes geoDrift7 {

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

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

@keyframes geoDrift8 {

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

    30% {
        transform: translate(15px, 20px);
    }

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

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

@keyframes geoDrift9 {

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

    40% {
        transform: translate(18px, -22px);
    }

    70% {
        transform: translate(-12px, 18px);
    }
}

@keyframes geoDrift10 {

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

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


/* ═══════════════════════════════════════════════════
   SPIN KEYFRAMES — 3D rotation profiles
   ═══════════════════════════════════════════════════ */

@keyframes geoSpin1 {
    0% {
        transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg);
    }

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

@keyframes geoSpin2 {
    0% {
        transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg);
    }

    100% {
        transform: rotateX(-180deg) rotateY(360deg) rotateZ(-45deg);
    }
}

@keyframes geoSpinDiamond {
    0% {
        transform: rotate(45deg) rotateX(0deg) rotateY(0deg);
    }

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

@keyframes geoSpinRing {
    0% {
        transform: rotateX(65deg) rotateY(0deg);
    }

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


/* ═══════════════════════════════════════════════════
   PULSE/POP KEYFRAMES — Fade in/out like orb breathing
   ═══════════════════════════════════════════════════ */

@keyframes geoPulse1 {

    0%,
    100% {
        opacity: 0.7;
    }

    15% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }

    80% {
        opacity: 0.95;
    }
}

@keyframes geoPulse2 {

    0%,
    100% {
        opacity: 0.6;
    }

    20% {
        opacity: 1;
    }

    40% {
        opacity: 0.5;
    }

    70% {
        opacity: 0.95;
    }

    90% {
        opacity: 0.7;
    }
}


/* ── Clean up: remove old pseudo-element shapes ── */
body::after {
    content: none;
}

/* body::before grid pattern remains untouched */

html::after {
    content: none;
}


/* ── Reduced Motion: kill all floating animations ── */
@media (prefers-reduced-motion: reduce) {
    .geo-float {
        animation: none !important;
        opacity: 0.4 !important;
    }
}