/* ============================================
   FinIQ Owner LP — Dark theme, green/lime accent
   Fonts: Space Grotesk (headings) + DM Sans (body)
   ============================================ */

:root {
    --bg: #0a0e17;
    --bg-card: #111827;
    --bg-card-alt: #0f1520;
    --bg-elevated: #1a2235;
    --text: #e2e8f0;
    --text-muted: #8896ab;
    --text-dim: #5a6a80;
    --accent: #84f542;
    --accent-dim: rgba(132, 245, 66, 0.15);
    --accent-glow: rgba(132, 245, 66, 0.3);
    --red-muted: #f5424e;
    --red-dim: rgba(245, 66, 78, 0.15);
    --border: rgba(255, 255, 255, 0.06);
    --radius: 12px;
    --radius-lg: 20px;
    --font-head: 'Space Grotesk', system-ui, sans-serif;
    --font-body: 'DM Sans', system-ui, sans-serif;
    --container: 1140px;
}

/* Reset */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    line-height: 1.65;
    overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--accent); text-decoration: none; }

/* Container */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
.section-title {
    font-family: var(--font-head);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    text-align: center;
    margin-bottom: 0.5rem;
}
.section-sub {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.125rem;
    margin-bottom: 3rem;
}
.text-accent { color: var(--accent); }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-head);
    font-weight: 600;
    border: none;
    cursor: pointer;
    border-radius: 10px;
    transition: all 0.25s ease;
    text-decoration: none;
    gap: 8px;
}
.btn-accent {
    background: var(--accent);
    color: #0a0e17;
}
.btn-accent:hover {
    background: #9fff60;
    box-shadow: 0 0 30px var(--accent-glow);
    transform: translateY(-1px);
}
.btn-sm { padding: 8px 18px; font-size: 0.875rem; }
.btn-lg { padding: 16px 36px; font-size: 1.1rem; }
.btn-full { width: 100%; }

/* ============ NAVBAR ============ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(10, 14, 23, 0.8);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    transition: background 0.3s;
}
.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text);
}
.logo-mark {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--accent);
    color: var(--bg);
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1.25rem;
    border-radius: 8px;
}
.logo-text {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1.25rem;
}
.nav-links {
    display: flex;
    gap: 32px;
}
.nav-link {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s;
}
.nav-link:hover { color: var(--text); }

/* Burger */
.burger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
}
.burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    transition: all 0.3s;
    border-radius: 2px;
}
.mobile-menu {
    display: none;
    flex-direction: column;
    align-items: center;
    padding: 1rem 1.5rem 1.5rem;
    gap: 0.75rem;
    background: rgba(10, 14, 23, 0.95);
    border-bottom: 1px solid var(--border);
}
.mobile-menu.active { display: flex; }
.mobile-link {
    color: var(--text-muted);
    font-size: 1rem;
    padding: 0.5rem;
}

@media (max-width: 768px) {
    .nav-links, .navbar .btn-sm { display: none; }
    .burger { display: flex; }
}

/* ============ HERO ============ */
.hero {
    position: relative;
    padding: 120px 0 80px;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}
.hero-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(132, 245, 66, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(132, 245, 66, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 30%, transparent 100%);
}
.hero-layout {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 60px;
    align-items: start;
}
.hero-badge {
    display: inline-block;
    padding: 6px 16px;
    background: var(--accent-dim);
    color: var(--accent);
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 20px;
    margin-bottom: 1.5rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.hero-title {
    font-family: var(--font-head);
    font-size: clamp(2.5rem, 5vw, 3.75rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 1.25rem;
}
.hero-sub {
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 560px;
    margin-bottom: 2rem;
}
.hero-bullets {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.hero-bullets li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
    line-height: 1.5;
}
.bullet-icon {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    color: var(--accent);
    margin-top: 2px;
}
.hero-bullets strong { color: #fff; }

/* Lead Form */
.lead-form {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
}
.form-title {
    font-family: var(--font-head);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}
.form-sub {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
}
.form-group { margin-bottom: 0.75rem; }
.form-input {
    width: 100%;
    padding: 14px 16px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--text);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: border-color 0.2s;
    outline: none;
}
.form-input::placeholder { color: var(--text-dim); }
.form-input:focus { border-color: var(--accent); }
.form-input:invalid:not(:placeholder-shown) {
    border-color: var(--red-muted);
}
.form-note {
    text-align: center;
    color: var(--text-dim);
    font-size: 0.8rem;
    margin-top: 0.75rem;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}
.lead-form-final {
    max-width: 640px;
    margin: 0 auto;
    background: var(--bg-elevated);
    border: 1px solid rgba(132, 245, 66, 0.12);
}
.lead-form-final .form-group { margin-bottom: 0; }
.lead-form-final .btn { margin-top: 1rem; width: 100%; }

@media (max-width: 900px) {
    .hero-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .hero-form-wrap { order: 2; }
    .form-row { grid-template-columns: 1fr; }
}

/* ============ SECTION SPACING ============ */
.section { padding: 80px 0; }

/* ============ POSITIONING ============ */
.positioning { padding-top: 40px; }
.pos-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 3rem;
    text-align: center;
}
.pos-card .section-title {
    margin-bottom: 1rem;
}
.pos-text {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}
.pos-text strong { color: var(--text); }
.pos-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
.stat-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.stat-num {
    font-family: var(--font-head);
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
}
.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}
@media (max-width: 640px) {
    .pos-stats { grid-template-columns: 1fr 1fr; }
    .pos-card { padding: 2rem 1.5rem; }
}

/* ============ PAIN SECTIONS ============ */
.pain-section { position: relative; }
.pain-alt { background: var(--bg-card-alt); }
.pain-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}
.pain-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--red-muted);
    background: var(--red-dim);
    padding: 4px 12px;
    border-radius: 6px;
    margin-bottom: 1rem;
}
.pain-title {
    font-family: var(--font-head);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}
.pain-desc {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}
.pain-quote {
    border-left: 3px solid var(--accent);
    padding-left: 1rem;
    color: var(--text-muted);
    font-style: italic;
    font-size: 0.95rem;
    line-height: 1.6;
}
.pain-quote cite {
    display: block;
    margin-top: 0.5rem;
    font-style: normal;
    color: var(--text-dim);
    font-size: 0.85rem;
}

/* Solution Cards */
.solution-card {
    background: var(--bg-elevated);
    border: 1px solid rgba(132, 245, 66, 0.1);
    border-radius: var(--radius-lg);
    padding: 2rem;
}
.solution-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
    background: var(--accent-dim);
    padding: 4px 12px;
    border-radius: 6px;
    margin-bottom: 0.75rem;
}
.solution-card h3 {
    font-family: var(--font-head);
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}
.solution-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.65;
    margin-bottom: 1.25rem;
}

/* Pain 1 visual — 3 realities */
.reality-flow {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}
.reality-item {
    flex: 1;
    padding: 12px;
    border-radius: 10px;
    text-align: center;
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 0.9rem;
}
.reality-item span {
    display: block;
    font-size: 0.7rem;
    font-weight: 400;
    font-family: var(--font-body);
    opacity: 0.7;
    margin-top: 2px;
}
.reality-old {
    background: var(--red-dim);
    border: 1px solid rgba(245, 66, 78, 0.2);
    color: var(--red-muted);
}
.reality-arrow {
    text-align: center;
    margin: 8px 0;
    color: var(--accent);
}
.reality-arrow svg { width: 24px; height: 24px; }
.reality-new {
    background: var(--accent-dim);
    border: 1px solid rgba(132, 245, 66, 0.2);
    color: var(--accent);
}

/* Pain 2 visual — accounts */
.accounts-visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}
.account-chip {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 10px;
    font-size: 0.85rem;
    color: var(--text-muted);
}
.account-chip svg {
    width: 18px;
    height: 18px;
    color: var(--accent);
    flex-shrink: 0;
}

/* Pain 3 visual — multi org */
.multi-org-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}
.org-item {
    padding: 10px 20px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 10px;
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 0.9rem;
}
.org-plus, .org-eq {
    font-family: var(--font-head);
    font-weight: 700;
    color: var(--text-dim);
    font-size: 1.25rem;
}
.org-eq { color: var(--accent); }
.org-result {
    padding: 10px 24px;
    background: var(--accent-dim);
    border: 1px solid rgba(132, 245, 66, 0.2);
    border-radius: 10px;
    font-family: var(--font-head);
    font-weight: 700;
    color: var(--accent);
    font-size: 0.95rem;
}

/* Pain 4 visual — funds bar */
.funds-visual { margin-top: 0.5rem; }
.fund-bar {
    display: flex;
    height: 40px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 10px;
}
.fund-segment {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--bg);
    overflow: hidden;
    white-space: nowrap;
}
.fund-salary { background: #4a90d9; }
.fund-rent { background: #e8a838; }
.fund-tax { background: #d94a6e; }
.fund-reserve { background: #8a6dd9; }
.fund-free { background: var(--accent); }
.fund-legend {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--text-dim);
}

@media (max-width: 768px) {
    .pain-grid { grid-template-columns: 1fr; gap: 24px; }
    .accounts-visual { grid-template-columns: 1fr; }
}

/* ============ FEATURES ============ */
.features { background: var(--bg-card-alt); }
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: border-color 0.3s, transform 0.3s;
}
.feature-card:hover {
    border-color: rgba(132, 245, 66, 0.2);
    transform: translateY(-4px);
}
.feature-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1.25rem;
    color: var(--accent);
}
.feature-icon svg { width: 100%; height: 100%; }
.feature-card h3 {
    font-family: var(--font-head);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.feature-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}
.feature-accent {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent);
    padding-top: 0.75rem;
    border-top: 1px solid var(--border);
}

@media (max-width: 900px) {
    .features-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
    .features-grid { grid-template-columns: 1fr; }
}

/* ============ AI SECTION ============ */
.ai-section { overflow: hidden; }
.chat-window {
    max-width: 600px;
    margin: 0 auto 2.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.chat-msg { display: flex; }
.chat-user { justify-content: flex-end; }
.chat-ai { justify-content: flex-start; }
.chat-bubble {
    max-width: 80%;
    padding: 12px 16px;
    border-radius: 14px;
    font-size: 0.9rem;
    line-height: 1.5;
}
.chat-user .chat-bubble {
    background: var(--accent);
    color: var(--bg);
    border-bottom-right-radius: 4px;
}
.chat-ai .chat-bubble {
    background: var(--bg-elevated);
    color: var(--text);
    border-bottom-left-radius: 4px;
    border: 1px solid var(--border);
}

.ai-scenarios {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 2rem;
}
.scenario-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.scenario-q {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text);
}
.scenario-a {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.5;
}
.ai-note {
    text-align: center;
    color: var(--text-dim);
    font-size: 0.9rem;
    max-width: 600px;
    margin: 0 auto;
    font-style: italic;
}

@media (max-width: 768px) {
    .ai-scenarios { grid-template-columns: 1fr; }
}

/* ============ COMPARISON ============ */
.compare { background: var(--bg-card-alt); }
.compare-tables {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}
.compare-heading {
    font-family: var(--font-head);
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 1rem;
    padding-left: 4px;
}
.compare-table {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.compare-row {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 0;
}
.compare-row > span {
    padding: 14px 20px;
    font-size: 0.9rem;
    border-bottom: 1px solid var(--border);
}
.compare-row:last-child > span { border-bottom: none; }
.compare-header > span {
    font-weight: 700;
    font-family: var(--font-head);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-dim);
    background: var(--bg-elevated);
}
.compare-bad { color: var(--text-dim); }
.compare-good { color: var(--accent); font-weight: 500; }

@media (max-width: 640px) {
    .compare-row { grid-template-columns: 1fr; }
    .compare-row > span { padding: 10px 16px; }
    .compare-header { display: none; }
    .compare-row > span::before {
        display: block;
        font-size: 0.7rem;
        text-transform: uppercase;
        color: var(--text-dim);
        margin-bottom: 2px;
    }
}

/* ============ ROI ============ */
.roi-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 3rem;
    text-align: center;
}
.roi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 2rem 0;
}
.roi-item {
    padding: 1.5rem;
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.roi-other {
    background: var(--bg);
    border: 1px solid var(--border);
}
.roi-finiq {
    background: var(--accent-dim);
    border: 1px solid rgba(132, 245, 66, 0.2);
}
.roi-price {
    font-family: var(--font-head);
    font-size: 1.75rem;
    font-weight: 700;
}
.roi-other .roi-price { color: var(--text-dim); text-decoration: line-through; text-decoration-color: var(--red-muted); }
.roi-finiq .roi-price { color: var(--accent); }
.roi-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}
.roi-note {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 2rem;
}
.roi-results {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}
.roi-result {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 0.85rem;
    color: var(--text-muted);
}
.roi-result-num {
    font-family: var(--font-head);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--accent);
}

@media (max-width: 640px) {
    .roi-grid, .roi-results { grid-template-columns: 1fr; }
    .roi-card { padding: 2rem 1.5rem; }
}

/* ============ FAQ ============ */
.faq-list {
    max-width: 720px;
    margin: 2rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}
.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 18px 20px;
    background: none;
    border: none;
    color: var(--text);
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
    gap: 16px;
}
.faq-arrow {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: transform 0.3s;
    color: var(--text-dim);
}
.faq-item.active .faq-arrow {
    transform: rotate(180deg);
    color: var(--accent);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}
.faq-answer p {
    padding: 0 20px 18px;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ============ CTA FINAL ============ */
.cta-final {
    background: var(--bg-card-alt);
}
.cta-card {
    text-align: center;
    padding: 3rem 0;
}
.cta-title {
    font-family: var(--font-head);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}
.cta-sub {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* ============ FOOTER ============ */
.footer {
    padding: 2rem 0;
    border-top: 1px solid var(--border);
}
.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.footer-logo {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text);
}
.footer-copy {
    color: var(--text-dim);
    font-size: 0.8rem;
}

@media (max-width: 480px) {
    .footer-inner { flex-direction: column; gap: 8px; text-align: center; }
}

/* ============ SUCCESS OVERLAY ============ */
.success-overlay {
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(10, 14, 23, 0.85);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}
.success-overlay.active {
    opacity: 1;
    pointer-events: all;
}
.success-modal {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 3rem;
    text-align: center;
    max-width: 400px;
    transform: scale(0.9);
    transition: transform 0.3s;
}
.success-overlay.active .success-modal {
    transform: scale(1);
}
.success-icon {
    width: 64px;
    height: 64px;
    color: var(--accent);
    margin: 0 auto 1rem;
}
.success-modal h3 {
    font-family: var(--font-head);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}
.success-modal p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

/* ============ ANIMATIONS ============ */
.anim-fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.7s ease forwards;
}
.anim-d1 { animation-delay: 0.15s; }
.anim-d2 { animation-delay: 0.3s; }
.anim-d3 { animation-delay: 0.45s; }

@keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
}

/* Scroll-triggered */
.anim-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.anim-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered children */
.features-grid .feature-card:nth-child(2) { transition-delay: 0.1s; }
.features-grid .feature-card:nth-child(3) { transition-delay: 0.2s; }
.features-grid .feature-card:nth-child(4) { transition-delay: 0.3s; }
.features-grid .feature-card:nth-child(5) { transition-delay: 0.4s; }
.features-grid .feature-card:nth-child(6) { transition-delay: 0.5s; }
.ai-scenarios .scenario-card:nth-child(2) { transition-delay: 0.08s; }
.ai-scenarios .scenario-card:nth-child(3) { transition-delay: 0.16s; }
.ai-scenarios .scenario-card:nth-child(4) { transition-delay: 0.24s; }
.ai-scenarios .scenario-card:nth-child(5) { transition-delay: 0.32s; }
.ai-scenarios .scenario-card:nth-child(6) { transition-delay: 0.4s; }

/* Glow effects */
.hero::after {
    content: '';
    position: absolute;
    top: 10%;
    left: 50%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
    opacity: 0.15;
    filter: blur(80px);
}
