/* ──────────────────────────────────────────
   Brand tokens — aligned with homepage
   ────────────────────────────────────────── */
:root {
    --bg: #0a0c10;
    --bg-2: #0c0f14;
    --bg-3: #11151c;
    --surface: rgba(255,255,255,0.02);
    --surface-2: rgba(255,255,255,0.04);
    --line: rgba(255,255,255,0.08);
    --line-2: rgba(255,255,255,0.12);
    --ink: #e6e8ec;
    --ink-2: #c4c8d0;
    --muted: #8b9099;
    --muted-2: #5d626b;
    --accent: #d4a44c;
    --accent-2: #e6b860;
    --accent-ink: #0a0c10;
    --accent-soft: rgba(212, 164, 76, 0.12);
    --accent-line: rgba(212, 164, 76, 0.32);
    --accent-glow: rgba(212, 164, 76, 0.3);
    --risk: #f0716f;
    --risk-soft: rgba(240, 113, 111, 0.14);
    --risk-line: rgba(240, 113, 111, 0.34);
    --expand: #5ecfb0;
    --expand-soft: rgba(94, 207, 176, 0.14);
    --expand-line: rgba(94, 207, 176, 0.34);
    --context: #6ca0dc;
    --context-soft: rgba(108, 160, 220, 0.14);
    --context-line: rgba(108, 160, 220, 0.34);
    --radius: 14px;
    --radius-lg: 18px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background: var(--bg);
    color: var(--ink);
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.mono { font-family: 'JetBrains Mono', ui-monospace, monospace; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 880px; margin: 0 auto; padding: 0 24px; }

/* ── Nav ── */
.topbar {
    position: sticky; top: 0; z-index: 50;
    display: flex; align-items: center; justify-content: space-between;
    padding: 16px 32px;
    background: color-mix(in srgb, var(--bg) 82%, transparent);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
}
.brand {
    font-weight: 800; font-size: 20px; color: var(--ink);
    text-decoration: none; letter-spacing: -0.01em;
}
.brand::before {
    content: ""; display: inline-block; width: 10px; height: 10px;
    background: var(--accent); border-radius: 50%;
    margin-right: 10px; vertical-align: middle;
    box-shadow: 0 0 12px var(--accent-glow);
}
.navlinks { display: flex; gap: 28px; align-items: center; }
.navlinks a, .navlinks button {
    color: var(--ink-2); font-size: 14.5px; text-decoration: none;
    background: none; border: 0; cursor: pointer; font-family: inherit;
    padding: 6px 0; transition: color .15s;
}
.navlinks a:hover, .navlinks button:hover { color: var(--ink); }
.navlinks a.active { color: var(--accent); }
.cta-group { display: flex; gap: 10px; align-items: center; }
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 9px 18px; border-radius: 999px; font-weight: 600;
    font-size: 14px; text-decoration: none; transition: all .18s;
    border: 1px solid transparent; cursor: pointer; font-family: inherit;
}
.btn-ghost {
    color: var(--ink-2); border-color: var(--line-2);
    background: transparent;
}
.btn-ghost:hover { color: var(--ink); border-color: var(--accent-line); }
.btn-primary {
    background: var(--accent); color: var(--accent-ink);
    box-shadow: 0 0 0 1px var(--accent), 0 10px 30px -10px var(--accent-glow);
}
.btn-primary:hover { background: var(--accent-2); }

/* ── HERO ── */
.hero {
    position: relative;
    padding: 100px 0 80px;
    text-align: center;
    overflow: hidden;
}
.hero::before {
    content: ""; position: absolute; inset: 0;
    background:
        radial-gradient(800px 380px at 50% 0%, var(--accent-soft), transparent 70%),
        radial-gradient(500px 240px at 20% 60%, rgba(94,207,176,0.06), transparent 70%),
        radial-gradient(500px 240px at 80% 70%, rgba(240,113,111,0.06), transparent 70%);
    pointer-events: none;
}
.eyebrow {
    display: inline-block; padding: 6px 14px;
    background: var(--accent-soft); border: 1px solid var(--accent-line);
    color: var(--accent); border-radius: 999px;
    font-size: 12px; font-weight: 600; letter-spacing: .08em;
    text-transform: uppercase; margin-bottom: 22px;
}
.hero h1 {
    font-size: clamp(40px, 5.5vw, 64px); font-weight: 800;
    line-height: 1.05; letter-spacing: -0.025em;
    margin: 0 0 22px; color: var(--ink);
}
.accent-text { color: var(--accent); }
.risk-text { color: var(--risk); }
.expand-text { color: var(--expand); }
.hero .lead {
    font-size: 18.5px; color: var(--ink-2);
    max-width: 720px; margin: 0 auto 36px; line-height: 1.55;
}
.hero .lead strong { color: var(--ink); font-weight: 700; }

.hero-stats {
    display: flex; gap: 12px; flex-wrap: wrap; justify-content: center;
    margin-top: 8px;
}
.hero-stat {
    padding: 10px 18px;
    background: var(--surface); border: 1px solid var(--line);
    border-radius: 999px; font-size: 13px;
    color: var(--ink-2);
}
.hero-stat strong { color: var(--accent); font-weight: 700; }

/* ── Section base ── */
.section {
    padding: 100px 0;
    position: relative;
}
.section-alt { background: var(--bg-2); }
.section-head { text-align: center; margin-bottom: 56px; }
.section-head .kicker {
    display: inline-block; font-family: 'JetBrains Mono', monospace;
    font-size: 11px; letter-spacing: .16em; text-transform: uppercase;
    color: var(--accent); margin-bottom: 14px;
}
.h2 {
    font-size: clamp(30px, 3.6vw, 44px); font-weight: 800;
    line-height: 1.12; letter-spacing: -0.02em; color: var(--ink);
    margin: 0 0 16px;
}
.lead {
    font-size: 17px; color: var(--ink-2); max-width: 720px;
    margin: 0 auto; line-height: 1.6;
}
.lead strong { color: var(--ink); }

.separator {
    display: flex; justify-content: center; align-items: center;
    padding: 0;
}
.separator svg { width: 22px; height: 22px; opacity: .85; }

/* ── Section 01 — The cyber analogy ── */
.analogy-table {
    max-width: 920px; margin: 0 auto;
    border: 1px solid var(--line-2); border-radius: var(--radius-lg);
    background: var(--surface); overflow: hidden;
}
.analogy-row {
    display: grid; grid-template-columns: 1fr 1.4fr 1.4fr;
    border-bottom: 1px solid var(--line);
}
.analogy-row:last-child { border-bottom: 0; }
.analogy-row.head { background: rgba(255,255,255,0.02); }
.analogy-cell {
    padding: 22px 26px; border-right: 1px solid var(--line);
    font-size: 15px; color: var(--ink-2);
}
.analogy-cell:last-child { border-right: 0; }
.analogy-cell.label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px; text-transform: uppercase;
    letter-spacing: .1em; color: var(--muted);
}
.analogy-cell.head-col {
    font-weight: 700; color: var(--ink);
    font-size: 15px; letter-spacing: -0.01em;
}
.analogy-cell.head-col .col-tag {
    display: block; font-size: 11px; font-weight: 500;
    font-family: 'JetBrains Mono', monospace;
    color: var(--muted); margin-top: 4px;
    text-transform: uppercase; letter-spacing: .1em;
}
.analogy-cell strong { color: var(--ink); font-weight: 600; }
.col-owlinq { background: rgba(212,164,76,0.04); }
.col-owlinq strong { color: var(--accent); }

.analogy-footnote {
    text-align: center; margin-top: 28px;
    color: var(--muted); font-size: 14px;
    font-style: italic;
}

/* ── Section 02 — Anatomy of an Intel Insight ── */
.insight-card {
    max-width: 760px; margin: 0 auto;
    background: linear-gradient(180deg, var(--bg-3), var(--bg-2));
    border: 1px solid var(--line-2);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 30px 80px -30px rgba(0,0,0,0.6);
}
.insight-header {
    display: flex; align-items: center; gap: 14px;
    padding: 16px 22px;
    background: rgba(255,255,255,0.025);
    border-bottom: 1px solid var(--line);
}
.live-dot {
    width: 8px; height: 8px; background: var(--expand);
    border-radius: 50%; box-shadow: 0 0 8px var(--expand);
    animation: pulseDot 1.6s ease-in-out infinite;
}
@keyframes pulseDot {
    0%,100% { opacity: 1; transform: scale(1); }
    50% { opacity: .55; transform: scale(.85); }
}
.insight-header .h-title {
    font-family: 'JetBrains Mono', monospace;
    font-size: 13px; color: var(--ink); font-weight: 600;
    letter-spacing: .02em;
}
.insight-header .spacer { flex: 1; }
.insight-header .h-meta {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px; color: var(--muted);
}

.insight-body { padding: 28px 28px 22px; }
.insight-account {
    display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap;
    margin-bottom: 18px;
}
.insight-account .acct-name {
    font-size: 22px; font-weight: 800; color: var(--ink);
    letter-spacing: -0.01em;
}
.insight-account .acct-meta {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px; color: var(--muted);
}
.badge {
    display: inline-block;
    padding: 4px 10px; border-radius: 999px;
    font-size: 11px; font-weight: 700;
    letter-spacing: .08em; text-transform: uppercase;
    font-family: 'JetBrains Mono', monospace;
}
.badge.expand { background: var(--expand-soft); color: var(--expand); border: 1px solid var(--expand-line); }
.badge.risk { background: var(--risk-soft); color: var(--risk); border: 1px solid var(--risk-line); }
.badge.watch { background: var(--accent-soft); color: var(--accent); border: 1px solid var(--accent-line); }
.badge.context { background: var(--context-soft); color: var(--context); border: 1px solid var(--context-line); }

.insight-block {
    margin: 22px 0;
    padding: 18px 20px;
    border-left: 3px solid var(--accent);
    background: var(--surface);
    border-radius: 0 10px 10px 0;
}
.insight-block.expand { border-left-color: var(--expand); }
.insight-block.risk { border-left-color: var(--risk); }

.block-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px; font-weight: 600;
    letter-spacing: .14em; text-transform: uppercase;
    color: var(--accent); margin-bottom: 8px;
}
.block-label.expand { color: var(--expand); }
.block-label.risk { color: var(--risk); }

.block-bottomline {
    font-size: 16.5px; color: var(--ink); font-weight: 600;
    line-height: 1.5; letter-spacing: -0.005em;
}
.block-desc {
    font-size: 14.5px; color: var(--ink-2); line-height: 1.6;
}
.block-desc .redact {
    display: inline-block; padding: 1px 6px;
    background: rgba(255,255,255,0.06); border-radius: 4px;
    font-family: 'JetBrains Mono', monospace;
    letter-spacing: .04em; color: var(--muted-2);
}
.next-steps { list-style: none; padding: 0; margin: 4px 0 0; }
.next-steps li {
    display: flex; gap: 10px; align-items: flex-start;
    padding: 6px 0; font-size: 14.5px; color: var(--ink-2);
}
.next-steps li::before {
    content: "▸"; color: var(--accent); flex-shrink: 0;
    font-size: 13px; margin-top: 1px;
}

.coowl-handoff {
    margin-top: 22px;
    display: flex; align-items: center; gap: 16px;
    padding: 16px 18px;
    background: linear-gradient(90deg, var(--accent-soft), transparent);
    border: 1px solid var(--accent-line);
    border-radius: 12px;
}
.coowl-icon {
    width: 38px; height: 38px; flex-shrink: 0;
    border-radius: 50%; background: var(--accent);
    color: var(--accent-ink);
    display: grid; place-items: center;
    font-weight: 800; font-size: 14px;
    box-shadow: 0 0 0 4px rgba(212,164,76,0.18);
}
.coowl-text { flex: 1; }
.coowl-title {
    font-size: 13px; font-weight: 700; color: var(--accent);
    margin-bottom: 2px;
    font-family: 'JetBrains Mono', monospace;
    letter-spacing: .04em;
}
.coowl-body {
    font-size: 14px; color: var(--ink-2); line-height: 1.5;
}
.coowl-body strong { color: var(--ink); }

.anatomy-callouts {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 14px; max-width: 760px; margin: 36px auto 0;
}
.callout-pill {
    padding: 14px 16px;
    background: var(--surface); border: 1px solid var(--line-2);
    border-radius: 12px;
}
.callout-pill .cp-num {
    font-family: 'JetBrains Mono', monospace;
    color: var(--accent); font-size: 12px;
    font-weight: 700; letter-spacing: .08em;
    margin-bottom: 6px;
}
.callout-pill .cp-title {
    font-size: 13.5px; font-weight: 700;
    color: var(--ink); margin-bottom: 4px;
}
.callout-pill .cp-body {
    font-size: 12.5px; color: var(--muted); line-height: 1.5;
}

/* ── Section 03 — Fusion engine ── */
.fusion-stage {
    max-width: 980px; margin: 0 auto;
    background: var(--surface); border: 1px solid var(--line-2);
    border-radius: var(--radius-lg);
    padding: 36px;
    position: relative; overflow: hidden;
}
.fusion-stage::before {
    content: ""; position: absolute; inset: 0;
    background:
        radial-gradient(420px 220px at 50% 50%, var(--accent-soft), transparent 70%);
    pointer-events: none;
}
.fusion-row {
    position: relative;
    display: grid; grid-template-columns: 1fr 90px 1fr;
    gap: 0; align-items: center;
    margin-bottom: 24px;
}
.fusion-side {
    background: var(--bg-3); border: 1px solid var(--line);
    border-radius: 14px; padding: 18px;
}
.fusion-side.outside { border-color: var(--context-line); }
.fusion-side.crm { border-color: var(--accent-line); }
.fusion-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px; font-weight: 600;
    letter-spacing: .12em; text-transform: uppercase;
    margin-bottom: 12px;
}
.fusion-side.outside .fusion-label { color: var(--context); }
.fusion-side.crm .fusion-label { color: var(--accent); }
.fusion-chips {
    display: flex; flex-wrap: wrap; gap: 6px;
}
.fchip {
    font-size: 12px; padding: 4px 10px;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--line);
    border-radius: 999px; color: var(--ink-2);
    font-family: 'JetBrains Mono', monospace;
}
.fusion-merge {
    text-align: center;
    color: var(--accent); font-size: 22px;
    font-weight: 800;
}
.fusion-engine {
    max-width: 480px; margin: 14px auto 0;
    padding: 22px 28px;
    background: linear-gradient(180deg, rgba(212,164,76,0.16), rgba(212,164,76,0.05));
    border: 1px solid var(--accent-line);
    border-radius: 14px;
    text-align: center;
    position: relative;
}
.fusion-engine .fe-title {
    font-size: 17px; font-weight: 800; color: var(--accent);
    letter-spacing: -0.005em; margin-bottom: 4px;
}
.fusion-engine .fe-sub {
    font-size: 13px; color: var(--ink-2);
    font-family: 'JetBrains Mono', monospace;
    letter-spacing: .04em;
}
.fusion-arrow {
    text-align: center; color: var(--accent);
    font-size: 18px; margin: 14px 0;
}
.fusion-outputs {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 14px; max-width: 600px; margin: 0 auto;
}
.fusion-out {
    padding: 14px 16px;
    background: var(--bg-3); border: 1px solid var(--line-2);
    border-radius: 12px; text-align: center;
}
.fusion-out.expand { border-color: var(--expand-line); }
.fusion-out.risk { border-color: var(--risk-line); }
.fusion-out .fo-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px; letter-spacing: .12em;
    text-transform: uppercase; margin-bottom: 4px;
}
.fusion-out.expand .fo-label { color: var(--expand); }
.fusion-out.risk .fo-label { color: var(--risk); }
.fusion-out .fo-body { font-size: 13.5px; color: var(--ink-2); }

.fusion-footer {
    margin-top: 28px; text-align: center;
    color: var(--muted); font-size: 13px;
    font-family: 'JetBrains Mono', monospace;
    letter-spacing: .08em;
}
.fusion-footer strong { color: var(--accent); font-weight: 700; }

/* ── Section 04 — Sequence in context ── */
.console {
    max-width: 780px; margin: 0 auto;
    background: var(--bg-3); border: 1px solid var(--line-2);
    border-radius: var(--radius-lg); overflow: hidden;
    box-shadow: 0 30px 80px -30px rgba(0,0,0,0.6);
}
.console-bar {
    display: flex; align-items: center; gap: 10px;
    padding: 14px 20px;
    background: rgba(255,255,255,0.025);
    border-bottom: 1px solid var(--line);
}
.console-bar .console-live {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px; color: var(--ink); font-weight: 600;
}
.console-bar .spacer { flex: 1; }
.console-bar .console-clock {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px; color: var(--muted);
}
.console-bar .console-account {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px; color: var(--accent); font-weight: 600;
}
.evt-panel { padding: 4px 0; }
.evt-row {
    display: grid;
    grid-template-columns: 70px 1fr 100px;
    align-items: center; gap: 16px;
    padding: 14px 22px;
    border-bottom: 1px solid var(--line);
    border-left: 3px solid var(--line-2);
}
.evt-row:last-child { border-bottom: 0; }
.evt-row.risk { border-left-color: var(--risk); background: color-mix(in srgb, var(--risk-soft) 40%, transparent); }
.evt-row.expand { border-left-color: var(--expand); background: color-mix(in srgb, var(--expand-soft) 40%, transparent); }
.evt-row.context { border-left-color: var(--context); background: color-mix(in srgb, var(--context-soft) 30%, transparent); }
.evt-row.mixed { border-left-color: var(--accent); background: color-mix(in srgb, var(--accent-soft) 40%, transparent); }
.evt-t {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px; color: var(--muted); font-weight: 600;
}
.evt-body { font-size: 14px; color: var(--ink-2); }
.evt-body strong { color: var(--ink); font-weight: 600; }
.evt-body .redact {
    display: inline-block; padding: 1px 6px;
    background: rgba(255,255,255,0.06); border-radius: 4px;
    font-family: 'JetBrains Mono', monospace; color: var(--muted-2);
}
.pattern-callout {
    display: flex; align-items: flex-start; gap: 12px;
    padding: 18px 22px;
    background: linear-gradient(90deg, var(--accent-soft), transparent);
    border-top: 1px dashed var(--accent-line);
}
.pattern-star { color: var(--accent); font-size: 17px; }
.pattern-callout span:last-child {
    font-size: 14px; color: var(--ink); line-height: 1.55;
}
.pattern-callout strong { color: var(--accent); }

.context-pull {
    max-width: 780px; margin: 28px auto 0;
    padding: 22px 26px;
    border-left: 3px solid var(--risk);
    background: var(--surface); border-radius: 0 12px 12px 0;
}
.context-pull p {
    margin: 0; font-size: 17px; color: var(--ink);
    line-height: 1.55; font-weight: 500;
    letter-spacing: -0.005em;
}
.context-pull p strong { color: var(--risk); font-weight: 700; }

/* ── Section 05 — Playbooks → NRR ── */
.playbooks-wrap {
    display: grid; grid-template-columns: 1.1fr 1fr; gap: 32px;
    align-items: center; max-width: 1080px; margin: 0 auto;
}
.playbooks-list {
    background: var(--surface); border: 1px solid var(--line-2);
    border-radius: var(--radius-lg); overflow: hidden;
}
.pb-row {
    display: grid; grid-template-columns: 56px 1fr 80px;
    align-items: center; gap: 14px;
    padding: 14px 20px;
    border-bottom: 1px solid var(--line);
}
.pb-row:last-child { border-bottom: 0; }
.pb-num {
    font-family: 'JetBrains Mono', monospace;
    color: var(--accent); font-weight: 700; font-size: 12px;
    letter-spacing: .08em;
}
.pb-name { font-size: 14.5px; color: var(--ink); font-weight: 600; }
.pb-name span {
    display: block; font-size: 12.5px; color: var(--muted);
    font-weight: 400; margin-top: 2px;
}
.pb-impact {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11.5px; color: var(--expand); font-weight: 700;
    text-align: right;
}
.playbooks-copy h3 {
    font-size: 24px; font-weight: 800; color: var(--ink);
    letter-spacing: -0.015em; margin: 0 0 14px;
    line-height: 1.2;
}
.playbooks-copy p {
    color: var(--ink-2); font-size: 15px; line-height: 1.6; margin: 0 0 14px;
}
.playbooks-copy p strong { color: var(--ink); }
.nrr-meter {
    margin-top: 22px;
    padding: 18px 20px;
    background: var(--surface);
    border: 1px solid var(--expand-line);
    border-radius: 12px;
}
.nrr-meter .nm-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px; letter-spacing: .12em;
    text-transform: uppercase; color: var(--muted);
    margin-bottom: 8px;
}
.nrr-meter .nm-row {
    display: flex; align-items: baseline; gap: 14px;
}
.nrr-meter .nm-val {
    font-size: 28px; font-weight: 800; color: var(--expand);
    letter-spacing: -0.02em;
    font-family: 'JetBrains Mono', monospace;
}
.nrr-meter .nm-from {
    font-size: 14px; color: var(--muted);
    text-decoration: line-through;
}
.nrr-meter .nm-delta { color: var(--expand); font-weight: 700; font-size: 13px; }

/* ── Section 06 — Triage / live feed ── */
.triage-widget {
    max-width: 1080px; margin: 0 auto;
    background: var(--bg-3); border: 1px solid var(--line-2);
    border-radius: var(--radius-lg); overflow: hidden;
}
.triage-bar {
    display: flex; align-items: center; gap: 10px;
    padding: 14px 22px;
    background: rgba(255,255,255,0.025);
    border-bottom: 1px solid var(--line);
}
.triage-cols {
    display: grid; grid-template-columns: 1fr 1fr 1fr;
}
.triage-col {
    padding: 14px 16px;
    border-right: 1px solid var(--line);
}
.triage-col:last-child { border-right: 0; }
.triage-col-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px; font-weight: 700;
    letter-spacing: .12em; text-transform: uppercase;
    margin-bottom: 14px;
    padding-bottom: 8px; border-bottom: 1px solid var(--line);
}
.triage-col-label.risk { color: var(--risk); }
.triage-col-label.expand { color: var(--expand); }
.triage-col-label.watch { color: var(--accent); }
.triage-item {
    padding: 12px 0; border-bottom: 1px solid var(--line);
}
.triage-item:last-child { border-bottom: 0; }
.ti-co {
    font-size: 13.5px; font-weight: 700; margin-bottom: 4px;
    letter-spacing: -0.005em;
}
.ti-co.risk { color: var(--risk); }
.ti-co.expand { color: var(--expand); }
.ti-co.watch { color: var(--accent); }
.ti-event { font-size: 13px; color: var(--ink-2); margin-bottom: 6px; }
.ti-handoff {
    font-size: 11.5px; color: var(--muted);
    font-family: 'JetBrains Mono', monospace;
    display: flex; align-items: center; gap: 6px;
}
.ti-handoff::before {
    content: "→"; color: var(--accent);
}

/* ── FAQ ── */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
    background: var(--surface); border: 1px solid var(--line);
    border-radius: 12px; margin-bottom: 12px;
    overflow: hidden;
}
.faq-q {
    padding: 18px 22px; cursor: pointer;
    font-weight: 600; font-size: 15px; color: var(--ink);
    display: flex; align-items: center; justify-content: space-between;
    user-select: none;
}
.faq-q::after {
    content: "+"; font-weight: 400; color: var(--accent);
    font-size: 22px; transition: transform .2s;
}
.faq-item[open] .faq-q::after { content: "−"; }
.faq-a {
    padding: 0 22px 20px; color: var(--ink-2);
    font-size: 14.5px; line-height: 1.6;
}

/* ── Other solutions ── */
.others-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 20px; max-width: 820px; margin: 0 auto;
}
.solution-card {
    padding: 28px;
    background: var(--surface); border: 1px solid var(--line-2);
    border-radius: var(--radius-lg);
    transition: all .2s;
}
.solution-card:hover {
    border-color: var(--accent-line);
    transform: translateY(-2px);
}
.solution-card .verb {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px; font-weight: 600;
    letter-spacing: .12em; text-transform: uppercase;
    color: var(--accent); margin-bottom: 12px; display: block;
}
.solution-card h4 {
    font-size: 22px; font-weight: 800; color: var(--ink);
    margin: 0 0 4px; letter-spacing: -0.01em;
}
.solution-card .prod {
    font-size: 13.5px; color: var(--accent); font-style: italic;
    margin: 0 0 14px;
}
.solution-card p {
    color: var(--ink-2); font-size: 14.5px; line-height: 1.55;
    margin: 0 0 16px;
}
.solution-card .more {
    color: var(--accent); font-weight: 600; font-size: 14px;
    text-decoration: none;
    display: inline-flex; align-items: center; gap: 6px;
}
.solution-card .more::after {
    content: "→"; transition: transform .2s;
}
.solution-card:hover .more::after { transform: translateX(4px); }

/* ── Footer ── */
.site-footer {
    padding: 60px 0 28px;
    border-top: 1px solid var(--line);
    background: var(--bg-2);
}
.foot-grid {
    display: grid; grid-template-columns: 2fr 1fr 1fr;
    gap: 40px; padding-bottom: 32px;
    border-bottom: 1px solid var(--line);
}
.foot-brand p {
    color: var(--muted); font-size: 14px; margin: 12px 0 0;
    max-width: 320px;
}
.foot-col h5 {
    font-size: 13px; font-weight: 700; color: var(--ink);
    margin: 0 0 14px;
    letter-spacing: .04em; text-transform: uppercase;
}
.foot-col a {
    display: block; color: var(--muted); font-size: 14px;
    text-decoration: none; padding: 5px 0;
}
.foot-col a:hover { color: var(--accent); }
.foot-bottom {
    display: flex; justify-content: space-between;
    padding-top: 24px; color: var(--muted); font-size: 13px;
}
.foot-bottom a { color: var(--muted); text-decoration: none; }
.foot-bottom a:hover { color: var(--accent); }

/* ── Diamond separator ── */
.diamond-sep {
    display: flex; justify-content: center; padding: 0;
}
.diamond-sep svg { width: 22px; height: 22px; }

/* ── Scroll reveal ── */
.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .8s cubic-bezier(0.16, 1, 0.3, 1), transform .8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal[data-delay="100"] { transition-delay: .1s; }
.reveal[data-delay="200"] { transition-delay: .2s; }
.reveal[data-delay="300"] { transition-delay: .3s; }
@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
}

/* ── Responsive ── */
@media (max-width: 920px) {
    .navlinks { display: none; }
    .hero { padding: 70px 0 60px; }
    .section { padding: 70px 0; }
    .analogy-row { grid-template-columns: 1fr; }
    .analogy-cell { border-right: 0; border-bottom: 1px solid var(--line); }
    .analogy-row.head { display: none; }
    .analogy-cell.label::before {
        content: "Category — "; opacity: .6;
    }
    .anatomy-callouts { grid-template-columns: 1fr; }
    .fusion-row { grid-template-columns: 1fr; gap: 14px; }
    .fusion-merge { padding: 8px 0; }
    .fusion-outputs { grid-template-columns: 1fr; }
    .playbooks-wrap { grid-template-columns: 1fr; gap: 28px; }
    .triage-cols { grid-template-columns: 1fr; }
    .triage-col { border-right: 0; border-bottom: 1px solid var(--line); }
    .others-grid { grid-template-columns: 1fr; }
    .foot-grid { grid-template-columns: 1fr; gap: 28px; }
    .evt-row { grid-template-columns: 60px 1fr; }
    .evt-row .badge { grid-column: 2; justify-self: start; }
}
