/* === TI 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(187, 255, 0, 0.06);
    border: 1px solid rgba(187, 255, 0, 0.2);
    color: var(--color-accent-green);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
}

/* ── SHADOW AI RADAR ANIMATION ── */
.radar-scene {
    position: relative;
    width: 320px;
    height: 320px;
    margin: 3rem auto 1rem;
}
.radar-ring {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px solid rgba(187, 255, 0, 0.15);
}
.radar-ring.r1 { width: 320px; height: 320px; }
.radar-ring.r2 { width: 213px; height: 213px; }
.radar-ring.r3 { width: 107px; height: 107px; }
.radar-cross {
    position: absolute;
    top: 50%; left: 50%;
    background: rgba(187, 255, 0, 0.08);
}
.radar-cross.h { width: 320px; height: 1px; transform: translate(-50%, -50%); }
.radar-cross.v { width: 1px; height: 320px; transform: translate(-50%, -50%); }
.radar-sweep {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 100%; height: 100%;
    background: conic-gradient(from 0deg at 50% 50%, rgba(187,255,0,0.15) 0deg, transparent 60deg);
    border-radius: 50%;
    animation: sweep 3s linear infinite;
    pointer-events: none;
    z-index: 1;
}
@keyframes sweep { 
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); } 
}
.radar-center {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 16px; height: 16px;
    background: var(--color-accent-green);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--color-accent-green);
    z-index: 3;
}
.radar-dot {
    position: absolute;
    width: 10px; height: 10px;
    background: var(--color-alert-red);
    border-radius: 50%;
    animation: blip 3s ease-in-out infinite;
    animation-delay: var(--d);
    z-index: 2;
}
.radar-dot::after {
    content: attr(data-app);
    position: absolute;
    top: -1.6rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.62rem;
    color: var(--color-alert-red);
    white-space: nowrap;
    background: rgba(2, 8, 23, 0.9);
    padding: 0.15rem 0.4rem;
    border-radius: 4px;
    border: 1px solid rgba(255,77,77,0.2);
}
@keyframes blip {
    0%,100% { opacity:0; transform: scale(0); box-shadow: none; }
    50%      { opacity:1; transform: scale(1); box-shadow: 0 0 10px var(--color-alert-red); }
    75%      { opacity:0.7; transform: scale(0.8); }
}
.radar-warning {
    position: absolute;
    bottom: -2rem; left: 50%;
    transform: translateX(-50%);
    font-size: 0.72rem;
    color: rgba(255,77,77,0.8);
    white-space: nowrap;
    animation: blink 2s ease-in-out infinite;
}

/* ── 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(187, 255, 0, 0.05) 0%, transparent 70%);
}
.hero-lp .container {
    position: relative;
    z-index: 2;
}
.hero-lp h1 {
    font-size: clamp(1.9rem, 4.5vw, 3.6rem);
    max-width: 820px;
    margin: 0 auto 1.5rem;
    line-height: 1.15;
}
.hero-lp h1 em {
    font-style: normal;
    color: var(--color-accent-green);
}
.hero-lp .hero-sub {
    font-size: clamp(1rem, 1.4vw, 1.2rem);
    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;
}

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

/* ── STAT CALLOUT ── */
.stat-callout {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 3rem auto 0;
    max-width: 800px;
}
@media (max-width: 640px) { .stat-callout { grid-template-columns: 1fr; } }
.stat-item {
    text-align: center;
    padding: 1.75rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
}
.stat-item .stat-num {
    font-size: 2.2rem;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-accent-green);
    line-height: 1;
    margin-bottom: 0.4rem;
}
.stat-item p { font-size: 0.82rem; color: var(--color-gray-medium); margin-bottom: 0; }

/* ── TECHNICAL SOLUTION ── */
.tech-section { padding: 6rem 0; border-top: 1px solid var(--glass-border); }
.tech-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}
@media (max-width: 900px) { .tech-grid { grid-template-columns: 1fr; gap: 2.5rem; } }
.tech-features { display: flex; flex-direction: column; gap: 1rem; }
.tech-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);
}
.tech-feature:hover {
    border-color: rgba(187,255,0,0.25);
    background: rgba(187,255,0,0.02);
    transform: translateX(4px);
}
.tech-icon {
    font-size: 1.3rem;
    width: 42px; height: 42px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(187,255,0,0.06);
    border-radius: 11px;
    flex-shrink: 0;
}
.tech-feature h3 { font-size: 0.92rem; margin-bottom: 0.25rem; color: var(--color-white); }
.tech-feature p  { font-size: 0.82rem; color: var(--color-gray-medium); margin-bottom: 0; }

/* ── COMPLIANCE CHECKLIST ── */
.compliance-section { padding: 5rem 0; border-top: 1px solid var(--glass-border); }
.compliance-box {
    max-width: 700px;
    margin: 2.5rem auto 0;
    background: var(--glass-bg);
    border: 1px solid rgba(187,255,0,0.15);
    border-radius: var(--border-radius-card);
    padding: 2.5rem;
}
.compliance-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--glass-border);
}
.compliance-item:last-child { border-bottom: none; padding-bottom: 0; }
.check-icon {
    width: 24px; height: 24px;
    border-radius: 50%;
    background: rgba(187,255,0,0.1);
    border: 1px solid rgba(187,255,0,0.3);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.7rem;
    color: var(--color-accent-green);
    flex-shrink: 0;
    margin-top: 0.1rem;
}
.compliance-item h3 { font-size: 0.9rem; margin-bottom: 0.2rem; color: var(--color-white); }
.compliance-item p  { font-size: 0.8rem; color: var(--color-gray-medium); margin-bottom: 0; }

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

/* ── CTA FINAL ── */
.cta-final-lp {
    padding: 6rem 0 8rem;
    text-align: center;
}
.cta-box {
    background: linear-gradient(135deg, rgba(187,255,0,0.04) 0%, rgba(91,50,163,0.08) 100%);
    border: 1px solid rgba(187,255,0,0.12);
    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(187,255,0,0.4), 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;
}

/* 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 --- */
.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; }
    .radar-scene { width: 260px; height: 260px; }
    .radar-ring.r1 { width: 260px; height: 260px; }
    .radar-ring.r2 { width: 173px; height: 173px; }
    .radar-ring.r3 { width: 87px; height: 87px; }
    .radar-cross.h { width: 260px; }
    .radar-cross.v { height: 260px; }
    .radar-sweep { 
        width: 130px; height: 130px; 
    }
}
