/* ============================================
           DESIGN SYSTEM (PREMIUM DARK)
           ============================================ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg: #030303;
    --surface: #0a0a0a;
    --surface-hover: #111111;
    --border: rgba(255, 255, 255, 0.08);
    --border-highlight: rgba(255, 255, 255, 0.15);
    --primary: #c4ff56;
    --primary-dim: rgba(196, 255, 86, 0.05);
    --white: #ffffff;
    --text-main: #ededed;
    --text-muted: #888888;
    --red: #ff4d4d;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

body {
    font-family: var(--font);
    color: var(--text-main);
    background-color: var(--bg);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    zoom: 0.9;
}

/* Modular Texture Overlay */
.bg-noise {
    position: relative;
}

.bg-noise::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.08'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 1;
    /* Keep above base background but below content if content has z-index */
    mix-blend-mode: overlay;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
    /* Keep container above the noise layer */
}

h1,
h2,
h3,
h4 {
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 1.1;
    color: var(--white);
}

.highlight {
    color: var(--primary);
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s var(--ease);
    cursor: pointer;
}

.btn-primary {
    background: #c4ff56;
    color: #000;
    padding: 20px 48px;
    font-size: 1.1rem;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    transform: scale(1.05);
}

.btn-primary:active {
    transform: translateY(0);
}

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

.btn-secondary:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.05);
}

/* Inline Section CTAs */
.section-cta {
    text-align: center;
    margin-top: 60px;
}

.cta-subtext {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 14px;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
    flex-wrap: wrap;
}

.cta-subtext .subconscious-thought {
    font-style: italic;
    color: var(--white);
    font-size: 0.95rem;
    margin-right: 8px;
    opacity: 0.9;
}

.cta-subtext.subtext-dark .subconscious-thought {
    color: #111;
}

.cta-subtext span {
    display: inline-flex;
    align-items: center;
}

.cta-subtext .divider {
    color: var(--border);
    margin: 0 4px;
    font-weight: 300;
}

.cta-subtext.subtext-dark {
    color: #777;
}

.cta-subtext.subtext-dark .divider {
    color: #ddd;
}

/* Nav */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 20px 0;
    background: rgba(3, 3, 3, 0.8);
    backdrop-filter: blur(12px);
    z-index: 100;
    border-bottom: 1px solid var(--border);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

nav.nav-hidden {
    transform: translateY(-100%);
}

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

.logo {
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    font-size: 1.1rem;
}

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

.nav-link {
    color: var(--text-main);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s var(--ease), opacity 0.3s;
    opacity: 0.8;
}

.nav-link:hover {
    color: var(--white);
    opacity: 1;
}

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


/* ============================================
           HERO
           ============================================ */
.hero {
    padding-top: 140px;
    padding-bottom: 80px;
    text-align: center;
    position: relative;
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 24px;
    color: var(--white);
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 640px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 100vh;
    background: radial-gradient(circle at 50% 0%, rgba(196, 255, 86, 0.07), transparent 60%);
    pointer-events: none;
    z-index: -1;
}

.vsl-placeholder {
    max-width: 800px;
    margin: 0 auto 48px;
    aspect-ratio: 16/9;
    background: #111;
    border: 1px solid var(--border);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.6);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.vsl-placeholder:hover {
    transform: scale(1.01);
    border-color: var(--border-highlight);
}

.vsl-play-btn {
    width: 80px;
    height: 80px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vsl-placeholder:hover .vsl-play-btn {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(196, 255, 86, 0.4);
}

/* ============================================
           DIAGNOSIS SECTION
           ============================================ */
.diagnosis-section {
    padding: 80px 0;
}

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

.diagnosis-left h2 {
    font-size: 2.8rem;
    margin-bottom: 24px;
}

.diagnosis-left p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.checklist-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
    opacity: 0.5;
    transition: opacity 0.5s var(--ease);
}

.checklist-item.active {
    opacity: 1;
}

.check-circle {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--primary);
    font-size: 14px;
}

.scaling-hell-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 32px;
    padding: 48px;
    position: relative;
    overflow: hidden;
}

.alert-line {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    background: rgba(255, 77, 77, 0.08);
    border: 1px solid rgba(255, 77, 77, 0.15);
    border-radius: 12px;
    color: var(--red);
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 12px;
    transform: translateX(20px);
    opacity: 0;
    transition: all 0.5s var(--ease);
}

.alert-line.visible {
    transform: translateX(0);
    opacity: 1;
}

.hell-stat {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}

.hell-stat-item h4 {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 4px;
}

.hell-stat-item p {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ============================================
           BENTO DASHBOARD
           ============================================ */
.bento-section {
    padding: 80px 0 40px;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 80px;
}

.section-header h2 {
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    margin-bottom: 16px;
}

.section-header p {
    color: var(--text-muted);
    font-size: clamp(1rem, 2vw, 1.15rem);
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: minmax(260px, auto) minmax(260px, auto);
    gap: 24px;
}

.bento-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 32px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: border-color 0.3s ease, transform 0.3s ease;
    transform: translateZ(0);
    /* Hardware acceleration for mobile */
    backface-visibility: hidden;
}

.bento-card:hover {
    border-color: var(--border-highlight);
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.3);
}

.span-2 {
    grid-column: span 2;
}

.row-2 {
    grid-row: span 2;
}

.bento-content {
    position: relative;
    z-index: 2;
    max-width: 90%;
}

.bento-tag {
    display: inline-block;
    padding: 6px 12px;
    background: var(--primary-dim);
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 100px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.bento-card h3 {
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    margin-bottom: 12px;
    color: var(--white);
}

.bento-card p {
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    color: var(--text-muted);
    line-height: 1.6;
}

.bento-card-horizontal {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.bento-card-horizontal .bento-content {
    max-width: 60%;
    z-index: 2;
}

.bento-card-horizontal .funnel-ui {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0.9;
    padding: 0 40px;
    min-width: 200px;
    z-index: 1;
}

.bento-card-guarantee {
    grid-column: 1 / -1;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 32px;
    padding: 40px;
    background: rgba(130, 188, 14, 0.05) !important;
    border: 1px solid rgba(130, 188, 14, 0.2) !important;
    overflow: visible !important;
}

/* --- DASHBOARD WIDGETS --- */

/* 1. Video Player UI */
.video-ui {
    position: absolute;
    right: -20px;
    bottom: -20px;
    width: 320px;
    height: 220px;
    background: #151515;
    border-radius: 20px 0 0 0;
    border-top: 1px solid var(--border);
    border-left: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.15);
}

.waveform {
    display: flex;
    gap: 5px;
    align-items: flex-end;
    height: 24px;
    margin-left: 20px;
}

.bar {
    width: 4px;
    background: var(--primary);
    animation: wave 1s infinite ease-in-out;
}

@keyframes wave {

    0%,
    100% {
        height: 20%;
    }

    50% {
        height: 100%;
    }
}

.bar:nth-child(2) {
    animation-delay: 0.1s;
}

.bar:nth-child(3) {
    animation-delay: 0.2s;
}

/* 2. Radar UI */
.radar-ui {
    position: absolute;
    top: 50%;
    right: -50px;
    transform: translateY(-50%);
    width: 260px;
    height: 260px;
    border: 1px solid var(--border);
    border-radius: 50%;
}

.radar-sweep {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: conic-gradient(from 0deg, transparent 0deg, rgba(196, 255, 86, 0.1) 60deg, transparent 60deg);
    border-radius: 50%;
    animation: radar 4s linear infinite;
}

.radar-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--primary);
}

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

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

/* 3. Calendar UI */
.calendar-ui {
    position: absolute;
    bottom: -120px;
    left: 50%;
    transform: translateX(-50%);
    width: 240px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    opacity: 0.5;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.cal-day {
    aspect-ratio: 1;
    background: #f0f0f0;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    position: relative;
}

.cal-day.booked {
    background: rgba(130, 188, 14, 0.15);
    border: 1px solid rgba(130, 188, 14, 0.3);
}

.cal-day.booked::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
}

/* 4. Graph UI */
.graph-ui {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 140px;
    padding: 0 40px;
    display: flex;
    align-items: flex-end;
    gap: 12px;
}

.graph-col {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px 6px 0 0;
    transition: height 1s var(--ease);
}

.graph-col.active {
    background: linear-gradient(to top, var(--primary), transparent);
    opacity: 0.9;
}

/* ============================================
           PROCESS TIMELINE
           ============================================ */
.process-section {
    padding: 100px 0;
    background: #ffffff;
    color: #111;
}

.process-section .section-header h2 {
    color: #111;
}

.process-section .section-header p {
    color: #555;
}

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

.process-card {
    background: #fafafa;
    border: 1px solid #eaeaea;
    padding: 40px;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.process-card:hover {
    border-color: #d0d0d0;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

/* The Boxed Graphic Area */
.process-card-graphic {
    width: 72px;
    height: 72px;
    background: #f0f0f0;
    border: 1px solid #e0e0e0;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #111;
    margin-bottom: 8px;
    transition: all 0.5s ease;
    position: relative;
}

.process-card:hover .process-card-graphic {
    background: #ffffff;
    border-color: #d0d0d0;
    color: #111;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

/* Animated Inner Element for the Box (Removed pulsing for low-key look) */
.process-card-graphic::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0;
    transition: all 0.5s ease;
}

.process-card:hover .process-card-graphic::after {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

/* SVG Icon inside graphic */
.process-card-graphic svg {
    width: 28px;
    height: 28px;
    stroke-width: 2;
    transition: transform 0.5s ease;
    z-index: 2;
}

.process-card:hover .process-card-graphic svg {
    transform: scale(1.1);
}

.step-label {
    font-size: 0.85rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 700;
}

.process-card h3 {
    font-size: 1.4rem;
    color: #111;
    margin-bottom: 8px;
    line-height: 1.3;
}

.process-card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    flex-grow: 1;
}



/* ============================================
           TESTIMONIALS
           ============================================ */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 80px;
}

.testimonial-card {
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 60px;
    border-radius: 32px;
    display: flex;
    flex-direction: column;
    transform: translateZ(0);
    /* Hardware acceleration for smooth scrolling */
    backface-visibility: hidden;
}

.t-quote {
    font-size: clamp(1.4rem, 4vw, 2rem);
    font-weight: 500;
    letter-spacing: -0.02em;
    line-height: 1.6;
    margin-bottom: 32px;
    flex-grow: 1;
    color: var(--text-main);
}

.t-author {
    display: flex;
    align-items: center;
    gap: 16px;
    border-top: 1px solid var(--border);
    padding-top: 24px;
}

.t-avatar {
    width: 64px;
    height: 64px;
    background: var(--surface-hover);
    border-radius: 50%;
}

.testimonial-card .t-info h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 2px;
    color: var(--white);
}

.testimonial-card .t-info p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ============================================
           GUARANTEE & FAQ
           ============================================ */
.guarantee-section {
    padding: 100px 0;
    background: linear-gradient(to bottom, var(--bg) 0%, #080808 100%);
}

.guarantee-box {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 80px;
    border: 1px solid var(--border);
    border-radius: 40px;
    background: rgba(255, 255, 255, 0.02);
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 28px 0;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background: none;
    border: none;
    color: var(--white);
    font-family: inherit;
    font-size: 1.2rem;
    font-weight: 500;
    cursor: pointer;
    text-align: left;
    transition: color 0.3s ease;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s var(--ease);
    color: #888;
    font-size: 1.05rem;
    line-height: 1.6;
}

.faq-item.open .faq-answer {
    max-height: 400px;
    padding-top: 20px;
}

/* ============================================
           UTILS
           ============================================ */
.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s var(--ease);
}

.reveal-up.active {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 900px) {
    .bg-noise::before {
        mix-blend-mode: normal;
        opacity: 0.03;
    }

    .bento-card .video-ui,
    .bento-card .radar-ui,
    .bento-card .calendar-ui,
    .bento-card .funnel-ui {
        display: none !important;
    }

    .container {
        padding: 0 24px;
    }

    .diagnosis-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .bento-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .span-2 {
        grid-column: span 1;
    }

    .bento-card-horizontal,
    .bento-card-guarantee {
        flex-direction: column;
        align-items: flex-start;
        gap: 32px;
    }

    .bento-card-horizontal .bento-content {
        max-width: 100%;
    }

    .bento-card-horizontal .funnel-ui {
        padding: 0;
    }

    .row-2 {
        grid-row: span 1;
        height: 280px;
    }

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

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

    .hero h1 {
        font-size: 3rem;
    }
}

/* --- NEW FOOTER ENHANCEMENTS & MARQUEE --- */



/* Dark Mode Offer Breakdown */
.offer-section {
    background: #111;
    color: #fff;
    padding: 100px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.offer-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 40px;
    background: #151515;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 40px;
}

.offer-col-divider {
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    padding-right: 40px;
}

.offer-col-header {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #888;
    margin-bottom: 32px;
    font-weight: 600;
}

.offer-title {
    font-size: 2rem;
    margin-bottom: 16px;
    line-height: 1.1;
}

.offer-desc {
    color: #999;
    font-size: 1.05rem;
    line-height: 1.5;
    margin-bottom: 40px;
}

.offer-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.offer-list-item {
    display: flex;
    gap: 16px;
}

.offer-check {
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.offer-list-title {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 6px;
}

.offer-list-desc {
    color: #888;
    font-size: 0.9rem;
    line-height: 1.5;
}

.scarcity-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #aaa;
    font-size: 0.9rem;
    margin-bottom: 32px;
    background: rgba(255, 255, 255, 0.03);
    padding: 8px 16px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.guarantee-highlight {
    color: var(--primary);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.investment-subtext {
    color: #777;
    font-size: 0.9rem;
    margin-bottom: 40px;
}

@media (max-width: 992px) {
    .offer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .offer-col-divider {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        padding-right: 0;
        padding-bottom: 40px;
    }
}

/* Infinite Marquee */
.marquee-container {
    width: 100%;
    overflow: hidden;
    background: #0a0a0a;
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    white-space: nowrap;
    display: flex;
}

.marquee-track {
    display: flex;
    gap: 16px;
    animation: scroll-left 40s linear infinite;
    padding-right: 16px;
    /* Match gap */
}

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

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

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

.tag-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #999;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    background: transparent;
}

.tag-pill.highlight {
    background: var(--primary);
    color: #000;
    border-color: var(--primary);
    font-weight: 600;
    box-shadow: 0 0 20px rgba(196, 255, 86, 0.2);
}

wistia-player[media-id='lukicwr1vb']:not(:defined) {
    background: center / contain no-repeat url('https://fast.wistia.com/embed/medias/lukicwr1vb/swatch');
    display: block;
    filter: blur(5px);
    padding-top: 56.25%;
}

.trusted-logo:hover {
    transform: scale(1.1);
}

.bento-section {
    background: #ffffff;
    color: #111111;
    /* Adjust the brand color to a deeper, higher-contrast green for light background readability */
    --primary: #82bc0e;
    --primary-dim: rgba(130, 188, 14, 0.15);
}

.bento-section .section-header h2 {
    color: #111111;
}

.bento-section .section-header p {
    color: #666666;
}

.bento-section .bento-card {
    background: #fafafa;
    border-color: #eaeaea;
}

.bento-section .bento-card:hover {
    border-color: #d0d0d0;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.08);
}

.bento-section .bento-card h3 {
    color: #111111;
}

.bento-section .bento-card p {
    color: #555555;
}

.bento-section .bento-tag {
    color: #2b4004;
    background: rgba(130, 188, 14, 0.25);
    font-weight: 800;
}

.bento-section .video-ui {
    background: #f8f8f8;
    border-color: #eaeaea;
}

.bento-section .play-icon {
    background: #ffffff;
    color: #111111;
    border: 1px solid #eaeaea;
}

.bento-section .radar-ui {
    border-color: #eaeaea;
}

.bento-section .radar-sweep {
    background: conic-gradient(from 0deg, transparent 0deg, var(--primary-dim) 60deg, transparent 60deg);
}

.bento-section .cal-day {
    background: rgba(0, 0, 0, 0.03);
}

.bento-section .cal-day.booked {
    background: var(--primary-dim);
    border-color: rgba(130, 188, 14, 0.3);
}

.bento-section .graph-col {
    background: rgba(0, 0, 0, 0.05);
    transition: transform 0.4s ease, filter 0.4s ease;
    transform-origin: bottom;
}

/* Hover Enhancements */
.bento-section .play-icon {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.bento-section .bento-card:hover .play-icon {
    background: #f4f4f4;
    color: #000000;
    transform: scale(1.1);
}

.bento-section .radar-dot {
    transition: all 0.4s ease;
}

.bento-section .bento-card:hover .radar-dot {
    transform: scale(1.5);
    background: #ffffff;
    border: 1px solid #eaeaea;
}

.bento-section .calendar-ui {
    transition: opacity 0.4s ease, transform 0.4s ease;
    opacity: 0.4;
}

.bento-section .bento-card:hover .calendar-ui {
    opacity: 1;
    transform: translate(-50%, -8px) scale(1.02);
}

.bento-section .bento-card:hover .funnel-ui>div:not(.spider-node):not(.spider-line) {
    transform: scaleX(1.05);
    background: var(--primary);
    box-shadow: 0 0 15px rgba(130, 188, 14, 0.3);
}

/* Spider Web Hover State */
.spider-ui {
    position: relative;
    width: 280px;
    height: 200px;
    margin: 0 auto;
}

.spider-node {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.6);
    padding: 8px 14px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    background: #fff;
    color: #444;
    border: 1px solid #eaeaea;
    opacity: 0;
    z-index: 4;
}

.spider-node.s-center {
    background: #111;
    color: #fff;
    border: none;
    z-index: 5;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

.bento-section .bento-card:hover .spider-node.s-1 {
    opacity: 1;
    transform: translate(calc(-50% - 75px), calc(-50% - 60px)) scale(1);
}

.bento-section .bento-card:hover .spider-node.s-2 {
    opacity: 1;
    transform: translate(calc(-50% + 75px), calc(-50% - 40px)) scale(1);
}

.bento-section .bento-card:hover .spider-node.s-3 {
    opacity: 1;
    transform: translate(calc(-50% - 0px), calc(-50% + 65px)) scale(1);
}

.spider-line {
    position: absolute;
    top: 50%;
    left: 50%;
    height: 2px;
    background: var(--primary);
    transform-origin: left center;
    opacity: 0;
    transition: all 0.6s ease;
    z-index: 1;
    width: 0;
    pointer-events: none;
}

.spider-line.l-1 {
    transform: rotate(-140deg);
}

.bento-section .bento-card:hover .spider-line.l-1 {
    width: 80px;
    opacity: 0.6;
}

.spider-line.l-2 {
    transform: rotate(-30deg);
}

.bento-section .bento-card:hover .spider-line.l-2 {
    width: 80px;
    opacity: 0.6;
}

.spider-line.l-3 {
    transform: rotate(90deg);
}

.bento-section .bento-card:hover .spider-line.l-3 {
    width: 60px;
    opacity: 0.6;
}

.bento-section .cal-day {
    transition: background 0.4s ease;
}

.bento-section .bento-card:hover .cal-day:not(.booked) {
    background: rgba(130, 188, 14, 0.06);
}

.bento-section .bento-card:hover .graph-col {
    transform: scaleY(1.08);
}

.bento-section .bento-card:hover .graph-col.active {
    filter: brightness(1.1);
}

.diagnosis-section {
    position: relative;
    z-index: 10;
    background: #ffffff;
    margin-top: 0;
    padding: 100px 0 60px;
    overflow: hidden;
}

.diagnosis-section h2 {
    color: #111;
}

/* New Chapter Structure for Pacing */
.diagnosis-chapter {
    padding: 80px 0;
    position: relative;
}

/* Chapter 2: The Trap */
.diagnosis-chapter.c-trap {
    background: #fafafa;
    border-top: 1px solid #eaeaea;
    border-bottom: 1px solid #eaeaea;
}

/* Chapter 3: The Compare Dashboard */
.diagnosis-chapter.c-compare {
    background: #fff;
}

/* Chapter 4: The Paradigm Shift (Solution) */
.diagnosis-chapter.c-solution {
    background: #050505;
    color: #fff;
}

.c-solution .editorial-text,
.c-solution h3 {
    color: #f1f1f1 !important;
}

.c-solution .metric-card p {
    color: #aaa;
}

.editorial-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    background: #fafafa;
    border: 1px solid #eaeaea;
    padding: 60px 48px;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
}

@media (max-width: 768px) {
    .editorial-container {
        padding: 40px 24px;
    }
}

.pre-headline {
    font-size: 0.95rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 2rem;
    font-weight: 600;
}

.editorial-text {
    font-size: clamp(1.2rem, 3vw, 1.4rem);
    line-height: 1.6;
    color: #444;
    margin-bottom: 1.4rem;
}

.editorial-text strong {
    color: #000;
    font-weight: 600;
}

.editorial-list {
    list-style: none;
    padding: 0;
    margin: 40px 0 60px;
}

/* ==========================================================================
   EXPLAINER LISTICLE SECTION
   ========================================================================== */

.explainer-listicle {
    background: #f8f9fa;
    /* Off-white premium base */
    color: #111;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* Dotted Island Generator */
.dotted-island {
    position: absolute;
    width: 600px;
    height: 600px;
    background-image: radial-gradient(#95d414 9px, transparent 10px);
    background-size: 40px 40px;
    /* Keep spacing between dots the same */
    opacity: 0.12;
    /* Slightly higher base to account for heavy masking */
    border-radius: 50%;
    /* Combine a central soft fade (island shape) with linear bands (opacity variance) */
    -webkit-mask-image:
        radial-gradient(circle, black 30%, transparent 60%),
        repeating-linear-gradient(45deg, rgba(0, 0, 0, 1) 0px, rgba(0, 0, 0, 0.5) 150px, rgba(0, 0, 0, 1) 300px);
    -webkit-mask-composite: source-in;
    /* Intersects both masks allowing the banded gradient to only appear within the circle */
    mask-image:
        radial-gradient(circle, black 30%, transparent 60%),
        repeating-linear-gradient(45deg, rgba(0, 0, 0, 1) 0px, rgba(0, 0, 0, 0.5) 150px, rgba(0, 0, 0, 1) 300px);
    mask-composite: intersect;
    z-index: 1;
    pointer-events: none;
}

.dotted-island-1 {
    top: -100px;
    left: -200px;
    width: 800px;
    height: 800px;
}

.dotted-island-2 {
    top: 30%;
    right: -250px;
    width: 700px;
    height: 900px;
    transform: rotate(15deg);
}

.dotted-island-3 {
    bottom: -150px;
    left: 10%;
    width: 900px;
    height: 600px;
    transform: rotate(-10deg);
}

.listicle-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
    position: relative;
    z-index: 5;
}

.listicle-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: #111;
    line-height: 1.2;
    margin-bottom: 24px;
    font-weight: 700;
}

.listicle-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 5;
}

.listicle-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 48px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.04), 0 1px 3px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    gap: 48px;
    align-items: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.listicle-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.03);
}

.listicle-card-number {
    font-size: 6rem;
    font-weight: 800;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 2px #eaeaea;
    flex-shrink: 0;
    width: 100px;
    text-align: center;
    font-family: 'Space Grotesk', sans-serif;
}

.listicle-card-content {
    flex-grow: 1;
}

.listicle-card-content h3 {
    font-size: 1.8rem;
    color: #111;
    margin-bottom: 16px;
    line-height: 1.3;
}

.listicle-card-content p {
    font-size: 1.15rem;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .listicle-card {
        flex-direction: column;
        gap: 24px;
        padding: 32px 24px;
        text-align: center;
    }

    .listicle-card-number {
        font-size: 5rem;
        -webkit-text-stroke: 2px #f0f0f0;
        width: auto;
    }
}

/* ==========================================================================
   EXPLAINER TESTIMONIALS SECTION
   ========================================================================== */

.testimonial-bento-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial-bento {
    background: #ffffff;
    border-radius: 24px;
    padding: 0;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.04), 0 1px 3px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.testimonial-bento:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.03);
}

.testimonial-bento .tb-content {
    flex: 1;
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #fafafa;
}

.testimonial-bento .tb-video-wrapper {
    flex: 1;
    background: #fafafa;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Vertically center the video if it's shorter than the text column */
    min-height: 300px;
}

/* Ensure the wistia payload respects the flexbox column width perfectly */
.tb-video-wrapper .wistia_responsive_padding {
    width: 100%;
    /* Wistia inline padding sets perfect aspect ratio automatically */
}



.tb-quote {
    font-size: clamp(1.4rem, 2.5vw, 1.8rem);
    font-weight: 500;
    line-height: 1.4;
    color: #111;
    margin-bottom: 32px;
}

.t-author {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 40px;
}

.t-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid #e0e0e0;
}

.t-info h4 {
    margin: 0 0 4px 0;
    font-size: 1.1rem;
    color: #111;
    font-weight: 600;
}

.t-info p {
    margin: 0;
    font-size: 0.95rem;
    color: #666;
}

@media (max-width: 900px) {
    .testimonial-bento {
        flex-direction: column;
    }

    .testimonial-bento .tb-content {
        padding: 32px 24px;
        order: 2;
        /* Put text below video on mobile */
    }

    .testimonial-bento .tb-video-wrapper {
        order: 1;
        min-height: auto;
        /* Let it scale naturally */
    }
}

.editorial-list li {
    font-size: 1.3rem;
    line-height: 1.5;
    color: #444;
    margin-bottom: 24px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.editorial-list li svg {
    flex-shrink: 0;
    margin-top: 4px;
}

.editorial-list li strong {
    color: #111;
    font-weight: 600;
}

/* Animated Setup Grid (Scroll Triggered) */

.setup-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: transparent;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
}

.setup-item.active .setup-icon {
    border-color: var(--primary);
    background: var(--primary);
    color: #000;
}

.setup-icon svg {
    width: 14px;
    height: 14px;
    stroke-width: 3;
    z-index: 2;
    position: relative;
}

.setup-icon::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary);
    transform: scale(0);
    border-radius: 50%;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.setup-item.active .setup-icon::after {
    transform: scale(1);
}

.setup-text {
    font-size: 1rem;
    color: #555;
    font-weight: 500;
    line-height: 1.4;
}

.setup-text strong {
    color: #111;
    display: block;
    margin-bottom: 4px;
    font-size: 1.1rem;
}

/* Delay staggered animations for grid items */
.setup-item.active:nth-child(2) {
    transition-delay: 0.1s;
}

.setup-item.active:nth-child(2) .setup-icon::after {
    transition-delay: 0.1s;
}

.setup-item.active:nth-child(3) {
    transition-delay: 0.2s;
}

.setup-item.active:nth-child(3) .setup-icon::after {
    transition-delay: 0.2s;
}

/* The Hell Highlight */
.hell-highlight {
    font-size: clamp(1.8rem, 4vw, 2.2rem);
    font-weight: 700;
    color: #000;
    letter-spacing: -0.03em;
    margin: 60px 0 30px;
    line-height: 1.2;
}

.highlight-mark {
    position: relative;
    display: inline-block;
    white-space: nowrap;
}

.highlight-mark::after {
    content: '';
    position: absolute;
    left: -4px;
    right: -4px;
    bottom: 0;
    height: 40%;
    background: rgba(196, 255, 86, 0.4);
    z-index: -1;
    transform: skewX(-10deg) scaleX(0);
    transform-origin: left;
    transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.hell-highlight.active .highlight-mark::after {
    transform: skewX(-10deg) scaleX(1);
    transition-delay: 0.3s;
}

/* Stark Typography Tactics (Strike-through via Scroll) */
.tactics-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 40px 0 60px;
    padding-left: 20px;
    border-left: 2px solid #eaeaea;
}

.tactic-item {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: #222;
    letter-spacing: -0.04em;
    line-height: 1;
    position: relative;
    display: inline-block;
    width: max-content;
    transition: color 0.4s ease;
}

.strike-line {
    position: absolute;
    left: -5%;
    right: -5%;
    top: 50%;
    height: 6px;
    background: var(--red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0.9;
    border-radius: 4px;
}

.tactics-container.active .tactic-item .strike-line {
    transform: scaleX(1) rotate(-1deg);
}

.tactics-container.active .tactic-item {
    color: #ddd;
    /* Fade out the text heavily once struck */
}

/* Staggered stark items */
.tactics-container.active .tactic-item:nth-child(1) .strike-line {
    transition-delay: 0.1s;
}

.tactics-container.active .tactic-item:nth-child(2) .strike-line {
    transition-delay: 0.3s;
}

.tactics-container.active .tactic-item:nth-child(3) .strike-line {
    transition-delay: 0.5s;
}

/* Horizontal Split Dashboard (Chapter 3) */
.split-dashboard {
    display: flex;
    background: #fff;
    border-radius: 16px;
    border: 1px solid #eaeaea;
    overflow: hidden;
    margin: 40px 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
}

.dashboard-panel {
    flex: 1;
    padding: 40px;
    position: relative;
}

.panel-before {
    background: #fafafa;
    border-right: 1px solid #eaeaea;
}

.panel-after {
    background: #fff;
}

.panel-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid #eaeaea;
}

.panel-badge {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 4px 10px;
    border-radius: 6px;
}

.badge-red {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
}

.badge-green {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
}

.dashboard-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.dashboard-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
    color: #555;
    font-weight: 500;
    line-height: 1.5;
}

.panel-after .dashboard-list li {
    color: #111;
}

.list-icon {
    flex-shrink: 0;
    margin-top: 2px;
}

.result-card {
    margin-top: 24px;
    padding: 16px;
    background: #111;
    color: #fff;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    font-size: 1.05rem;
}

.result-card span {
    color: var(--primary);
    display: block;
    font-size: 1.2rem;
    margin-top: 4px;
}

@media (max-width: 768px) {
    .split-dashboard {
        flex-direction: column;
    }

    .panel-before {
        border-right: none;
        border-bottom: 1px solid #eaeaea;
    }
}

/* The Solution Metrics (Scroll Triggered) */
.metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.metric-card {
    background: #fff;
    border: 1px solid #eaeaea;
    padding: 32px 24px;
    border-radius: 16px;
    text-align: left;
    transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.metric-card.active {
    border-color: #d0d0d0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transform: translateY(-4px);
}

.metric-icon {
    width: 48px;
    height: 48px;
    background: #f4f4f4;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    margin-bottom: 24px;
    transition: background 0.5s ease, color 0.5s ease;
}

.metric-card.active .metric-icon {
    background: var(--primary-dim);
    color: var(--primary);
}

.metric-card.active:nth-child(2) {
    transition-delay: 0.1s;
}

.metric-card.active:nth-child(2) .metric-icon {
    transition-delay: 0.1s;
}

.metric-card.active:nth-child(3) {
    transition-delay: 0.2s;
}

.metric-card.active:nth-child(3) .metric-icon {
    transition-delay: 0.2s;
}

.metric-card h4 {
    font-size: 1.2rem;
    color: #111;
    margin-bottom: 8px;
}

.metric-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
}

@media (max-width: 768px) {

    .setup-grid,
    .metrics-grid {
        grid-template-columns: 1fr;
    }

    .hell-highlight {
        font-size: 1.8rem;
    }

    .transition-text {
        font-size: 1.4rem;
    }

    .transition-text strong {
        font-size: 1.6rem;
    }

    .ceo-text {
        font-size: 1.8rem !important;
    }
}

.reveal-word {
    transition: color 0.4s ease;
    /* Slow down the fade-in of the word itself */
}

.reveal-word.lit {
    color: var(--white) !important;
}

.highlight-word.lit {
    color: var(--primary) !important;
}

/* Ensure testimonials can animate in properly over the dark background */
.testimonial-stack {
    position: absolute;
    top: max(20vh, 120px);
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 800px;
    height: calc(100vh - max(20vh, 120px));
    display: grid;
    align-items: center;
    justify-items: center;
    pointer-events: none;
}

.testimonial-card.in-scroll {
    grid-area: 1 / 1;
    width: 100%;
    opacity: 0;
    pointer-events: auto;
    transform: translateY(100px) scale(0.9);
    transition: opacity 0.4s ease, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8);
    z-index: 10;
}

.testimonial-card.in-scroll.show {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* When a card gets "scrolled away" by the next one */
.testimonial-card.in-scroll.scrolled-past {
    opacity: 0 !important;
    transform: translateY(-50px) scale(0.95) !important;
    transition: opacity 0.4s ease, transform 0.6s ease;
}

.t-highlight {
    transition: color 0.3s ease;
    color: var(--text-muted);
    /* Start dimmed */
}

.t-highlight.lit {
    color: var(--white);
    /* Highlight on scroll */
}

/* Watch Video Button & Glowing Border */
.video-btn {
    margin-top: 40px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    background: #111;
    color: var(--white);
    border: none;
    border-radius: 100px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    z-index: 100;
    /* Ensure it's above the ::after background */
    pointer-events: auto;
    /* Required because parent stack has pointer-events: none */
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.video-btn:hover {
    transform: translateY(-2px) scale(1.02);
}

/* The glowing animated border effect */
.video-btn::before {
    content: '';
    position: absolute;
    top: -300%;
    left: -150%;
    width: 400%;
    height: 700%;
    background: conic-gradient(from 0deg, transparent 0%, var(--primary) 20%, transparent 40%);
    z-index: -2;
    animation: spin-glow 3s linear infinite;
    transform-origin: center;
}

.video-btn::after {
    content: '';
    position: absolute;
    top: 1px;
    left: 1px;
    right: 1px;
    bottom: 1px;
    background: #111;
    border-radius: 100px;
    z-index: -1;
}

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

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

/* Wistia Modal */
.wistia-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.wistia-modal.active {
    opacity: 1;
    pointer-events: all;
}

.wistia-modal-content {
    width: 100%;
    max-width: 900px;
    padding: 24px;
    position: relative;
    transform: scale(0.95);
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.wistia-modal.active .wistia-modal-content {
    transform: scale(1);
}

.wistia-close {
    position: absolute;
    top: -40px;
    right: 24px;
    color: #fff;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.wistia-close:hover {
    opacity: 1;
}

/* Testimonial Animations */
/* 1. The Underline Sweep */
.t-anim-underline {
    position: relative;
    display: inline-block;
}

.t-anim-underline::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.4s ease 0.1s;
}

.t-anim-underline.lit::after {
    width: 100%;
}



@media (max-width: 900px) {
    #reveal-text {
        font-size: clamp(1.5rem, 6vw, 2.5rem) !important;
    }

    .testimonial-stack {
        padding: 0 24px;
    }

    .scroll-sticky {
        padding: 0 !important;
    }
}

.process-section {
    padding: 120px 0;
    background: #fafafa;
    color: #111;
    position: relative;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.process-section .section-header h2 {
    color: #111;
}

.process-section .section-header p {
    color: #666;
}

.console-wrapper {
    margin-top: 60px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 24px;
    display: grid;
    grid-template-columns: 320px 1fr;
    min-height: 500px;
    overflow: hidden;
    box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.15);
}

/* Left Sidebar: Tabs */
.console-sidebar {
    background: #f4f4f4;
    border-right: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    padding: 24px 0;
}

.console-tab {
    padding: 20px 32px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    position: relative;
    color: #777;
}

.console-tab:hover {
    background: rgba(0, 0, 0, 0.03);
    color: #111;
}

.console-tab.active {
    background: #ffffff;
    border-left-color: #82bc0e;
    /* Darker Green */
    color: #111;
}

.tab-eyebrow {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: inherit;
    opacity: 0.6;
    margin-bottom: 6px;
    display: block;
}

.tab-title {
    font-size: 1.15rem;
    font-weight: 500;
}

/* Right Area: Display (Fixes Transition Bug via Grid) */
.console-display {
    padding: 60px;
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    align-items: center;
    background: radial-gradient(circle at 80% 20%, rgba(0, 0, 0, 0.01) 0%, transparent 40%);
    min-width: 0;
}

.display-content {
    grid-area: 1 / 1;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    pointer-events: none;
    z-index: 1;
    min-width: 0;
}

.display-content.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    z-index: 2;
}

.display-eyebrow {
    color: #82bc0e;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    margin-bottom: 16px;
    display: block;
}

.display-title {
    font-size: 2.5rem;
    margin-bottom: 24px;
    line-height: 1.1;
    color: #111;
}

.display-desc {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
    max-width: 500px;
}

/* Graphic Container */
.display-graphic {
    margin-top: 40px;
    width: 100%;
    height: 160px;
    border: 1px dashed rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

/* --- GRAPHIC 1: MARKET INTEL (4s LOOP) --- */
.g-scanner-wrap {
    position: relative;
    width: 60%;
    height: 70%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
}

/* --- GRAPHIC 1: MARKET INTEL (TEXT MARQUEE) --- */
.g-marquee-arena {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    overflow: hidden;
}

.g-marquee-row {
    display: flex;
    gap: 8px;
    white-space: nowrap;
    position: relative;
}

/* 
               We use two separate animations so that row 1 & 3 move left, 
               and row 2 moves right.
            */
.g-mq-left {
    animation: marquee-left 30s linear infinite;
}

.g-mq-right {
    animation: marquee-right 30s linear infinite;
    transform: translateX(-50%);
    /* Start halfway back so moving right looks smooth */
}

.g-pill {
    padding: 4px 10px;
    background: #f4f4f4;
    border: 1px solid #eaeaea;
    border-radius: 4px;
    font-size: 9px;
    color: #555;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    white-space: nowrap;
}

.g-pill-highlight {
    background: rgba(130, 188, 14, 0.08);
    color: #3b5a0a;
    border-color: rgba(130, 188, 14, 0.2);
}

@keyframes marquee-left {
    0% {
        transform: translateX(0);
    }

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

@keyframes marquee-right {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

/* --- GRAPHIC 2: THE FUNNEL (LEFT-TO-RIGHT) --- */
.g-funnel-arena {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Streams Container */
.g-funnel-stream-wrap {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    overflow: hidden;
}

.g-stream-left {
    left: 0;
    /* Fade out on the right edge as it enters funnel */
    -webkit-mask-image: linear-gradient(to right, black 60%, transparent 100%);
    mask-image: linear-gradient(to right, black 60%, transparent 100%);
}

.g-stream-right {
    right: 0;
    /* Fade in on the left edge as it exits funnel */
    -webkit-mask-image: linear-gradient(to left, black 60%, transparent 100%);
    mask-image: linear-gradient(to left, black 60%, transparent 100%);
}

.g-funnel-row {
    display: flex;
    gap: 8px;
    white-space: nowrap;
    position: relative;
    /* We re-use the marquee-right animation so text flows left to right */
    animation: marquee-right 20s linear infinite;
}

.g-stream-left .g-funnel-row {
    /* Offset rows slightly to feel organic */
    animation-duration: 25s;
}

.g-stream-left .g-funnel-row:nth-child(2) {
    animation-duration: 22s;
    transform: translateX(-30%);
}

.g-stream-right .g-funnel-row {
    animation-duration: 24s;
}

.g-stream-right .g-funnel-row:nth-child(2) {
    animation-duration: 28s;
}

/* The Funnel Shape */
.g-funnel-shape-wrap {
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.2));
    animation: funnel-pulse 4s infinite;
}

.g-funnel-shape {
    width: 65px;
    height: 85px;
    background: linear-gradient(to right, #e8e8e8, #d4d4d4);
    border-radius: 4px;
    clip-path: polygon(0 0, 100% 30%, 100% 70%, 0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.g-funnel-core {
    width: 6px;
    height: 24px;
    background: #82bc0e;
    border-radius: 3px;
    opacity: 0.8;
}

@keyframes funnel-pulse {

    0%,
    100% {
        filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.15));
    }

    40%,
    60% {
        filter: drop-shadow(0 15px 30px rgba(130, 188, 14, 0.35));
    }
}

/* --- GRAPHIC 3: PRODUCTION (MINIMAL SCRIPT STYLE) --- */
.g-production-canvas {
    width: 80%;
    height: 70%;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 6px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    position: relative;
}

.g-video-placeholder {
    width: 100%;
    height: 60px;
    background: #f0f0f0;
    border-radius: 4px;
    border: 1px dashed #d0d0d0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: video-frame-pulse 4s infinite ease-in-out;
}

.g-rec-indicator {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 6px;
    height: 6px;
    background: #ff4d4d;
    border-radius: 50%;
    animation: fade-loop 2s infinite;
}

.g-timeline-pills {
    display: flex;
    gap: 4px;
    margin-top: 4px;
}

.g-tpill {
    height: 6px;
    background: #eaeaea;
    border-radius: 3px;
}

.g-tpill-1 {
    width: 40%;
    animation: fade-loop 4s infinite 0s;
}

.g-tpill-2 {
    width: 25%;
    animation: fade-loop 4s infinite 0.5s;
    background: rgba(130, 188, 14, 0.15);
    border: 1px solid rgba(130, 188, 14, 0.3);
}

.g-tpill-3 {
    width: 35%;
    animation: fade-loop 4s infinite 1s;
}

@keyframes video-frame-pulse {

    0%,
    100% {
        border-color: #d0d0d0;
        background: #f0f0f0;
    }

    50% {
        border-color: rgba(130, 188, 14, 0.4);
        background: rgba(130, 188, 14, 0.02);
    }
}

@keyframes rec-pulse-abstract {

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

    50% {
        transform: scale(1.2);
        filter: brightness(1.3);
    }
}

/* --- GRAPHIC 4: DEPLOYMENT (Drag & Drop v2 Fix) --- */
.g-deploy-arena-v2 {
    position: relative;
    width: 100%;
    height: 100%;
    background: #f9f9f9;
    overflow: hidden;
}

.g-landing-page-v2 {
    position: absolute;
    width: 156px;
    height: 104px;
    background: #ffffff;
    border: 1px solid #eaeaea;
    border-radius: 6px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px;
    gap: 8px;
    z-index: 1;
    animation: v2-page-shift 8s infinite cubic-bezier(0.25, 1, 0.5, 1);
}

.g-lp-header-v2 {
    width: 60%;
    height: 6px;
    background: #e0e0e0;
    border-radius: 3px;
    animation: v2-header-glow 8s infinite;
}

.g-lp-sub-v2 {
    width: 40%;
    height: 4px;
    background: #f0f0f0;
    border-radius: 2px;
}

.g-lp-hero-v2 {
    width: 100%;
    height: 35px;
    border: 2px dashed #d0d0d0;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d0d0d0;
    font-size: 8px;
    font-family: monospace;
    animation: v2-hero-fill 8s infinite;
}

.g-lp-btn-v2 {
    width: 40%;
    height: 8px;
    background: #e0e0e0;
    border-radius: 4px;
    margin-top: auto;
    animation: v2-btn-glow 8s infinite;
}

.g-vid-block-v2 {
    position: absolute;
    width: 60px;
    height: 36px;
    background: #111;
    border-radius: 4px;
    top: 20px;
    left: -80px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    animation: v2-video-drop 8s infinite cubic-bezier(0.25, 1, 0.5, 1);
}

.g-mouse-v2 {
    position: absolute;
    top: 50px;
    left: -50px;
    z-index: 4;
    animation: v2-mouse-move 8s infinite cubic-bezier(0.25, 1, 0.5, 1);
}

.g-badge-v2 {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #82bc0e;
    color: white;
    font-size: 10px;
    font-weight: bold;
    padding: 3px 6px;
    border-radius: 4px;
    opacity: 0;
    transform: scale(0.5);
    animation: v2-badge-pop 8s infinite cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes v2-mouse-move {

    0%,
    5% {
        top: 60px;
        left: -50px;
    }

    15%,
    20% {
        top: 38px;
        left: 45px;
        transform: scale(0.9);
    }

    /* Grab */
    35%,
    40% {
        top: 78px;
        left: 50%;
        transform: scale(0.9);
    }

    /* Drag */
    45% {
        top: 78px;
        left: 50%;
        transform: scale(1);
    }

    /* Release */
    55%,
    92% {
        top: 150px;
        left: 80%;
        transform: scale(1);
        opacity: 0;
    }

    /* Exit */
}

@keyframes v2-video-drop {

    0%,
    14% {
        top: 20px;
        left: -80px;
        box-shadow: none;
    }

    15%,
    20% {
        top: 20px;
        left: 24px;
        transform: scale(1.05);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    }

    35%,
    40% {
        top: 60px;
        left: calc(50% - 30px);
        transform: scale(1.05);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    }

    45%,
    92% {
        top: 60px;
        left: calc(50% - 30px);
        transform: scale(1);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        opacity: 1;
    }

    95%,
    100% {
        top: 60px;
        left: calc(50% - 30px);
        transform: scale(1);
        opacity: 0;
    }
}

@keyframes v2-page-shift {

    0%,
    42% {
        border-color: #eaeaea;
        box-shadow: none;
    }

    45%,
    55% {
        border-color: #82bc0e;
        box-shadow: 0 15px 30px rgba(130, 188, 14, 0.15);
    }

    60%,
    92% {
        transform: translate(-50%, -50%) scale(1.05);
        border-color: #82bc0e;
        box-shadow: 0 20px 40px rgba(130, 188, 14, 0.2);
        opacity: 1;
    }

    95%,
    100% {
        transform: translate(-50%, -50%) scale(1.05);
        opacity: 0;
    }
}

@keyframes v2-header-glow {

    0%,
    42% {
        background: #e0e0e0;
        width: 60%;
    }

    45%,
    92% {
        background: #111;
        width: 80%;
        opacity: 1;
    }

    95%,
    100% {
        background: #111;
        width: 80%;
        opacity: 0;
    }
}

@keyframes v2-btn-glow {

    0%,
    42% {
        background: #e0e0e0;
        width: 40%;
    }

    45%,
    92% {
        background: #82bc0e;
        width: 70%;
        opacity: 1;
    }

    95%,
    100% {
        background: #82bc0e;
        width: 70%;
        opacity: 0;
    }
}

@keyframes v2-hero-fill {

    0%,
    42% {
        border-color: #d0d0d0;
        background: transparent;
    }

    45%,
    55% {
        border-color: #82bc0e;
        background: rgba(130, 188, 14, 0.05);
        color: #82bc0e;
    }

    60%,
    92% {
        border-color: transparent;
        background: transparent;
        color: transparent;
        opacity: 1;
    }

    95%,
    100% {
        border-color: transparent;
        background: transparent;
        color: transparent;
        opacity: 0;
    }
}

@keyframes v2-badge-pop {

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

    60%,
    85% {
        opacity: 1;
        transform: scale(1);
    }

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

/* --- GRAPHIC 4: DEPLOYMENT (Drag & Drop Mouse Animation) --- */
.g-deploy-arena {
    position: relative;
    width: 100%;
    height: 100%;
    background: #f9f9f9;
    overflow: hidden;
}

.g-vid-block {
    position: absolute;
    width: 64px;
    height: 36px;
    background: #111;
    border-radius: 6px;
    top: 20px;
    left: -80px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    animation: drag-drop-video 5s infinite cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 3;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.g-landing-page {
    position: absolute;
    width: 160px;
    height: 110px;
    background: #ffffff;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px;
    gap: 8px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.03);
    z-index: 1;
    animation: page-shift 5s infinite cubic-bezier(0.25, 1, 0.5, 1);
    transition: all 0.3s ease;
}

.g-lp-header {
    width: 40%;
    height: 4px;
    background: #e0e0e0;
    border-radius: 2px;
    align-self: flex-start;
    animation: shift-header 5s infinite;
}

.g-lp-sub {
    width: 60%;
    height: 4px;
    background: #f0f0f0;
    border-radius: 2px;
    align-self: flex-start;
}

.g-lp-hero {
    width: 100%;
    height: 40px;
    border: 1px dashed #d0d0d0;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a0a0a0;
    font-size: 8px;
    font-weight: 600;
    font-family: monospace;
    letter-spacing: 0.05em;
    animation: target-pulse 5s infinite;
    background: #fafafa;
}

.g-lp-btn {
    width: 50%;
    height: 10px;
    background: #e0e0e0;
    border-radius: 5px;
    margin-top: auto;
    animation: btn-pop 5s infinite;
}

.g-lp-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #82bc0e;
    color: white;
    font-size: 9px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(130, 188, 14, 0.3);
    opacity: 0;
    transform: scale(0.8) translateY(10px);
    animation: badge-pop 5s infinite cubic-bezier(0.34, 1.56, 0.64, 1);
}

.g-mouse {
    position: absolute;
    top: 50px;
    left: -50px;
    z-index: 4;
    animation: mouse-move 5s infinite cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes mouse-move {

    0%,
    5% {
        top: 60px;
        left: -50px;
    }

    15%,
    20% {
        top: 38px;
        left: 45px;
        transform: scale(0.9);
    }

    40%,
    45% {
        top: 68px;
        left: 50%;
        transform: scale(0.9);
    }

    50% {
        top: 68px;
        left: 50%;
        transform: scale(1);
    }

    60%,
    100% {
        top: 150px;
        left: 80%;
        transform: scale(1);
        opacity: 0;
    }
}

@keyframes drag-drop-video {

    0%,
    14% {
        top: 20px;
        left: -80px;
    }

    15%,
    20% {
        top: 20px;
        left: 24px;
        transform: scale(1.05);
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
    }

    40%,
    45% {
        top: 52px;
        left: calc(50% - 32px);
        transform: scale(1.05);
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
    }

    50%,
    80% {
        top: 52px;
        left: calc(50% - 32px);
        transform: scale(1);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    85%,
    100% {
        top: 52px;
        left: calc(50% - 32px);
        transform: scale(1);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        opacity: 0;
    }
}

@keyframes page-shift {

    0%,
    49% {
        border-color: #eaeaea;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.03);
    }

    50%,
    60% {
        border-color: rgba(130, 188, 14, 0.3);
        box-shadow: 0 20px 40px rgba(130, 188, 14, 0.1);
    }

    65%,
    80% {
        transform: translate(-50%, -50%) scale(1.05);
        border-color: rgba(130, 188, 14, 0.4);
        box-shadow: 0 20px 40px rgba(130, 188, 14, 0.15);
    }

    85%,
    100% {
        transform: translate(-50%, -50%) scale(1.05);
        border-color: rgba(130, 188, 14, 0.4);
        opacity: 0;
    }
}

@keyframes target-pulse {

    0%,
    25% {
        border-color: #d0d0d0;
        background: #fafafa;
    }

    30%,
    45% {
        border-color: #82bc0e;
        background: rgba(130, 188, 14, 0.05);
        color: #82bc0e;
    }

    50%,
    100% {
        border-color: transparent;
        background: transparent;
        color: transparent;
    }
}

@keyframes shift-header {

    0%,
    64% {
        width: 40%;
        background: #e0e0e0;
    }

    65%,
    100% {
        width: 60%;
        background: #111;
    }
}

@keyframes btn-pop {

    0%,
    64% {
        background: #e0e0e0;
        width: 50%;
    }

    65%,
    100% {
        background: #82bc0e;
        width: 70%;
    }
}

@keyframes badge-pop {

    0%,
    60% {
        opacity: 0;
        transform: scale(0.5) translateY(10px);
    }

    60%,
    92% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }

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


@media (max-width: 900px) {
    .console-wrapper {
        grid-template-columns: 1fr;
    }

    .console-sidebar {
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        flex-direction: row;
        overflow-x: auto;
        padding: 0;
        scrollbar-width: none;
    }

    .console-tab {
        padding: 16px 20px;
        border-left: none;
        border-bottom: 3px solid transparent;
        white-space: nowrap;
    }

    .console-tab.active {
        border-left-color: transparent;
        border-bottom-color: #82bc0e;
    }

    .console-display {
        padding: 40px 24px;
        display: flex;
    }

    /* fallback for older grid if needed, though grid is ubiquitous */
    .display-content {
        position: absolute;
        top: 40px;
        left: 24px;
        right: 24px;
    }

    .display-content.active {
        position: relative;
        top: 0;
        left: 0;
        right: 0;
    }

    .display-title {
        font-size: 2rem;
    }
}

/* CTA Text Fixes */
.process-section .cta-subtext {
    color: #888;
}

.process-section .cta-subtext .subconscious-thought {
    color: #444;
    font-weight: 500;
}

/* ============================================
           EXPLAINER WIGGLE ANIMATION
           ============================================ */
@keyframes wiggle-jump {

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

    82% {
        transform: translateY(-8px) rotate(-3deg);
    }

    85% {
        transform: translateY(-8px) rotate(3deg);
    }

    88% {
        transform: translateY(-8px) rotate(-3deg);
    }

    91% {
        transform: translateY(-8px) rotate(3deg);
    }

    94% {
        transform: translateY(0) rotate(0);
    }
}

.btn-wiggle {
    animation: wiggle-jump 6s infinite cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Specific direct-response overrides for the hero */
.explainer-hero {
    padding-top: 120px;
    padding-bottom: 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.explainer-hero h1 {
    font-size: clamp(1.75rem, 4vw, 3rem);
    line-height: 1.25;
    margin-bottom: 32px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    background: linear-gradient(180deg, #ffffff 20%, #cdcdcd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: var(--white);
    letter-spacing: -0.03em;
    font-weight: 700;
}

.explainer-heading-highlight {
    color: var(--primary);
    -webkit-text-fill-color: var(--primary);
}

/* ICP Highlight Pills */
.icp-pill {
    display: inline-block;
    padding: 4px 16px;
    border-radius: 12px;
    margin: 0 4px;
    font-weight: 800;
    color: #111;
    background-clip: border-box;
    -webkit-background-clip: border-box;
    -webkit-text-fill-color: #111;
    line-height: 1;
    transform-origin: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.2);
    font-size: 0.9em;
    position: relative;
    top: -4px;
    opacity: 0;
    transform: translateY(-80px) rotate(0deg);
    animation-fill-mode: forwards;
}

@keyframes shoot-and-float-1 {
    0% {
        opacity: 0;
        transform: translateY(-80px) rotate(0deg);
    }

    40% {
        opacity: 1;
        transform: translateY(10px) rotate(-4deg);
    }

    60% {
        transform: translateY(-3px) rotate(-2deg);
    }

    100% {
        opacity: 1;
        transform: translateY(0) rotate(-3deg);
    }
}

@keyframes shoot-and-float-2 {
    0% {
        opacity: 0;
        transform: translateY(-80px) rotate(0deg);
    }

    40% {
        opacity: 1;
        transform: translateY(10px) rotate(3deg);
    }

    60% {
        transform: translateY(-3px) rotate(1deg);
    }

    100% {
        opacity: 1;
        transform: translateY(0) rotate(2deg);
    }
}

@keyframes shoot-and-float-3 {
    0% {
        opacity: 0;
        transform: translateY(-80px) rotate(0deg);
    }

    40% {
        opacity: 1;
        transform: translateY(10px) rotate(-5deg);
    }

    60% {
        transform: translateY(-3px) rotate(-3deg);
    }

    100% {
        opacity: 1;
        transform: translateY(0) rotate(-4deg);
    }
}

@keyframes float-loop-1 {

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

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

@keyframes float-loop-2 {

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

    50% {
        transform: translateY(-3px) rotate(2deg);
    }
}

@keyframes float-loop-3 {

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

    50% {
        transform: translateY(-3px) rotate(-4deg);
    }
}

.icp-1 {
    background: #c4ff56;
    animation: shoot-and-float-1 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.3s forwards,
        float-loop-1 4s ease-in-out 1.1s infinite;
}

.icp-2 {
    background: #abffda;
    font-size: 0.85em;
    animation: shoot-and-float-2 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.6s forwards,
        float-loop-2 3.5s ease-in-out 1.4s infinite;
}

.icp-3 {
    background: #ffb8f6;
    animation: shoot-and-float-3 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.1s forwards,
        float-loop-3 4.5s ease-in-out 0.9s infinite;
}

.explainer-cta-wrapper {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.explainer-btn {
    font-size: 1.25rem;
    padding: 20px 48px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 10px 40px rgba(130, 188, 14, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.explainer-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(130, 188, 14, 0.6);
    background: #95d414;
}