/* === CEO Landing Page Styles === */

/* Simplified header */
.lp-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(2, 8, 23, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    height: var(--header-height);
    display: flex;
    align-items: center;
}
.lp-header nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
.lp-header .logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--color-white);
}
.lp-header .back-link {
    font-size: 0.8rem;
    color: var(--color-gray-medium);
    text-decoration: none;
    transition: color var(--transition-normal);
}
.lp-header .back-link:hover { color: var(--color-white); }

main { padding-top: var(--header-height); }

/* Persona badge */
.persona-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1.2rem;
    border-radius: var(--border-radius-pill);
    background: rgba(255, 77, 77, 0.08);
    border: 1px solid rgba(255, 77, 77, 0.25);
    color: var(--color-alert-red);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
}

/* ── DATA LEAK ANIMATION ── */
.leak-scene {
    position: relative;
    width: 100%;
    max-width: 520px;
    height: 260px;
    margin: 3rem auto 1rem;
}
.leak-hub {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 72px; height: 72px;
    background: rgba(255, 77, 77, 0.05);
    border: 2px solid rgba(255, 77, 77, 0.35);
    border-radius: 18px;
    display: flex; align-items: center; justify-content: center;
    font-size: 2rem;
    animation: hub-pulse 2.2s ease-in-out infinite;
    z-index: 3;
}
@keyframes hub-pulse {
    0%,100% { border-color: rgba(255,77,77,0.35); box-shadow: 0 0 0 rgba(255,77,77,0); }
    50%     { border-color: rgba(255,77,77,0.85); box-shadow: 0 0 30px rgba(255,77,77,0.2); }
}
.data-chip {
    position: absolute;
    top: 50%; left: 50%;
    padding: 0.35rem 0.75rem;
    background: rgba(255, 77, 77, 0.07);
    border: 1px solid rgba(255, 77, 77, 0.25);
    border-radius: 20px;
    font-size: 0.72rem;
    color: #ff8a8a;
    white-space: nowrap;
    animation: chip-float 4s ease-in-out infinite;
    animation-delay: var(--d);
    z-index: 2;
}
@keyframes chip-float {
    0%   { transform: translate(-50%,-50%) translateX(0) translateY(0) scale(1); opacity: 1; }
    60%  { opacity: 0.7; }
    100% { transform: translate(-50%,-50%) translateX(var(--tx)) translateY(var(--ty)) scale(0.5); opacity: 0; }
}
.ai-target {
    position: absolute;
    padding: 0.4rem 0.9rem;
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    font-size: 0.68rem;
    color: var(--color-gray-medium);
    animation: target-receive 4s ease-in-out infinite;
    animation-delay: var(--d);
}
@keyframes target-receive {
    0%,70% { opacity: 0.4; }
    80%    { opacity: 1; border-color: rgba(255,77,77,0.5); color: #ff8a8a; }
    100%   { opacity: 0.4; }
}
.leak-label {
    position: absolute;
    bottom: 0; left: 50%;
    transform: translateX(-50%);
    font-size: 0.72rem;
    color: rgba(255,77,77,0.7);
    white-space: nowrap;
    animation: blink 2s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.4} }

/* ── SHADER CANVAS ── */
.hero-bg-canvas {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.2;
}
.hero-shader-fade {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(2,8,23,0.1) 0%,
        rgba(2,8,23,0.0) 40%,
        rgba(2,8,23,0.9) 100%
    );
    z-index: 1;
    pointer-events: none;
}

/* ── HERO ── */
.hero-lp {
    padding: 8rem 0 5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 50% 30%, rgba(255, 77, 77, 0.03) 0%, transparent 70%);
}

.hero-lp .container {
    position: relative;
    z-index: 2;
}

.hero-lp h1 {
    font-size: clamp(2rem, 5vw, 4rem);
    max-width: 800px;
    margin: 0 auto 1.5rem;
    line-height: 1.15;
}
.hero-lp h1 em {
    font-style: normal;
    color: var(--color-alert-red);
}
.hero-lp .hero-sub {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    max-width: 620px;
    margin: 0 auto 2.5rem;
    color: var(--color-gray-light);
}
.hero-ctas {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ── PAIN SECTION ── */
.pain-section { padding: 6rem 0; border-top: 1px solid var(--glass-border); }
.pain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}
.pain-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-card);
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-smooth);
}
.pain-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--color-alert-red), var(--color-alert-amber));
}
.pain-card:hover {
    border-color: rgba(255,77,77,0.3);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(255,77,77,0.08);
}
.pain-card .pain-icon {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}
.pain-card h3 {
    font-size: 1.05rem;
    color: var(--color-white);
    margin-bottom: 0.6rem;
}
.pain-card p {
    font-size: 0.9rem;
    color: var(--color-gray-medium);
    margin-bottom: 0;
}
.pain-card .pain-ref {
    display: block;
    margin-top: 0.75rem;
    font-size: 0.75rem;
    color: rgba(255,77,77,0.6);
    font-style: italic;
}

/* ── COUNTER CALLOUT ── */
.counter-callout {
    margin: 3rem auto 2rem;
    max-width: 700px;
    background: rgba(255,77,77,0.04);
    border: 1px solid rgba(255,77,77,0.15);
    border-radius: var(--border-radius-card);
    padding: 2.5rem;
    text-align: center;
}
.counter-callout .counter-number {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-alert-red);
    line-height: 1;
    margin-bottom: 0.5rem;
}
.counter-callout p {
    font-size: 1rem;
    color: var(--color-gray-light);
    margin-bottom: 0;
}

/* ── SOLUTION SECTION ── */
.solution-section { 
    padding: 6rem 0; 
    border-top: 1px solid var(--glass-border);
}

.solution-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}
@media (max-width: 900px) { .solution-grid { grid-template-columns: 1fr; gap: 2.5rem; } }
.solution-features { display: flex; flex-direction: column; gap: 1.25rem; }
.sol-feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.25rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    transition: all var(--transition-smooth);
}
.sol-feature:hover {
    border-color: rgba(187,255,0,0.2);
    background: rgba(187,255,0,0.02);
}
.sol-icon {
    font-size: 1.4rem;
    width: 44px; height: 44px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(187,255,0,0.06);
    border-radius: 12px;
    flex-shrink: 0;
}
.sol-feature h3 { font-size: 0.95rem; margin-bottom: 0.3rem; color: var(--color-white); }
.sol-feature p  { font-size: 0.85rem; color: var(--color-gray-medium); margin-bottom: 0; }

/* ── STEPS ── */
.steps-section { padding: 6rem 0; border-top: 1px solid var(--glass-border); }
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    counter-reset: step-counter;
}
@media (max-width: 700px) { .steps-grid { grid-template-columns: 1fr; } }
.step-item {
    text-align: center;
    counter-increment: step-counter;
    position: relative;
}
.step-item::before {
    content: counter(step-counter);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem; height: 3rem;
    border-radius: 50%;
    background: var(--color-accent-green);
    color: var(--color-primary-navy);
    font-weight: 700;
    font-family: var(--font-heading);
    margin: 0 auto 1.25rem;
}
.step-item h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.step-item p  { font-size: 0.88rem; color: var(--color-gray-medium); margin-bottom: 0; }
.step-connector {
    position: absolute;
    top: 1.5rem; right: -1rem;
    width: 2rem; height: 1px;
    background: var(--glass-border);
}
@media (max-width: 700px) { .step-connector { display: none; } }

/* ── CTA FINAL ── */
.cta-final-lp {
    padding: 6rem 0 8rem;
    text-align: center;
}
.cta-box {
    background: linear-gradient(135deg, rgba(255,77,77,0.05) 0%, rgba(91,50,163,0.08) 100%);
    border: 1px solid rgba(255,77,77,0.15);
    border-radius: var(--border-radius-card);
    padding: 5rem 2rem;
    position: relative;
    overflow: hidden;
    max-width: 800px;
    margin: 0 auto;
}
.cta-box::before {
    content: '';
    position: absolute;
    top: 0; left: 50%; transform: translateX(-50%);
    width: 60%; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,77,77,0.5), transparent);
}
.cta-box h2 { font-size: clamp(1.6rem, 3vw, 2.5rem); margin-bottom: 1rem; }
.cta-box p  { max-width: 520px; margin: 0 auto 2.5rem; }
.cta-guarantee {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    padding: 0.4rem 1.2rem;
    border-radius: var(--border-radius-pill);
    background: rgba(187,255,0,0.04);
    border: 1px solid rgba(187,255,0,0.12);
    color: var(--color-accent-green);
    font-size: 0.82rem;
}

/* ── FAQ ── */
.faq-section { padding: 5rem 0; border-top: 1px solid var(--glass-border); }

/* ── SIMPLE FOOTER ── */
.lp-footer {
    padding: 2rem 0;
    border-top: 1px solid var(--glass-border);
    text-align: center;
}
.lp-footer p {
    font-size: 0.8rem;
    color: var(--color-gray-medium);
    margin-bottom: 0.5rem;
}
.lp-footer a {
    color: var(--color-gray-medium);
    text-decoration: none;
    font-size: 0.8rem;
    margin: 0 0.75rem;
}
.lp-footer a:hover { color: var(--color-white); }

/* ── REVEAL (from global but kept for consistency) --- */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 600px) {
    .hero-lp { padding: 4rem 0 3rem; }
    .leak-scene { height: 200px; }
}
