:root {
    --bg: #07111f;
    --bg-soft: #0d1b2e;
    --bg-card: rgba(255, 255, 255, 0.075);
    --bg-card-strong: rgba(255, 255, 255, 0.11);
    --text: #f8fafc;
    --muted: #a8b3c7;
    --line: rgba(255, 255, 255, 0.13);
    --primary: #45d7ff;
    --primary-strong: #8b5cf6;
    --accent: #a855f7;
    --accent-strong: #7c3aed;
    --accent-soft: #d8b4fe;
    --warning: #ffd166;
    --danger: #ff7b93;
    --shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
    --radius-lg: 28px;
    --radius-md: 20px;
    --radius-sm: 14px;
    --max: none;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--text);
    background: radial-gradient(circle at top left, rgba(69, 215, 255, 0.20), transparent 34rem), radial-gradient(circle at top right, rgba(139, 92, 246, 0.24), transparent 36rem), radial-gradient(circle at 50% 36rem, rgba(168, 85, 247, 0.12), transparent 32rem), var(--bg);
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

.page-shell {
    min-height: 100vh;
}

.container {
    width: 100%;
    max-width: none;
    margin: 0 auto;
    padding-left: clamp(24px, 5vw, 96px);
    padding-right: clamp(24px, 5vw, 96px);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(7, 17, 31, 0.76);
    backdrop-filter: blur(18px);
}

.nav {
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    max-width: none;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    letter-spacing: -0.04em;
    font-size: 1.35rem;
}

.brand-image-only {
    width: 190px;
    height: 54px;
}

    .brand-image-only img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: contain;
        object-position: left center;
        filter: drop-shadow(0 8px 16px rgba(34, 199, 255, 0.18));
    }

.nav-links {
    display: flex;
    align-items: center;
    gap: 26px;
    color: var(--muted);
    font-size: 0.94rem;
    font-weight: 600;
}

    .nav-links a:hover {
        color: var(--text);
    }

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 18px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 0.94rem;
    border: 1px solid transparent;
    transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
    cursor: pointer;
    white-space: nowrap;
}

    .btn:hover {
        transform: translateY(-2px);
    }

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-strong));
    color: #04111d;
    box-shadow: none;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text);
    border-color: rgba(255, 255, 255, 0.16);
}

    .btn-secondary:hover {
        background: rgba(255, 255, 255, 0.13);
    }

.hero {
    padding: 96px 0 86px;
    position: relative;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(560px, 0.85fr);
    gap: clamp(48px, 6vw, 110px);
    align-items: center;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border: 1px solid rgba(69, 215, 255, 0.26);
    background: rgba(69, 215, 255, 0.08);
    border-radius: 999px;
    color: #c9f5ff;
    font-size: 0.86rem;
    font-weight: 800;
    margin-bottom: 24px;
}

.eyebrow-dot {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: var(--accent);
    box-shadow: 0 0 0 7px rgba(168, 85, 247, 0.16);
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    margin-bottom: 22px;
    font-size: clamp(2.75rem, 5.4vw, 5rem);
    line-height: 0.98;
    letter-spacing: -0.075em;
}

.gradient-text {
    background: linear-gradient(135deg, #ffffff, #a6f2ff 42%, #9bffdc 86%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-copy {
    color: var(--muted);
    font-size: clamp(1.05rem, 1.35vw, 1.32rem);
    line-height: 1.7;
    max-width: 720px;
    margin-bottom: 30px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 34px;
}

.hero-proof {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    max-width: 640px;
}

.proof-item {
    padding: 14px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.055);
    border-radius: var(--radius-sm);
}

    .proof-item strong {
        display: block;
        font-size: 1.03rem;
        margin-bottom: 4px;
    }

    .proof-item span {
        color: var(--muted);
        font-size: 0.84rem;
        line-height: 1.45;
    }

.product-stage {
    position: relative;
    min-height: 620px;
}

.orb {
    position: absolute;
    border-radius: 999px;
    filter: blur(1px);
    opacity: 0.72;
}

    .orb.one {
        width: 160px;
        height: 160px;
        right: 8%;
        top: 2%;
        background: radial-gradient(circle, rgba(69, 215, 255, 0.38), transparent 70%);
        animation: cf-orb-float-one 9s ease-in-out infinite;
    }

    .orb.two {
        width: 220px;
        height: 220px;
        left: 2%;
        bottom: 8%;
        background: radial-gradient(circle, rgba(111, 124, 255, 0.36), transparent 70%);
        animation: cf-orb-float-two 11s ease-in-out infinite;
    }

.dashboard-card {
    position: relative;
    border-radius: 34px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.055));
    border: 1px solid rgba(255, 255, 255, 0.17);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.dashboard-main {
    width: min(100%, 680px);
    margin-left: auto;
    padding: 18px;
}

.mock-window {
    background: rgba(5, 13, 25, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    overflow: hidden;
}

.window-topbar {
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.window-dots {
    display: flex;
    gap: 7px;
}

    .window-dots span {
        width: 10px;
        height: 10px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.26);
    }

.window-title {
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 800;
}

.mock-body {
    padding: 22px;
}

.mock-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 20px;
}

    .mock-header h3 {
        margin-bottom: 6px;
        font-size: 1.22rem;
        letter-spacing: -0.03em;
    }

    .mock-header p {
        color: var(--muted);
        font-size: 0.9rem;
        margin-bottom: 0;
    }

.status-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(168, 85, 247, 0.12);
    color: #f3e8ff;
    font-size: 0.78rem;
    font-weight: 800;
    border: 1px solid rgba(168, 85, 247, 0.24);
}

    .status-pill::before {
        content: "";
        width: 7px;
        height: 7px;
        border-radius: 999px;
        background: var(--accent);
    }

    .quote-table {
        display: grid;
        gap: 10px;
    }

    .quote-row {
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 16px;
        align-items: center;
        padding: 14px;
        border-radius: 18px;
        background: rgba(255, 255, 255, 0.065);
        border: 1px solid rgba(255, 255, 255, 0.08);
    }

        .quote-row strong {
            display: block;
            margin-bottom: 4px;
            font-size: 0.94rem;
        }

        .quote-row span {
            color: var(--muted);
            font-size: 0.82rem;
        }

    .mini-btn {
        border: 0;
        border-radius: 999px;
        padding: 10px 13px;
        background: linear-gradient(135deg, var(--accent), var(--primary));
        color: #06121f;
        font-weight: 900;
        font-size: 0.78rem;
        white-space: nowrap;
    }

    .floating-card {
        position: absolute;
        z-index: 2;
        width: min(330px, 86vw);
        border-radius: 24px;
        border: 1px solid rgba(255, 255, 255, 0.16);
        background: rgba(10, 23, 39, 0.92);
        backdrop-filter: blur(18px);
        box-shadow: 0 22px 58px rgba(0, 0, 0, 0.42);
    }

    .automation-card {
        left: -5px;
        bottom: 34px;
        padding: 18px;
    }

    .message-card {
        right: -5px;
        top: 64px;
        padding: 18px;
    }

    .card-kicker {
        color: var(--primary);
        font-weight: 900;
        font-size: 0.75rem;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        margin-bottom: 10px;
    }

    .floating-card h3 {
        font-size: 1.06rem;
        margin-bottom: 12px;
        letter-spacing: -0.035em;
    }

    .flow-line {
        display: grid;
        gap: 9px;
        margin-bottom: 12px;
    }

        .flow-line div {
            display: flex;
            justify-content: space-between;
            gap: 14px;
            color: var(--muted);
            font-size: 0.84rem;
        }

        .flow-line strong {
            color: var(--text);
        }

.message-bubble {
    padding: 14px;
    border-radius: 18px 18px 5px 18px;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.20), rgba(69, 215, 255, 0.11));
    border: 1px solid rgba(168, 85, 247, 0.22);
    color: #f8f1ff;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 12px;
}

.delivered {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 7px;
    color: #e9d5ff;
    font-size: 0.8rem;
    font-weight: 800;
}

    .app-preview-window {
        width: min(100%, 820px);
        transform-style: preserve-3d;
        transition: transform 220ms ease, border-color 220ms ease;
        will-change: transform;
    }

        .app-preview-window.cf-tilt-active {
            border-color: rgba(127, 231, 255, 0.26);
        }

    .app-preview-shell {
        display: grid;
        grid-template-columns: 190px minmax(0, 1fr);
        min-height: 480px;
        background: rgba(5, 13, 25, 0.72);
    }

    .app-preview-sidebar {
        padding: 18px 14px;
        border-right: 1px solid rgba(255, 255, 255, 0.09);
        background: linear-gradient(180deg, rgba(15, 111, 255, 0.12), rgba(8, 26, 57, 0.55)), rgba(255, 255, 255, 0.035);
    }

    .app-preview-logo {
        display: flex;
        align-items: center;
        margin-bottom: 18px;
        padding: 0 4px;
    }

    .app-preview-logo-image-only {
        width: 150px;
        height: 42px;
    }

        .app-preview-logo-image-only img {
            width: 100%;
            height: 100%;
            display: block;
            object-fit: contain;
            object-position: left center;
            filter: drop-shadow(0 7px 14px rgba(34, 199, 255, 0.18));
        }

    .app-preview-menu {
        display: grid;
        gap: 7px;
    }

    .app-preview-menu-item {
        display: grid;
        grid-template-columns: 30px minmax(0, 1fr);
        align-items: center;
        gap: 9px;
        padding: 9px;
        border-radius: 13px;
        color: rgba(226, 232, 240, 0.74);
        font-size: 0.78rem;
        font-weight: 800;
    }

        .app-preview-menu-item span {
            width: 30px;
            height: 30px;
            display: grid;
            place-items: center;
            border-radius: 10px;
            background: rgba(255, 255, 255, 0.08);
            color: #c9f5ff;
        }

            .app-preview-menu-item span svg {
                width: 16px;
                height: 16px;
                display: block;
                fill: none;
                stroke: currentColor;
            }

        .app-preview-menu-item.active,
        .app-preview-menu-item.selected {
            background: rgba(34, 199, 255, 0.12);
            color: #ffffff;
            border: 1px solid rgba(127, 231, 255, 0.12);
        }

            .app-preview-menu-item.active span,
            .app-preview-menu-item.selected span {
                background: linear-gradient(135deg, #0f6fff, #22c7ff);
                color: #ffffff;
                box-shadow: 0 10px 22px rgba(34, 199, 255, 0.18);
            }

    .app-preview-main {
        padding: 22px;
        min-width: 0;
    }

    .app-preview-main-header {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        gap: 18px;
        margin-bottom: 16px;
    }

    .app-preview-kicker {
        display: block;
        color: #7fe7ff;
        font-size: 0.72rem;
        font-weight: 900;
        text-transform: uppercase;
        letter-spacing: 0.13em;
        margin-bottom: 6px;
    }

    .app-preview-main-header h3 {
        margin: 0 0 6px;
        color: #ffffff;
        font-size: 1.28rem;
        letter-spacing: -0.04em;
    }

    .app-preview-main-header p {
        color: #a8b3c7;
        font-size: 0.88rem;
        line-height: 1.5;
        margin: 0;
        max-width: 410px;
    }

    .workflow-summary-grid {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 10px;
        margin-bottom: 14px;
    }

    .workflow-summary-card {
        padding: 12px;
        border-radius: 16px;
        background: rgba(255, 255, 255, 0.075);
        border: 1px solid rgba(255, 255, 255, 0.08);
        animation: cf-soft-rise 760ms ease both;
    }

        .workflow-summary-card strong {
            display: block;
            color: #ffffff;
            font-size: 1.35rem;
            letter-spacing: -0.05em;
            margin-bottom: 3px;
        }

        .workflow-summary-card span {
            color: #a8b3c7;
            font-size: 0.74rem;
            font-weight: 750;
        }

    .workflow-body-card {
        padding: 16px;
        border-radius: 20px;
        background: rgba(255, 255, 255, 0.065);
        border: 1px solid rgba(255, 255, 255, 0.09);
    }

    .workflow-body-top {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        gap: 14px;
        margin-bottom: 14px;
    }

        .workflow-body-top h4 {
            margin: 0 0 5px;
            color: #ffffff;
            font-size: 1rem;
            letter-spacing: -0.03em;
        }

        .workflow-body-top p {
            margin: 0;
            color: #a8b3c7;
            font-size: 0.78rem;
            line-height: 1.45;
        }

    .workflow-list-preview {
        display: grid;
        gap: 9px;
    }

    .workflow-list-row {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: center;
        gap: 12px;
        padding: 12px;
        border-radius: 15px;
        background: rgba(7, 17, 31, 0.72);
        border: 1px solid rgba(255, 255, 255, 0.07);
        position: relative;
        overflow: hidden;
    }

        .workflow-list-row strong {
            display: block;
            color: #ffffff;
            font-size: 0.84rem;
            margin-bottom: 4px;
        }

        .workflow-list-row span {
            display: block;
            color: #a8b3c7;
            font-size: 0.74rem;
            line-height: 1.35;
        }

        .workflow-list-row em {
            font-style: normal;
            padding: 7px 9px;
            border-radius: 999px;
            background: rgba(168, 85, 247, 0.14);
            color: #f3e8ff;
            font-size: 0.7rem;
            font-weight: 900;
        }

    .client-template-card {
        right: -58px;
        top: -60px;
        width: 330px;
        padding: 18px;
        transform-style: preserve-3d;
        transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease, opacity 620ms ease, translate 620ms ease;
        will-change: transform;
        animation: cf-message-enter 780ms ease 360ms both;
    }

        .client-template-card.cf-tilt-active {
            border-color: rgba(127, 231, 255, 0.28);
            box-shadow: 0 28px 70px rgba(0, 0, 0, 0.38), 0 0 0 1px rgba(127, 231, 255, 0.08);
        }

.template-message {
    padding: 14px;
    border-radius: 17px;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.20), rgba(34, 199, 255, 0.10));
    border: 1px solid rgba(168, 85, 247, 0.22);
}

        .template-message strong {
            display: block;
            color: #ffffff;
            font-size: 0.86rem;
            margin-bottom: 8px;
        }

        .template-message p {
            margin: 0;
            color: #eafff7;
            font-size: 0.84rem;
            line-height: 1.52;
        }

    .template-footer {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 12px;
        margin-top: 12px;
        color: #a8b3c7;
        font-size: 0.74rem;
        font-weight: 800;
    }

        .template-footer strong {
            color: #e9d5ff;
        }

    .section {
        padding: 86px 0;
    }

    .section-header {
        max-width: 920px;
        margin: 0 auto 42px;
        text-align: center;
    }

    .section-label {
        color: var(--primary);
        font-size: 0.82rem;
        text-transform: uppercase;
        letter-spacing: 0.13em;
        font-weight: 900;
        margin-bottom: 12px;
    }

    h2 {
        font-size: clamp(2.1rem, 4vw, 3.55rem);
        line-height: 1.05;
        letter-spacing: -0.065em;
        margin-bottom: 16px;
    }

    .section-header p,
    .section-intro {
        color: var(--muted);
        font-size: 1.05rem;
        line-height: 1.7;
        margin-bottom: 0;
    }

    .pain-grid,
    .feature-grid,
    .use-case-grid,
    .channel-grid {
        display: grid;
        gap: 18px;
    }

    .pain-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .feature-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .use-case-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .channel-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .card {
        padding: 24px;
        border-radius: var(--radius-md);
        background: var(--bg-card);
        border: 1px solid var(--line);
        box-shadow: 0 14px 44px rgba(0, 0, 0, 0.15);
    }

        .card:hover {
            background: var(--bg-card-strong);
        }

    .icon-box {
        width: 46px;
        height: 46px;
        border-radius: 16px;
        display: grid;
        place-items: center;
        margin-bottom: 18px;
        background: rgba(69, 215, 255, 0.11);
        border: 1px solid rgba(69, 215, 255, 0.16);
        color: #c9f5ff;
    }

        .icon-box svg {
            width: 22px;
            height: 22px;
            display: block;
            fill: none;
            stroke: currentColor;
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

    .card h3 {
        font-size: 1.15rem;
        margin-bottom: 10px;
        letter-spacing: -0.035em;
    }

    .card p {
        color: var(--muted);
        line-height: 1.65;
        margin-bottom: 0;
        font-size: 0.95rem;
    }

    .workflow-section {
        padding: 92px 0;
    }

    .workflow-panel {
        border-radius: var(--radius-lg);
        border: 1px solid rgba(255, 255, 255, 0.14);
        background: linear-gradient(135deg, rgba(69, 215, 255, 0.1), rgba(111, 124, 255, 0.08)), rgba(255, 255, 255, 0.055);
        box-shadow: var(--shadow);
        overflow: hidden;
        display: grid;
        grid-template-columns: 0.88fr 1.12fr;
        align-items: stretch;
    }

    .workflow-copy {
        padding: 44px;
    }

        .workflow-copy p {
            color: var(--muted);
            line-height: 1.7;
            font-size: 1rem;
            margin-bottom: 24px;
        }

    .workflow-list {
        display: grid;
        gap: 13px;
        padding: 0;
        margin: 0;
        list-style: none;
    }

        .workflow-list li {
            display: flex;
            gap: 10px;
            color: #dbeafe;
            font-weight: 700;
            line-height: 1.45;
        }

    .check {
        flex: 0 0 auto;
        width: 22px;
        height: 22px;
        border-radius: 999px;
        display: inline-grid;
        place-items: center;
        background: rgba(168, 85, 247, 0.14);
        color: #f3e8ff;
        font-size: 0.82rem;
        font-weight: 900;
    }

    .workflow-steps {
        padding: 34px;
        display: grid;
        gap: 14px;
        background: rgba(2, 7, 16, 0.24);
    }

    .step-card {
        display: grid;
        grid-template-columns: auto 1fr;
        gap: 16px;
        padding: 18px;
        border-radius: 20px;
        background: rgba(255, 255, 255, 0.07);
        border: 1px solid rgba(255, 255, 255, 0.09);
    }

    .step-number {
        width: 34px;
        height: 34px;
        border-radius: 13px;
        display: grid;
        place-items: center;
        background: linear-gradient(135deg, var(--primary), var(--primary-strong));
        color: #06121f;
        font-weight: 900;
    }

    .step-card strong {
        display: block;
        margin-bottom: 5px;
        letter-spacing: -0.02em;
    }

    .step-card span {
        display: block;
        color: var(--muted);
        line-height: 1.55;
        font-size: 0.92rem;
    }

    .use-case-card {
        padding: 28px;
        border-radius: var(--radius-md);
        background: rgba(255, 255, 255, 0.065);
        border: 1px solid var(--line);
    }

    .use-case-top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        margin-bottom: 18px;
    }

    .tag {
        display: inline-flex;
        padding: 7px 10px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.13);
        color: #dce7fb;
        font-size: 0.78rem;
        font-weight: 900;
    }

    .use-case-card h3 {
        font-size: 1.25rem;
        margin-bottom: 10px;
        letter-spacing: -0.04em;
    }

    .use-case-card p {
        color: var(--muted);
        line-height: 1.68;
        margin-bottom: 18px;
    }

    .mini-flow {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        align-items: center;
        color: var(--muted);
        font-size: 0.85rem;
        font-weight: 700;
    }

        .mini-flow span:not(.arrow) {
            padding: 8px 10px;
            border-radius: 12px;
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(255, 255, 255, 0.08);
        }

    .arrow {
        color: var(--primary);
    }

    .channels-band {
        padding: 28px;
        border-radius: var(--radius-lg);
        background: rgba(255, 255, 255, 0.055);
        border: 1px solid var(--line);
    }

    .channel-card {
        min-height: 150px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

        .channel-card strong {
            font-size: 1.05rem;
            letter-spacing: -0.03em;
        }

        .channel-card span {
            color: var(--muted);
            font-size: 0.9rem;
            line-height: 1.5;
        }



    .ecosystem-section {
        padding: 120px 0 116px;
        position: relative;
        overflow: hidden;
        scroll-margin-top: 96px;
    }

    .ecosystem-header {
        margin-bottom: 42px;
    }

.ecosystem-stage-v2 {
    position: relative;
    border-radius: 38px;
    border: 1px solid rgba(69, 215, 255, 0.13);
    background: radial-gradient(circle at 50% 48%, rgba(69, 215, 255, 0.18), transparent 28rem), radial-gradient(circle at 18% 30%, rgba(111, 124, 255, 0.14), transparent 24rem), radial-gradient(circle at 84% 74%, rgba(168, 85, 247, 0.10), transparent 24rem), linear-gradient(135deg, rgba(6, 17, 31, 0.92), rgba(8, 22, 42, 0.92));
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(340px, 0.92fr) minmax(420px, 0.95fr) minmax(340px, 0.92fr);
    grid-template-areas:
        "sources core automations"
        "custom core reports"
        "channels core team";
    gap: 24px;
    align-items: stretch;
    padding: clamp(34px, 3.5vw, 64px);
}

        .ecosystem-stage-v2::before {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(rgba(127, 231, 255, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(127, 231, 255, 0.035) 1px, transparent 1px);
            background-size: 62px 62px;
            mask-image: radial-gradient(circle at center, black, transparent 74%);
            opacity: 0.42;
        }

        .ecosystem-stage-v2::after {
            content: "";
            position: absolute;
            inset: 28px;
            border-radius: 30px;
            border: 1px solid rgba(255, 255, 255, 0.055);
            pointer-events: none;
        }

    .ecosystem-grid-lines {
        position: absolute;
        inset: 0;
        pointer-events: none;
        background: linear-gradient(90deg, transparent 0 49.9%, rgba(69, 215, 255, 0.10) 50%, transparent 50.1%), linear-gradient(0deg, transparent 0 49.9%, rgba(69, 215, 255, 0.07) 50%, transparent 50.1%);
        opacity: 0.36;
    }

    .ecosystem-glow {
        position: absolute;
        border-radius: 999px;
        filter: blur(30px);
        opacity: 0.62;
        pointer-events: none;
    }

    .ecosystem-glow-one {
        width: 280px;
        height: 280px;
        top: 16%;
        left: 35%;
        background: rgba(69, 215, 255, 0.13);
        animation: cf-orb-float-one 10s ease-in-out infinite;
    }

.ecosystem-glow-two {
    width: 320px;
    height: 320px;
    right: 20%;
    bottom: 10%;
    background: rgba(168, 85, 247, 0.12);
    animation: cf-orb-float-two 12s ease-in-out infinite;
}

    .ecosystem-core-card {
        grid-area: core;
        position: relative;
        z-index: 5;
        align-self: center;
        min-height: 440px;
        width: 100%;
        padding: 34px;
        border-radius: 34px;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.055)), rgba(7, 17, 31, 0.72);
        border: 1px solid rgba(127, 231, 255, 0.18);
        box-shadow: 0 24px 70px rgba(0, 0, 0, 0.30), inset 0 1px 0 rgba(255, 255, 255, 0.08);
        backdrop-filter: blur(22px);
        text-align: center;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        justify-content: center;
        animation: cf-core-breathe 5.8s ease-in-out infinite;
    }

        .ecosystem-core-card::before {
            content: "";
            position: absolute;
            inset: -90px;
            background: conic-gradient( from 120deg, transparent, rgba(69, 215, 255, 0.16), transparent, rgba(49, 230, 167, 0.10), transparent );
            animation: ecosystem-spin 18s linear infinite;
            opacity: 0.78;
        }

        .ecosystem-core-card::after {
            content: "";
            position: absolute;
            inset: 18px;
            border-radius: 26px;
            border: 1px solid rgba(255, 255, 255, 0.06);
            pointer-events: none;
        }

        .ecosystem-core-card > * {
            position: relative;
            z-index: 2;
        }

    .ecosystem-core-orbit {
        position: absolute;
        left: 50%;
        top: 50%;
        border: 1px solid rgba(127, 231, 255, 0.14);
        border-radius: 999px;
        transform: translate(-50%, -50%);
        z-index: 1;
    }

    .ecosystem-core-orbit-one {
        width: 310px;
        height: 310px;
    }

    .ecosystem-core-orbit-two {
        width: 220px;
        height: 220px;
    }

    .ecosystem-core-mark {
        width: 158px;
        height: 56px;
        margin: 0 auto 20px;
        display: grid;
        place-items: center;
        overflow: visible;
        background: transparent;
        box-shadow: none;
        border-radius: 0;
    }

        .ecosystem-core-mark img {
            width: 100%;
            height: 100%;
            display: block;
            object-fit: contain;
            filter: drop-shadow(0 14px 24px rgba(34, 199, 255, 0.20));
        }

    .ecosystem-core-kicker {
        color: #7fe7ff;
        font-size: 0.74rem;
        font-weight: 900;
        text-transform: uppercase;
        letter-spacing: 0.14em;
        margin-bottom: 8px;
    }

    .ecosystem-core-copy h3 {
        margin: 0 0 10px;
        color: #ffffff;
        font-size: clamp(1.45rem, 2vw, 1.9rem);
        letter-spacing: -0.055em;
    }

    .ecosystem-core-copy p {
        margin: 0 auto;
        max-width: 330px;
        color: rgba(226, 232, 240, 0.78);
        font-size: 0.96rem;
        line-height: 1.58;
    }

    .ecosystem-core-pills {
        display: flex;
        justify-content: center;
        gap: 8px;
        flex-wrap: wrap;
        margin-top: 20px;
    }

        .ecosystem-core-pills span {
            padding: 7px 11px;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.075);
            border: 1px solid rgba(255, 255, 255, 0.11);
            color: rgba(255, 255, 255, 0.86);
            font-size: 0.74rem;
            font-weight: 800;
        }

    .ecosystem-card {
        position: relative;
        z-index: 6;
        width: 100%;
        min-height: 270px;
        border-radius: 24px;
        padding: 18px;
        overflow: hidden;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.052)), rgba(9, 23, 42, 0.76);
        border: 1px solid rgba(127, 231, 255, 0.13);
        box-shadow: 0 18px 50px rgba(0, 0, 0, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.07);
        backdrop-filter: blur(20px);
    }

        .ecosystem-card::before {
            content: "";
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at 12% 15%, rgba(69, 215, 255, 0.12), transparent 11rem), linear-gradient(135deg, rgba(255, 255, 255, 0.04), transparent 44%);
            opacity: 0.9;
            pointer-events: none;
        }

        .ecosystem-card > * {
            position: relative;
            z-index: 1;
        }

    .ecosystem-card-title-row {
        min-height: 76px;
        display: grid;
        grid-template-columns: auto minmax(0, 1fr);
        gap: 12px;
        align-items: start;
    }

    .ecosystem-card-icon {
        width: 42px;
        height: 42px;
        border-radius: 15px;
        display: grid;
        place-items: center;
        background: linear-gradient(135deg, #0f6fff 0%, #22c7ff 100%);
        color: #ffffff;
        box-shadow: 0 12px 26px rgba(15, 111, 255, 0.25);
        animation: cf-icon-float 4.8s ease-in-out infinite;
    }

        .ecosystem-card-icon svg {
            width: 20px;
            height: 20px;
            display: block;
            fill: none;
            stroke: currentColor;
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

    .ecosystem-card-title {
        color: #ffffff;
        font-size: 1rem;
        font-weight: 900;
        letter-spacing: -0.035em;
        margin-bottom: 5px;
    }

    .ecosystem-card p {
        color: rgba(226, 232, 240, 0.70);
        font-size: 0.82rem;
        line-height: 1.45;
        margin: 0;
    }

    .ecosystem-card-sources {
        grid-area: sources;
    }

    .ecosystem-card-automations {
        grid-area: automations;
    }

    .ecosystem-card-client-channels {
        grid-area: channels;
    }

    .ecosystem-card-team {
        grid-area: team;
    }

    .ecosystem-card-reports {
        grid-area: reports;
    }

    .ecosystem-card-custom-workflows {
        grid-area: custom;
    }
    /* Ecosystem animated previews */
    .data-source-animation,
    .automation-alert-preview,
    .workflow-canvas-preview,
    .report-preview-combo,
    .team-chat-preview,
    .client-message-template-preview {
        margin-top: 16px;
    }
    /* External data sources */
.data-source-animation {
    position: relative;
    height: 140px;
    border-radius: 18px;
    background: radial-gradient(circle at center, rgba(69, 215, 255, 0.12), transparent 68%), rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.07);
    overflow: hidden;
}

.data-source-core {
    position: absolute;
    left: 50%;
    top: 56%;
    width: 42px;
    height: 42px;
    border-radius: 15px;
    transform: translate(-50%, -50%);
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #0f6fff, #45d7ff);
    box-shadow: 0 16px 34px rgba(69, 215, 255, 0.18);
    z-index: 2;
}

        .data-source-core span {
            width: 18px;
            height: 18px;
            border-radius: 999px;
            border: 3px solid rgba(255, 255, 255, 0.9);
            border-left-color: transparent;
            animation: cf-data-core-spin 4s linear infinite;
        }

.data-source-node {
    position: absolute;
    width: 17px;
    height: 17px;
    border-radius: 999px;
    background: var(--accent);
    box-shadow: 0 0 0 7px rgba(168, 85, 247, 0.12), 0 0 24px rgba(168, 85, 247, 0.24);
    z-index: 2;
    animation: cf-data-node-pulse 2.6s ease-in-out infinite;
}

    .data-source-node.node-left {
        left: 44px;
        top: 50%;
        transform: translateY(-50%);
    }

    .data-source-node.node-top {
        left: 50%;
        top: 18px;
        transform: translateX(-50%);
        animation-delay: 320ms;
    }

    .data-source-node.node-right {
        right: 44px;
        top: 50%;
        transform: translateY(-50%);
        animation-delay: 640ms;
    }

    .data-source-line {
        position: absolute;
        height: 2px;
        background: linear-gradient(90deg, transparent, rgba(69, 215, 255, 0.5), transparent);
        transform-origin: left center;
        opacity: 0.75;
        animation: cf-data-line-flow 2.8s ease-in-out infinite;
    }

        .data-source-line.line-one {
            left: 62px;
            top: 70px;
            width: calc(50% - 84px);
        }

        .data-source-line.line-two {
            left: 50%;
            top: 38px;
            width: 48px;
            transform: rotate(90deg);
        }

        .data-source-line.line-three {
            right: 62px;
            top: 70px;
            width: calc(50% - 84px);
        }
    /* Automations & alerts */
.automation-alert-preview {
    position: relative;
    height: 128px;
    border-radius: 18px;
    background: radial-gradient(circle at 34% 42%, rgba(168, 85, 247, 0.14), transparent 8rem), radial-gradient(circle at 75% 72%, rgba(69, 215, 255, 0.12), transparent 8rem), rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.07);
    overflow: hidden;
}

.alert-ring {
    position: absolute;
    left: 22px;
    top: 34px;
    width: 56px;
    height: 56px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(168, 85, 247, 0.30);
    background: rgba(168, 85, 247, 0.08);
    animation: cf-alert-ring 2.7s ease-in-out infinite;
}

    .alert-ring span {
        width: 14px;
        height: 14px;
        border-radius: 999px;
        background: var(--accent);
        box-shadow: 0 0 0 8px rgba(168, 85, 247, 0.10);
    }

    .alert-rule-card,
    .alert-action-card {
        position: absolute;
        right: 18px;
        width: calc(100% - 120px);
        padding: 8px 12px;
        border-radius: 13px;
        background: rgba(7, 17, 31, 0.80);
        border: 1px solid rgba(127, 231, 255, 0.12);
        animation: cf-alert-card 4.2s ease-in-out infinite;
    }

    .alert-rule-card {
        top: 18px;
    }

    .alert-action-card {
        bottom: 18px;
        animation-delay: 700ms;
    }

        .alert-rule-card strong,
        .alert-action-card strong {
            display: block;
            color: #ffffff;
            font-size: 0.70rem;
            line-height: 1.1;
            margin-bottom: 2px;
        }

        .alert-rule-card span,
        .alert-action-card span {
            display: block;
            color: #a8b3c7;
            font-size: 0.64rem;
            line-height: 1.1;
            font-weight: 800;
        }
    /* Client communication */
.client-message-template-preview {
    padding: 12px;
    border-radius: 18px;
    background: rgba(5, 13, 25, 0.48);
    border: 1px solid rgba(168, 85, 247, 0.16);
    animation: cf-message-bubble 4s ease-in-out infinite;
}

    .template-mini-kicker {
        color: #45d7ff;
        font-size: 0.66rem;
        font-weight: 900;
        text-transform: uppercase;
        letter-spacing: 0.10em;
        margin-bottom: 8px;
    }

.template-mini-bubble {
    padding: 10px 12px;
    border-radius: 15px;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.18), rgba(69, 215, 255, 0.10));
    border: 1px solid rgba(168, 85, 247, 0.20);
    color: #f8f1ff;
    font-size: 0.70rem;
    line-height: 1.34;
    font-weight: 750;
}

    .template-mini-footer {
        display: flex;
        justify-content: space-between;
        gap: 10px;
        margin-top: 8px;
        color: #a8b3c7;
        font-size: 0.66rem;
        font-weight: 900;
    }

        .template-mini-footer strong {
            color: #31e6a7;
            animation: cf-sent-pop 1.4s ease 900ms both;
        }
        /* Workflow canvas */
        .workflow-canvas-preview {
            position: relative;
            height: 128px;
            border-radius: 18px;
            background: radial-gradient(circle at 50% 50%, rgba(69, 215, 255, 0.11), transparent 70%), rgba(255, 255, 255, 0.045);
            border: 1px solid rgba(255, 255, 255, 0.07);
            overflow: hidden;
        }

    .workflow-node {
        position: absolute;
        width: 104px;
        padding: 8px 9px;
        border-radius: 14px;
        color: #eaffff;
        font-size: 0.66rem;
        font-weight: 900;
        background: rgba(69, 215, 255, 0.12);
        border: 1px solid rgba(127, 231, 255, 0.18);
        animation: cf-builder-step 4s ease-in-out infinite;
    }

        .workflow-node.node-trigger {
            left: 18px;
            top: 18px;
        }

        .workflow-node.node-condition {
            left: 122px;
            bottom: 18px;
            animation-delay: 500ms;
        }

.workflow-branch-line {
    position: absolute;
    left: 122px;
    top: 32px;
    width: 54px;
    height: 46px;
    border-top: 2px solid rgba(168, 85, 247, 0.55);
    border-right: 2px solid rgba(168, 85, 247, 0.55);
    border-radius: 0 14px 0 0;
    animation: cf-data-line-flow 2.8s ease-in-out infinite;
}

    .workflow-action-stack {
        position: absolute;
        right: 14px;
        top: 16px;
        display: grid;
        gap: 6px;
        width: 124px;
    }

        .workflow-action-stack div {
            padding: 7px 8px;
            border-radius: 12px;
            color: #f3e8ff;
            font-size: 0.62rem;
            line-height: 1.1;
            font-weight: 900;
            background: rgba(168, 85, 247, 0.10);
            border: 1px solid rgba(168, 85, 247, 0.18);
            animation: cf-workflow-action 4s ease-in-out infinite;
        }

            .workflow-action-stack div:nth-child(2) {
                animation-delay: 400ms;
            }

            .workflow-action-stack div:nth-child(3) {
                animation-delay: 800ms;
            }
    /* Reports */
    .report-preview {
        margin-top: 16px;
    }

    .report-preview-combo {
        display: grid;
        grid-template-columns: minmax(104px, 0.78fr) minmax(150px, 1.22fr);
        gap: 10px;
    }

    .report-bars,
    .report-line-chart {
        height: 108px;
        border-radius: 18px;
        background: rgba(248, 250, 252, 0.94);
        color: #07152f;
        box-shadow: 0 10px 22px rgba(0, 0, 0, 0.08);
    }

    .report-bars {
        display: flex;
        align-items: end;
        gap: 8px;
        padding: 14px;
    }

        .report-bars span {
            flex: 1;
            border-radius: 8px 8px 4px 4px;
            background: linear-gradient(180deg, #45d7ff, #0f6fff);
            transform-origin: bottom;
            animation: cf-report-bar 2.8s ease-in-out infinite;
        }

            .report-bars span:nth-child(2) {
                animation-delay: 180ms;
            }

            .report-bars span:nth-child(3) {
                animation-delay: 360ms;
            }

            .report-bars span:nth-child(4) {
                animation-delay: 540ms;
            }

    .report-line-chart {
        padding: 14px;
    }

        .report-line-chart svg {
            width: 100%;
            height: 100%;
            display: block;
        }

    .chart-grid-line {
        fill: none;
        stroke: rgba(100, 116, 139, 0.18);
        stroke-width: 1;
    }

    .chart-area {
        fill: rgba(69, 215, 255, 0.12);
    }

    .chart-line {
        fill: none;
        stroke: #0f6fff;
        stroke-width: 5;
        stroke-linecap: round;
        stroke-linejoin: round;
        stroke-dasharray: 260;
        stroke-dashoffset: 260;
        animation: cf-line-draw 3.2s ease-in-out infinite;
    }
    /* Internal team chat */
    .team-chat-preview {
        padding: 10px;
        border-radius: 18px;
        background: rgba(248, 250, 252, 0.94);
        color: #07152f;
        box-shadow: 0 10px 22px rgba(0, 0, 0, 0.08);
    }

    .team-chat-row {
        display: grid;
        grid-template-columns: auto minmax(0, 1fr);
        gap: 8px;
        align-items: start;
        padding: 8px;
        border-radius: 14px;
        background: #ffffff;
        animation: cf-team-chat 4s ease-in-out infinite;
    }

        .team-chat-row + .team-chat-row {
            margin-top: 7px;
        }

        .team-chat-row.team-chat-reply {
            margin-left: 16px;
            animation-delay: 600ms;
        }

        .team-chat-row span {
            width: 27px;
            height: 27px;
            border-radius: 999px;
            display: grid;
            place-items: center;
            background: linear-gradient(135deg, #a855f7, #45d7ff);
            color: #ffffff;
            font-size: 0.66rem;
            font-weight: 900;
        }

        .team-chat-row strong {
            display: block;
            color: #07152f;
            font-size: 0.70rem;
            margin-bottom: 2px;
        }

        .team-chat-row p {
            margin: 0;
            color: #64748b;
            font-size: 0.64rem;
            line-height: 1.15;
        }

.team-check-line {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    color: #7c3aed;
    font-size: 0.70rem;
    font-weight: 900;
}

    .team-check-line i {
        width: 9px;
        height: 9px;
        border-radius: 999px;
        background: var(--accent);
        box-shadow: 0 0 0 6px rgba(168, 85, 247, 0.12);
        animation: cf-dot-pulse 2.6s ease-in-out infinite;
    }

    @keyframes ecosystem-spin {
        to {
            transform: rotate(360deg);
        }
    }

    @keyframes cf-data-core-spin {
        to {
            transform: rotate(360deg);
        }
    }

    @keyframes cf-data-node-pulse {
        0%, 100% {
            opacity: 0.72;
            scale: 1;
        }

        50% {
            opacity: 1;
            scale: 1.12;
        }
    }

    @keyframes cf-data-line-flow {
        0%, 100% {
            opacity: 0.28;
        }

        50% {
            opacity: 0.88;
        }
    }

    @keyframes cf-flow-node {
        0%, 100% {
            transform: translateY(0);
            border-color: rgba(127, 231, 255, 0.14);
        }

        50% {
            transform: translateY(-4px);
            border-color: rgba(49, 230, 167, 0.35);
        }
    }

    @keyframes cf-flow-path {
        to {
            background-position: 200% 0;
        }
    }

    @keyframes cf-message-bubble {
        0%, 100% {
            transform: translateY(0);
            opacity: 0.86;
        }

        50% {
            transform: translateY(-3px);
            opacity: 1;
        }
    }

    @keyframes cf-builder-step {
        0%, 100% {
            transform: translateY(0) scale(1);
        }

        50% {
            transform: translateY(-4px) scale(1.04);
        }
    }

    @keyframes cf-avatar-pop {
        0%, 100% {
            transform: translateY(0);
        }

        50% {
            transform: translateY(-3px);
        }
    }

    @keyframes cf-team-line {
        0% {
            transform: translateX(-115%);
        }

        55%, 100% {
            transform: translateX(235%);
        }
    }

@keyframes cf-alert-ring {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(168, 85, 247, 0.00), inset 0 0 0 1px rgba(168, 85, 247, 0.10);
    }

    50% {
        box-shadow: 0 0 0 10px rgba(168, 85, 247, 0.08), inset 0 0 0 1px rgba(168, 85, 247, 0.22);
    }
}

    @keyframes cf-alert-card {
        0%, 100% {
            transform: translateX(0);
            opacity: 0.84;
        }

        50% {
            transform: translateX(-4px);
            opacity: 1;
        }
    }

    @keyframes cf-workflow-action {
        0%, 100% {
            transform: translateX(0);
            opacity: 0.82;
        }

        50% {
            transform: translateX(-5px);
            opacity: 1;
        }
    }

    @keyframes cf-line-draw {
        0% {
            stroke-dashoffset: 260;
            opacity: 0.4;
        }

        42%, 78% {
            stroke-dashoffset: 0;
            opacity: 1;
        }

        100% {
            stroke-dashoffset: -260;
            opacity: 0.4;
        }
    }

    @keyframes cf-team-chat {
        0%, 100% {
            transform: translateY(0);
            opacity: 0.9;
        }

        50% {
            transform: translateY(-3px);
            opacity: 1;
        }
    }

    @media (max-width: 1280px) {
        .ecosystem-stage-v2 {
            grid-template-columns: repeat(2, minmax(0, 1fr));
            grid-template-areas:
                "core core"
                "sources automations"
                "custom reports"
                "channels team";
            gap: 18px;
            padding: 24px;
        }

        .ecosystem-core-card {
            min-height: 320px;
        }

        .ecosystem-card {
            min-height: 270px;
        }
    }

    @media (max-width: 680px) {
        .ecosystem-section {
            padding: 82px 0 76px;

            h1 {
                font-size: clamp(2.45rem, 11vw, 3.7rem);
                line-height: 1;
                letter-spacing: -0.065em;
            }
        }

        .ecosystem-stage-v2 {
            grid-template-columns: 1fr;
            grid-template-areas:
                "core"
                "sources"
                "automations"
                "custom"
                "reports"
                "channels"
                "team";
            border-radius: 28px;
            padding: 18px;
        }

            .ecosystem-stage-v2::after {
                inset: 14px;
                border-radius: 22px;
            }

        .ecosystem-core-card {
            border-radius: 24px;
            padding: 22px;
            min-height: 280px;
        }

        .ecosystem-card {
            min-height: auto;
        }

        .report-preview-combo {
            grid-template-columns: 1fr;
        }

        .report-bars,
        .report-line-chart {
            height: 96px;
        }

        .brand-image-only {
            width: 158px;
            height: 46px;
        }

        .app-preview-logo-image-only {
            width: 138px;
            height: 38px;
        }

        .ecosystem-core-mark {
            width: 136px;
            height: 48px;
        }
    }
    /* ChannelFlow landing page motion */
    [data-cf-reveal] {
        opacity: 0;
        transform: translateY(26px);
        transition: opacity 720ms ease, transform 720ms ease;
        transition-delay: var(--cf-reveal-delay, 0ms);
    }

        [data-cf-reveal].cf-reveal-visible {
            opacity: 1;
            transform: translateY(0);
        }

    .workflow-summary-card:nth-child(1) {
        animation-delay: 160ms;
    }

    .workflow-summary-card:nth-child(2) {
        animation-delay: 260ms;
    }

    .workflow-summary-card:nth-child(3) {
        animation-delay: 360ms;
    }

    .workflow-list-row > * {
        position: relative;
        z-index: 1;
    }

    .workflow-list-row::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(90deg, transparent, rgba(34, 199, 255, 0.08), transparent);
        transform: translateX(-120%);
        animation: cf-row-sheen 4.8s ease-in-out infinite;
        pointer-events: none;
    }

    .workflow-list-row:nth-child(2)::after {
        animation-delay: 0.8s;
    }

    .workflow-list-row:nth-child(3)::after {
        animation-delay: 1.6s;
    }

.template-footer strong {
    color: #31e6a7;
}

    .ecosystem-core-card {
        animation: cf-core-breathe 5.8s ease-in-out infinite;
    }

    @keyframes cf-message-enter {
        from {
            opacity: 0;
            translate: 20px -12px;
        }

        to {
            opacity: 1;
            translate: 0 0;
        }
    }

    @keyframes cf-orb-float-one {
        0%, 100% {
            transform: translate3d(0, 0, 0) scale(1);
        }

        50% {
            transform: translate3d(18px, -16px, 0) scale(1.06);
        }
    }

    @keyframes cf-orb-float-two {
        0%, 100% {
            transform: translate3d(0, 0, 0) scale(1);
        }

        50% {
            transform: translate3d(-18px, 18px, 0) scale(1.05);
        }
    }

    @keyframes cf-soft-rise {
        from {
            opacity: 0;
            transform: translateY(14px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes cf-row-sheen {
        0%, 50% {
            transform: translateX(-120%);
        }

        72%, 100% {
            transform: translateX(120%);
        }
    }

    @keyframes cf-sent-pop {
        0% {
            opacity: 0;
            transform: scale(0.88);
        }

        55% {
            opacity: 1;
            transform: scale(1.08);
        }

        100% {
            opacity: 1;
            transform: scale(1);
        }
    }

    @keyframes cf-core-breathe {
        0%, 100% {
            box-shadow: 0 30px 90px rgba(0, 0, 0, 0.38), inset 0 1px 0 rgba(255, 255, 255, 0.10);
        }

        50% {
            box-shadow: 0 34px 100px rgba(0, 0, 0, 0.44), 0 0 42px rgba(34, 199, 255, 0.10), inset 0 1px 0 rgba(255, 255, 255, 0.12);
        }
    }
    /* Section-level life and card motion */
    [data-cf-reveal] .card,
    [data-cf-reveal] .step-card,
    [data-cf-reveal] .use-case-card,
    [data-cf-reveal] .channel-card,
    [data-cf-reveal] .ecosystem-card {
        opacity: 0;
        transform: translateY(18px);
    }

    [data-cf-reveal].cf-reveal-visible .card,
    [data-cf-reveal].cf-reveal-visible .step-card,
    [data-cf-reveal].cf-reveal-visible .use-case-card,
    [data-cf-reveal].cf-reveal-visible .channel-card,
    [data-cf-reveal].cf-reveal-visible .ecosystem-card {
        animation: cf-card-enter 720ms ease both;
    }

        [data-cf-reveal].cf-reveal-visible .card:nth-child(1),
        [data-cf-reveal].cf-reveal-visible .step-card:nth-child(1),
        [data-cf-reveal].cf-reveal-visible .use-case-card:nth-child(1),
        [data-cf-reveal].cf-reveal-visible .channel-card:nth-child(1),
        [data-cf-reveal].cf-reveal-visible .ecosystem-card:nth-child(1) {
            animation-delay: 80ms;
        }

        [data-cf-reveal].cf-reveal-visible .card:nth-child(2),
        [data-cf-reveal].cf-reveal-visible .step-card:nth-child(2),
        [data-cf-reveal].cf-reveal-visible .use-case-card:nth-child(2),
        [data-cf-reveal].cf-reveal-visible .channel-card:nth-child(2),
        [data-cf-reveal].cf-reveal-visible .ecosystem-card:nth-child(2) {
            animation-delay: 160ms;
        }

        [data-cf-reveal].cf-reveal-visible .card:nth-child(3),
        [data-cf-reveal].cf-reveal-visible .step-card:nth-child(3),
        [data-cf-reveal].cf-reveal-visible .use-case-card:nth-child(3),
        [data-cf-reveal].cf-reveal-visible .channel-card:nth-child(3),
        [data-cf-reveal].cf-reveal-visible .ecosystem-card:nth-child(3) {
            animation-delay: 240ms;
        }

        [data-cf-reveal].cf-reveal-visible .card:nth-child(4),
        [data-cf-reveal].cf-reveal-visible .step-card:nth-child(4),
        [data-cf-reveal].cf-reveal-visible .use-case-card:nth-child(4),
        [data-cf-reveal].cf-reveal-visible .channel-card:nth-child(4),
        [data-cf-reveal].cf-reveal-visible .ecosystem-card:nth-child(4) {
            animation-delay: 320ms;
        }

        [data-cf-reveal].cf-reveal-visible .card:nth-child(5),
        [data-cf-reveal].cf-reveal-visible .step-card:nth-child(5),
        [data-cf-reveal].cf-reveal-visible .use-case-card:nth-child(5),
        [data-cf-reveal].cf-reveal-visible .channel-card:nth-child(5),
        [data-cf-reveal].cf-reveal-visible .ecosystem-card:nth-child(5) {
            animation-delay: 400ms;
        }

        [data-cf-reveal].cf-reveal-visible .card:nth-child(6),
        [data-cf-reveal].cf-reveal-visible .step-card:nth-child(6),
        [data-cf-reveal].cf-reveal-visible .use-case-card:nth-child(6),
        [data-cf-reveal].cf-reveal-visible .channel-card:nth-child(6),
        [data-cf-reveal].cf-reveal-visible .ecosystem-card:nth-child(6) {
            animation-delay: 480ms;
        }
    /* Hover lift for the main content cards */
    .card,
    .step-card,
    .use-case-card,
    .channel-card,
    .ecosystem-card {
        transition: transform 220ms ease, border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
    }

        .card:hover,
        .step-card:hover,
        .use-case-card:hover,
        .channel-card:hover,
        .ecosystem-card:hover {
            transform: translateY(-5px);
            border-color: rgba(127, 231, 255, 0.24);
            box-shadow: 0 22px 58px rgba(0, 0, 0, 0.26), 0 0 0 1px rgba(127, 231, 255, 0.06);
        }
    /* Workflow section movement */
    .workflow-panel {
        position: relative;
    }

        .workflow-panel::before {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(115deg, transparent 0%, rgba(34, 199, 255, 0.08) 45%, transparent 70%);
            transform: translateX(-120%);
            animation: cf-panel-sheen 8s ease-in-out infinite;
            pointer-events: none;
        }

    .workflow-copy,
    .workflow-steps {
        position: relative;
        z-index: 1;
    }

    .step-number {
        animation: cf-step-pulse 3.8s ease-in-out infinite;
    }
    /* Ecosystem section small live details */
    .ecosystem-card-icon {
        animation: cf-icon-float 4.8s ease-in-out infinite;
    }


    .report-bars span {
        transform-origin: bottom;
        animation: cf-report-bar 2.8s ease-in-out infinite;
    }

        .report-bars span:nth-child(2) {
            animation-delay: 180ms;
        }

        .report-bars span:nth-child(3) {
            animation-delay: 360ms;
        }

        .report-bars span:nth-child(4) {
            animation-delay: 540ms;
        }
    /* CTA subtle glow */
    .cta-panel {
        position: relative;
        overflow: hidden;
    }

        .cta-panel::before {
            content: "";
            position: absolute;
            width: 360px;
            height: 360px;
            left: -140px;
            top: -150px;
            border-radius: 999px;
            background: radial-gradient(circle, rgba(34, 199, 255, 0.22), transparent 68%);
            animation: cf-cta-glow 7s ease-in-out infinite;
            pointer-events: none;
        }

        .cta-panel > * {
            position: relative;
            z-index: 1;
        }

    @keyframes cf-card-enter {
        from {
            opacity: 0;
            transform: translateY(18px) scale(0.985);
        }

        to {
            opacity: 1;
            transform: translateY(0) scale(1);
        }
    }

    @keyframes cf-panel-sheen {
        0%, 46% {
            transform: translateX(-120%);
            opacity: 0;
        }

        58% {
            opacity: 1;
        }

        78%, 100% {
            transform: translateX(120%);
            opacity: 0;
        }
    }

    @keyframes cf-step-pulse {
        0%, 100% {
            box-shadow: 0 0 0 0 rgba(34, 199, 255, 0);
        }

        50% {
            box-shadow: 0 0 0 7px rgba(34, 199, 255, 0.10);
        }
    }

    @keyframes cf-icon-float {
        0%, 100% {
            transform: translateY(0);
        }

        50% {
            transform: translateY(-3px);
        }
    }

@keyframes cf-dot-pulse {
    0%, 100% {
        box-shadow: 0 0 0 5px rgba(168, 85, 247, 0.10);
    }

    50% {
        box-shadow: 0 0 0 9px rgba(168, 85, 247, 0.18);
    }
}

    @keyframes cf-report-bar {
        0%, 100% {
            transform: scaleY(1);
        }

        50% {
            transform: scaleY(0.72);
        }
    }

@keyframes cf-chip-glow {
    0%, 100% {
        box-shadow: 0 0 0 rgba(168, 85, 247, 0);
    }

    50% {
        box-shadow: 0 0 24px rgba(168, 85, 247, 0.18);
    }
}

    @keyframes cf-cta-glow {
        0%, 100% {
            transform: translate3d(0, 0, 0) scale(1);
            opacity: 0.65;
        }

        50% {
            transform: translate3d(70px, 50px, 0) scale(1.18);
            opacity: 0.95;
        }
    }

    .cta {
        padding: 94px 0 110px;
    }

    .cta-panel {
        text-align: center;
        border-radius: 36px;
        padding: 62px 34px;
        background: radial-gradient(circle at top left, rgba(69, 215, 255, 0.28), transparent 28rem), radial-gradient(circle at bottom right, rgba(49, 230, 167, 0.18), transparent 28rem), rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.16);
        box-shadow: var(--shadow);
    }

        .cta-panel h2 {
            max-width: 820px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-panel p {
            max-width: 720px;
            margin: 0 auto 28px;
            color: var(--muted);
            line-height: 1.7;
            font-size: 1.06rem;
        }

    .cta-actions {
        justify-content: center;
        margin-bottom: 0;
    }

    .footer {
        border-top: 1px solid rgba(255, 255, 255, 0.09);
        padding: 30px 0;
        color: var(--muted);
        font-size: 0.92rem;
    }

    .footer-inner {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 20px;
        flex-wrap: wrap;
    }

    .footer-links {
        display: flex;
        gap: 18px;
        flex-wrap: wrap;
    }

        .footer-links a:hover {
            color: var(--text);
        }

    @media (max-width: 980px) {
        .nav-links {
            display: none;
        }

        .hero-grid,
        .workflow-panel {
            grid-template-columns: 1fr;
            gap: 36px;
        }

        .product-stage {
            min-height: auto;
        }

        .dashboard-main {
            margin: 0 auto;
        }

        .floating-card {
            position: relative;
            inset: auto;
            width: 100%;
            margin-top: 16px;
        }

        .app-preview-shell {
            grid-template-columns: 1fr;
        }

        .app-preview-sidebar {
            border-right: 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.09);
        }

        .app-preview-menu {
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }

        .workflow-summary-grid {
            grid-template-columns: 1fr;
        }

        .pain-grid,
        .feature-grid,
        .channel-grid {
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }
    }

    @media (max-width: 680px) {
        .container {
            width: 100%;
            padding-left: 18px;
            padding-right: 18px;
        }

        .nav {
            height: auto;
            padding: 14px 0;
            align-items: flex-start;
        }

        .brand {
            display: flex;
            align-items: center;
            line-height: 1;
        }

        .nav-actions {
            gap: 8px;
        }

            .nav-actions .btn {
                min-height: 40px;
                padding: 0 12px;
                font-size: 0.82rem;
            }

        .hero {
            padding-top: 52px;
        }

        .hero-proof,
        .pain-grid,
        .feature-grid,
        .use-case-grid,
        .channel-grid {
            grid-template-columns: 1fr;
        }

        .hero-actions,
        .cta-panel .hero-actions {
            flex-direction: column;
        }

        .btn {
            width: 100%;
        }

        .mock-body,
        .workflow-copy,
        .workflow-steps,
        .channels-band {
            padding: 20px;
        }

        .quote-row {
            grid-template-columns: 1fr;
        }

        .mini-btn {
            width: 100%;
        }

        .app-preview-main {
            padding: 16px;
        }

        .app-preview-main-header,
        .workflow-body-top {
            flex-direction: column;
        }

        .workflow-list-row {
            grid-template-columns: 1fr;
        }

        .app-preview-menu {
            grid-template-columns: 1fr;
        }
    }

    @media (prefers-reduced-motion: reduce) {
        *,
        *::before,
        *::after {
            animation-duration: 0.001ms !important;
            animation-iteration-count: 1 !important;
            scroll-behavior: auto !important;
            transition-duration: 0.001ms !important;
        }

        [data-cf-reveal] {
            opacity: 1;
            transform: none;
        }
    }
