/* tilde.run — brutalist markdown landing page */

html { scroll-behavior: smooth; overflow-x: clip; }
body { margin: 0; overflow-x: clip; }

/* ── Design tokens ─────────────────────────── */

.landing {
    --bg:           #f5f5f0;
    --bg-card:      #ffffff;
    --bg-dark:      #0a0a0f;

    --border:       #111111;
    --border-light: #cccccc;

    --text:         #0f0f0f;
    --text-2:       #444444;
    --text-3:       #777777;
    --text-inv:     #e0e0e0;

    --accent:       #ea580c;
    --accent-light: #ffedd5;
    --accent-2:     #06d6a0;
    --accent-2-light:#d1fae5;

    --green:        #22863a;
    --red:          #cb2431;

    --syn-kw:       #fdba74;
    --syn-fn:       #06d6a0;
    --syn-st:       #5eead4;
    --syn-cm:       #6b7280;
    --syn-nb:       #fdba74;
    --syn-nr:       #06d6a0;

    --font:         'JetBrains Mono', 'Fira Code', 'Courier New', monospace;
    --max-w:        1200px;
    --gutter:       clamp(1.25rem, 4vw, 2.5rem);
    --shadow:       5px 5px 0 var(--border);
    --shadow-sm:    3px 3px 0 var(--border);
    --shadow-accent:5px 5px 0 var(--accent);

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

.landing *, .landing *::before, .landing *::after {
    margin: 0; padding: 0; box-sizing: border-box;
}

.landing ::selection { background: var(--accent-light); color: var(--text); }
.landing :focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; }

.landing a { color: var(--accent); text-decoration: none; transition: color 0.15s; }
.landing a:hover { color: var(--text); }

.landing code { font-family: var(--font); }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--gutter); }
.accent { color: var(--accent); }

/* ── Nav ───────────────────────────────────── */

.nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    padding: 0 var(--gutter);
    background: transparent;
    border-bottom: 3px solid transparent;
    transition: background 0.2s, border-color 0.2s;
}
.nav-scrolled {
    background: rgba(245, 245, 240, 0.95);
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    border-bottom-color: var(--border);
}
.nav-scrolled .nav-logo { color: var(--text) !important; }
.nav-scrolled .nav-logo .accent { color: var(--accent) !important; }
.nav-scrolled .nav-link { color: var(--text-2) !important; }
.nav-scrolled .nav-link:hover { color: var(--text) !important; }
.nav-scrolled .nav-toggle span { background: var(--text); }
.nav-scrolled .nav-cta {
    color: #fff !important; background: var(--accent);
    border-color: var(--accent);
}
.nav-scrolled .nav-cta:hover {
    box-shadow: 4px 4px 0 var(--accent);
}

.nav-inner {
    max-width: var(--max-w); margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
    height: 3.5rem;
}

.nav-logo {
    font-weight: 800; font-size: 1.1rem;
    color: #fff !important; letter-spacing: -0.02em;
    transition: color 0.2s;
}
.nav-logo .accent { color: rgba(255,255,255,0.65) !important; transition: color 0.2s; }

.nav-links { display: flex; align-items: center; gap: 1.8rem; }

.nav-link {
    font-size: 0.8rem; font-weight: 500;
    color: rgba(255,255,255,0.7) !important;
    transition: color 0.2s;
}
.nav-link:hover { color: #fff !important; }
.nav-github { display: flex; align-items: center; }

.nav-cta {
    font-size: 0.8rem; font-weight: 700;
    color: var(--bg-dark) !important; background: #fff;
    padding: 0.4rem 1.1rem;
    border: 2px solid #fff;
    transition: transform 0.1s, box-shadow 0.1s;
}
.nav-cta:hover {
    transform: translate(-2px, -2px);
    box-shadow: 4px 4px 0 rgba(255,255,255,0.4);
    color: var(--bg-dark) !important;
}
.nav-cta:active { transform: translate(1px,1px); box-shadow: none; }

.nav-toggle {
    display: none; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-toggle span {
    display: block; width: 20px; height: 2px; background: #fff;
    transition: transform 0.2s, opacity 0.15s, background 0.2s;
}
.nav-toggle-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle-active span:nth-child(2) { opacity: 0; }
.nav-toggle-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Buttons ───────────────────────────────── */

.btn {
    display: inline-flex; align-items: center; gap: 0.4rem;
    font-family: var(--font); font-size: 0.85rem; font-weight: 700;
    padding: 0.7rem 1.6rem; border: 3px solid;
    cursor: pointer; transition: transform 0.1s, box-shadow 0.1s;
    text-decoration: none;
}
.btn:active { transform: translate(2px, 2px); box-shadow: none !important; }

.btn-primary {
    background: var(--accent); color: #fff !important; border-color: var(--accent);
    box-shadow: 5px 5px 0 rgba(255,255,255,0.25);
}
.btn-primary:hover {
    color: #fff !important;
    transform: translate(-2px, -2px);
    box-shadow: 7px 7px 0 rgba(255,255,255,0.3);
}

.btn-ghost {
    background: transparent; color: rgba(255,255,255,0.8) !important;
    border-color: rgba(255,255,255,0.4);
    box-shadow: 5px 5px 0 rgba(255,255,255,0.12);
}
.btn-ghost:hover {
    color: #fff !important;
    border-color: rgba(255,255,255,0.6);
    box-shadow: 7px 7px 0 rgba(255,255,255,0.18);
}

.btn-lg { font-size: 0.95rem; padding: 0.85rem 2.4rem; }

/* ── Hero ──────────────────────────────────── */

.hero {
    position: relative;
    padding: 8rem 0 0;
    background: var(--bg-dark);
    color: var(--text-inv);
    overflow: hidden;
}

/* ── Hero animated background ──────────────── */

.hero-bg {
    position: absolute; inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}
.hero > .container,
.hero > .hero-stats,
.hero > .integrations {
    position: relative;
    z-index: 1;
}

.hero-bg-grid {
    position: absolute; inset: -10% -5%;
    background-image:
        radial-gradient(circle at 1px 1px, rgba(255,255,255,0.06) 1px, transparent 0);
    background-size: 32px 32px;
    mask-image: radial-gradient(ellipse 75% 55% at 50% 35%, #000 20%, transparent 85%);
    -webkit-mask-image: radial-gradient(ellipse 75% 55% at 50% 35%, #000 20%, transparent 85%);
    animation: heroGridDrift 40s linear infinite;
    opacity: 0.8;
}

.hero-bg-orb {
    position: absolute;
    width: 680px; height: 680px;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.55;
    will-change: transform;
}
.hero-bg-orb-1 {
    top: -20%; left: -10%;
    background: radial-gradient(circle, rgba(234,88,12,0.55), transparent 65%);
    animation: heroOrbDrift1 22s ease-in-out infinite;
}
.hero-bg-orb-2 {
    top: 10%; right: -15%;
    background: radial-gradient(circle, rgba(251,146,60,0.4), transparent 65%);
    animation: heroOrbDrift2 26s ease-in-out infinite;
}
.hero-bg-orb-3 {
    bottom: -30%; left: 25%;
    width: 520px; height: 520px;
    background: radial-gradient(circle, rgba(6,214,160,0.22), transparent 65%);
    animation: heroOrbDrift3 30s ease-in-out infinite;
}


.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    padding-bottom: 4rem;
}
.hero-grid > * { min-width: 0; }

.hero-badge {
    display: inline-block;
    font-size: 0.75rem; font-weight: 600;
    color: #fdba74; background: rgba(234, 88, 12, 0.18);
    border: 1px solid rgba(251, 146, 60, 0.4);
    padding: 0.3rem 0.8rem;
    margin-bottom: 1.5rem;
    letter-spacing: 0.02em;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800; line-height: 1.1;
    letter-spacing: -0.04em; color: #fff;
    margin-bottom: 1rem;
}
.hero-hash {
    color: var(--accent); opacity: 0.5;
    margin-right: 0.15em;
}
.hero .accent { color: var(--accent); }

.hero-tagline {
    font-size: 1.2rem; font-weight: 500;
    color: rgba(255,255,255,0.75);
    margin-bottom: 1rem;
}

.hero-desc {
    font-size: 0.88rem; color: rgba(255,255,255,0.55);
    line-height: 1.8; margin-bottom: 2rem; max-width: 440px;
}

.hero-actions { display: flex; gap: 0.8rem; flex-wrap: wrap; align-items: center; }

.hero-cta-note {
    font-size: 0.72rem; color: rgba(255,255,255,0.45);
    margin-top: 0.6rem; letter-spacing: 0.03em;
}

/* Hero content staggered entrance */
.hero-content > * { opacity: 0; animation: heroIn 0.5s ease both; }
.hero-content > :nth-child(1) { animation-delay: 0s; }
.hero-content > :nth-child(2) { animation-delay: 0.08s; }
.hero-content > :nth-child(3) { animation-delay: 0.16s; }
.hero-content > :nth-child(4) { animation-delay: 0.24s; }
.hero-content > :nth-child(5) { animation-delay: 0.32s; }
.hero-content > :nth-child(6) { animation-delay: 0.38s; }

/* ── Hero Control Plane Illustration ───────── */

.hero-visual { position: relative; }

.hv-window {
    position: relative;
    border: 2px solid rgba(255,255,255,0.14);
    background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
    box-shadow:
        0 0 0 1px rgba(234,88,12,0.05),
        0 20px 60px -20px rgba(234,88,12,0.35),
        inset 0 0 60px -20px rgba(234,88,12,0.12);
    overflow: hidden;
    opacity: 0;
    animation: hvWindowIn 0.6s ease 0.1s both;
}

.hv-bar {
    display: flex; align-items: center; gap: 0.8rem;
    padding: 0.6rem 0.9rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    background: rgba(0,0,0,0.3);
    position: relative; z-index: 3;
}
.hv-bar-dots { display: flex; gap: 0.4rem; }
.hv-bar-dot {
    width: 10px; height: 10px; border-radius: 50%;
    background: rgba(255,255,255,0.15);
}
.hv-bar-dot:nth-child(1) { background: rgba(255,105,97,0.55); }
.hv-bar-dot:nth-child(2) { background: rgba(255,200,100,0.55); }
.hv-bar-dot:nth-child(3) { background: rgba(100,215,135,0.55); }
.hv-bar-title {
    flex: 1;
    font-size: 0.72rem; font-weight: 600;
    color: rgba(255,255,255,0.55);
    letter-spacing: 0.03em;
    text-align: center;
    overflow: hidden; white-space: nowrap; text-overflow: ellipsis;
}
.hv-bar-sep { color: rgba(255,255,255,0.2); margin: 0 0.3em; }
.hv-bar-live {
    display: inline-flex; align-items: center; gap: 0.35rem;
    font-size: 0.72rem; font-weight: 700;
    color: var(--accent-2);
    letter-spacing: 0.12em;
}
.hv-bar-livedot {
    width: 7px; height: 7px; border-radius: 50%;
    background: var(--accent-2);
    box-shadow: 0 0 0 0 rgba(6,214,160,0.7);
    animation: hvPulseDot 1.6s ease-out infinite;
}

/* Faint grid backdrop */
.hv-bg {
    position: absolute; inset: 2.2rem 0 0 0;
    pointer-events: none; z-index: 1;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 24px 24px;
    mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
}

.hv-inner {
    position: relative; z-index: 4;
    padding: 1rem 1.1rem 1.1rem;
    display: flex; flex-direction: column; gap: 1rem;
}

/* Metrics strip */
.hv-metrics {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
}
.hv-metric {
    display: flex; flex-direction: row;
    align-items: center; justify-content: space-between;
    gap: 0.5rem;
    padding: 0.7rem 0.9rem;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.02);
    opacity: 0;
    animation: hvFadeUp 0.4s ease both;
}
.hv-metric:nth-child(1) { animation-delay: 0.35s; }
.hv-metric:nth-child(2) { animation-delay: 0.45s; }
.hv-metric:nth-child(3) { animation-delay: 0.55s; }
.hv-metric b {
    font-size: 1.25rem; font-weight: 800; color: #fff;
    font-variant-numeric: tabular-nums;
    line-height: 1;
}
.hv-metric span {
    font-size: 0.7rem; font-weight: 600;
    color: rgba(255,255,255,0.45);
    text-transform: uppercase; letter-spacing: 0.1em;
    text-align: right;
    line-height: 1.25;
}

/* Section frame */
.hv-section {
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(0,0,0,0.2);
    padding: 0.7rem 0.8rem 0.8rem;
}
.hv-sec-head {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 0.55rem;
}
.hv-sec-label {
    display: inline-flex; align-items: center; gap: 0.4rem;
    font-size: 0.72rem; font-weight: 700;
    color: rgba(255,255,255,0.75);
    letter-spacing: 0.12em; text-transform: uppercase;
}
.hv-sec-sq {
    width: 8px; height: 8px;
    background: var(--accent);
    box-shadow: 0 0 10px rgba(234,88,12,0.7);
}
.hv-sec-arrow { color: var(--accent); font-weight: 800; }
.hv-sec-circle {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--accent-2);
    box-shadow: 0 0 10px rgba(6,214,160,0.6);
}
.hv-sec-meta {
    font-size: 0.72rem; font-weight: 600;
    color: rgba(255,255,255,0.35);
    letter-spacing: 0.05em;
}

/* Agent rows */
.hv-agent {
    display: grid;
    grid-template-columns: 10px 1fr auto 96px auto;
    align-items: center;
    gap: 0.55rem;
    padding: 0.42rem 0;
    border-bottom: 1px dashed rgba(255,255,255,0.06);
    opacity: 0;
    animation: hvFadeUp 0.4s ease both;
    animation-delay: calc(0.5s + var(--i) * 0.12s);
}
.hv-agent:last-child { border-bottom: 0; }
.hv-agent-pulse {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--accent-2);
    position: relative;
    box-shadow: 0 0 8px rgba(6,214,160,0.5);
}
.hv-agent-name {
    font-size: 0.76rem; font-weight: 700; color: #fff;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.hv-agent-env {
    font-size: 0.72rem; font-weight: 600;
    color: rgba(255,255,255,0.4);
    padding: 0.1rem 0.4rem;
    border: 1px solid rgba(255,255,255,0.12);
    min-width: 11ch;
    text-align: center;
    box-sizing: content-box;
}
.hv-agent-bar {
    position: relative;
    height: 6px;
    background: rgba(255,255,255,0.06);
    overflow: hidden;
}
.hv-agent-fill {
    position: absolute; inset: 0 auto 0 0;
    width: var(--w, 50%);
    background: linear-gradient(90deg, var(--accent), #fb923c);
}
.hv-agent:nth-child(2) .hv-agent-fill { --w: 64%; }
.hv-agent:nth-child(3) .hv-agent-fill { --w: 82%; }
.hv-agent:nth-child(4) .hv-agent-fill { --w: 41%; }
.hv-agent-pct {
    font-size: 0.74rem; font-weight: 700;
    color: rgba(255,255,255,0.7);
    font-variant-numeric: tabular-nums;
    min-width: 2.6em; text-align: right;
}
.hv-connector {
    position: relative;
    height: 2.8rem;
    display: flex;
    justify-content: center;
    margin: -1rem 0;
    z-index: 5;
    opacity: 0;
    animation: hvFadeUp 0.4s ease 0.7s both;
}
.hv-conn-track {
    width: 1px;
    height: 100%;
    background: linear-gradient(180deg, rgba(234,88,12,0.35) 0%, rgba(6,214,160,0.35) 100%);
}
.hv-conn-dot {
    position: absolute;
    width: 6px; height: 6px;
    border-radius: 50%;
    left: 50%; transform: translateX(-50%);
    animation: hvFlowDot 1.8s ease-in-out var(--d, 0s) infinite;
}
@keyframes hvFlowDot {
    0%   { top: 0; opacity: 0; background: var(--accent); box-shadow: 0 0 8px rgba(234,88,12,0.8); }
    12%  { opacity: 1; }
    88%  { opacity: 1; }
    100% { top: calc(100% - 6px); opacity: 0; background: var(--accent-2); box-shadow: 0 0 8px rgba(6,214,160,0.8); }
}

.hv-section-net, .hv-section-tl {
    display: flex; flex-direction: column;
}

/* Network rows */
.hv-net-row {
    display: flex; align-items: center; gap: 0.5rem;
    padding: 0.3rem 0;
    font-size: 0.76rem; font-weight: 600;
    opacity: 0;
    animation: hvNetIn 0.5s ease both;
    animation-delay: calc(0.9s + var(--i) * 0.15s);
}
.hv-net-tag {
    font-size: 0.7rem; font-weight: 800;
    padding: 0.12rem 0.4rem;
    letter-spacing: 0.05em;
    font-variant-numeric: tabular-nums;
}
.hv-net-ok .hv-net-tag {
    color: var(--accent-2);
    background: rgba(6,214,160,0.1);
    border: 1px solid rgba(6,214,160,0.3);
}
.hv-net-deny .hv-net-tag {
    color: #ff7a7a;
    background: rgba(255,80,80,0.1);
    border: 1px solid rgba(255,80,80,0.35);
}
.hv-net-host {
    color: rgba(255,255,255,0.75);
    font-variant-numeric: tabular-nums;
}
.hv-net-deny .hv-net-host {
    color: #ff9b9b;
    text-decoration: line-through;
    text-decoration-color: rgba(255,80,80,0.6);
}

/* Commit log panel */
.hv-commits {
    position: relative;
    display: flex; flex-direction: column;
    gap: 0.32rem;
    padding-left: 0.25rem;
}
.hv-commits::before {
    content: "";
    position: absolute;
    left: calc(0.25rem + 4px);
    top: 9px; bottom: 9px;
    width: 1px;
    background: linear-gradient(180deg,
        rgba(6,214,160,0.5) 0%,
        rgba(6,214,160,0.5) 40%,
        rgba(255,122,122,0.4) 55%,
        rgba(234,88,12,0.55) 100%);
    opacity: 0;
    animation: hvFadeUp 0.6s ease 0.9s both;
}
.hv-commit {
    display: grid;
    grid-template-columns: 9px minmax(0,auto) minmax(0,1fr) auto;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.72rem;
    line-height: 1;
    opacity: 0;
    animation: hvFadeUp 0.45s ease both;
    animation-delay: calc(0.95s + var(--i) * 0.14s);
}
.hv-commit-dot {
    width: 9px; height: 9px; border-radius: 50%;
    background: var(--accent-2);
    box-shadow: 0 0 8px rgba(6,214,160,0.55), 0 0 0 2px rgba(0,0,0,0.35);
    position: relative; z-index: 1;
}
.hv-commit-dot-fail {
    background: #ff7a7a;
    box-shadow: 0 0 8px rgba(255,122,122,0.55), 0 0 0 2px rgba(0,0,0,0.35);
}
.hv-commit-dot-live {
    background: var(--accent);
    box-shadow: 0 0 8px rgba(234,88,12,0.55), 0 0 0 2px rgba(0,0,0,0.35);
}
.hv-commit-agent {
    font-weight: 700;
    color: rgba(255,255,255,0.9);
    white-space: nowrap;
    overflow: hidden; text-overflow: ellipsis;
}
.hv-commit-path {
    color: rgba(255,255,255,0.45);
    white-space: nowrap;
    overflow: hidden; text-overflow: ellipsis;
    font-variant-numeric: tabular-nums;
}
.hv-commit-path::before {
    content: "\2192";
    margin-right: 0.35em;
    color: rgba(255,255,255,0.25);
}
.hv-commit-stat {
    font-weight: 700;
    padding: 0.14rem 0.38rem;
    font-size: 0.68rem;
    letter-spacing: 0.03em;
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
}
.hv-commit-add {
    color: var(--accent-2);
    background: rgba(6,214,160,0.1);
    border: 1px solid rgba(6,214,160,0.3);
}
.hv-commit-revert {
    color: #ff9b9b;
    background: rgba(255,80,80,0.08);
    border: 1px solid rgba(255,80,80,0.3);
    text-transform: uppercase;
}
.hv-commit-writing {
    color: #fff;
    background: rgba(234,88,12,0.18);
    border: 1px solid rgba(234,88,12,0.45);
    text-transform: uppercase;
    display: inline-flex; align-items: baseline;
}
.hv-caret {
    display: inline-block;
    width: 0.32em; height: 0.7em;
    background: #fff;
    margin-left: 0.18em;
    animation: blink 1s steps(1) infinite;
}
.hv-commit-live .hv-commit-path,
.hv-commit-live .hv-commit-agent {
    color: #fff;
}

/* ── Hero filesystem panel ──────────────────── */

.hv-fs-hash {
    color: var(--accent);
    font-size: 0.68rem;
    letter-spacing: 0.02em;
}

.hv-fs-list {
    display: flex;
    flex-direction: column;
    gap: 0.14rem;
}

.hv-fs-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.42rem 0.6rem 0.42rem 0.65rem;
    border-left: 2px solid;
    opacity: 0;
    animation: hvFadeUp 0.4s ease both;
    animation-delay: calc(0.45s + var(--i) * 0.12s);
}
/* CSS horizontal connector replacing ASCII tree chars */
.hv-fs-row::before {
    content: "";
    display: block;
    width: 0.55rem;
    height: 1px;
    flex-shrink: 0;
    margin-right: -0.1rem;
}
.hv-fs-row-gh::before { background: rgba(201,209,217,0.3); }
.hv-fs-row-s3::before { background: rgba(255,159,67,0.4); }
.hv-fs-row-gd::before { background: rgba(79,195,247,0.4); }
.hv-fs-row-lc::before { background: rgba(6,214,160,0.4); }
.hv-fs-row-gh {
    border-left-color: rgba(201,209,217,0.5);
    background: linear-gradient(90deg, rgba(201,209,217,0.05) 0%, transparent 70%);
}
.hv-fs-row-s3 {
    border-left-color: rgba(255,159,67,0.6);
    background: linear-gradient(90deg, rgba(255,159,67,0.06) 0%, transparent 70%);
}
.hv-fs-row-gd {
    border-left-color: rgba(79,195,247,0.6);
    background: linear-gradient(90deg, rgba(79,195,247,0.06) 0%, transparent 70%);
}
.hv-fs-row-lc {
    border-left-color: rgba(6,214,160,0.65);
    background: linear-gradient(90deg, rgba(6,214,160,0.06) 0%, transparent 70%);
}



.hv-fs-tag {
    font-size: 0.67rem; font-weight: 700;
    padding: 0.12rem 0.48rem;
    letter-spacing: 0.05em;
    min-width: 5.5ch;
    text-align: center;
    border: 1px solid;
    flex-shrink: 0;
}
.hv-fs-gh {
    color: #c9d1d9;
    border-color: rgba(201,209,217,0.35);
    background: rgba(201,209,217,0.08);
    box-shadow: 0 0 10px rgba(201,209,217,0.12);
}
.hv-fs-s3 {
    color: #ff9f43;
    border-color: rgba(255,159,67,0.4);
    background: rgba(255,159,67,0.1);
    box-shadow: 0 0 10px rgba(255,159,67,0.18);
}
.hv-fs-gd {
    color: #4fc3f7;
    border-color: rgba(79,195,247,0.4);
    background: rgba(79,195,247,0.1);
    box-shadow: 0 0 10px rgba(79,195,247,0.18);
}
.hv-fs-lc {
    color: var(--accent-2);
    border-color: rgba(6,214,160,0.38);
    background: rgba(6,214,160,0.09);
    box-shadow: 0 0 10px rgba(6,214,160,0.18);
}

.hv-fs-mpath {
    font-size: 0.82rem; font-weight: 700;
    color: rgba(255,255,255,0.92);
    letter-spacing: 0.01em;
    flex-shrink: 0;
}

.hv-fs-badge {
    font-size: 0.6rem; font-weight: 700;
    padding: 0.07rem 0.38rem;
    color: var(--accent-2);
    border: 1px solid rgba(6,214,160,0.35);
    background: rgba(6,214,160,0.09);
    box-shadow: 0 0 8px rgba(6,214,160,0.15);
    letter-spacing: 0.07em;
    text-transform: uppercase;
    flex-shrink: 0;
}

.hv-fs-detail {
    font-size: 0.74rem; font-weight: 500;
    color: rgba(255,255,255,0.52);
    overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
    margin-left: auto;
}

.hv-fs-delta {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    flex-shrink: 0;
}
.hv-fd-add, .hv-fd-mod, .hv-fd-del {
    font-size: 0.78rem; font-weight: 700;
    letter-spacing: 0.01em;
}
.hv-fd-add { color: #4ade80; }
.hv-fd-mod { color: #fbbf24; }
.hv-fd-del { color: #f87171; }

.hv-fs-foot {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.6rem;
    padding-top: 0.5rem;
    border-top: 1px dashed rgba(255,255,255,0.08);
    font-size: 0.68rem;
    color: rgba(255,255,255,0.38);
    letter-spacing: 0.04em;
    opacity: 0;
    animation: hvFadeUp 0.5s ease 1.0s both;
}

.hv-fs-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 8px rgba(234,88,12,0.7);
    flex-shrink: 0;
    animation: hvPulseDot 2s ease-out infinite;
}

.hero-visual .install-cmd {
    opacity: 0;
    animation: heroIn 0.5s ease 1.4s both;
}

/* ── Code fences (markdown ``` blocks) ─────── */

.code-fence {
    position: relative;
    background: rgba(255,255,255,0.04);
    border: 2px solid rgba(255,255,255,0.1);
}

.code-fence-label {
    position: absolute; top: 0; right: 0;
    font-size: 0.65rem; font-weight: 600;
    color: rgba(255,255,255,0.45);
    padding: 0.25rem 0.6rem;
    background: rgba(255,255,255,0.05);
    border-left: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    text-transform: uppercase; letter-spacing: 0.08em;
}

.ascii-block {
    font-size: 0.92rem; line-height: 1.3;
    color: rgba(255,255,255,0.55);
    padding: 1.8rem 1.6rem;
    overflow-x: auto;
}
.asc-title { color: #fff; font-weight: 700; }
.asc-accent { color: var(--accent); }
.asc-green { color: var(--accent-2); }
.asc-red { color: #e05555; }
.asc-dim { color: rgba(255,255,255,0.35); }
.asc-muted { color: rgba(255,255,255,0.45); }
.asc-bold { color: #fff; font-weight: 600; }

.install-cmd {
    margin-top: 1.5rem; display: flex; justify-content: center;
    position: relative;
}
.install-copy {
    font-family: var(--font); font-size: 0.65rem; font-weight: 600;
    color: rgba(255,255,255,0.35); background: rgba(255,255,255,0.06);
    border: 2px solid rgba(255,255,255,0.1); border-left: none;
    padding: 0.35rem 0.6rem;
    cursor: pointer; transition: color 0.15s;
}
.install-copy:hover { color: #fff; }
.install-cmd code {
    font-size: 0.78rem; color: #fff; font-weight: 600;
    background: rgba(255,255,255,0.06);
    padding: 0.35rem 0.8rem;
    border: 2px solid rgba(255,255,255,0.1);
    display: block;
}
.dim { color: rgba(255,255,255,0.4); user-select: none; -webkit-user-select: none; }

/* ── Hero stats bar ────────────────────────── */

.hero-stats {
    border-top: 1px solid rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: 1.6rem 0;
    background:
        linear-gradient(180deg, rgba(234,88,12,0.03) 0%, rgba(0,0,0,0) 100%),
        rgba(0,0,0,0.25);
}
.hero-stats-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    align-items: stretch;
}
.hero-stat {
    position: relative;
    display: flex; align-items: flex-start; gap: 0.85rem;
    padding: 0.4rem 1.4rem;
    text-align: left;
    transition: background 0.2s ease;
}
.hero-stat + .hero-stat::before {
    content: '';
    position: absolute; left: 0; top: 12%; bottom: 12%;
    width: 1px;
    background: linear-gradient(180deg,
        transparent 0%,
        rgba(255,255,255,0.09) 30%,
        rgba(255,255,255,0.09) 70%,
        transparent 100%);
}
.hero-stat-icon {
    width: 22px; height: 22px;
    color: var(--accent-2);
    flex-shrink: 0;
    filter: drop-shadow(0 0 12px rgba(6,214,160,0.3));
}
.hero-stat-text { display: flex; flex-direction: column; min-width: 0; }
.hero-stat-value {
    font-size: 0.82rem; font-weight: 700; color: #fff;
    line-height: 1.3;
    letter-spacing: -0.005em;
}
.hero-stat-label {
    font-size: 0.68rem; color: rgba(255,255,255,0.5);
    margin-top: 0.15rem; font-weight: 500;
    line-height: 1.35;
}

/* ── Integrations spinner ─────────────────── */

.integrations {
    padding: 2.2rem 0 2.4rem;
    background: rgba(0,0,0,0.15);
}

.integrations-header {
    display: flex; align-items: center; gap: 1rem;
    max-width: 560px; margin: 0 auto 1.6rem;
    padding: 0 1rem;
}
.integrations-line {
    flex: 1; height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.12) 100%);
}
.integrations-header .integrations-line:last-child {
    background: linear-gradient(90deg, rgba(255,255,255,0.12) 0%, transparent 100%);
}
.integrations-label {
    margin: 0;
    font-size: 0.72rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.14em;
    color: rgba(255,255,255,0.55);
    white-space: nowrap;
}

.integrations-track-wrapper {
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
}

.integrations-track {
    display: flex; gap: 1rem;
    width: max-content;
    animation: scroll-logos 35s linear infinite;
    padding: 0.3rem 0;
}

.integrations-item {
    display: inline-flex; align-items: center; gap: 0.6rem;
    padding: 0.55rem 1.1rem;
    flex-shrink: 0;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.02);
    border-radius: 999px;
    transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}
.integrations-item:hover {
    border-color: rgba(234,88,12,0.4);
    background: rgba(234,88,12,0.06);
    transform: translateY(-1px);
}

.integrations-logo {
    width: 1.2rem; height: 1.2rem;
    color: rgba(255,255,255,0.75);
    flex-shrink: 0;
}

.integrations-item span {
    font-size: 0.78rem; font-weight: 600;
    color: rgba(255,255,255,0.78);
    white-space: nowrap;
    letter-spacing: 0.01em;
}

.integrations-track:hover { animation-play-state: paused; }

@keyframes scroll-logos {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ── Demo Video ────────────────────────────── */

.demo-video { padding: 5rem 0 0; }

.demo-video-wrapper { max-width: 960px; margin: 0 auto; }

.demo-video-embed {
    position: relative; aspect-ratio: 16 / 9;
    overflow: hidden; background: #000;
    border: 3px solid var(--border);
    box-shadow: var(--shadow);
}
.demo-video-embed iframe {
    position: absolute; top: 0; left: 0;
    width: 100%; height: 100%; border: 0;
}

/* ── Section headings ──────────────────────── */

.section-header { margin-bottom: 2.5rem; }

.section-heading {
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    font-weight: 800; color: var(--text);
    letter-spacing: -0.03em;
    margin-bottom: 0.8rem;
}
.md-hash {
    color: var(--accent); opacity: 0.35;
    margin-right: 0.3em; font-weight: 400;
}

.section-desc {
    font-size: 0.88rem; color: var(--text-2);
    max-width: 540px; line-height: 1.8;
}

/* ── Features ──────────────────────────────── */

.features { padding: 5rem 0 0; }

.features-strips {
    display: flex; flex-direction: column; gap: 1.2rem;
}

.card-tag {
    display: inline-block;
    font-size: 0.6rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.1em;
    color: var(--accent);
    background: var(--accent-light);
    border: 2px solid var(--accent);
    padding: 0.15rem 0.5rem;
    margin-bottom: 0.8rem;
    width: fit-content;
}

.card-title {
    display: flex; align-items: center; gap: 0.5rem;
    font-size: 0.95rem; font-weight: 700; color: var(--text);
    margin-bottom: 0.6rem;
}
.card-title svg { color: var(--accent); flex-shrink: 0; }

/* ── Feature strip ────────────────────────── */

.feature-strip-inner {
    display: grid; grid-template-columns: 1fr 1.4fr;
    gap: 0; align-items: stretch;
    background: var(--bg-card);
    border: 3px solid var(--border);
    box-shadow: inset 3px 0 0 0 transparent;
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
.feature-strip-inner:hover {
    box-shadow: inset 3px 0 0 0 var(--accent);
}

.feature-strip-text {
    padding: 1.8rem 2rem;
    display: flex; flex-direction: column; justify-content: center;
}
.feature-strip-text p {
    font-size: 0.82rem; color: var(--text-2);
    line-height: 1.75; margin: 0;
}

/* Code pane */
.feature-strip-code {
    background: var(--bg-dark);
    display: flex; flex-direction: column;
    min-width: 0;
    border-left: 3px solid var(--border);
}

.feature-strip-code-header {
    font-size: 0.6rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.1em;
    color: #555; padding: 0.4rem 1rem;
    border-bottom: 2px solid #333;
    background: rgba(255,255,255,0.03);
}

.feature-strip-code pre {
    font-size: 0.82rem; line-height: 1.7;
    color: #dcdce8; padding: 0.8rem 1rem;
    margin: 0; overflow-x: auto; flex: 1;
    display: flex; align-items: center;
}
.feature-strip-code pre code { width: 100%; }

/* Chat variant (RBAC) */
.feature-strip-chat {
    padding: 0;
}
.strip-chat-body {
    padding: 0.8rem 1rem;
    display: flex; flex-direction: column; gap: 0.5rem;
    flex: 1; justify-content: center;
}
.strip-chat-bubble {
    font-size: 0.72rem; line-height: 1.6;
    color: #b8b8cc; padding: 0.5rem 0.7rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
}
.strip-chat-role {
    display: block; font-size: 0.6rem; font-weight: 700;
    color: #5cb870; margin-bottom: 0.15rem;
}
.strip-chat-approval {
    font-size: 0.68rem; color: var(--syn-nb);
    margin-top: 0.3rem; font-style: italic;
}

/* Log colors */
.log-allow  { color: #22c55e; }
.log-deny   { color: #ef4444; }
.log-host   { color: #61afef; }
.log-dim    { color: #555; }
.log-method { color: #e5c07b; }

/* ── Feature illustrations (shared) ─────────── */

.feature-strip-illus {
    display: flex; flex-direction: column;
    min-height: 0;
}
.feature-strip-illus .feature-strip-code-header {
    display: flex; align-items: center; justify-content: space-between;
    gap: 0.8rem;
    font-size: 0.7rem;
    padding: 0.55rem 1.1rem;
}
.feature-strip-illus .feature-strip-code-header > span:last-child {
    color: rgba(255,255,255,0.35);
    font-weight: 600;
    letter-spacing: 0.08em;
}

/* ── Illus 1: Filesystem ────────────────────── */

.fi-fs-status { color: var(--accent-2) !important; }
.fi-fs-body {
    display: grid;
    grid-template-columns: auto minmax(40px, 1fr) auto;
    column-gap: 0.7rem;
    row-gap: 0.35rem;
    padding: 1rem 1.2rem 0.6rem;
    flex: 1;
}
.fi-fs-col-head {
    font-size: 0.66rem; font-weight: 700;
    color: rgba(255,255,255,0.4);
    letter-spacing: 0.15em; text-transform: uppercase;
    padding-bottom: 0.2rem;
    border-bottom: 1px dashed rgba(255,255,255,0.1);
    margin-bottom: 0.35rem;
}

.fi-fs-srcs, .fi-fs-wires, .fi-fs-tree {
    display: flex; flex-direction: column;
    justify-content: space-around;
    gap: 0.45rem;
    min-height: 100%;
}
.fi-fs-wires { justify-content: space-around; }

.fi-fs-tree { position: relative; }
.fi-fs-tree::before {
    content: "";
    position: absolute;
    left: 4px;
    top: 0.9rem;
    bottom: 0.9rem;
    width: 1px;
    background: rgba(255, 255, 255, 0.3);
    pointer-events: none;
}

.fi-fs-src {
    display: flex; align-items: center; gap: 0.55rem;
    font-size: 0.82rem;
    line-height: 1.4;
    height: 1.8rem;
    opacity: 0;
    animation: fiFadeRight 0.4s ease both;
    animation-delay: calc(var(--i) * 0.1s);
}
.fi-fs-tag {
    font-size: 0.66rem; font-weight: 700;
    padding: 0.22rem 0.55rem;
    letter-spacing: 0.02em;
    color: #fff;
    min-width: 3.6rem; text-align: center;
    flex-shrink: 0;
    text-transform: lowercase;
    font-variant-numeric: tabular-nums;
}
.fi-tag-gh { background: rgba(110,110,130,0.35); border: 1px solid rgba(160,160,180,0.4); }
.fi-tag-s3 { background: rgba(255,153,0,0.18); border: 1px solid rgba(255,153,0,0.5); color: #ffba63; }
.fi-tag-gd { background: rgba(66,133,244,0.18); border: 1px solid rgba(66,133,244,0.5); color: #89b3f9; }
.fi-tag-lc { background: rgba(234,88,12,0.22); border: 1px solid rgba(251,146,60,0.55); color: #fed7aa; }
.fi-fs-path {
    color: rgba(255,255,255,0.7);
    font-weight: 500;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

.fi-fs-wire {
    position: relative;
    height: 2px;
    background: rgba(255,255,255,0.08);
    overflow: hidden;
    flex-shrink: 0;
}
.fi-fs-wire::before {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(90deg,
        transparent,
        var(--accent) 45%,
        var(--accent-2) 55%,
        transparent);
    background-size: 55% 100%;
    background-repeat: no-repeat;
    background-position: -55% 0;
    animation: fiWireFlow 2.2s linear infinite;
    animation-delay: calc(var(--i) * 0.35s);
    opacity: 0.9;
}

.fi-fs-node {
    display: inline-flex; align-items: center;
    font-size: 0.9rem; color: #fff; font-weight: 700;
    line-height: 1.4;
    height: 1.8rem;
    position: relative;
    padding-left: 1.1rem;
    opacity: 0;
    animation: fiFadeLeft 0.4s ease both;
    animation-delay: calc(0.15s + var(--i) * 0.1s);
}
.fi-fs-node::before {
    content: "";
    position: absolute;
    left: 4px;
    top: 50%;
    width: 11px;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
    pointer-events: none;
}
.fi-fs-branch { display: none; }
.fi-fs-name { letter-spacing: 0.01em; }

.fi-fs-foot {
    padding: 0.75rem 1.2rem 0.9rem;
    display: flex; align-items: center; gap: 0.55rem;
    font-size: 0.76rem; font-weight: 600;
    color: rgba(255,255,255,0.65);
    border-top: 1px dashed rgba(255,255,255,0.08);
    margin-top: auto;
}
.fi-fs-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--accent-2);
    box-shadow: 0 0 8px rgba(6,214,160,0.5);
    animation: hvPulseDot 1.8s ease-out infinite;
}

/* ── Illus 2: Sandbox ───────────────────────── */

.fi-sb-status {
    display: inline-flex !important; align-items: center; gap: 0.3rem;
    color: var(--accent-2) !important;
}
.fi-sb-status-dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: var(--accent-2);
    box-shadow: 0 0 8px rgba(6,214,160,0.6);
    animation: hvBlink 1.6s ease-in-out infinite;
}
.fi-sb-body {
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    padding: 1.6rem 1.4rem 1.4rem;
    flex: 1;
    gap: 1.2rem;
}
.fi-sb-stage {
    position: relative;
    width: 100%; max-width: 420px;
    aspect-ratio: 1.35 / 1;
    display: flex; align-items: center; justify-content: center;
}
.fi-sb-layer {
    position: absolute; inset: 0;
    border: 1px dashed rgba(255,255,255,0.14);
    display: flex; align-items: flex-start; justify-content: flex-start;
    padding: 4px 8px;
}
.fi-sb-layer > span {
    font-size: 0.64rem; font-weight: 700;
    color: rgba(255,255,255,0.45);
    letter-spacing: 0.15em; text-transform: uppercase;
    background: var(--bg-dark);
    padding: 0 0.45rem;
    transform: translateY(-55%);
}
.fi-sb-layer-3 {
    animation: fiSbPulse 3s ease-in-out infinite;
    animation-delay: 0s;
    border-color: rgba(234,88,12,0.4);
}
.fi-sb-layer-2 {
    inset: 30px;
    animation: fiSbPulse 3s ease-in-out infinite;
    animation-delay: 0.4s;
    border-color: rgba(251,146,60,0.35);
}
.fi-sb-layer-1 {
    inset: 60px;
    animation: fiSbPulse 3s ease-in-out infinite;
    animation-delay: 0.8s;
    border-color: rgba(6,214,160,0.35);
}
.fi-sb-core {
    position: relative;
    z-index: 2;
    background: rgba(234,88,12,0.15);
    border: 2px solid var(--accent);
    padding: 0.85rem 1.1rem;
    min-width: 160px;
    box-shadow: 0 0 30px rgba(234,88,12,0.35);
    animation: fiFadeUp 0.5s ease 0.3s both;
}
.fi-sb-core-top {
    display: flex; align-items: center; gap: 0.45rem;
    margin-bottom: 0.35rem;
}
.fi-sb-core-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--accent-2);
    box-shadow: 0 0 0 0 rgba(6,214,160,0.7);
    animation: hvPulseDot 1.4s ease-out infinite;
}
.fi-sb-core-name {
    font-size: 0.9rem; font-weight: 700; color: #fff;
}
.fi-sb-core-meta {
    display: flex; gap: 0.4rem; flex-wrap: wrap;
}
.fi-sb-core-meta span {
    font-size: 0.66rem; font-weight: 600;
    color: rgba(255,255,255,0.6);
    padding: 0.12rem 0.4rem;
    border: 1px solid rgba(255,255,255,0.18);
    font-variant-numeric: tabular-nums;
}
.fi-sb-actions {
    display: flex; gap: 0.4rem;
}
.fi-sb-btn {
    font-family: var(--font);
    font-size: 0.72rem; font-weight: 700;
    letter-spacing: 0.06em; text-transform: uppercase;
    display: inline-flex; align-items: center; gap: 0.35rem;
    padding: 0.4rem 0.75rem;
    cursor: pointer; background: transparent;
}
.fi-sb-btn-commit {
    color: var(--accent-2);
    border: 1px solid rgba(6,214,160,0.4);
    background: rgba(6,214,160,0.08);
}
.fi-sb-btn-rollback {
    color: #ff9b9b;
    border: 1px solid rgba(255,80,80,0.35);
    background: rgba(255,80,80,0.06);
}
.fi-sb-btn-glyph { font-size: 0.8em; }

/* ── Illus 3: Network ───────────────────────── */

.fi-net-title {
    display: inline-flex; align-items: center; gap: 0.4rem;
    color: rgba(255,255,255,0.65) !important;
}
.fi-net-shield {
    width: 10px; height: 12px;
    background: var(--accent);
    clip-path: polygon(50% 0, 100% 25%, 100% 65%, 50% 100%, 0 65%, 0 25%);
    box-shadow: 0 0 8px rgba(234,88,12,0.5);
}
.fi-net-policy {
    color: rgba(255,255,255,0.35) !important;
    font-weight: 600 !important;
}
.fi-net-body {
    padding: 0.7rem 1rem;
    display: flex; flex-direction: column;
    flex: 1;
    font-variant-numeric: tabular-nums;
}
.fi-net-row {
    display: grid;
    grid-template-columns: auto auto 1fr auto;
    align-items: baseline;
    gap: 0.6rem;
    font-size: 0.82rem; line-height: 1.6;
    padding: 0.22rem 0;
    opacity: 0;
    animation: fiFadeLeft 0.35s ease both;
    animation-delay: calc(var(--i) * 0.1s);
}
.fi-net-time { color: rgba(255,255,255,0.35); font-size: 0.76rem; }
.fi-net-method {
    font-weight: 700;
    color: #e5c07b;
    min-width: 2.8em;
}
.fi-net-url {
    min-width: 0;
    white-space: nowrap;
    overflow: hidden; text-overflow: ellipsis;
}
.fi-net-host { color: #89b3f9; font-weight: 600; }
.fi-net-path { color: rgba(255,255,255,0.4); }
.fi-net-verdict {
    font-size: 0.7rem; font-weight: 800;
    padding: 0.14rem 0.55rem;
    letter-spacing: 0.05em;
}
.fi-verdict-allow {
    color: var(--accent-2);
    background: rgba(6,214,160,0.1);
    border: 1px solid rgba(6,214,160,0.35);
}
.fi-verdict-deny {
    color: #ff7a7a;
    background: rgba(255,80,80,0.1);
    border: 1px solid rgba(255,80,80,0.4);
}
.fi-net-row-deny {
    animation-name: fiFadeLeftFlash;
}
.fi-net-row-deny .fi-net-host {
    color: #ff9e9e;
}
.fi-net-row-deny .fi-net-path {
    color: rgba(255,158,158,0.55);
}
.fi-net-foot {
    padding: 0.7rem 1rem 0.9rem;
    display: flex; gap: 1.2rem;
    border-top: 1px dashed rgba(255,255,255,0.08);
    margin-top: 0.4rem;
    font-size: 0.74rem; font-weight: 600;
    color: rgba(255,255,255,0.55);
}
.fi-net-stat b {
    color: var(--accent-2);
    font-variant-numeric: tabular-nums;
    margin-right: 0.25rem;
}
.fi-net-stat-blocked b { color: #ff7a7a; }

/* ── Illus 4: Time Travel ───────────────────── */

.fi-tt-range { color: rgba(255,255,255,0.35) !important; font-weight: 600 !important; }
.fi-tt-body {
    padding: 1.2rem 1.2rem 1rem;
    display: flex; flex-direction: column;
    flex: 1; gap: 0.8rem;
}
.fi-tt-track {
    position: relative;
    height: 36px;
    margin: 0 0.4rem;
}
.fi-tt-line {
    position: absolute; top: 50%; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, rgba(255,255,255,0.05), rgba(255,255,255,0.2), rgba(255,255,255,0.05));
    transform: translateY(-50%);
}
.fi-tt-commit {
    position: absolute;
    top: 50%; left: var(--x);
    width: 10px; height: 10px; border-radius: 50%;
    background: rgba(255,255,255,0.3);
    transform: translate(-50%, -50%);
    box-shadow: 0 0 0 2px var(--bg-dark);
}
.fi-tt-commit-bad {
    background: #ff7a7a;
    box-shadow: 0 0 10px rgba(255,122,122,0.5), 0 0 0 2px var(--bg-dark);
}
.fi-tt-commit-now {
    background: var(--accent-2);
    box-shadow: 0 0 10px rgba(6,214,160,0.5), 0 0 0 2px var(--bg-dark);
}
.fi-tt-hash {
    position: absolute;
    top: 16px; left: 50%;
    transform: translateX(-50%);
    font-size: 0.66rem; font-weight: 700;
    color: rgba(255,255,255,0.45);
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.02em;
}
.fi-tt-playhead {
    position: absolute;
    top: 50%; left: var(--x);
    width: 18px; height: 18px;
    transform: translate(-50%, -50%);
    animation: fiTtPlayhead 4s ease-in-out infinite;
}
.fi-tt-playhead-handle {
    position: absolute; inset: 0;
    border: 2px solid var(--accent);
    border-radius: 50%;
    background: rgba(234,88,12,0.25);
    box-shadow: 0 0 14px rgba(234,88,12,0.55);
}
.fi-tt-playhead::before {
    content: "";
    position: absolute;
    left: 50%; top: -18px; bottom: -18px;
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(234,88,12,0.5), transparent);
    transform: translateX(-50%);
}
.fi-tt-meta {
    display: flex; justify-content: space-between;
    margin: 0.5rem 0.4rem 0;
    font-size: 0.7rem; font-weight: 600;
    color: rgba(255,255,255,0.4);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.fi-tt-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 0.7rem 0.8rem;
    display: flex; flex-direction: column; gap: 0.45rem;
}
.fi-tt-card-head {
    display: flex; justify-content: space-between;
    align-items: baseline;
    gap: 0.5rem;
}
.fi-tt-card-hash {
    font-size: 0.8rem; font-weight: 700; color: #fff;
    font-variant-numeric: tabular-nums;
}
.fi-tt-card-author {
    font-size: 0.72rem; color: #ff7a7a; font-weight: 600;
}
.fi-tt-diff {
    display: flex; flex-direction: column; gap: 0.15rem;
    font-size: 0.78rem;
}
.fi-tt-diff-row {
    padding: 0.18rem 0.5rem;
    display: flex; gap: 0.55rem;
    font-variant-numeric: tabular-nums;
}
.fi-tt-diff-row span:first-child {
    font-weight: 700; width: 0.8em; text-align: center;
}
.fi-tt-diff-del {
    color: #ff9b9b;
    background: rgba(255,80,80,0.08);
    border-left: 2px solid rgba(255,80,80,0.4);
}
.fi-tt-diff-add {
    color: #6ee7b7;
    background: rgba(6,214,160,0.08);
    border-left: 2px solid rgba(6,214,160,0.4);
}
.fi-tt-diff-mod {
    color: #ffc78a;
    background: rgba(255,180,80,0.08);
    border-left: 2px solid rgba(255,180,80,0.4);
}
.fi-tt-revert {
    font-family: var(--font);
    align-self: flex-start;
    font-size: 0.72rem; font-weight: 700;
    letter-spacing: 0.06em; text-transform: uppercase;
    display: inline-flex; align-items: center; gap: 0.4rem;
    padding: 0.42rem 0.75rem;
    color: var(--accent);
    background: rgba(234,88,12,0.12);
    border: 1px solid rgba(234,88,12,0.45);
    cursor: pointer;
}
.fi-tt-revert-glyph { font-size: 0.9em; }

/* ── Illus 5: RBAC ──────────────────────────── */

.fi-rb-count { color: rgba(255,255,255,0.35) !important; font-weight: 600 !important; }
.fi-rb-body {
    padding: 1rem 1.1rem;
    display: flex; flex-direction: column;
    flex: 1; gap: 0.7rem;
}
.fi-rb-lane {
    display: flex; flex-direction: column; gap: 0.35rem;
}
.fi-rb-actor {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.35rem 0.5rem;
    background: rgba(234,88,12,0.15);
    border: 1px solid rgba(234,88,12,0.45);
    width: fit-content;
}
.fi-rb-actor-avatar {
    width: 18px; height: 18px;
    display: flex; align-items: center; justify-content: center;
    background: var(--accent);
    color: #fff;
    font-size: 0.62rem; font-weight: 800;
}
.fi-rb-actor-name {
    font-size: 0.84rem; font-weight: 700; color: #fff;
}
.fi-rb-action {
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 0.5rem 0.35rem 1.3rem;
    position: relative;
    border-left: 1px dashed rgba(255,255,255,0.15);
    margin-left: 0.75rem;
    opacity: 0;
    animation: fiFadeLeft 0.4s ease both;
    animation-delay: calc(0.2s + var(--i) * 0.15s);
}
.fi-rb-action::before {
    content: "";
    position: absolute;
    left: 0; top: 50%;
    width: 0.6rem; height: 1px;
    background: rgba(255,255,255,0.25);
    transform: translateY(-50%);
}
.fi-rb-action-head {
    display: flex; align-items: baseline; gap: 0.4rem;
    min-width: 0;
}
.fi-rb-action-verb {
    font-size: 0.68rem; font-weight: 800;
    color: #e5c07b;
    letter-spacing: 0.05em;
    padding: 0.14rem 0.45rem;
    border: 1px solid rgba(229,192,123,0.35);
    background: rgba(229,192,123,0.08);
}
.fi-rb-action-target {
    font-size: 0.8rem; font-weight: 600;
    color: rgba(255,255,255,0.75);
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.fi-rb-action-arrow {
    width: 18px; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3));
    position: relative;
}
.fi-rb-action-arrow::after {
    content: "";
    position: absolute; right: 0; top: 50%;
    width: 4px; height: 4px;
    border-top: 1px solid rgba(255,255,255,0.5);
    border-right: 1px solid rgba(255,255,255,0.5);
    transform: translateY(-50%) rotate(45deg);
}
.fi-rb-verdict {
    font-size: 0.7rem; font-weight: 800;
    padding: 0.16rem 0.55rem;
    letter-spacing: 0.05em;
}
.fi-rb-verdict-allow {
    color: var(--accent-2);
    background: rgba(6,214,160,0.1);
    border: 1px solid rgba(6,214,160,0.4);
}
.fi-rb-verdict-approve {
    color: #ffc78a;
    background: rgba(255,180,80,0.1);
    border: 1px solid rgba(255,180,80,0.4);
}
.fi-rb-verdict-deny {
    color: #ff7a7a;
    background: rgba(255,80,80,0.1);
    border: 1px solid rgba(255,80,80,0.4);
}
.fi-rb-policy {
    background: rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 0.55rem 0.75rem;
    margin-top: auto;
}
.fi-rb-policy-title {
    font-size: 0.66rem; font-weight: 700;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.1em; text-transform: uppercase;
    padding-bottom: 0.35rem;
    border-bottom: 1px dashed rgba(255,255,255,0.08);
    margin-bottom: 0.4rem;
}
.fi-rb-policy-rule {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.75);
    padding: 0.14rem 0;
    font-variant-numeric: tabular-nums;
    line-height: 1.5;
}
.fi-rb-kw {
    color: var(--accent);
    font-weight: 800;
    font-size: 1.05em;
    margin-right: 0.05em;
}
.fi-rb-kw-approve { color: #ffc78a; }
.fi-rb-kw-deny { color: #ff7a7a; }
.fi-rb-fn { color: var(--syn-fn); font-weight: 700; }
.fi-rb-str { color: var(--accent-2); }

/* ── Shared illustration keyframes ──────────── */

@keyframes fiFadeLeft {
    from { opacity: 0; transform: translateX(-10px); }
    to   { opacity: 1; transform: translateX(0); }
}
@keyframes fiFadeRight {
    from { opacity: 0; transform: translateX(10px); }
    to   { opacity: 1; transform: translateX(0); }
}
@keyframes fiFadeUp {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes fiFadeLeftFlash {
    0%   { opacity: 0; transform: translateX(-10px); }
    50%  { background: rgba(255,80,80,0.08); }
    100% { opacity: 1; transform: translateX(0); background: transparent; }
}
@keyframes fiWireFlow {
    0%   { background-position: -55% 0; }
    100% { background-position: 155% 0; }
}
@keyframes fiSbPulse {
    0%, 100% { opacity: 0.4; }
    50%      { opacity: 1; }
}
@keyframes fiTtPlayhead {
    0%   { left: 6%; }
    25%  { left: 56%; }
    50%  { left: 56%; }
    75%  { left: 92%; }
    100% { left: 6%; }
}

/* Chat code (used in quickstart) */
.chat-code {
    font-weight: 600; color: var(--syn-kw);
    font-style: italic;
}

/* ── Quickstart ────────────────────────────── */

.quickstart { padding: 5rem 0 0; }

.qs-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
.qs-grid > * { min-width: 0; }

.qs-pills {
    position: relative;
    display: inline-flex;
    gap: 0.3rem;
    padding: 0.3rem;
    margin-bottom: 1rem;
    background: var(--bg-card);
    border: 2px solid var(--border);
    box-shadow: var(--shadow-sm);
}
.qs-pill {
    position: relative;
    z-index: 2;
    font-family: var(--font);
    font-size: 0.78rem; font-weight: 600;
    color: var(--text-2);
    background: transparent;
    border: 0;
    padding: 0.45rem 0.95rem;
    display: inline-flex; align-items: center; gap: 0.4rem;
    cursor: pointer;
    transition: color 0.18s ease;
}
.qs-pill-icon {
    flex-shrink: 0;
    color: var(--text-3);
    transition: color 0.18s ease, transform 0.18s ease;
}
.qs-pill:hover {
    color: var(--text);
}
.qs-pill:hover .qs-pill-icon {
    color: var(--accent);
}
.qs-pill-active {
    color: #fff !important;
}
.qs-pill-active .qs-pill-icon {
    color: #fff !important;
    transform: scale(1.05);
}
.qs-pill-indicator {
    position: absolute;
    z-index: 1;
    top: 0.3rem; bottom: 0.3rem;
    left: 0.3rem;
    width: 0;
    background: var(--accent);
    box-shadow: 0 0 0 1px var(--accent), 0 2px 12px rgba(234,88,12,0.4);
    transition: transform 0.28s cubic-bezier(0.2, 0.8, 0.2, 1),
                width 0.28s cubic-bezier(0.2, 0.8, 0.2, 1);
    pointer-events: none;
}

.qs-desc { margin-bottom: 1rem; }

/* Large code fence for quickstart */
.code-fence-lg {
    background: var(--bg-dark);
    border: 3px solid var(--border);
    box-shadow: var(--shadow);
    min-width: 0;
    overflow: hidden;
    position: relative;
}
.code-fence-lg::before {
    content: "";
    position: absolute; inset: 0;
    background-image:
        radial-gradient(circle at 1px 1px, rgba(255,255,255,0.04) 1px, transparent 0);
    background-size: 28px 28px;
    pointer-events: none;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, #000 30%, transparent 85%);
    -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, #000 30%, transparent 85%);
    opacity: 0.6;
}

/* Terminal-style chrome bar */
.qs-chrome {
    position: relative; z-index: 2;
    display: flex; align-items: center; gap: 0.8rem;
    padding: 0.55rem 0.9rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    background: rgba(0,0,0,0.3);
}
.qs-chrome-dots { display: flex; gap: 0.4rem; }
.qs-chrome-dots span {
    width: 10px; height: 10px; border-radius: 50%;
    background: rgba(255,255,255,0.15);
}
.qs-chrome-dots span:nth-child(1) { background: rgba(255,105,97,0.55); }
.qs-chrome-dots span:nth-child(2) { background: rgba(255,200,100,0.55); }
.qs-chrome-dots span:nth-child(3) { background: rgba(100,215,135,0.55); }
.qs-chrome-title {
    flex: 1;
    text-align: center;
    font-size: 0.72rem; font-weight: 600;
    color: rgba(255,255,255,0.55);
    letter-spacing: 0.03em;
}
.qs-chrome-copy {
    font-family: var(--font);
    font-size: 0.62rem; font-weight: 700;
    letter-spacing: 0.08em; text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.12);
    padding: 0.25rem 0.55rem;
    cursor: pointer;
    transition: color 0.15s, background 0.15s, border-color 0.15s;
}
.qs-chrome-copy:hover {
    color: #fff;
    border-color: rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.08);
}
/* Legacy code-fence-label used only outside quickstart */
.code-fence-lg .code-fence-label { display: none; }

.qs-links { display: flex; gap: 1.2rem; margin-top: 1rem; }
.doc-link {
    font-size: 0.82rem; font-weight: 600;
    color: var(--text-2) !important;
    display: inline-flex; align-items: center; gap: 0.3rem;
}
.doc-link:hover { color: var(--accent) !important; }

/* Fade transition for tab switching */
.qs-fade { transition: opacity 0.2s ease; min-width: 0; }
.qs-fade-out { opacity: 0; }

.code-body { padding: 1.2rem 0; min-height: 22rem; min-width: 0; }

/* Chat window (Claude Code tab) */
.chat-body {
    padding: 1.4rem; min-height: 22rem;
    display: flex; flex-direction: column; gap: 1rem;
    min-width: 0;
}
.chat-bubble {
    font-size: 0.82rem; line-height: 1.7;
    padding: 0.8rem 1rem; max-width: 88%;
    min-width: 0; overflow-x: auto;
}
.chat-user {
    background: rgba(234, 88, 12, 0.1);
    border: 2px solid rgba(234, 88, 12, 0.2);
    color: #d0d0e0; align-self: flex-start;
}
.chat-user-label {
    font-size: 0.65rem; font-weight: 700; color: var(--accent);
    margin-bottom: 0.25rem; display: block;
}
.chat-agent {
    background: rgba(255,255,255,0.03);
    border: 2px solid rgba(255,255,255,0.06);
    color: #b8b8cc; align-self: flex-end;
}
.chat-agent-label {
    font-size: 0.65rem; font-weight: 700; color: #5cb870;
    margin-bottom: 0.25rem; display: block;
}
.chat-cmd {
    font-size: 0.72rem; color: #a0a0a0;
    background: rgba(0,0,0,0.3); padding: 0.15rem 0.4rem;
    display: inline;
}
.chat-result { font-size: 0.72rem; color: #5cb870; margin-top: 0.4rem; }
.chat-approval { font-size: 0.72rem; color: var(--syn-nb); margin-top: 0.4rem; font-style: italic; }

.code-body pre {
    font-size: 0.78rem; line-height: 1.8; color: #dcdce8;
    overflow-x: auto; padding: 0 1.2rem;
}
.ln {
    display: inline-block; width: 2.2em; text-align: right;
    color: #666; margin-right: 1em; user-select: none;
}

.syn-kw { color: var(--syn-kw); }
.syn-fn { color: var(--syn-fn); }
.syn-st { color: var(--syn-st); }
.syn-cm { color: var(--syn-cm); font-style: italic; }
.syn-nb { color: var(--syn-nb); }
.syn-nr { color: var(--syn-nr); }

/* Tab panel visibility (JS progressive enhancement) */
.js .qs-tab-item:not(.active),
.js .qs-tab-panel:not(.active) { display: none; }

/* ── Workflow ──────────────────────────────── */

.workflow { padding: 5rem 0 0; }

.timeline {
    background: var(--bg-card);
    border: 3px solid var(--border);
    box-shadow: var(--shadow);
    padding: 1.8rem 1.8rem 1.8rem 2.2rem;
    margin-bottom: 2.5rem;
}

.timeline-entry {
    display: flex; gap: 1rem; position: relative;
    padding-bottom: 1.3rem;
}
.timeline-entry:last-child { padding-bottom: 0; }
.timeline-entry::before {
    content: ''; position: absolute; left: 5px; top: 14px; bottom: 0;
    width: 2px; background: var(--border-light);
}
.timeline-entry:last-child::before { display: none; }

.timeline-dot {
    width: 12px; height: 12px; flex-shrink: 0; margin-top: 4px;
    background: var(--border-light); position: relative; z-index: 1;
}
.timeline-dot-current { background: var(--accent); }

.timeline-meta { display: flex; align-items: center; gap: 0.7rem; margin-bottom: 0.2rem; }
.timeline-branch {
    font-size: 0.68rem; font-weight: 600; color: var(--accent);
    background: var(--accent-light);
    padding: 0.1rem 0.5rem;
    border: 2px solid var(--accent);
}
.timeline-hash { font-size: 0.72rem; color: var(--text-3); font-weight: 600; }
.timeline-msg { font-size: 0.85rem; color: var(--text); font-weight: 600; margin-bottom: 0.15rem; }
.timeline-author { font-size: 0.68rem; color: var(--text-3); }

.timeline-diff { margin-top: 0.5rem; display: flex; flex-direction: column; gap: 0.15rem; }
.timeline-diff span { font-size: 0.72rem; padding: 0.15rem 0.5rem; font-weight: 500; }
.diff-add { color: var(--green); background: rgba(34,134,58,0.08); }
.diff-del { color: var(--red); background: rgba(203,36,49,0.08); }

/* Workflow steps */
.workflow-steps { display: flex; align-items: stretch; gap: 0; }

.wf-step {
    flex: 1;
    padding: 1.4rem 1.4rem 1.2rem;
    background: var(--bg-card);
    border: 3px solid var(--border);
    box-shadow: var(--shadow);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    display: flex; flex-direction: column;
    position: relative;
    overflow: hidden;
}
.wf-step::before {
    content: "";
    position: absolute; top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent-2));
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.wf-step:hover {
    transform: translate(-2px, -2px);
    box-shadow: 7px 7px 0 var(--border);
}
.wf-step:hover::before { transform: scaleX(1); }

.wf-step-head {
    display: flex; align-items: baseline; justify-content: space-between;
    margin-bottom: 0.5rem;
}
.wf-num {
    font-size: 1.8rem; font-weight: 800; color: var(--accent);
    line-height: 1; opacity: 0.35;
    font-variant-numeric: tabular-nums;
}
.wf-kicker {
    font-size: 0.58rem; font-weight: 800;
    color: var(--text-3);
    text-transform: uppercase; letter-spacing: 0.15em;
}
.wf-step h3 {
    font-size: 0.95rem; font-weight: 700; color: var(--text);
    margin-bottom: 0.45rem; letter-spacing: -0.01em;
}
.wf-step p {
    font-size: 0.8rem; color: var(--text-2); line-height: 1.7;
    margin-bottom: 1rem;
}

/* Step illustrations */
.wf-illus {
    margin-top: auto;
    padding: 0.75rem 0.8rem;
    background: var(--bg-dark);
    color: #e0e0e0;
    font-size: 0.7rem;
    display: flex; align-items: center; gap: 0.45rem;
    flex-wrap: wrap;
    min-height: 3rem;
    position: relative;
    overflow: hidden;
}
.wf-illus::before {
    content: "";
    position: absolute; inset: 0;
    background-image:
        radial-gradient(circle at 1px 1px, rgba(255,255,255,0.05) 1px, transparent 0);
    background-size: 16px 16px;
    opacity: 0.5;
    pointer-events: none;
}
.wf-illus > * { position: relative; z-index: 1; }

/* Step 1: sources → box */
.wf-illus-src {
    font-size: 0.56rem; font-weight: 700;
    padding: 0.15rem 0.45rem;
    color: #fed7aa;
    background: rgba(234,88,12,0.18);
    border: 1px solid rgba(251,146,60,0.4);
    letter-spacing: 0.04em;
}
.wf-illus-wire {
    flex: 1;
    height: 2px; min-width: 14px;
    background: linear-gradient(90deg,
        rgba(255,255,255,0.08),
        rgba(234,88,12,0.55),
        rgba(6,214,160,0.55),
        rgba(255,255,255,0.08));
    background-size: 200% 100%;
    animation: wfWire 2.6s linear infinite;
}
.wf-illus-box {
    font-size: 0.62rem; font-weight: 700;
    padding: 0.15rem 0.5rem;
    color: var(--accent-2);
    border: 1px solid rgba(6,214,160,0.4);
    background: rgba(6,214,160,0.08);
    letter-spacing: 0.02em;
}

/* Step 2: terminal prompt + progress */
.wf-illus-2 { gap: 0.5rem; }
.wf-illus-prompt {
    color: var(--accent);
    font-weight: 800;
}
.wf-illus-cmd {
    color: #fff; font-weight: 600;
    font-size: 0.68rem;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.wf-illus-bar {
    width: 100%;
    height: 4px;
    background: rgba(255,255,255,0.08);
    position: relative; overflow: hidden;
    flex-basis: 100%;
}
.wf-illus-bar-fill {
    position: absolute; inset: 0 auto 0 0;
    width: 0;
    background: linear-gradient(90deg, var(--accent), var(--accent-2));
    animation: wfBarFill 3s cubic-bezier(0.2,0.8,0.2,1) infinite;
}

/* Step 3: commit vs rollback */
.wf-illus-3 { justify-content: center; gap: 0.5rem; }
.wf-illus-choice {
    display: inline-flex; align-items: center; gap: 0.3rem;
    font-size: 0.65rem; font-weight: 800;
    letter-spacing: 0.05em; text-transform: uppercase;
    padding: 0.25rem 0.55rem;
}
.wf-illus-choice-glyph { font-size: 0.95em; font-weight: 900; }
.wf-illus-commit {
    color: var(--accent-2);
    background: rgba(6,214,160,0.1);
    border: 1px solid rgba(6,214,160,0.45);
    animation: wfGlow 3s ease-in-out infinite;
}
.wf-illus-rollback {
    color: #ff9b9b;
    background: rgba(255,80,80,0.08);
    border: 1px solid rgba(255,80,80,0.4);
    animation: wfGlow 3s ease-in-out infinite;
    animation-delay: 1.5s;
}
.wf-illus-or {
    font-size: 0.55rem; font-weight: 700;
    color: rgba(255,255,255,0.4);
    letter-spacing: 0.1em; text-transform: uppercase;
}

/* Connector */
.wf-connector {
    width: 3rem; flex-shrink: 0;
    display: flex; align-items: center; justify-content: flex-end;
    position: relative;
}
.wf-connector-line {
    position: absolute;
    top: 50%; left: 0; right: 0.55rem;
    height: 2px;
    background: var(--border);
    transform: translateY(-50%);
    overflow: hidden;
}
.wf-connector-line::after {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(90deg, transparent, var(--accent) 50%, transparent);
    background-size: 40% 100%;
    background-repeat: no-repeat;
    animation: wfConnectorFlow 2.4s linear infinite;
}
.wf-connector-arrow {
    position: relative; z-index: 1;
    width: 0; height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 11px solid var(--border);
}

@keyframes wfWire {
    0%   { background-position: 100% 0; }
    100% { background-position: -100% 0; }
}
@keyframes wfBarFill {
    0%   { width: 0; opacity: 1; }
    70%  { width: 100%; opacity: 1; }
    100% { width: 100%; opacity: 0; }
}
@keyframes wfGlow {
    0%, 100% { box-shadow: 0 0 0 0 transparent; }
    50%      { box-shadow: 0 0 12px currentColor; }
}
@keyframes wfConnectorFlow {
    0%   { background-position: -50% 0; }
    100% { background-position: 150% 0; }
}

/* ── About ─────────────────────────────────── */

.about { padding: 5rem 0 0; }

.about-block {
    display: flex; gap: 1.5rem; align-items: center;
    background: var(--bg-card);
    border: 3px solid var(--border);
    box-shadow: var(--shadow);
    padding: 2.5rem;
    border-left: 8px solid var(--accent);
}
.about-mascot {
    width: 160px; height: auto; flex-shrink: 0;
    margin-left: auto;
}

.about-bq {
    font-size: 2.5rem; font-weight: 800;
    color: var(--accent); opacity: 0.2;
    line-height: 1; flex-shrink: 0;
}

.about-headline {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem); font-weight: 700;
    color: var(--text); line-height: 1.4; margin-bottom: 1rem;
}
.about-headline a {
    color: var(--accent) !important; text-decoration: underline;
    text-underline-offset: 3px; text-decoration-color: rgba(234,88,12,0.3);
}
.about-headline a:hover { text-decoration-color: var(--accent); }

.about-body {
    font-size: 0.88rem; color: var(--text-2);
    line-height: 1.8; max-width: 600px;
}

/* ── CTA ───────────────────────────────────── */

.cta-section { padding: 5rem 0 5rem; }

.cta-block {
    position: relative;
    text-align: center;
    padding: 3.8rem 2rem 3.4rem;
    background: var(--bg-dark);
    border: 3px solid var(--border);
    box-shadow: var(--shadow);
    overflow: hidden;
}
.cta-bg {
    position: absolute; inset: 0;
    pointer-events: none;
    overflow: hidden;
}
.cta-bg-grid {
    position: absolute; inset: 0;
    background-image:
        radial-gradient(circle at 1px 1px, rgba(255,255,255,0.06) 1px, transparent 0);
    background-size: 32px 32px;
    mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, #000 30%, transparent 85%);
    -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, #000 30%, transparent 85%);
}
.cta-bg-orb {
    position: absolute;
    top: 50%; left: 50%;
    width: 680px; height: 680px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(234,88,12,0.4), transparent 65%);
    filter: blur(80px);
    transform: translate(-50%, -50%);
    animation: ctaOrb 12s ease-in-out infinite;
    opacity: 0.65;
}
.cta-block > *:not(.cta-bg) { position: relative; z-index: 1; }

.code-fence-cta {
    background: rgba(255,255,255,0.03);
    border: 2px solid rgba(255,255,255,0.08);
    display: inline-block;
    margin-bottom: 2rem;
    max-width: 100%;
}
.code-fence-cta .code-fence-label {
    color: rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.03);
    border-color: rgba(255,255,255,0.08);
}

.cta-flow {
    display: inline-flex; flex-direction: column; align-items: center;
    gap: 0.4rem; margin-bottom: 2rem;
    padding: 1.4rem 2rem;
    background: rgba(255,255,255,0.03);
    border: 2px solid rgba(255,255,255,0.08);
}
.cta-flow-row { display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap; justify-content: center; }
.cta-flow-node {
    font-size: 0.82rem; font-weight: 600;
    color: rgba(255,255,255,0.45);
    padding: 0.2rem 0.6rem;
    border: 2px solid rgba(255,255,255,0.1);
    white-space: nowrap;
}
.cta-flow-accent { color: var(--accent); border-color: rgba(234,88,12,0.35); }
.cta-flow-highlight { color: #fff; border-color: rgba(255,255,255,0.3); }
.cta-flow-ok { color: var(--accent-2); border-color: rgba(6,214,160,0.35); }
.cta-flow-fail { color: #e05555; border-color: rgba(224,85,85,0.35); }
.cta-flow-arrow { font-size: 0.9rem; color: rgba(255,255,255,0.15); font-weight: 700; }
.cta-flow-alt {
    display: flex; align-items: center; gap: 0.5rem;
    margin-left: 3.5rem;
}
/* CTA terminal animation */
.cta-term {
    display: inline-block;
    text-align: left;
    background: rgba(10,10,15,0.85);
    backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,0.12);
    margin-bottom: 2.4rem;
    max-width: 100%;
    box-shadow:
        0 20px 50px -20px rgba(0,0,0,0.7),
        0 0 30px -10px rgba(234,88,12,0.5),
        inset 0 0 40px -20px rgba(234,88,12,0.2);
}
.cta-term-chrome {
    display: flex; align-items: center; gap: 0.8rem;
    padding: 0.55rem 0.9rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    background: rgba(0,0,0,0.3);
}
.cta-term-dots { display: flex; gap: 6px; }
.cta-term-dots span {
    width: 10px; height: 10px; border-radius: 50%;
}
.cta-term-dots span:nth-child(1) { background: rgba(255,105,97,0.7); }
.cta-term-dots span:nth-child(2) { background: rgba(255,200,100,0.7); }
.cta-term-dots span:nth-child(3) { background: rgba(100,215,135,0.7); }
.cta-term-title {
    flex: 1;
    font-size: 0.7rem; font-weight: 600;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.03em;
    text-align: center;
}
.cta-term-live {
    display: inline-flex; align-items: center; gap: 0.35rem;
    font-size: 0.58rem; font-weight: 700;
    color: var(--accent-2);
    letter-spacing: 0.12em; text-transform: uppercase;
}
.cta-term-livedot {
    width: 7px; height: 7px; border-radius: 50%;
    background: var(--accent-2);
    box-shadow: 0 0 0 0 rgba(6,214,160,0.7);
    animation: hvPulseDot 1.6s ease-out infinite;
}

.cta-term-body {
    padding: 0.9rem 1rem;
    font-size: 0.82rem; line-height: 1.8;
    min-width: min(520px, 100%);
}
.cta-term-prompt { color: var(--accent); margin-right: 0.45em; font-weight: 800; }
.cta-term-typed {
    color: #fff; display: inline-block;
    overflow: hidden; white-space: nowrap;
    width: 0; vertical-align: bottom;
}
.cta-term-cursor {
    display: inline-block; width: 0.55em; height: 1.1em;
    background: var(--accent); vertical-align: text-bottom;
    animation: blink 0.8s step-end infinite;
    box-shadow: 0 0 8px rgba(234,88,12,0.6);
}
.cta-term-result {
    color: var(--accent-2); font-weight: 600; opacity: 0; height: 0;
    overflow: hidden;
}
.cta-term-status { color: var(--accent-2); font-weight: 800; }
.cta-term-hash {
    color: rgba(255,255,255,0.85);
    font-variant-numeric: tabular-nums;
    padding-left: 0.15em;
}
.cta-term-line-2 {
    opacity: 0;
    animation: ctaResult 0.4s ease 2.8s forwards;
    color: rgba(255,255,255,0.5);
}
.cta-term-hint {
    display: inline-block;
    background: var(--accent);
    width: 0.55em; height: 1.1em;
    vertical-align: text-bottom;
    animation: blink 0.8s step-end infinite 2.8s;
    box-shadow: 0 0 8px rgba(234,88,12,0.6);
}

/* Trigger when scrolled into view */
.revealed .cta-term-typed { animation: ctaType 1.6s steps(39) 0.3s forwards; }
.revealed .cta-term-result { animation: ctaResult 0.4s ease 2.2s forwards; }

@keyframes ctaType { to { width: 39ch; } }
@keyframes ctaResult { to { opacity: 1; height: 1.8em; } }
@keyframes ctaOrb {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.65; }
    50%      { transform: translate(-50%, -50%) scale(1.15); opacity: 0.85; }
}

.cta-title {
    font-size: clamp(1.6rem, 4vw, 2.4rem); font-weight: 800;
    color: #fff; margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}
.cta-title-accent {
    color: var(--accent);
    position: relative;
    background: linear-gradient(120deg, var(--accent), #fb923c);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
}
.cta-sub {
    font-size: 0.85rem; color: rgba(255,255,255,0.55);
    margin-bottom: 2rem;
    letter-spacing: 0.01em;
}
.cta-actions {
    display: inline-flex; gap: 0.8rem; flex-wrap: wrap;
    justify-content: center;
}
.cta-desc {
    font-size: 0.88rem; color: rgba(255,255,255,0.55);
    margin-bottom: 2rem;
}

/* ── Footer ────────────────────────────────── */

.footer {
    border-top: 3px solid var(--border);
    padding: 2.5rem 0; background: var(--bg-card);
}

.footer-top {
    display: flex; justify-content: space-between; gap: 3rem;
    margin-bottom: 2.5rem;
}
.footer-logo { font-weight: 800; font-size: 0.95rem; color: var(--text); }
.footer-logo .accent { color: var(--accent); }
.footer-tagline { font-size: 0.72rem; color: var(--text-3); margin-top: 0.3rem; }

.footer-links { display: flex; gap: 3.5rem; }
.footer-col { display: flex; flex-direction: column; gap: 0.4rem; }
.footer-col h4 {
    font-size: 0.65rem; font-weight: 700; color: var(--text-3);
    text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 0.3rem;
}
.footer-col a { font-size: 0.82rem; color: var(--text-2) !important; }
.footer-col a:hover { color: var(--text) !important; }

.footer-bottom {
    display: flex; justify-content: space-between; align-items: center;
    padding-top: 1.5rem; border-top: 2px solid var(--border-light);
    font-size: 0.72rem; color: var(--text-3);
}
.footer-built-by { display: flex; align-items: center; gap: 0.5rem; }
.footer-axolotl { width: 28px; height: 28px; object-fit: contain; }
.footer-bottom a { color: var(--text-2) !important; }
.footer-bottom a:hover { color: var(--text) !important; }

/* ── Cookie Consent Banner ─────────────────── */

.consent-banner {
    position: fixed; bottom: 1.5rem; left: 50%;
    transform: translateX(-50%); z-index: 200;
    width: calc(100% - 2rem); max-width: 860px;
    background: var(--bg-card);
    border: 3px solid var(--border);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15), var(--shadow);
    padding: 1.2rem 1.8rem;
}
.consent-inner {
    display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap;
}
.consent-text {
    font-size: 0.78rem; color: var(--text-2);
    line-height: 1.65; flex: 1; min-width: 0;
}
.consent-actions { display: flex; gap: 0.6rem; flex-shrink: 0; }

.consent-decline {
    font-family: var(--font); font-size: 0.78rem; font-weight: 700;
    padding: 0.5rem 1.2rem;
    background: var(--bg-card); color: var(--text-2);
    border: 3px solid var(--border);
    cursor: pointer; transition: background 0.15s, color 0.15s;
}
.consent-decline:hover { background: var(--bg); color: var(--text); }

.consent-accept {
    font-family: var(--font); font-size: 0.78rem; font-weight: 700;
    padding: 0.5rem 1.2rem;
    background: var(--accent); color: #fff;
    border: 3px solid var(--accent);
    box-shadow: 3px 3px 0 var(--accent);
    cursor: pointer; transition: transform 0.1s, box-shadow 0.1s;
}
.consent-accept:hover {
    transform: translate(-1px, -1px);
    box-shadow: 4px 4px 0 var(--accent);
}
.consent-accept:active { transform: translate(1px,1px); box-shadow: none; }

.consent-link {
    color: var(--accent) !important;
    text-decoration: underline; text-underline-offset: 2px;
    text-decoration-color: rgba(234,88,12,0.4);
}
.consent-link:hover { text-decoration-color: var(--accent); }

/* ── Animations ────────────────────────────── */

@keyframes slideUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes heroIn {
    from { opacity: 0; transform: translateY(14px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}
@keyframes blink { 50% { opacity: 0; } }

/* Hero control plane animations */
@keyframes hvWindowIn {
    from { opacity: 0; transform: translateY(14px) scale(0.985); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes hvFadeUp {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes hvNetIn {
    from { opacity: 0; transform: translateX(-6px); }
    to   { opacity: 1; transform: translateX(0); }
}
@keyframes hvBarFill {
    from { width: 0; }
    to   { width: var(--w, 50%); }
}
@keyframes hvShimmer {
    0%   { transform: translateX(-120%); }
    100% { transform: translateX(320%); }
}
@keyframes hvPulseDot {
    0%   { box-shadow: 0 0 0 0 rgba(6,214,160,0.7); }
    70%  { box-shadow: 0 0 0 8px rgba(6,214,160,0); }
    100% { box-shadow: 0 0 0 0 rgba(6,214,160,0); }
}
@keyframes hvBlink {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%      { opacity: 0.45; transform: scale(0.75); }
}
@keyframes hvScan {
    0%   { transform: translateY(-40%); }
    100% { transform: translateY(520%); }
}
@keyframes hvFlashRed {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255,80,80,0); }
    50%      { box-shadow: 0 0 0 4px rgba(255,80,80,0.12); }
}

/* Hero background animations */
@keyframes heroGridDrift {
    0%   { transform: translate(0, 0); }
    100% { transform: translate(32px, 32px); }
}
@keyframes heroOrbDrift1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33%      { transform: translate(80px, 60px) scale(1.08); }
    66%      { transform: translate(-40px, 100px) scale(0.95); }
}
@keyframes heroOrbDrift2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    40%      { transform: translate(-100px, 80px) scale(1.1); }
    70%      { transform: translate(-60px, -40px) scale(0.92); }
}
@keyframes heroOrbDrift3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50%      { transform: translate(120px, -60px) scale(1.15); }
}

.js .reveal {
    opacity: 0; transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.js .revealed { opacity: 1; transform: translateY(0); }

.js .features-strips .reveal:nth-child(1) { transition-delay: 0s; }
.js .features-strips .reveal:nth-child(2) { transition-delay: 0.07s; }
.js .features-strips .reveal:nth-child(3) { transition-delay: 0.14s; }
.js .features-strips .reveal:nth-child(4) { transition-delay: 0.21s; }
.js .features-strips .reveal:nth-child(5) { transition-delay: 0.28s; }

.js .workflow-steps .reveal:nth-child(1) { transition-delay: 0s; }
.js .workflow-steps .reveal:nth-child(3) { transition-delay: 0.1s; }
.js .workflow-steps .reveal:nth-child(5) { transition-delay: 0.2s; }

@media (prefers-reduced-motion: reduce) {
    .js .reveal { transition: none; opacity: 1; transform: none; }
    .hero-content > *, .hero-visual .install-cmd,
    .hero-bg-grid, .hero-bg-orb,
    .hv-window, .hv-metric, .hv-agent, .hv-net-row,
    .hv-commits::before, .hv-commit, .hv-agent-fill, .hv-agent-pulse,
    .hv-bar-livedot, .hv-scan, .hv-net-deny .hv-net-tag,
    .hv-commit-dot-live, .hv-caret,
    .hv-fs-row, .hv-fs-foot, .hv-fs-dot {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
    .hv-agent-fill { width: var(--w, 50%) !important; }
}

/* ── Responsive ────────────────────────────── */

@media (max-width: 900px) {
    .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .qs-grid { gap: 1.5rem; }
    .feature-strip-inner {
        grid-template-columns: 1fr;
    }
    .feature-strip-code {
        border-left: none;
        border-top: 3px solid var(--border);
    }
    .workflow-steps { flex-direction: column; }
    .wf-connector {
        width: auto; height: 2rem;
        align-self: center;
        justify-content: center;
    }
    .wf-connector-line, .wf-connector-arrow { display: none; }
    .wf-connector::before {
        content: '\2193';
        font-size: 1.4rem;
        line-height: 1;
        color: var(--border);
        opacity: 0.7;
    }
    .footer-top { flex-direction: column; }
    .hero-stats-inner { grid-template-columns: repeat(2, 1fr); gap: 0; }
    .hero-stat { padding: 0.8rem 1rem; }
    .hero-stat + .hero-stat::before { display: none; }
    .hero-stat:nth-child(even)::before {
        content: '';
        position: absolute; left: 0; top: 12%; bottom: 12%;
        width: 1px;
        background: linear-gradient(180deg,
            transparent 0%,
            rgba(255,255,255,0.09) 30%,
            rgba(255,255,255,0.09) 70%,
            transparent 100%);
    }
    .about-block { flex-direction: column; gap: 0; }
    .about-bq { font-size: 1.5rem; margin-bottom: 0.5rem; }
    .about-mascot { display: none; }
}

@media (max-width: 640px) {
    .nav-links {
        display: none; position: absolute; top: 3.5rem; left: 0; right: 0;
        flex-direction: column;
        background: rgba(10,10,15,0.97);
        backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
        border-bottom: 3px solid rgba(255,255,255,0.1);
        padding: 1.2rem var(--gutter); gap: 0.8rem;
    }
    .nav-scrolled .nav-links,
    .nav-links-scrolled {
        background: rgba(245,245,240,0.98);
        border-bottom-color: var(--border);
    }
    .nav-links-open { display: flex; }
    .nav-toggle { display: flex; }
    .hide-mobile { display: none; }

    .hero { padding: 6rem 0 0; }
    .hero-grid { padding-bottom: 2.5rem; }
    .hero-title { font-size: clamp(1.5rem, 7vw, 2rem); word-break: break-word; }
    .hero-tagline { font-size: 0.95rem; }
    .hero-desc { font-size: 0.82rem; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; justify-content: center; }

    .hv-inner { padding: 0.8rem 0.8rem 0.9rem; gap: 0.8rem; }
    .hv-metric { padding: 0.5rem 0.7rem; gap: 0.4rem; }
    .hv-metric b { font-size: 1rem; }
    .hv-metric span { font-size: 0.66rem; }
    .hv-agent { grid-template-columns: 8px 1fr auto 72px auto; gap: 0.4rem; }
    .hv-agent-name { font-size: 0.72rem; }
    .hv-agent-env { font-size: 0.66rem; padding: 0.08rem 0.3rem; }
    .hv-agent-pct { font-size: 0.68rem; }
    .hv-net-row { font-size: 0.7rem; }
    .cta-flow { padding: 1rem 1.2rem; }
    .cta-term-body { font-size: 0.68rem; padding: 0.6rem 0.8rem; }
    .cta-term-dots span { width: 8px; height: 8px; }

    .btn-lg { font-size: 0.88rem; padding: 0.65rem 1.4rem; }
    .feature-strip-text { padding: 1.5rem; }
    .feature-strip-code pre { font-size: 0.66rem; }
    .strip-chat-bubble { font-size: 0.66rem; }
    .code-body pre { font-size: 0.66rem; padding: 0 0.8rem; }
    .code-body { min-height: 22rem; }
    .chat-body { min-height: 22rem; padding: 1rem; }
    .chat-bubble { font-size: 0.75rem; max-width: 94%; }
    .qs-pill { font-size: 0.7rem; padding: 0.3rem 0.7rem; }
    .timeline { padding: 1.2rem 1rem 1.2rem 1.5rem; }
    .wf-step { padding: 1.2rem; }
    .wf-num { font-size: 1.5rem; }
    .about-block { padding: 1.5rem; }
    .cta-block { padding: 2rem 1.2rem; }
    .cta-title { font-size: 1.2rem; }
    .section-desc { font-size: 0.82rem; }
    .footer-links { flex-direction: column; gap: 1.5rem; }
    .footer-bottom { flex-direction: column; gap: 0.4rem; text-align: center; }
    .qs-links { gap: 0.8rem; flex-wrap: wrap; }
}

/* ── Wide screens ─────────────────────────── */

@media (min-width: 1400px) {
    .landing { --max-w: 1320px; font-size: 1.05rem; }

    .nav-logo { font-size: 1.25rem; }
    .nav-link { font-size: 0.9rem; }
    .nav-cta { font-size: 0.9rem; padding: 0.5rem 1.3rem; }
    .nav-inner { height: 4rem; }

    .hero { padding-top: 9rem; }
    .hero-title { font-size: clamp(2.5rem, 5vw, 3.5rem); }
    .hero-tagline { font-size: 1.4rem; }
    .hero-desc { font-size: 1rem; max-width: 500px; }
    .hero-badge { font-size: 0.85rem; }
    .btn { font-size: 0.95rem; padding: 0.8rem 1.8rem; }
    .btn-lg { font-size: 1.05rem; padding: 0.95rem 2.6rem; }

    .hv-agent-name { font-size: 0.85rem; }
    .hv-agent-env, .hv-agent-pct { font-size: 0.72rem; }
    .hv-metric b { font-size: 1.4rem; }
    .install-cmd code { font-size: 0.88rem; }

    .hero-stat-value { font-size: 0.92rem; }
    .hero-stat-label { font-size: 0.75rem; }
    .hero-stat-icon { width: 24px; height: 24px; }

    .section-heading { font-size: clamp(1.5rem, 3vw, 2.2rem); }
    .section-desc { font-size: 1rem; max-width: 600px; }

    .feature-strip-text { padding: 2.2rem 2.5rem; }
    .card-tag { font-size: 0.68rem; }
    .card-title { font-size: 1.08rem; }
    .feature-strip-text p { font-size: 0.92rem; }
    .feature-strip-code pre { font-size: 0.92rem; }
    .strip-chat-bubble { font-size: 0.82rem; }
    .strip-chat-role { font-size: 0.68rem; }
    .strip-chat-approval { font-size: 0.78rem; }

    .qs-pill { font-size: 0.88rem; padding: 0.5rem 1.4rem; }
    .code-body pre { font-size: 0.88rem; }
    .chat-bubble { font-size: 0.92rem; }
    .chat-user-label, .chat-agent-label { font-size: 0.72rem; }
    .chat-cmd { font-size: 0.82rem; }
    .chat-result, .chat-approval { font-size: 0.82rem; }
    .doc-link { font-size: 0.92rem; }

    .timeline-msg { font-size: 0.95rem; }
    .timeline-branch { font-size: 0.78rem; }
    .timeline-hash { font-size: 0.82rem; }
    .timeline-author { font-size: 0.78rem; }
    .timeline-diff span { font-size: 0.82rem; }

    .wf-step h3 { font-size: 1.05rem; }
    .wf-step p { font-size: 0.92rem; }
    .wf-num { font-size: 2.4rem; }

    .about-headline { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
    .about-body { font-size: 1rem; }

    .cta-title { font-size: clamp(1.5rem, 3.5vw, 2.2rem); }
    .cta-desc { font-size: 1rem; }
    .cta-term-body { font-size: 0.92rem; }

    .footer-logo { font-size: 1.08rem; }
    .footer-tagline { font-size: 0.82rem; }
    .footer-col h4 { font-size: 0.72rem; }
    .footer-col a { font-size: 0.92rem; }
    .footer-bottom { font-size: 0.82rem; }

    .consent-text { font-size: 0.88rem; }
    .consent-decline, .consent-accept { font-size: 0.88rem; }

    .integrations-label { font-size: 0.8rem; }
    .integrations-logo { width: 1.4rem; height: 1.4rem; }
    .integrations-item { padding: 0.65rem 1.3rem; gap: 0.7rem; }
    .integrations-item span { font-size: 0.88rem; }
}
