/* Forward Deployed Security Engineers — site-aligned theme */
:root {
    --fdse-ink: #0b1020;
    --fdse-muted: #5a6478;
    --fdse-blue: #2563eb;
    --fdse-blue-dark: #1d4ed8;
    --fdse-line: rgba(15, 23, 42, .08);
    --fdse-grad: linear-gradient(100deg, #2563eb 0%, #1d4ed8 100%);
    --fdse-bg: linear-gradient(180deg, #f5f6fc 0%, #eef0fa 55%, #f3f2fb 100%);
    --fdse-bg-alt: #fff;
    --fdse-radius: 16px;
    --fdse-font: "Inter", "Segoe UI", system-ui, sans-serif;
}

.fdse-page {
    background: #f7f7fb;
    color: var(--fdse-ink);
    font-family: var(--fdse-font);
}

.fdse-wrap {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

.fdse-section {
    padding: 5.5rem 0;
    position: relative;
}

.fdse-section--alt {
    background:
        radial-gradient(ellipse 55% 50% at 80% 15%, rgba(59, 130, 246, .035), transparent 55%),
        radial-gradient(ellipse 45% 45% at 20% 80%, rgba(139, 92, 246, .04), transparent 50%),
        linear-gradient(172deg, #fff 0%, #fcfbff 40%, #fafbfe 70%, #fff 100%);
}

/* ── Hero ─────────────────────────────────────────────── */
.fdse-hero {
    padding: 160px 0 90px;
    background: var(--fdse-bg);
}

.fdse-hero__grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3.5rem;
    align-items: center;
}

.fdse-badge {
    display: inline-flex;
    flex-wrap: wrap;
    gap: .35rem .75rem;
    align-items: center;
    padding: .4rem .85rem;
    border-radius: 999px;
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--fdse-blue);
    background: rgba(37, 99, 235, .08);
    border: 1px solid rgba(37, 99, 235, .18);
    margin-bottom: 1.5rem;
}

.fdse-badge__dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 8px rgba(16, 185, 129, .5);
    animation: fdsePulse 2s ease infinite;
}

@keyframes fdsePulse {
    0%, 100% { opacity: 1; }
    50% { opacity: .45; }
}

.fdse-hero__title {
    font-size: clamp(2.1rem, 4.8vw, 3.35rem);
    font-weight: 800;
    letter-spacing: -.03em;
    line-height: 1.08;
    margin: 0 0 1.25rem;
    color: var(--fdse-ink);
}

.fdse-hero__title em {
    font-style: normal;
    color: var(--fdse-blue);
}

.fdse-hero__lead {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--fdse-muted);
    max-width: 540px;
    margin: 0 0 2rem;
}

.fdse-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: .85rem;
}

.fdse-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: .9rem 1.6rem;
    border-radius: 12px;
    font-size: .95rem;
    font-weight: 600;
    text-decoration: none;
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.fdse-btn--primary {
    color: #fff;
    background: #0f172a;
    box-shadow: 0 10px 26px rgba(15, 23, 42, .18);
}

.fdse-btn--primary:hover {
    color: #fff;
    background: #1f2937;
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(15, 23, 42, .26);
}

.fdse-btn--outline {
    color: var(--fdse-ink);
    background: rgba(255, 255, 255, .75);
    border-color: var(--fdse-line);
}

.fdse-btn--outline:hover {
    color: var(--fdse-ink);
    background: #fff;
    border-color: rgba(15, 23, 42, .2);
    transform: translateY(-2px);
}

/* Terminal — dark panel accent on light page */
.fdse-terminal {
    background: #0f172a;
    border: 1px solid rgba(15, 23, 42, .12);
    border-radius: var(--fdse-radius);
    overflow: hidden;
    box-shadow: 0 24px 56px rgba(37, 60, 130, .18);
}

.fdse-terminal__bar {
    display: flex;
    align-items: center;
    gap: .45rem;
    padding: .75rem 1rem;
    background: #1e293b;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.fdse-terminal__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.fdse-terminal__dot--r { background: #ef4444; }
.fdse-terminal__dot--y { background: #eab308; }
.fdse-terminal__dot--g { background: #22c55e; }

.fdse-terminal__label {
    margin-left: auto;
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: #94a3b8;
}

.fdse-terminal__body {
    padding: 1.25rem;
    font-family: "Consolas", "Monaco", "Courier New", monospace;
    font-size: .82rem;
    line-height: 1.65;
    min-height: 280px;
    max-height: 320px;
    overflow: hidden;
}

.fdse-log {
    display: flex;
    gap: .65rem;
    margin-bottom: .55rem;
    opacity: 0;
    transform: translateY(6px);
    animation: fdseLogIn .4s ease forwards;
}

@keyframes fdseLogIn {
    to { opacity: 1; transform: none; }
}

.fdse-log__time { color: #64748b; flex-shrink: 0; }
.fdse-log__tag { flex-shrink: 0; font-weight: 700; min-width: 72px; }
.fdse-log__tag--block { color: #f87171; }
.fdse-log__tag--pass { color: #34d399; }
.fdse-log__tag--warn { color: #fbbf24; }
.fdse-log__tag--info { color: #38bdf8; }
.fdse-log__msg { color: #cbd5e1; }

.fdse-terminal__cursor {
    display: inline-block;
    width: 8px;
    height: 1em;
    background: #38bdf8;
    margin-left: 2px;
    vertical-align: text-bottom;
    animation: fdseBlink 1s step-end infinite;
}

@keyframes fdseBlink {
    50% { opacity: 0; }
}

/* ── Section titles ─────────────────────────────────── */
.fdse-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .4rem .85rem;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--fdse-blue);
    background: rgba(37, 99, 235, .08);
    border: 1px solid rgba(37, 99, 235, .18);
    margin-bottom: 1rem;
}

.fdse-h2 {
    font-size: clamp(1.75rem, 3.2vw, 2.35rem);
    font-weight: 800;
    letter-spacing: -.02em;
    line-height: 1.15;
    color: var(--fdse-ink);
    margin: 0 0 1rem;
}

.fdse-sub {
    font-size: 1.02rem;
    color: var(--fdse-muted);
    line-height: 1.65;
    max-width: 640px;
    margin: 0 0 2.5rem;
}

/* ── Problem section ────────────────────────────────── */
.fdse-quote {
    position: relative;
    padding: 1.75rem 2rem;
    margin: 0 0 2.5rem;
    border-radius: var(--fdse-radius);
    background: #fff;
    border: 1px solid var(--fdse-line);
    box-shadow: 0 8px 32px rgba(15, 23, 42, .06);
}

.fdse-quote::before {
    content: "\201C";
    position: absolute;
    top: .5rem;
    left: 1rem;
    font-size: 3rem;
    line-height: 1;
    color: var(--fdse-blue);
    opacity: .25;
}

.fdse-quote p {
    margin: 0;
    padding-left: 1.5rem;
    font-size: 1.05rem;
    font-style: italic;
    line-height: 1.65;
    color: #334155;
}

.fdse-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.fdse-card {
    padding: 1.75rem;
    border-radius: var(--fdse-radius);
    background: #fff;
    border: 1px solid var(--fdse-line);
    box-shadow: 0 8px 28px rgba(15, 23, 42, .05);
    transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.fdse-card:hover {
    border-color: rgba(37, 99, 235, .25);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(37, 99, 235, .1);
}

.fdse-card__icon {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: rgba(37, 99, 235, .08);
    color: var(--fdse-blue);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.fdse-card__title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--fdse-ink);
    margin: 0 0 .5rem;
}

.fdse-card__text {
    font-size: .9rem;
    line-height: 1.6;
    color: var(--fdse-muted);
    margin: 0;
}

/* ── Comparison table ───────────────────────────────── */
.fdse-compare-wrap {
    overflow-x: auto;
    border-radius: var(--fdse-radius);
    border: 1px solid var(--fdse-line);
    background: #fff;
    box-shadow: 0 8px 32px rgba(15, 23, 42, .06);
}

.fdse-compare {
    width: 100%;
    min-width: 640px;
    border-collapse: collapse;
    font-size: .92rem;
}

.fdse-compare th,
.fdse-compare td {
    padding: 1rem 1.25rem;
    text-align: center;
    border-bottom: 1px solid var(--fdse-line);
}

.fdse-compare th {
    font-weight: 700;
    color: var(--fdse-ink);
    background: #f8fafc;
}

.fdse-compare th:first-child,
.fdse-compare td:first-child {
    text-align: left;
    font-weight: 600;
    color: #334155;
}

.fdse-compare td { color: var(--fdse-muted); }

.fdse-compare__highlight {
    background: rgba(37, 99, 235, .06);
    border-left: 2px solid var(--fdse-blue);
    border-right: 2px solid var(--fdse-blue);
    color: var(--fdse-ink) !important;
    font-weight: 600;
}

.fdse-compare thead .fdse-compare__highlight {
    background: rgba(37, 99, 235, .1);
    border-top: 2px solid var(--fdse-blue);
    color: var(--fdse-blue) !important;
}

.fdse-compare tbody tr:last-child .fdse-compare__highlight {
    border-bottom: 2px solid var(--fdse-blue);
}

.fdse-check { color: #10b981; }
.fdse-x { color: #94a3b8; }

/* ── Capabilities ───────────────────────────────────── */
.fdse-cap-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.fdse-cap {
    display: flex;
    gap: 1.15rem;
    padding: 1.75rem;
    border-radius: var(--fdse-radius);
    background: #fff;
    border: 1px solid var(--fdse-line);
    box-shadow: 0 8px 28px rgba(15, 23, 42, .05);
    transition: border-color .2s ease, box-shadow .2s ease;
}

.fdse-cap:hover {
    border-color: rgba(37, 99, 235, .25);
    box-shadow: 0 12px 36px rgba(37, 99, 235, .08);
}

.fdse-cap__emoji {
    font-size: 1.75rem;
    line-height: 1;
    flex-shrink: 0;
}

.fdse-cap__title {
    font-size: 1.02rem;
    font-weight: 700;
    color: var(--fdse-ink);
    margin: 0 0 .4rem;
}

.fdse-cap__text {
    font-size: .88rem;
    line-height: 1.6;
    color: var(--fdse-muted);
    margin: 0;
}

/* ── Timeline ───────────────────────────────────────── */
.fdse-timeline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    position: relative;
}

.fdse-timeline::before {
    content: "";
    position: absolute;
    top: 28px;
    left: 12%;
    right: 12%;
    height: 2px;
    background: linear-gradient(90deg, var(--fdse-blue), #10b981);
    opacity: .25;
}

.fdse-step {
    text-align: center;
    padding: 0 1rem;
    position: relative;
}

.fdse-step__num {
    width: 56px;
    height: 56px;
    margin: 0 auto 1.25rem;
    display: grid;
    place-items: center;
    border-radius: 50%;
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
    background: var(--fdse-grad);
    box-shadow: 0 8px 24px rgba(37, 99, 235, .3);
    position: relative;
    z-index: 1;
}

.fdse-step__title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--fdse-ink);
    margin: 0 0 .5rem;
}

.fdse-step__text {
    font-size: .88rem;
    line-height: 1.6;
    color: var(--fdse-muted);
    margin: 0;
}

.fdse-step__badge {
    display: inline-block;
    margin-top: .65rem;
    padding: .25rem .65rem;
    border-radius: 999px;
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: var(--fdse-blue);
    background: rgba(37, 99, 235, .08);
}

/* ── Social proof ───────────────────────────────────── */
.fdse-proof {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 1.5rem;
    align-items: stretch;
}

.fdse-testimonial {
    padding: 2rem;
    border-radius: var(--fdse-radius);
    background: #fff;
    border: 1px solid var(--fdse-line);
    box-shadow: 0 8px 32px rgba(15, 23, 42, .06);
}

.fdse-testimonial blockquote {
    margin: 0 0 1.25rem;
    font-size: 1.08rem;
    line-height: 1.7;
    color: #334155;
    font-style: italic;
}

.fdse-testimonial cite {
    display: block;
    font-style: normal;
    font-size: .88rem;
    font-weight: 600;
    color: var(--fdse-ink);
}

.fdse-testimonial cite span {
    display: block;
    font-weight: 400;
    color: var(--fdse-muted);
    margin-top: .2rem;
}

.fdse-metric {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
    border-radius: var(--fdse-radius);
    background: linear-gradient(135deg, rgba(37, 99, 235, .08), rgba(16, 185, 129, .06));
    border: 1px solid rgba(37, 99, 235, .15);
    text-align: center;
}

.fdse-metric__num {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    color: var(--fdse-blue);
    line-height: 1;
    margin-bottom: .75rem;
}

.fdse-metric__text {
    font-size: .95rem;
    line-height: 1.55;
    color: #475569;
    margin: 0;
}

/* ── CTA form ───────────────────────────────────────── */
.fdse-cta {
    padding-bottom: 6rem;
    background: var(--fdse-bg);
}

.fdse-cta__box {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 3rem;
    align-items: start;
    padding: 2.5rem;
    border-radius: 20px;
    background: #fff;
    border: 1px solid var(--fdse-line);
    box-shadow: 0 16px 48px rgba(15, 23, 42, .08);
}

.fdse-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.fdse-field label {
    display: block;
    font-size: .82rem;
    font-weight: 600;
    color: var(--fdse-ink);
    margin-bottom: .35rem;
}

.fdse-field input,
.fdse-field select,
.fdse-field textarea {
    width: 100%;
    padding: .75rem 1rem;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
    color: var(--fdse-ink);
    font-family: inherit;
    font-size: .92rem;
    outline: none;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.fdse-field input:focus,
.fdse-field select:focus,
.fdse-field textarea:focus {
    border-color: var(--fdse-blue);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, .1);
    background: #fff;
}

.fdse-field select { cursor: pointer; }

.fdse-field textarea {
    min-height: 100px;
    resize: vertical;
}

.fdse-form .fdse-btn--primary {
    width: 100%;
    margin-top: .5rem;
    border: none;
}

/* ── Second terminal row ──────────────────────────────── */
.fdse-terminal-row {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 2.5rem;
    align-items: center;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid var(--fdse-line);
}

.fdse-terminal-row__title {
    font-size: clamp(1.25rem, 2.2vw, 1.5rem);
    font-weight: 700;
    color: var(--fdse-ink);
    margin: 0 0 .75rem;
    letter-spacing: -.02em;
}

.fdse-terminal-row__text {
    font-size: .95rem;
    line-height: 1.65;
    color: var(--fdse-muted);
    margin: 0;
    max-width: 420px;
}

/* ── Responsive ─────────────────────────────────────── */
@media (max-width: 991px) {
    .fdse-hero__grid,
    .fdse-cta__box,
    .fdse-proof,
    .fdse-terminal-row {
        grid-template-columns: 1fr;
    }

    .fdse-terminal-row__text { max-width: none; }

    .fdse-cards,
    .fdse-cap-grid {
        grid-template-columns: 1fr;
    }

    .fdse-timeline {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .fdse-timeline::before { display: none; }

    .fdse-step {
        text-align: left;
        display: flex;
        gap: 1.25rem;
    }

    .fdse-step__num {
        margin: 0;
        flex-shrink: 0;
        width: 48px;
        height: 48px;
        font-size: 1rem;
    }
}

@media (max-width: 575px) {
    .fdse-section { padding: 4rem 0; }
    .fdse-hero { padding: 120px 0 60px; }
    .fdse-cta__box { padding: 1.5rem; }
    .fdse-agents-console__body { min-height: auto; }
    .fdse-agents-orchestrator { min-height: 280px; }
}

/* ── Agentic security command center ──────────────────── */
.fdse-agents-section {
    background: var(--fdse-bg);
}

.fdse-agents-console {
    border-radius: 20px;
    overflow: hidden;
    background: #0b1020;
    border: 1px solid rgba(15, 23, 42, .15);
    box-shadow: 0 32px 80px rgba(15, 23, 42, .22);
}

.fdse-agents-console__bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    padding: .85rem 1.25rem;
    background: linear-gradient(90deg, #121a2e 0%, #1a2338 100%);
    border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.fdse-agents-console__title {
    display: flex;
    align-items: center;
    gap: .65rem;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #94a3b8;
}

.fdse-agents-console__live {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .25rem .65rem;
    border-radius: 999px;
    font-size: .68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: #34d399;
    background: rgba(52, 211, 153, .12);
    border: 1px solid rgba(52, 211, 153, .25);
}

.fdse-agents-console__live::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #34d399;
    box-shadow: 0 0 10px #34d399;
    animation: fdsePulse 1.8s ease infinite;
}

.fdse-agents-console__stats {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.fdse-agents-stat {
    font-size: .72rem;
    color: #64748b;
}

.fdse-agents-stat b {
    display: block;
    font-size: 1rem;
    font-weight: 800;
    color: #f1f5f9;
    line-height: 1.2;
}

.fdse-agents-stat b[data-stat="blocked"] { color: #f87171; }
.fdse-agents-stat b[data-stat="resolved"] { color: #34d399; }
.fdse-agents-stat b[data-stat="scans"] { color: #38bdf8; }

.fdse-agents-console__body {
    display: grid;
    grid-template-columns: 240px 1fr 260px;
    min-height: 420px;
}

.fdse-agents-roster {
    padding: 1rem;
    border-right: 1px solid rgba(255, 255, 255, .06);
    display: flex;
    flex-direction: column;
    gap: .65rem;
}

.fdse-agents-roster__label {
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #475569;
    margin-bottom: .25rem;
}

.fdse-agent-card {
    display: flex;
    gap: .65rem;
    padding: .7rem .75rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .06);
    transition: border-color .3s ease, background .3s ease, transform .3s ease;
    cursor: default;
}

.fdse-agent-card.is-active {
    background: rgba(37, 99, 235, .12);
    border-color: rgba(56, 189, 248, .35);
    transform: translateX(3px);
    box-shadow: 0 0 24px rgba(37, 99, 235, .15);
}

.fdse-agent-card__avatar {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    font-size: .95rem;
    flex-shrink: 0;
}

.fdse-agent-card__avatar--sentinel { background: rgba(248, 113, 113, .15); color: #f87171; }
.fdse-agent-card__avatar--vault { background: rgba(56, 189, 248, .15); color: #38bdf8; }
.fdse-agent-card__avatar--scout { background: rgba(167, 139, 250, .15); color: #a78bfa; }
.fdse-agent-card__avatar--auditor { background: rgba(52, 211, 153, .15); color: #34d399; }

.fdse-agent-card__name {
    font-size: .78rem;
    font-weight: 700;
    color: #f1f5f9;
    margin: 0;
    line-height: 1.2;
}

.fdse-agent-card__role {
    font-size: .65rem;
    color: #64748b;
    margin: .15rem 0 .35rem;
}

.fdse-agent-card__task {
    font-size: .68rem;
    line-height: 1.4;
    color: #94a3b8;
    margin: 0;
    min-height: 2.2em;
}

.fdse-agent-card__status {
    display: inline-block;
    margin-top: .35rem;
    padding: .12rem .45rem;
    border-radius: 999px;
    font-size: .58rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.fdse-agent-card__status--active { color: #34d399; background: rgba(52, 211, 153, .12); }
.fdse-agent-card__status--think { color: #fbbf24; background: rgba(251, 191, 36, .12); }
.fdse-agent-card__status--idle { color: #64748b; background: rgba(100, 116, 139, .12); }

/* Orchestrator mesh */
.fdse-agents-orchestrator {
    position: relative;
    padding: 1.5rem;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 50%, rgba(37, 99, 235, .08), transparent 55%),
        repeating-linear-gradient(0deg, transparent, transparent 31px, rgba(255,255,255,.025) 31px, rgba(255,255,255,.025) 32px),
        repeating-linear-gradient(90deg, transparent, transparent 31px, rgba(255,255,255,.025) 31px, rgba(255,255,255,.025) 32px);
}

.fdse-agents-orchestrator__svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.fdse-agents-orchestrator__line {
    stroke: rgba(56, 189, 248, .25);
    stroke-width: 1.5;
    stroke-dasharray: 6 4;
    fill: none;
    transition: stroke .4s ease, opacity .4s ease;
}

.fdse-agents-orchestrator__line.is-pulse {
    stroke: rgba(56, 189, 248, .85);
    animation: fdseLinePulse 1.2s ease;
}

@keyframes fdseLinePulse {
    0%, 100% { stroke-opacity: .25; }
    50% { stroke-opacity: 1; }
}

.fdse-agents-hub {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110px;
    height: 110px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: radial-gradient(circle, rgba(37, 99, 235, .25) 0%, rgba(15, 23, 42, .9) 70%);
    border: 2px solid rgba(56, 189, 248, .35);
    box-shadow: 0 0 40px rgba(37, 99, 235, .25);
    z-index: 2;
}

.fdse-agents-hub__icon {
    font-size: 1.35rem;
    color: #38bdf8;
    margin-bottom: .25rem;
}

.fdse-agents-hub__text {
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: #e2e8f0;
    line-height: 1.3;
}

.fdse-agents-node {
    position: absolute;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    font-size: 1.1rem;
    border: 2px solid rgba(255, 255, 255, .1);
    background: rgba(15, 23, 42, .85);
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
    z-index: 3;
}

.fdse-agents-node.is-active {
    transform: scale(1.12);
    border-color: rgba(56, 189, 248, .6);
    box-shadow: 0 0 28px rgba(56, 189, 248, .35);
}

.fdse-agents-node--sentinel { top: 12%; left: 50%; transform: translateX(-50%); color: #f87171; }
.fdse-agents-node--vault { top: 50%; right: 8%; transform: translateY(-50%); color: #38bdf8; }
.fdse-agents-node--scout { bottom: 12%; left: 50%; transform: translateX(-50%); color: #a78bfa; }
.fdse-agents-node--auditor { top: 50%; left: 8%; transform: translateY(-50%); color: #34d399; }

.fdse-agents-node--sentinel.is-active { transform: translateX(-50%) scale(1.12); }
.fdse-agents-node--scout.is-active { transform: translateX(-50%) scale(1.12); }

/* Activity feed */
.fdse-agents-feed {
    padding: 1rem;
    border-left: 1px solid rgba(255, 255, 255, .06);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.fdse-agents-feed__label {
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #475569;
    margin-bottom: .75rem;
    flex-shrink: 0;
}

.fdse-agents-feed__list {
    flex: 1;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.fdse-agent-event {
    padding: .6rem .7rem;
    border-radius: 10px;
    background: rgba(255, 255, 255, .03);
    border-left: 3px solid transparent;
    animation: fdseEventIn .45s ease both;
    flex-shrink: 0;
}

@keyframes fdseEventIn {
    from { opacity: 0; transform: translateX(12px); }
    to { opacity: 1; transform: none; }
}

.fdse-agent-event--block { border-left-color: #f87171; }
.fdse-agent-event--pass { border-left-color: #34d399; }
.fdse-agent-event--info { border-left-color: #38bdf8; }
.fdse-agent-event--warn { border-left-color: #fbbf24; }

.fdse-agent-event__meta {
    display: flex;
    justify-content: space-between;
    gap: .5rem;
    font-size: .62rem;
    color: #64748b;
    margin-bottom: .25rem;
}

.fdse-agent-event__agent {
    font-weight: 700;
    color: #94a3b8;
}

.fdse-agent-event__msg {
    font-size: .72rem;
    line-height: 1.45;
    color: #cbd5e1;
    margin: 0;
}

@media (max-width: 991px) {
    .fdse-agents-console__body {
        grid-template-columns: 1fr;
    }

    .fdse-agents-roster {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, .06);
        flex-direction: row;
        flex-wrap: wrap;
    }

    .fdse-agent-card { flex: 1 1 calc(50% - .5rem); min-width: 200px; }

    .fdse-agents-feed {
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, .06);
        max-height: 220px;
    }
}

@media (max-width: 575px) {
    .fdse-agent-card { flex: 1 1 100%; }
}

