:root {
    --bg: #04060c;
    --panel: rgba(255, 255, 255, 0.04);
    --panel-strong: rgba(255, 255, 255, 0.08);
    --border: rgba(255, 255, 255, 0.07);
    --text: #f5f7fb;
    --muted: #9ba3b4;
    --primary: #38f2c0;
    --primary-strong: #15d0f0;
    --accent: #7c5dfa;
    --danger: #f47b67;
    --success: #5af08f;
    --warning: #f7d154;
    --gradient: linear-gradient(120deg, #1ac5ff 0%, #7c5dfa 50%, #4af3c3 100%);
    --glass: rgba(255, 255, 255, 0.06);
    --font-heading: "Space Grotesk", "Manrope", system-ui, -apple-system, sans-serif;
    --font-body: "Manrope", "Space Grotesk", system-ui, -apple-system, sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.svg-sprite {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
    visibility: hidden;
}

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

img {
    max-width: 100%;
    display: block;
}

.container {
    width: min(1160px, 92vw);
    margin: 0 auto;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    letter-spacing: -0.02em;
}

p {
    color: var(--muted);
}

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

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

.section {
    padding: 96px 0;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.78rem;
    color: var(--muted);
    margin-bottom: 14px;
}

.lead {
    font-size: 1.08rem;
    max-width: 620px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 20px;
    border-radius: 999px;
    font-weight: 700;
    letter-spacing: 0.01em;
    border: 1px solid transparent;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border 0.2s ease;
}

.btn.primary {
    background: linear-gradient(120deg, #1ac5ff, #4af3c3);
    color: #04121f;
    box-shadow: 0 18px 60px rgba(58, 242, 205, 0.25);
}

.btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 24px 80px rgba(58, 242, 205, 0.35);
}

.btn.soft {
    background: var(--panel);
    border-color: var(--border);
    color: var(--text);
}

.btn.soft:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
}

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

.btn.full {
    width: 100%;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: 999px;
    color: var(--text);
    font-weight: 600;
}

.pill.ghost {
    background: rgba(255, 255, 255, 0.03);
}

.pill.highlight {
    background: rgba(124, 93, 250, 0.16);
    border-color: rgba(124, 93, 250, 0.4);
}

.chips {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 18px;
}

.chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.02);
    color: var(--text);
    font-weight: 600;
}

.icon {
    width: 18px;
    height: 18px;
    color: var(--primary);
}

.icon-circle {
    width: 44px;
    height: 44px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(58, 242, 205, 0.12);
    color: var(--primary);
}

.icon-circle.gradient {
    background: linear-gradient(140deg, rgba(124, 93, 250, 0.2), rgba(26, 197, 255, 0.2));
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--muted);
    display: inline-flex;
}

.dot.live { background: var(--success); box-shadow: 0 0 12px var(--success); }
.dot.success { background: var(--success); }
.dot.warning { background: var(--warning); }
.dot.info { background: var(--primary); }

.section-head {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    align-items: flex-start;
    margin-bottom: 36px;
}

.section-head.center {
    flex-direction: column;
    text-align: center;
    align-items: center;
}

.badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.section-head h2 {
    font-size: clamp(1.9rem, 4vw, 2.5rem);
}

/* Header */
.header {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 20;
    backdrop-filter: blur(14px);
    background: rgba(4, 6, 12, 0.7);
    border-bottom: 1px solid var(--border);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
}

.brand-mark {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--gradient);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #04121f;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.brand-text small {
    color: var(--muted);
    font-weight: 600;
    font-size: 0.82rem;
}

.nav {
    display: flex;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav a {
    color: var(--muted);
    font-weight: 600;
    padding: 6px 10px;
    border-radius: 10px;
    transition: color 0.2s ease, background 0.2s ease;
}

.nav a:hover {
    color: var(--text);
    background: rgba(255, 255, 255, 0.04);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 22px;
    height: 2px;
    background: var(--text);
}

/* Hero */
.hero {
    position: relative;
    overflow: hidden;
    padding: 140px 0 100px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 120px 120px;
    mask-image: radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.8), transparent 60%);
    opacity: 0.6;
}

.orb {
    position: absolute;
    border-radius: 999px;
    filter: blur(70px);
    opacity: 0.9;
    animation: float 10s ease-in-out infinite;
}

.orb-1 { width: 320px; height: 320px; background: rgba(60, 244, 196, 0.35); top: 4%; left: 6%; }
.orb-2 { width: 280px; height: 280px; background: rgba(26, 197, 255, 0.35); bottom: 12%; right: 6%; animation-delay: 1.2s; }
.orb-3 { width: 200px; height: 200px; background: rgba(124, 93, 250, 0.35); bottom: 30%; left: 45%; animation-delay: 2.1s; }

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 60px;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    align-items: center;
}

.hero-copy h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin: 14px 0 16px;
}

.hero-actions {
    display: flex;
    gap: 12px;
    margin: 18px 0;
    flex-wrap: wrap;
}

.hero-visual {
    position: relative;
}

.hero-visual .floating-card {
    right: -12px;
    top: 46px;
}

.hero-visual .floating-card.card-2 {
    left: -12px;
    bottom: 0;
}

.hud {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 20px;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.45);
    overflow: hidden;
}

.hud::after {
    content: "";
    position: absolute;
    inset: -60% 40% auto auto;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(74, 243, 195, 0.12), transparent 55%);
    transform: rotate(14deg);
}

.hud-header, .hud-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.hud-header p {
    font-size: 0.82rem;
    color: var(--muted);
}

.status {
    padding: 8px 12px;
    border-radius: 12px;
    border: 1px solid var(--border);
    font-weight: 700;
    font-size: 0.9rem;
}

.status.success {
    border-color: rgba(90, 240, 143, 0.4);
    color: var(--success);
}

.hud-body {
    margin: 14px 0;
    display: grid;
    gap: 16px;
}

.hud-metrics {
    display: grid;
    gap: 12px;
}

.metric {
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 14px;
}

.metric p {
    font-size: 0.9rem;
    color: var(--muted);
}

.value {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 800;
    font-size: 1.1rem;
}

.badge {
    padding: 4px 8px;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    border: 1px solid var(--border);
}

.badge.positive { color: var(--success); border-color: rgba(90, 240, 143, 0.5); }
.badge.neutral { color: var(--primary); border-color: rgba(26, 197, 255, 0.5); }

.bar {
    height: 6px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 999px;
    overflow: hidden;
    margin-top: 10px;
}

.bar span {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, #1ac5ff, #4af3c3);
    border-radius: 999px;
}

.bar.alt span {
    background: linear-gradient(90deg, #7c5dfa, #1ac5ff);
}

.hud-stream {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 12px;
}

.stream-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 14px;
}

.stream-card.alt {
    background: rgba(124, 93, 250, 0.06);
    border-color: rgba(124, 93, 250, 0.3);
}

.stream-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.stream-body {
    margin-top: 10px;
    display: grid;
    gap: 8px;
}

.line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 600;
}

.line.success {
    color: var(--success);
}

.mini {
    color: var(--muted);
    font-size: 0.88rem;
}

.alert-list {
    list-style: none;
    display: grid;
    gap: 8px;
    margin-top: 12px;
}

.hud-footer {
    border-top: 1px solid var(--border);
    padding-top: 12px;
}

.foot strong {
    display: block;
    margin-top: 4px;
}

.floating-card {
    position: absolute;
    right: -30px;
    top: 20px;
    width: 220px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 14px;
    backdrop-filter: blur(10px);
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.4);
    animation: float 9s ease-in-out infinite;
}

.floating-card.card-2 {
    left: -30px;
    bottom: 10px;
    right: auto;
    top: auto;
    animation-duration: 11s;
}

.cards-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.card {
    background: linear-gradient(150deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 18px;
    position: relative;
    overflow: hidden;
}

.card::after {
    content: "";
    position: absolute;
    inset: -30% 60% auto auto;
    width: 140px;
    height: 140px;
    background: radial-gradient(circle, rgba(26, 197, 255, 0.08), transparent 70%);
}

.card-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: rgba(74, 243, 195, 0.12);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.card h3 {
    margin-bottom: 8px;
}

.tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 12px;
}

.tag {
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid var(--border);
    color: var(--text);
    font-weight: 600;
    font-size: 0.88rem;
}

.process-cards .card-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.process-cards .card-top h3 {
    margin-bottom: 0;
}

.process-cards .card-icon {
    margin-bottom: 0;
}

.process-cards .step-badge {
    width: 44px;
    height: 44px;
}

.process-cards .item-meta {
    margin-top: 8px;
}

@media (max-width: 960px) {
    .process-cards .step-badge {
        width: 40px;
        height: 40px;
    }
}

/* Pipeline */
.pipeline {
    background: radial-gradient(circle at 20% 20%, rgba(26, 197, 255, 0.08), transparent 40%), radial-gradient(circle at 80% 40%, rgba(124, 93, 250, 0.08), transparent 35%);
}

.pipeline-grid {
    display: grid;
    gap: 48px;
    grid-template-columns: minmax(360px, 1fr) minmax(560px, 1.2fr);
    align-items: start;
}

.stacked {
    display: grid;
    gap: 10px;
    margin-top: 14px;
}

.stack-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.timeline {
    position: relative;
}

.pipeline-steps {
    position: relative;
    display: grid;
    gap: 22px;
}

.pipeline-item {
    position: relative;
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 18px;
    align-items: start;
    padding: 10px 0 12px;
}

.pipeline-item::after {
    content: "";
    position: absolute;
    left: 28px;
    top: 60px;
    bottom: -12px;
    width: 1px;
    background: var(--border);
    z-index: -1;
}

.pipeline-item:last-child::after {
    display: none;
}

.step-badge {
    width: 56px;
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: rgba(26, 197, 255, 0.14);
    border: 2px solid rgba(26, 197, 255, 0.45);
    box-shadow: 0 12px 40px rgba(26, 197, 255, 0.15);
    font-weight: 800;
    color: var(--text);
    letter-spacing: 0.08em;
}

.item-body h4 {
    margin: 2px 0 6px;
}

.item-body p {
    margin: 0 0 6px;
}

.item-meta {
    color: var(--muted);
    font-weight: 700;
    letter-spacing: 0.01em;
    font-size: 0.9rem;
}

/* Plans */
.plans {
    position: relative;
}

.plan-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.plan-card {
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: relative;
    overflow: hidden;
}

.plan-card.featured {
    background: linear-gradient(150deg, rgba(26, 197, 255, 0.12), rgba(124, 93, 250, 0.18));
    border-color: rgba(26, 197, 255, 0.3);
    box-shadow: 0 24px 80px rgba(26, 197, 255, 0.2);
}

.plan-top h3 {
    font-size: 1.2rem;
}

.price {
    font-weight: 800;
    font-size: 1.6rem;
    margin-top: 6px;
    display: flex;
    gap: 6px;
    align-items: baseline;
}

.plan-features {
    list-style: none;
    display: grid;
    gap: 10px;
}

.faq {
    position: relative;
}

.faq-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    align-items: start;
}

.faq-list {
    display: grid;
    gap: 12px;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: 14px;
    background: var(--panel);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 14px;
    background: none;
    border: none;
    color: var(--text);
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 14px;
    transition: max-height 0.25s ease, padding 0.25s ease;
}

.faq-item.active .faq-answer {
    max-height: 180px;
    padding: 0 14px 14px;
}

.faq-item .chevron {
    font-size: 1.2rem;
    color: var(--muted);
}

/* CTA */
.cta {
    padding-bottom: 120px;
}

.cta-card {
    background: linear-gradient(130deg, rgba(26, 197, 255, 0.14), rgba(74, 243, 195, 0.14));
    border: 1px solid rgba(26, 197, 255, 0.26);
    border-radius: 20px;
    padding: 28px;
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    align-items: center;
    box-shadow: 0 24px 90px rgba(26, 197, 255, 0.2);
}

.cta-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    border-top: 1px solid var(--border);
    padding: 32px 0 22px;
    background: rgba(255, 255, 255, 0.02);
}

.footer-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    align-items: start;
}

.footer-links {
    list-style: none;
    display: grid;
    gap: 8px;
    margin-top: 8px;
}

.footer-bottom {
    padding-top: 18px;
    text-align: center;
    color: var(--muted);
}

.social-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.social-row a {
    color: var(--primary);
}

/* Utility */
.tilt-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* Responsive */
@media (max-width: 960px) {
    .header-content {
        flex-wrap: wrap;
    }

    .nav {
        display: none;
        width: 100%;
        margin-top: 10px;
    }

    .nav.open {
        display: block;
    }

    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        padding: 12px 0;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .header-actions .btn:not(.primary) {
        display: none;
    }

    .hero {
        padding-top: 120px;
    }

    .floating-card {
        position: relative;
        inset: auto;
        margin-top: 12px;
    }

    .section-head {
        flex-direction: column;
    }

    .pipeline-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .pipeline-item {
        grid-template-columns: 56px 1fr;
        gap: 14px;
    }

    .step-badge {
        width: 48px;
        height: 48px;
        box-shadow: 0 0 0 8px rgba(26, 197, 255, 0.08);
        font-size: 0.82rem;
    }

    .pipeline-item::after {
        left: 24px;
        top: 48px;
        bottom: -16px;
    }
}

@media (max-width: 640px) {
    .chips {
        flex-direction: column;
    }

    .cta-card {
        grid-template-columns: 1fr;
    }
    .pipeline-grid {
        gap: 24px;
    }
    .pipeline-item {
        grid-template-columns: 52px 1fr;
        padding: 8px 0 10px;
    }
}
