/* screenscribe marketing landing - handoff implementation layer */
:root {
    --acc: #7b7bf7;
    --bg: #000;
    --panel: #0a0a0d;
    --panel-deep: #08080b;
    --card: #0c0c10;
    --inset: #111116;
    --text: #ffffff;
    --text-strong: #e8e8ea;
    --text-mid: #c8c8cc;
    --text-muted: #8a8a90;
    --text-dim: #6b6b70;
    --line: rgba(255, 255, 255, 0.08);
    --line-soft: rgba(255, 255, 255, 0.06);
    --red: #e5686f;
    --amber: #d9a441;
    --green: #5eb98a;
    --mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
    --sans: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
    --max: 1360px;
    --install-panel-width: 1040px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; background: var(--bg); }

body {
    margin: 0;
    min-width: 320px;
    color: var(--text-strong);
    background: var(--bg);
    font-family: var(--sans);
    font-size: 17px;
    line-height: 1.6;
    overflow-x: hidden;
}

a { color: #d4d4d8; text-decoration: none; }
a:hover { color: #fff; }

code,
pre,
.mono-label,
.section-eyebrow,
.primary-nav,
.wordmark {
    font-family: var(--mono);
}

::selection { background: rgba(123, 123, 247, 0.28); color: #fff; }

main:focus { outline: none; }

.skip-link {
    position: fixed;
    left: 16px;
    top: 12px;
    z-index: 200;
    transform: translateY(-150%);
}

.skip-link:focus { transform: translateY(0); }

.wrap {
    width: min(100% - 112px, var(--max));
    max-width: var(--max);
    margin: 0 auto;
    padding: 0;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(0, 0, 0, 0.72);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line-soft);
}

.site-header__inner,
.site-footer__inner {
    width: min(100% - 112px, var(--max));
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-header__inner {
    min-height: 72px;
    gap: 28px;
}

.brand-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    flex: none;
}

.brand-mark,
.hero-corner {
    position: absolute;
    border-top: 2px solid #6b6b70;
    border-left: 2px solid #6b6b70;
    pointer-events: none;
}

.brand-mark {
    left: -14px;
    top: -12px;
    width: 12px;
    height: 12px;
}

.wordmark {
    position: static;
    display: inline-flex;
    align-items: center;
    padding-left: 0;
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0;
}

.wordmark::before { display: none; }

.wordmark::after,
.cursor,
.type-cursor {
    content: "";
    display: inline-block;
    width: 11px;
    height: 19px;
    margin-left: 4px;
    background: #d4d4d8;
    animation: ss-blink 1.1s step-end infinite;
}

.primary-nav,
.site-footer nav {
    display: flex;
    align-items: center;
    gap: 30px;
    font-size: 15px;
}

.primary-nav a { color: #d4d4d8; }
.primary-nav .nav-github { color: #fff; font-weight: 500; }

.hero {
    position: relative;
    padding: 92px 24px 72px;
    overflow: hidden;
    text-align: center;
    border-bottom: 1px solid var(--line-soft);
}

.hero-grid,
.hero-aura,
.hero-spotlight {
    position: absolute;
    pointer-events: none;
}

.hero-grid {
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.028) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.028) 1px, transparent 1px);
    background-size: 44px 44px;
    -webkit-mask-image: radial-gradient(ellipse 78% 58% at 50% 30%, #000 0%, transparent 76%);
    mask-image: radial-gradient(ellipse 78% 58% at 50% 30%, #000 0%, transparent 76%);
    animation: ss-grid 9s linear infinite;
}

.hero-aura {
    top: -30px;
    left: 50%;
    width: 640px;
    height: 440px;
    max-width: 90vw;
    transform: translateX(-50%);
    background: radial-gradient(ellipse at center, color-mix(in srgb, var(--acc) 18%, transparent), transparent 70%);
    filter: blur(22px);
    animation: ss-aura 6.5s ease-in-out infinite;
}

.hero-spotlight {
    left: 0;
    top: 0;
    width: 520px;
    height: 520px;
    opacity: 0;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, color-mix(in srgb, var(--acc) 13%, transparent), transparent 60%);
    transition: opacity 450ms ease;
}

.hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-kicker,
.section-eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin: 0;
    color: var(--text-dim);
    font-family: var(--mono);
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.hero-kicker span,
.section-eyebrow span {
    width: 34px;
    height: 1px;
    background: #4a4a50;
}

.hero-kicker b { color: var(--acc); font-weight: 500; }

.hero-wordmark-wrap {
    position: relative;
    margin-top: 40px;
}

.hero-corner {
    left: -30px;
    top: -26px;
    width: 26px;
    height: 26px;
}

.hero h1 {
    margin: 0;
    color: #fff;
    font-family: var(--mono);
    font-size: 86px;
    line-height: 1;
    letter-spacing: 0;
}

.hero-promise {
    max-width: 900px;
    margin: 34px 0 0;
    color: #fbfbfc;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.16;
    letter-spacing: 0;
}

.hero-promise span,
.hero-copy span {
    display: block;
}

.hero-copy {
    max-width: 680px;
    margin: 26px 0 0;
    color: var(--text-muted);
    font-size: 18px;
    line-height: 1.7;
}

.hero-copy span + span {
    margin-top: 10px;
}

.terminal-card,
.install-terminal {
    width: 100%;
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 12px;
    overflow: hidden;
    text-align: left;
}

.terminal-card {
    max-width: 720px;
    margin-top: 46px;
}

.terminal-titlebar,
.code-head {
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--line-soft);
}

.terminal-titlebar {
    gap: 8px;
    padding: 12px 16px;
}

.terminal-titlebar span {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: #26262b;
}

.terminal-titlebar strong {
    margin-left: 8px;
    color: #5f5f66;
    font-family: var(--mono);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
}

.terminal-body {
    min-height: 150px;
    padding: 22px 22px 24px;
    color: #e2e2e5;
    font-family: var(--mono);
    font-size: 15px;
    line-height: 1.9;
}

.prompt { color: var(--acc); }

.type-cursor {
    width: 9px;
    height: 16px;
    margin-left: 2px;
    transform: translateY(2px);
}

.terminal-output {
    opacity: 0;
    color: var(--text-dim);
}

.terminal-output--strong {
    color: #e2e2e5;
}

.terminal-output span { color: var(--text-mid); }

.cta-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-top: 40px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 51px;
    padding: 14px 28px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.1);
    background: #141418;
    color: #f0f0f2;
    font-family: var(--mono);
    font-size: 16px;
    font-weight: 500;
}

.btn-primary {
    border-color: #d8d8dc;
    background: #d8d8dc;
    color: #000;
}

.btn:hover { border-color: color-mix(in srgb, var(--acc) 45%, white); transform: translateY(-1px); }

.section {
    padding: 100px 0 40px;
}

section[id] {
    scroll-margin-top: 96px;
}

.section-title {
    max-width: 920px;
    margin: 30px auto 0;
    color: #fff;
    font-family: var(--mono);
    font-size: 56px;
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: 0;
    text-align: center;
}

.section-title--stack span {
    display: block;
}

.section-lead {
    max-width: 800px;
    margin: 24px auto 0;
    color: var(--text-muted);
    font-size: 19px;
    line-height: 1.65;
    text-align: center;
}

.section-lead code {
    color: var(--text-strong);
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 56px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.problem-item {
    padding: 38px 34px 30px;
    border-left: 1px solid rgba(255,255,255,0.1);
}

.problem-item:first-child {
    padding-left: 0;
    border-left: 0;
}

.problem-item:last-child { padding-right: 0; }

.ghost-num {
    display: block;
    color: rgba(255,255,255,0.035);
    font-family: var(--mono);
    font-size: 80px;
    font-weight: 800;
    line-height: 0.9;
    letter-spacing: 0;
    -webkit-text-stroke: 1px rgba(255,255,255,0.28);
}

.old-way {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    margin: 26px 0 0;
    padding: 0 10px;
    border: 1px solid rgba(229,104,111,0.32);
    border-radius: 999px;
    background: rgba(229,104,111,0.06);
    color: #ffb3b7;
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: 2px;
}

.problem-item h3 {
    margin: 14px 0 0;
    color: var(--text-strong);
    font-size: 21px;
    line-height: 1.25;
}

.problem-item p:last-child {
    margin: 12px 0 0;
    color: #7a7a80;
    font-size: 16px;
}

.before-after {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    gap: 34px;
    align-items: center;
}

.media-card,
.report-card,
.finding-card,
.pipeline-panel,
.mode-card,
.trust-band {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 16px;
}

.media-card,
.report-card {
    overflow: hidden;
}

.media-card header,
.report-card header,
.finding-card header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    border-bottom: 1px solid var(--line-soft);
    color: var(--text-dim);
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: 2px;
}

.report-card header span { color: var(--acc); }
.report-card header code { color: #5f5f66; font-size: 11px; }

.video-fake {
    position: relative;
    height: 190px;
    margin: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line-soft);
    border-radius: 10px;
    background: repeating-linear-gradient(135deg, #111116, #111116 10px, #0d0d12 10px, #0d0d12 20px);
}

.video-play {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
}

.video-play::before {
    content: "";
    display: block;
    width: 18px;
    height: 22px;
    background: #d4d4d8;
    clip-path: polygon(0 0, 0 100%, 100% 50%);
    transform: translateX(2px);
}

.video-progress {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 14px;
}

.video-progress div {
    height: 4px;
    border-radius: 3px;
    background: rgba(255,255,255,0.12);
}

.video-progress div span {
    display: block;
    width: 38%;
    height: 100%;
    border-radius: 3px;
    background: #8a8a90;
}

.video-progress p {
    display: flex;
    justify-content: space-between;
    margin: 8px 0 0;
    color: #5f5f66;
    font-family: var(--mono);
    font-size: 11px;
}

.media-card blockquote {
    margin: 0 24px 24px;
    padding: 14px 16px;
    border: 1px solid var(--line-soft);
    border-radius: 10px;
    background: var(--inset);
    color: #7a7a80;
    font-size: 14px;
    font-style: italic;
}

.transform-arrow {
    color: var(--acc);
    font-family: var(--mono);
    font-size: 32px;
}

.report-card--glow {
    border-color: rgba(123,123,247,0.28);
    box-shadow: 0 0 0 1px rgba(123,123,247,0.05), 0 24px 70px -34px rgba(123,123,247,0.45);
}

.summary {
    padding: 22px 22px 8px;
}

.summary p,
.mono-label {
    margin: 0;
    color: var(--text-dim);
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 2px;
}

.summary strong {
    display: block;
    margin-top: 10px;
    color: var(--text-mid);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.6;
}

.mini-findings {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 10px 22px 24px;
}

.mini-findings div {
    position: relative;
    min-height: 72px;
    padding: 12px 68px 12px 72px;
    border: 1px solid var(--line-soft);
    border-radius: 10px;
    background: var(--inset);
}

.mini-findings time {
    position: absolute;
    left: 14px;
    top: 14px;
    color: var(--acc);
    font-family: var(--mono);
    font-size: 12px;
}

.mini-findings h3 {
    display: inline;
    margin: 0 0 0 8px;
    color: var(--text-strong);
    font-size: 14px;
}

.mini-findings p {
    margin: 6px 0 0;
    color: #7a7a80;
    font-size: 13px;
    line-height: 1.5;
}

.mini-findings i {
    position: absolute;
    right: 14px;
    top: 16px;
    width: 42px;
    height: 32px;
    border: 1px solid var(--line);
    border-radius: 5px;
    background: repeating-linear-gradient(135deg, #16161c, #16161c 5px, #121218 5px, #121218 10px);
}

.pill {
    display: inline-flex;
    align-items: center;
    min-height: 20px;
    padding: 2px 8px;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 5px;
    color: #8a8a90;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 1px;
}

.pill-red { color: var(--red); border-color: rgba(229,104,111,0.4); }
.pill-amber { color: var(--amber); border-color: rgba(217,164,65,0.4); }

.anatomy-grid {
    display: grid;
    grid-template-columns: 1.25fr 1fr;
    gap: 40px;
    align-items: start;
    margin-top: 52px;
}

.finding-card { overflow: hidden; }

.finding-card header {
    color: var(--text-mid);
    letter-spacing: 0;
}

.finding-card header div {
    display: flex;
    align-items: center;
    gap: 12px;
}

.finding-card time {
    color: var(--acc);
    border: 1px solid color-mix(in srgb, var(--acc) 45%, transparent);
    border-radius: 5px;
    padding: 2px 8px;
}

.finding-body { padding: 24px 22px 26px; }

.finding-tags {
    display: flex;
    gap: 8px;
    margin: 0 0 18px;
}

.finding-card blockquote {
    display: flex;
    gap: 12px;
    margin: 0;
    padding: 14px 16px;
    border-left: 2px solid var(--acc);
    border-radius: 0 8px 8px 0;
    background: var(--inset);
    color: var(--text-mid);
    font-size: 15px;
    font-style: italic;
}

.finding-card blockquote time {
    flex: none;
    padding: 0;
    border: 0;
    color: var(--text-dim);
    font-size: 11px;
    font-style: normal;
}

.finding-card .finding-body > div:not(.fix-box) {
    margin-top: 20px;
}

.finding-card p {
    color: #e2e2e5;
}

.fix-box {
    margin-top: 18px;
    padding: 16px 18px;
    border: 1px solid color-mix(in srgb, var(--acc) 30%, transparent);
    border-radius: 10px;
    background: color-mix(in srgb, var(--acc) 8%, transparent);
}

.accent {
    color: var(--acc);
}

.section--anatomy .mono-label {
    color: var(--text-strong);
}

.legend-list > p {
    margin: 0;
    color: var(--text-dim);
    font-family: var(--mono);
    font-size: 13px;
    letter-spacing: 1px;
}

.legend-list dl {
    margin: 14px 0 0;
    border-top: 1px solid var(--line);
}

.legend-list dl div {
    display: flex;
    gap: 16px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.legend-list dt {
    min-width: 104px;
    color: var(--text-strong);
    font-family: var(--mono);
    font-size: 12px;
}

.legend-list dd {
    margin: 0;
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.5;
}

.artifact-stack {
    margin-top: 44px;
}

.artifact-kicker {
    margin: 0;
    color: var(--text-dim);
    font-family: var(--mono);
    font-size: 13px;
    letter-spacing: 2px;
}

.artifact-stack > div {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 20px;
}

.artifact-stack article {
    position: relative;
    padding: 22px 22px 24px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--card);
    transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.artifact-stack article:hover {
    transform: translateY(-4px);
    border-color: color-mix(in srgb, var(--acc) 45%, transparent);
    box-shadow: 0 20px 46px -30px var(--acc);
}

.artifact-stack h3 {
    display: inline;
    margin: 0 0 0 10px;
    color: var(--text-strong);
    font-family: var(--mono);
    font-size: 15px;
    font-weight: 500;
}

.artifact-stack p {
    margin: 14px 0 0;
    color: var(--text-muted);
    font-size: 14px;
}

.chip {
    display: inline-block;
    width: 9px;
    height: 9px;
    border-radius: 2px;
}

.chip-acc { background: var(--acc); }
.chip-green { background: var(--green); }
.chip-amber { background: var(--amber); }

.pipeline-panel {
    margin-top: 56px;
    padding: 36px 30px;
}

.pipeline-row {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    gap: 8px;
    align-items: stretch;
}

.pipeline-row > b {
    align-self: center;
    color: #4a4a50;
    font-family: var(--mono);
    font-size: 20px;
    font-weight: 400;
}

.pipeline-node {
    min-width: 0;
    padding: 18px 10px;
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 12px;
    text-align: center;
    transition: border-color 350ms ease, box-shadow 350ms ease, background 350ms ease;
}

.pipeline-node.is-active {
    border-color: rgba(123,123,247,0.55);
    background: rgba(123,123,247,0.06);
    box-shadow: 0 0 0 1px rgba(123,123,247,0.2), 0 14px 40px -22px rgba(123,123,247,0.6);
}

.pipeline-node strong {
    display: block;
    color: #fff;
    font-family: var(--mono);
    font-size: 16px;
}

.pipeline-node span {
    display: block;
    margin-top: 10px;
    color: var(--text-dim);
    font-size: 12px;
    line-height: 1.45;
}

.pipeline-node em {
    color: var(--text-mid);
    font-style: normal;
}

.pipeline-node i {
    font-style: normal;
}

.pipeline-panel > p {
    margin: 22px 0 0;
    color: var(--text-dim);
    font-family: var(--mono);
    font-size: 12px;
    text-align: center;
}

.how-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    margin-top: 44px;
}

.how-steps article {
    padding-top: 22px;
    border-top: 2px solid var(--acc);
}

.how-steps article:nth-child(2) { border-color: color-mix(in srgb, var(--acc) 45%, transparent); }
.how-steps article:nth-child(3) { border-color: color-mix(in srgb, var(--acc) 22%, transparent); }
.how-steps article:nth-child(4) { border-color: color-mix(in srgb, var(--acc) 11%, transparent); }

.how-steps span {
    color: var(--acc);
    font-family: var(--mono);
    font-size: 14px;
    letter-spacing: 2px;
}

.how-steps h3 {
    display: inline;
    margin: 0 0 0 12px;
    color: #fff;
    font-family: var(--mono);
    font-size: 26px;
}

.how-steps p {
    margin: 18px 0 0;
    color: var(--text-muted);
    font-size: 16px;
}

.mode-shell {
    margin-top: 44px;
}

.mode-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
}

.mode-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.mode-card > div {
    flex: 1;
    padding: 34px;
}

.mode-card .mono-label {
    color: var(--text-strong);
    font-size: 13px;
}

.mode-card h3 {
    margin: 16px 0 0;
    color: #fff;
    font-family: var(--mono);
    font-size: 26px;
    line-height: 1.18;
}

.mode-card p:not(.mono-label) {
    color: var(--text-muted);
}

.chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 24px;
}

.chips span {
    padding: 6px 13px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: var(--inset);
    color: var(--text-muted);
    font-family: var(--mono);
    font-size: 12px;
}

.mode-card aside {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 150px;
    padding: 28px 34px;
    border-top: 1px solid var(--line-soft);
    background: var(--panel-deep);
}

.mode-card aside p {
    margin: 0 0 16px;
    color: #5f5f66;
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: 2px;
}

.mode-card code {
    color: #e2e2e5;
    font-size: 15px;
    line-height: 1.8;
}

.mode-card code span {
    color: var(--acc);
}

.mode-card small {
    margin-top: 14px;
    color: var(--text-dim);
    font-size: 13px;
}

.feature-accordion {
    margin-top: 52px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.feature-accordion article {
    border-bottom: 1px solid var(--line);
}

.feature-accordion button {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 26px 14px;
    border: 0;
    background: transparent;
    color: #fff;
    cursor: pointer;
    text-align: left;
}

.feature-accordion button strong {
    flex: 1;
    font-size: 21px;
}

.feature-accordion button span {
    color: var(--acc);
    font-family: var(--mono);
    font-size: 20px;
    transition: transform 250ms ease;
}

.feature-accordion article.is-open button span {
    transform: rotate(90deg);
}

.feature-accordion [data-feat-body] {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 350ms ease, opacity 250ms ease;
}

.feature-accordion article.is-open [data-feat-body] {
    opacity: 1;
}

.feature-accordion p {
    margin: 0;
    padding: 0 14px 28px 54px;
    color: var(--text-muted);
}

.feature-accordion code {
    color: var(--text-mid);
}

.who-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 52px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.who-grid article {
    position: relative;
    padding: 32px 26px 30px;
    border-left: 1px solid var(--line);
}

.who-grid article:first-child {
    padding-left: 0;
    border-left: 0;
}

.who-grid p {
    margin: 0;
    color: #7a7a80;
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: 2px;
}

.who-grid h3 {
    margin: 16px 0 0;
    color: #fff;
    font-size: 19px;
    line-height: 1.3;
}

.who-grid span {
    display: block;
    margin-top: 12px;
    color: var(--text-muted);
    font-size: 15px;
}

.who-agent::before {
    content: "";
    position: absolute;
    top: -1px;
    left: 26px;
    right: 0;
    height: 2px;
    background: var(--acc);
    box-shadow: 0 0 14px var(--acc);
}

.who-agent p {
    color: var(--acc);
}

.install-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 38px;
    margin-top: 50px;
}

.install-steps article {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.install-steps article > span {
    flex: none;
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid color-mix(in srgb, var(--acc) 45%, transparent);
    border-radius: 8px;
    background: color-mix(in srgb, var(--acc) 14%, transparent);
    color: var(--acc);
    font-family: var(--mono);
    font-size: 14px;
}

.install-steps h3 {
    margin: 3px 0 0;
    color: #fff;
    font-size: 17px;
}

.install-steps p {
    margin: 11px 0 0;
    color: var(--text-muted);
    font-size: 15px;
}

.install-steps code {
    color: var(--text-mid);
}

.install-terminal {
    max-width: var(--install-panel-width);
    margin: 28px auto 0;
    border-radius: 14px;
}

.install-note {
    max-width: var(--install-panel-width);
    margin: 18px auto 0;
}

.code-head {
    justify-content: space-between;
    padding: 16px 24px;
}

.code-head span {
    color: var(--text-dim);
    font-family: var(--mono);
    font-size: 14px;
    letter-spacing: 2px;
}

.copy-btn {
    padding: 8px 16px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 6px;
    background: #17171b;
    color: var(--text-mid);
    font-family: var(--mono);
    font-size: 13px;
    letter-spacing: 1px;
    cursor: pointer;
}

.copy-btn.copied {
    border-color: color-mix(in srgb, var(--acc) 60%, white);
    color: #fff;
}

.install-terminal pre {
    margin: 0;
    padding: 30px 28px;
    overflow-x: auto;
    color: #e2e2e5;
    font-family: var(--mono);
    font-size: 15px;
    line-height: 2;
}

.install-terminal .comment {
    color: var(--text-dim);
}

.requirements {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 44px;
    max-width: var(--install-panel-width);
    margin: 30px auto 0;
    color: var(--text-muted);
    font-family: var(--mono);
    font-size: 15px;
}

.requirements span::before {
    content: "›";
    margin-right: 8px;
    color: var(--acc);
}

.trust-band {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    max-width: var(--install-panel-width);
    margin: 40px auto 0;
    padding: 28px 30px;
    background: color-mix(in srgb, var(--acc) 5%, var(--panel));
}

.trust-band > span {
    flex: none;
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid color-mix(in srgb, var(--acc) 40%, transparent);
    border-radius: 9px;
    background: color-mix(in srgb, var(--acc) 14%, transparent);
    color: var(--acc);
    font-size: 12px;
}

.trust-band h3 {
    margin: 2px 0 0;
    color: #fff;
    font-size: 19px;
}

.trust-band p {
    max-width: 860px;
    margin: 11px 0 0;
    color: var(--text-muted);
}

.site-footer {
    margin-top: 40px;
    padding: 0;
    border-top: 1px solid var(--line-soft);
}

.site-footer__inner {
    min-height: 108px;
    padding: 28px 0;
    color: var(--text-mid);
    font-family: var(--mono);
}

.built {
    display: inline-flex;
    align-items: center;
}

.cursor {
    width: 9px;
    height: 15px;
    background: #5a5a60;
}

.js [data-reveal] {
    opacity: 0;
    transform: translateY(20px);
}

.js [data-reveal].ss-in {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 700ms cubic-bezier(.22,.61,.36,1), transform 700ms cubic-bezier(.22,.61,.36,1);
}

@keyframes ss-grid {
    to { background-position: 44px 44px, 44px 44px; }
}

@keyframes ss-aura {
    0%, 100% { opacity: 0.5; transform: translateX(-50%) scale(1); }
    50% { opacity: 0.9; transform: translateX(-50%) scale(1.06); }
}

@keyframes ss-blink {
    0%, 49% { opacity: 1; }
    50%, 100% { opacity: 0; }
}

@media (max-width: 1120px) {
    .wrap,
    .site-header__inner,
    .site-footer__inner {
        width: min(100% - 48px, var(--max));
    }

    .primary-nav {
        gap: 18px;
        font-size: 13px;
    }

    .before-after,
    .anatomy-grid,
    .mode-cards {
        grid-template-columns: 1fr;
    }

    .how-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .transform-arrow {
        transform: rotate(90deg);
        text-align: center;
    }

    .pipeline-row {
        grid-template-columns: 1fr;
    }

    .pipeline-row > b {
        transform: rotate(90deg);
        justify-self: center;
    }

    .who-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .who-grid article:nth-child(3) {
        border-left: 0;
        padding-left: 0;
    }
}

@media (max-width: 820px) {
    .hero {
        padding-top: 92px;
    }

    .hero h1 {
        font-size: 56px;
    }

    .hero-promise,
    .section-title {
        font-size: 34px;
    }

    .hero-copy,
    .section-lead {
        font-size: 17px;
    }

    .primary-nav a:nth-child(1),
    .primary-nav a:nth-child(2),
    .primary-nav a:nth-child(3),
    .primary-nav a:nth-child(4) {
        display: none;
    }

    .problem-grid,
    .artifact-stack > div,
    .how-steps,
    .install-steps {
        grid-template-columns: 1fr;
    }

    .problem-item,
    .problem-item:first-child,
    .problem-item:last-child {
        padding: 28px 0;
        border-left: 0;
        border-top: 1px solid rgba(255,255,255,0.08);
    }

    .problem-item:first-child {
        border-top: 0;
    }

    .who-grid {
        grid-template-columns: 1fr;
    }

    .who-grid article,
    .who-grid article:first-child,
    .who-grid article:nth-child(3) {
        padding: 28px 0;
        border-left: 0;
        border-top: 1px solid var(--line);
    }

    .who-agent::before {
        left: 0;
    }
}

@media (max-width: 560px) {
    body {
        font-size: 16px;
    }

    .wrap,
    .site-header__inner,
    .site-footer__inner {
        width: min(100% - 32px, var(--max));
    }

    .site-header__inner {
        min-height: 66px;
    }

    .wordmark {
        font-size: 18px;
    }

    .primary-nav {
        gap: 14px;
    }

    .hero {
        min-height: auto;
        padding: 52px 16px 40px;
    }

    .hero-kicker,
    .section-eyebrow {
        gap: 10px;
        font-size: 11px;
        letter-spacing: 2px;
    }

    .hero-kicker span,
    .section-eyebrow span {
        width: 20px;
    }

    .hero h1 {
        font-size: 42px;
    }

    .hero-wordmark-wrap {
        margin-top: 24px;
    }

    .hero-corner {
        left: -18px;
        top: -18px;
        width: 18px;
        height: 18px;
    }

    .hero-promise,
    .section-title {
        font-size: 28px;
    }

    .hero-copy,
    .hero .terminal-card {
        display: none;
    }

    .section {
        padding: 76px 0 28px;
    }

    .terminal-body,
    .install-terminal pre {
        font-size: 13px;
    }

    .cta-row,
    .site-footer__inner,
    .site-footer nav {
        align-items: stretch;
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .hero .cta-row {
        flex-direction: row;
        align-items: center;
        margin-top: 28px;
    }

    .hero .btn {
        width: auto;
        min-height: 47px;
        flex: 1 1 0;
        padding: 12px 10px;
        font-size: 14px;
    }

    .mini-findings div {
        padding-right: 14px;
    }

    .mini-findings i {
        display: none;
    }

    .legend-list dl div {
        display: block;
    }

    .legend-list dd {
        margin-top: 6px;
    }

    .mode-card > div,
    .mode-card aside {
        padding: 24px;
    }

    .trust-band {
        display: block;
    }

    .trust-band > span {
        margin-bottom: 16px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }

    *,
    *::before,
    *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
    }

    .js [data-reveal] {
        opacity: 1;
        transform: none;
    }
}
