@import url('https://fonts.googleapis.com/css2?family=Mulish:wght@400;600;700;800;900&display=swap');

/* ═══════════════════════════════════════════════════════════════════
   Must-Have Security — product page (dark)
   Deep navy, glowing glass panels, a blue→cyan interceptor accent.
   Flows seamlessly between the site's dark header and footer.
   ═══════════════════════════════════════════════════════════════════ */

:root {
    --s-bg:      #0A0F1F;   /* page base */
    --s-bg-2:    #0C1428;
    --s-bg-alt:  #0D142A;   /* elevated band */
    --s-bg-deep: #070B18;   /* deepest (ink / cta) */

    --s-ink:     #F3F6FF;   /* headings / near-white */
    --s-text:    #A6B4D6;   /* body — muted blue-grey */
    --s-muted:   #6E7EA6;   /* captions */

    --s-brand:   #4C8DFF;   /* blue */
    --s-brand-d: #2E6BF0;
    --s-cyan:    #34D3F0;   /* cyan glow */
    --s-grad:    linear-gradient(135deg, #38D6F0 0%, #4C8DFF 100%);

    --s-ok:      #34D399;   /* allowed / wrote */
    --s-danger:  #FF6B72;   /* blocked / threat */
    --s-amber:   #FBBF57;   /* monitor / pending */
    --s-violet:  #9E86FF;

    --s-panel:   rgba(255,255,255,.045);
    --s-panel-2: rgba(255,255,255,.03);
    --s-line:    rgba(255,255,255,.09);
    --s-line-2:  rgba(255,255,255,.06);
    --s-hair:    rgba(255,255,255,.045);

    --s-radius:  14px;
    --s-glow:    0 24px 70px rgba(0,0,0,.5);
}

* { box-sizing: border-box; }

article {
    position: relative;
    background: var(--s-bg);
    color: var(--s-text);
    font-family: 'Mulish', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.65;
    overflow-x: clip;
}

h1, h2, h3, h4 { color: var(--s-ink); line-height: 1.16; letter-spacing: -.01em; }
h1 { font-size: 3.1em; font-weight: 900; }
h2 { font-size: 2.2em; font-weight: 800; }
h3 { font-size: 1.28em; font-weight: 800; }

article code, .code { font-family: "SF Mono", "JetBrains Mono", Menlo, Consolas, monospace; }
img { max-width: 100%; height: auto; }
article em { font-style: normal; }

/* ── Layout scaffolding ────────────────────────────────────────────── */
.section-content { max-width: 1140px; width: 100%; min-width: 0; margin: 0 auto; padding: 0 20px; }
.section-center { text-align: center; }
.section-subtitle { font-size: 1.15em; color: var(--s-muted); max-width: 660px; margin-left: auto; margin-right: auto; }
.section-row { padding: 88px 0; position: relative; overflow: hidden; background: var(--s-bg); }

/* elevated band for rhythm (class name kept from markup) */
.section-light {
    background:
        radial-gradient(900px 500px at 85% 0%, rgba(76,141,255,.06), transparent 60%),
        var(--s-bg-alt);
    border-top: 1px solid var(--s-line-2);
    border-bottom: 1px solid var(--s-line-2);
}
.section-cols { display: flex; gap: 64px; align-items: center; }
.section-col { flex: 1; min-width: 0; }
.section-cols-reverse { flex-direction: row-reverse; }
.section-col p { font-size: 1.02em; }
.section-col p + p { margin-top: 1em; }
.section-col strong { color: var(--s-ink); font-weight: 800; }
.section-col code { color: #9fd0ff; background: rgba(76,141,255,.12); padding: 1px 6px; border-radius: 5px; font-size: .88em; }

h2.section-center { position: relative; padding-bottom: 22px; margin-bottom: 8px; }
h2.section-center::after {
    content: ''; position: absolute; left: 50%; bottom: 0; transform: translateX(-50%);
    width: 64px; height: 4px; border-radius: 4px; background: var(--s-grad);
    box-shadow: 0 0 24px rgba(56,214,240,.5);
}

/* eyebrow — house style across the site */
.eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: .78em; font-weight: 800; letter-spacing: .16em; text-transform: uppercase;
    color: #9fd0ff;
    background: rgba(76,141,255,.1);
    border: 1px solid rgba(76,141,255,.22);
    padding: 6px 14px; border-radius: 99px; margin-bottom: 18px;
}
.section-center .eyebrow { margin-left: auto; margin-right: auto; }

/* ═══════════════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════════════ */
.section-hero {
    position: relative;
    padding: 78px 0 88px;
    background:
        radial-gradient(760px 480px at 86% -4%, rgba(52,211,240,.20) 0%, transparent 60%),
        radial-gradient(720px 560px at 4% 6%,  rgba(76,141,255,.18) 0%, transparent 62%),
        radial-gradient(820px 640px at 74% 112%, rgba(158,134,255,.12) 0%, transparent 60%),
        linear-gradient(180deg, #0B1226 0%, var(--s-bg) 55%);
    background-color: #0A1024;
    overflow: hidden;
}
.hero-gridlines {
    position: absolute; inset: 0; pointer-events: none;
    background-image:
        linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
    background-size: 46px 46px;
    mask-image: radial-gradient(120% 92% at 50% 0%, #000 0%, transparent 76%);
    -webkit-mask-image: radial-gradient(120% 92% at 50% 0%, #000 0%, transparent 76%);
}
.hero-content { position: relative; z-index: 2; }

.hero-split { display: grid; grid-template-columns: 1.02fr 1fr; gap: 56px; align-items: center; margin-bottom: 58px; }
.hero-copy { min-width: 0; animation: s-rise .7s ease both; }
.hero-logo { width: auto; height: 78px; max-width: 100%; margin-bottom: 24px; filter: drop-shadow(0 10px 26px rgba(52,211,240,.35)); }

.hero-tagline { font-size: .82em; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; color: var(--s-cyan); margin: 0 0 14px; }
.hero-copy h1 { margin: 0 0 20px; }
.hero-accent { background: var(--s-grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-subtitle { font-size: 1.16em; color: var(--s-text); max-width: 540px; margin: 0 0 30px; }

.hero-cta-row { display: flex; align-items: center; gap: 22px; margin-bottom: 26px; flex-wrap: wrap; }
.hero-ghost-link { color: #9fd0ff; font-weight: 700; text-decoration: none; font-size: .98em; display: inline-flex; align-items: center; gap: 7px; }
.hero-ghost-link:hover { color: #fff; }
.hero-ghost-link i { transition: transform .2s; }
.hero-ghost-link:hover i { transform: translateX(3px); }

.hero-trust-row { display: flex; flex-wrap: wrap; gap: 10px 24px; font-size: .86em; color: var(--s-muted); }
.hero-trust-row span { display: inline-flex; align-items: center; gap: 8px; }
.hero-trust-row i { color: var(--s-ok); }

/* primary CTA button */
.cta-btn {
    display: inline-flex; align-items: center; gap: 9px;
    background: var(--s-grad); color: #04122b;
    padding: 14px 30px; border-radius: 11px; font-weight: 800; font-size: 15px;
    text-decoration: none; border: none; cursor: pointer;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.32), 0 6px 18px rgba(56,214,240,.16);
    transition: transform .15s, box-shadow .15s, filter .15s;
}
.cta-btn:hover { transform: translateY(-2px); color: #04122b; filter: brightness(1.05); box-shadow: inset 0 1px 0 rgba(255,255,255,.4), 0 10px 26px rgba(56,214,240,.26); }
.cta-btn i { color: #04122b; }
.cta-btn-large { padding: 18px 40px; font-size: 17px; }

/* ── Hero visual: boot chain + live file log ──────────────────────── */
.hero-visual { position: relative; z-index: 2; min-width: 0; animation: s-rise .8s .08s ease both; }

.boot-ribbon { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; justify-content: center; margin-bottom: 16px; }
.boot-chip {
    font-size: 11.5px; font-weight: 700; color: var(--s-muted);
    background: rgba(255,255,255,.04); border: 1px solid var(--s-line);
    padding: 5px 11px; border-radius: 8px; white-space: nowrap;
    font-family: "SF Mono", Menlo, Consolas, monospace;
}
.boot-chip.is-engine { color: #04122b; background: var(--s-grad); border-color: transparent; box-shadow: 0 6px 20px rgba(56,214,240,.4); }
.boot-chip.is-wp { color: var(--s-ink); border-color: rgba(255,255,255,.14); }
.boot-sep { color: var(--s-cyan); font-weight: 900; }

.log-panel {
    position: relative;
    background: linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.02));
    border: 1px solid var(--s-line);
    border-radius: 18px;
    box-shadow: var(--s-glow), 0 0 0 1px rgba(76,141,255,.05), inset 0 1px 0 rgba(255,255,255,.06);
    overflow: hidden;
}
/* one orchestrated moment: a scan sweep on load */
.log-panel::after {
    content: ''; position: absolute; inset: 0; pointer-events: none; z-index: 3;
    background: linear-gradient(180deg, transparent, rgba(56,214,240,.14) 48%, transparent);
    transform: translateY(-100%);
    animation: s-scan 2.6s ease-in-out .5s 1 both;
}
.log-head { display: flex; align-items: center; gap: 10px; padding: 13px 16px; border-bottom: 1px solid var(--s-line-2); background: rgba(255,255,255,.02); }
.log-head .dot { width: 9px; height: 9px; border-radius: 50%; background: #33405f; }
.log-head .dot.live { background: var(--s-ok); box-shadow: 0 0 0 3px rgba(52,211,153,.2), 0 0 12px rgba(52,211,153,.6); animation: s-pulse 2.2s infinite; }
.log-title { font-weight: 800; font-size: 13px; color: var(--s-ink); }
.log-title small { font-weight: 600; color: var(--s-muted); font-size: 11px; margin-left: 2px; }
.log-mode { margin-left: auto; font-size: 11px; font-weight: 800; letter-spacing: .04em; color: var(--s-amber); background: rgba(251,191,87,.14); border: 1px solid rgba(251,191,87,.28); padding: 3px 10px; border-radius: 99px; }

.log-rows { padding: 8px; display: flex; flex-direction: column; gap: 6px; }
.log-row {
    display: grid; grid-template-columns: 26px 1fr auto; align-items: center; gap: 10px;
    padding: 10px 12px; border-radius: 11px; background: rgba(255,255,255,.028);
    border: 1px solid var(--s-line-2); animation: s-rise .5s ease both;
    transition: background .18s, border-color .18s;
}
.log-row:hover { background: rgba(255,255,255,.055); }
.log-row:nth-child(2){ animation-delay: .06s; }
.log-row:nth-child(3){ animation-delay: .12s; }
.log-row:nth-child(4){ animation-delay: .18s; }
.log-row:nth-child(5){ animation-delay: .24s; }
.log-ic { width: 26px; height: 26px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 12px; flex-shrink: 0; }
.log-body { min-width: 0; }
.log-path { font-family: "SF Mono", Menlo, Consolas, monospace; font-size: 12px; color: #dfe7fb; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; font-weight: 600; }
.log-note { font-size: 11px; color: var(--s-muted); margin-top: 1px; }
.log-note code { color: #ffb3b7; background: rgba(255,107,114,.12); padding: 0 4px; border-radius: 4px; font-size: 11px; }
.log-note .grant { color: #7ef0c4; background: rgba(52,211,153,.12); padding: 0 4px; border-radius: 4px; font-size: 11px; }
.log-verdict { font-size: 10.5px; font-weight: 900; letter-spacing: .06em; padding: 4px 9px; border-radius: 7px; white-space: nowrap; }

.log-row.blocked .log-ic { background: rgba(255,107,114,.16); color: var(--s-danger); }
.log-row.blocked .log-verdict { background: rgba(255,107,114,.16); color: #ff9aa0; }
.log-row.allowed .log-ic { background: rgba(52,211,153,.16); color: var(--s-ok); }
.log-row.allowed .log-verdict { background: rgba(52,211,153,.16); color: #7ef0c4; }
.log-row.ignored { opacity: .6; }
.log-row.ignored .log-ic { background: rgba(255,255,255,.06); color: var(--s-muted); }
.log-row.ignored .log-verdict { background: rgba(255,255,255,.06); color: var(--s-muted); }

.log-foot { display: flex; align-items: center; gap: 9px; padding: 12px 16px; border-top: 1px solid var(--s-line-2); font-size: 12.5px; font-weight: 700; color: var(--s-ink); background: rgba(52,211,153,.06); }
.log-foot i { color: var(--s-ok); }
.log-foot b { color: #7ef0c4; }

/* ── Hero chips + stat bar ─────────────────────────────────────────── */
.hero-box-wrapper { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin-bottom: 44px; }
.hero-box { background: rgba(255,255,255,.04); border: 1px solid var(--s-line); border-radius: 99px; padding: 9px 18px 9px 10px; display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: .85em; color: var(--s-ink); transition: transform .2s, border-color .2s, background .2s; }
.hero-box:hover { transform: translateY(-2px); background: rgba(255,255,255,.07); border-color: rgba(76,141,255,.3); }
.hero-box-icon { width: 30px; height: 30px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 13px; flex-shrink: 0; }
.hero-box-icon.brand { background: rgba(76,141,255,.18); color: #8fbcff; }
.hero-box-icon.cyan { background: rgba(52,211,240,.18); color: #7fe6f7; }
.hero-box-icon.violet { background: rgba(158,134,255,.2); color: #c3b4ff; }
.hero-box-icon.ok { background: rgba(52,211,153,.18); color: #6ee7b7; }

.hero-stat-box-wrapper { display: flex; justify-content: center; gap: 0; flex-wrap: wrap; border-top: 1px solid var(--s-line); margin-top: 12px; padding-top: 52px; padding-bottom: 6px; }
.hero-stat-box { text-align: center; padding: 0 46px; }
.hero-stat-box + .hero-stat-box { border-left: 1px solid var(--s-line); }
.hero-stat-box strong { display: block; font-size: 2.1em; font-weight: 900; letter-spacing: -.02em; color: var(--s-ink); }
.hero-stat-box strong em { background: var(--s-grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-stat-box span { font-size: .82em; color: var(--s-muted); display: block; max-width: 232px; }

/* ── Sticky nav ────────────────────────────────────────────────────── */
.section-nav { margin: 0; padding: 0; }
.section-nav:not(.is-sticky) { display: none; }
.section-nav.is-sticky { position: fixed; top: 0; left: 0; right: 0; z-index: 20; }

/* ═══════════════════════════════════════════════════════════════════
   INK SECTION — "why signatures lose" (deepest, strongest glow)
   ═══════════════════════════════════════════════════════════════════ */
.section-ink {
    padding: 96px 0;
    background:
        radial-gradient(820px 480px at 90% 0%, rgba(52,211,240,.16) 0%, transparent 60%),
        radial-gradient(720px 520px at 0% 100%, rgba(76,141,255,.18) 0%, transparent 60%),
        linear-gradient(160deg, var(--s-bg-deep) 0%, #0A1226 100%);
    background-color: var(--s-bg-deep);
    border-top: 1px solid var(--s-line-2);
    border-bottom: 1px solid var(--s-line-2);
}
.ink-split { display: flex; align-items: center; gap: 60px; }
.ink-copy { flex: 0 0 42%; min-width: 0; }
.ink-visual { flex: 1; min-width: 0; }
.ink-copy h2 { font-size: 2.6em; line-height: 1.12; margin: 0 0 22px; }
.ink-copy h2 em { background: linear-gradient(120deg,#5EE0FF,#8FB4FF); -webkit-background-clip: text; background-clip: text; color: transparent; }
.ink-lead { font-size: 1.16em; color: #c6d3f2; margin: 0 0 16px; }
.ink-body { color: var(--s-text); margin: 0 0 24px; }
.ink-body strong { color: #dbe6ff; font-weight: 800; }
.ink-body code { color: #ffb3b7; background: rgba(255,107,114,.1); padding: 1px 5px; border-radius: 5px; font-size: .88em; }
.ink-promises { display: flex; gap: 14px; flex-wrap: wrap; }
.ink-promise { display: flex; align-items: center; gap: 11px; background: rgba(255,255,255,.04); border: 1px solid var(--s-line); border-radius: 12px; padding: 12px 16px; }
.ink-promise-icon { width: 34px; height: 34px; border-radius: 9px; display: flex; align-items: center; justify-content: center; font-size: 15px; flex-shrink: 0; }
.ink-promise-icon.ok { background: rgba(52,211,153,.2); color: #6ee7b7; }
.ink-promise-icon.danger { background: rgba(255,107,114,.2); color: #ff9aa0; }
.ink-promise-label { font-weight: 800; font-size: .95em; color: #fff; }

/* code inspection card */
.wr-card { background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02)); border: 1px solid var(--s-line); border-radius: 16px; overflow: hidden; box-shadow: var(--s-glow); }
.wr-chrome { display: flex; align-items: center; gap: 7px; padding: 12px 16px; border-bottom: 1px solid var(--s-line-2); }
.wr-chrome span { width: 11px; height: 11px; border-radius: 50%; background: rgba(255,255,255,.14); }
.wr-chrome .wr-file { margin-left: 10px; font-family: "SF Mono", Menlo, monospace; font-size: 12px; color: var(--s-muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.wr-code { padding: 18px 18px 6px; font-family: "SF Mono", Menlo, Consolas, monospace; font-size: 12.5px; line-height: 1.9; color: #c9d6f2; }
.wr-code .ln { display: block; white-space: pre; }
.wr-code .cm { color: #5f7099; }
.wr-code .kw { color: #8fbcff; }
.wr-code .st { color: #7ef0c4; }
.wr-code .danger { background: rgba(255,107,114,.2); color: #ffb3b7; padding: 1px 4px; border-radius: 4px; }
.wr-scan { margin: 6px 18px 0; padding: 12px 14px; border-radius: 11px; background: rgba(255,107,114,.1); border: 1px solid rgba(255,107,114,.3); display: flex; align-items: center; gap: 11px; font-size: 12.5px; color: #ffc9cb; }
.wr-scan i { color: #ff9aa0; font-size: 16px; }
.wr-scan b { color: #fff; }
.wr-steps { display: flex; gap: 8px; padding: 14px 18px 18px; }
.wr-step { flex: 1; text-align: center; font-size: 11px; color: #8397be; }
.wr-step .wr-stage { display: block; font-weight: 800; color: #cdd8ef; font-size: 12px; margin-bottom: 2px; }
.wr-step.hit .wr-stage { color: #ff9aa0; }

/* ═══════════════════════════════════════════════════════════════════
   FEATURES GRID — dark glass cards
   ═══════════════════════════════════════════════════════════════════ */
/* ═══════════════════════════════════════════════════════════════════
   LAYER STACK — the four layers as sheets of glass, stacked.
   Each row is its own frosted pane: tinted fill in the layer's colour,
   a lit top edge, a diagonal sheen, and a soft glow onto the ground.
   Rows, not columns, so every layer keeps the same weight and height.
   ═══════════════════════════════════════════════════════════════════ */
.layer-stack {
    --hex: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    position: relative;
    margin-top: 46px;
    text-align: left;
}

.layer-rows {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.layer {
    position: relative;
    display: grid;
    grid-template-columns: 66px minmax(0, 6fr) minmax(0, 7fr);
    align-items: start;
    gap: 0 26px;
    min-height: 168px;
    padding: 28px 30px 28px 34px;
    border: 1px solid rgba(255,255,255,.12);
    border-top-color: rgba(255,255,255,.28);
    border-radius: 18px;
    background:
        linear-gradient(135deg, var(--layer-tint) 0%, rgba(255,255,255,.025) 46%, rgba(255,255,255,.015) 70%, var(--layer-tint) 100%);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.14),
        inset 0 0 60px rgba(255,255,255,.03),
        0 0 40px var(--layer-tint),
        0 26px 50px rgba(3,7,18,.45);
    -webkit-backdrop-filter: blur(14px) saturate(1.3);
            backdrop-filter: blur(14px) saturate(1.3);
    overflow: hidden;
    transition: transform .3s cubic-bezier(.2,.7,.2,1), box-shadow .3s, border-color .3s;
}
/* the sheen that reads as glass */
.layer::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(118deg, rgba(255,255,255,.16) 0%, rgba(255,255,255,.04) 22%, transparent 42%);
}
.layer:hover {
    transform: translateY(-3px);
    border-color: rgba(255,255,255,.22);
    border-top-color: rgba(255,255,255,.42);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.2),
        inset 0 0 60px rgba(255,255,255,.05),
        0 0 60px var(--layer-tint),
        0 32px 60px rgba(3,7,18,.5);
}

/* hexagonal node, sitting on the rail */
.layer-mark {
    position: relative;
    z-index: 1;
    width: 52px;
    height: 58px;
    display: grid;
    place-items: center;
    filter: drop-shadow(0 0 14px var(--layer-tint));
}
.layer-mark::before,
.layer-mark::after {
    content: '';
    position: absolute;
    clip-path: var(--hex);
}
.layer-mark::before {
    inset: 0;
    background: var(--layer-accent);
    opacity: .55;
    transform-origin: 50% 50%;
}
.layer-mark::after {
    inset: 2px;
    background: linear-gradient(170deg, var(--layer-tint), rgba(10,16,34,.94));
}
.layer-mark i {
    position: relative;
    z-index: 1;
    font-size: 19px;
    color: var(--layer-accent);
}
.layer:hover .layer-mark::before { opacity: .8; }

.layer-head h3 { margin: 0 0 6px; font-size: 1.22em; letter-spacing: -.01em; }

.layer-acts {
    margin: 0 0 10px;
    font-size: .82em;
    font-weight: 700;
    color: var(--layer-accent);
}

.layer-role { margin: 0; font-size: .95em; color: var(--s-text); max-width: 46ch; }

.layer-does {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 22px;
    align-content: start;
    list-style: none;
    margin: 0;
    padding: 6px 0 0 24px;
    border-left: 1px solid rgba(255,255,255,.08);
}
.layer-does li {
    position: relative;
    padding-left: 18px;
    font-size: 13.5px;
    line-height: 1.45;
    color: var(--s-text);
}
.layer-does li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 8px;
    height: 9px;
    clip-path: var(--hex);
    background: var(--layer-accent);
    opacity: .8;
}

.layer-journal {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-top: 14px;
    padding: 18px 30px 18px 34px;
    border: 1px solid rgba(255,255,255,.09);
    border-top-color: rgba(255,255,255,.18);
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(255,255,255,.04), rgba(255,255,255,.012));
    box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 18px 40px rgba(3,7,18,.35);
    -webkit-backdrop-filter: blur(14px);
            backdrop-filter: blur(14px);
}
.layer-journal i { margin-top: 2px; font-size: 15px; color: var(--s-cyan); }
.layer-journal p { margin: 0; font-size: .9em; color: var(--s-muted); max-width: 88ch; }

.accent-brand  { --layer-accent: var(--s-brand);  --layer-tint: rgba(76,141,255,.18); }
.accent-cyan   { --layer-accent: var(--s-cyan);   --layer-tint: rgba(52,211,240,.18); }
.accent-violet { --layer-accent: var(--s-violet); --layer-tint: rgba(158,134,255,.2); }
.accent-ok     { --layer-accent: var(--s-ok);     --layer-tint: rgba(52,211,153,.18); }

/* ═══════════════════════════════════════════════════════════════════
   ALTERNATING FEATURE SECTIONS — dark glass mock UI
   ═══════════════════════════════════════════════════════════════════ */
.mock { background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02)); border: 1px solid var(--s-line); border-radius: 16px; overflow: hidden; box-shadow: var(--s-glow); }
.mock-head { display: flex; align-items: center; gap: 10px; padding: 14px 18px; border-bottom: 1px solid var(--s-line-2); background: rgba(255,255,255,.02); }
.mock-head .mock-ic { width: 28px; height: 28px; border-radius: 8px; background: var(--s-grad); color: #04122b; display: flex; align-items: center; justify-content: center; font-size: 13px; }
.mock-head .mock-t { font-weight: 800; color: var(--s-ink); font-size: 14px; }
.mock-head .mock-pill { margin-left: auto; font-size: 11px; font-weight: 800; padding: 3px 10px; border-radius: 99px; }
.mock-pill.amber { color: var(--s-amber); background: rgba(251,191,87,.14); border: 1px solid rgba(251,191,87,.26); }
.mock-pill.ok { color: #6ee7b7; background: rgba(52,211,153,.14); border: 1px solid rgba(52,211,153,.26); }
.mock-pill.brand { color: #9fd0ff; background: rgba(76,141,255,.14); border: 1px solid rgba(76,141,255,.28); }
.mock-body { padding: 18px; }

/* "open a write permission" interstitial */
.perm-card { text-align: center; padding: 8px 6px 4px; }
.perm-lock { width: 54px; height: 54px; border-radius: 15px; margin: 0 auto 14px; background: var(--s-grad); color: #04122b; display: flex; align-items: center; justify-content: center; font-size: 22px; box-shadow: 0 14px 30px rgba(56,214,240,.4); }
.perm-card h4 { font-size: 1.15em; margin: 0 0 6px; color: var(--s-ink); }
.perm-card p { font-size: 13px; color: var(--s-muted); margin: 0 0 16px; }
.perm-scope { display: inline-flex; align-items: center; gap: 8px; font-family: "SF Mono", Menlo, monospace; font-size: 12px; color: #9fd0ff; background: rgba(76,141,255,.1); border: 1px dashed rgba(76,141,255,.4); padding: 8px 14px; border-radius: 9px; margin-bottom: 16px; }
.perm-factors { display: flex; gap: 8px; justify-content: center; margin-bottom: 16px; }
.perm-factor { flex: 1; max-width: 130px; border: 1px solid var(--s-line); border-radius: 11px; padding: 12px 8px; font-size: 12px; font-weight: 700; color: var(--s-ink); background: rgba(255,255,255,.02); }
.perm-factor i { display: block; font-size: 18px; color: #8fbcff; margin-bottom: 6px; }
.perm-factor.pw { color: var(--s-muted); }
.perm-factor.pw i { color: var(--s-muted); }
.perm-btn { display: inline-flex; align-items: center; gap: 8px; background: var(--s-grad); color: #04122b; font-weight: 800; font-size: 13px; padding: 11px 22px; border-radius: 10px; box-shadow: 0 6px 16px rgba(56,214,240,.18); }

/* generic mock rows */
.mrow { display: flex; align-items: center; gap: 12px; padding: 11px 4px; border-bottom: 1px solid var(--s-line-2); font-size: 13px; }
.mrow:last-child { border-bottom: none; }
.mrow .mrow-ic { width: 26px; height: 26px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 12px; flex-shrink: 0; }
.mrow .mrow-main { min-width: 0; flex: 1; }
.mrow .mrow-path { font-family: "SF Mono", Menlo, monospace; font-size: 12px; color: #dfe7fb; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mrow .mrow-sub { font-size: 11px; color: var(--s-muted); }
.mrow .mrow-tag { font-size: 10.5px; font-weight: 900; letter-spacing: .05em; padding: 4px 9px; border-radius: 7px; white-space: nowrap; }
.ic-ok { background: rgba(52,211,153,.16); color: var(--s-ok); } .tag-ok { background: rgba(52,211,153,.16); color: #7ef0c4; }
.ic-danger { background: rgba(255,107,114,.16); color: var(--s-danger); } .tag-danger { background: rgba(255,107,114,.16); color: #ff9aa0; }
.ic-muted { background: rgba(255,255,255,.06); color: var(--s-muted); } .tag-muted { background: rgba(255,255,255,.06); color: var(--s-muted); }
.ic-brand { background: rgba(76,141,255,.16); color: #8fbcff; } .tag-brand { background: rgba(76,141,255,.14); color: #9fd0ff; }

/* overview status */
.ov-status { display: flex; align-items: center; gap: 12px; padding: 14px 16px; border-radius: 12px; background: linear-gradient(120deg, rgba(52,211,153,.1), rgba(76,141,255,.08)); border: 1px solid rgba(52,211,153,.24); margin-bottom: 14px; }
.ov-status .ov-ic { width: 40px; height: 40px; border-radius: 11px; background: rgba(52,211,153,.18); color: #6ee7b7; display: flex; align-items: center; justify-content: center; font-size: 18px; }
.ov-status .ov-t { font-weight: 800; color: var(--s-ink); font-size: 14px; }
.ov-status .ov-s { font-size: 12px; color: var(--s-muted); }
.ov-layer { display: flex; align-items: center; gap: 10px; padding: 10px 4px; font-size: 13px; border-bottom: 1px solid var(--s-line-2); }
.ov-layer:last-child { border-bottom: none; }
.ov-layer .ov-name { flex: 1; color: var(--s-ink); font-weight: 700; }
.ov-layer .ov-mode { font-size: 11px; font-weight: 800; padding: 3px 10px; border-radius: 99px; }
.ov-mode.mon { color: var(--s-amber); background: rgba(251,191,87,.14); }
.ov-mode.enf { color: #6ee7b7; background: rgba(52,211,153,.14); }
.ov-layer i { color: #8fbcff; width: 16px; text-align: center; }

/* loader method chooser */
.ldr-methods { display: flex; flex-direction: column; gap: 10px; }
.ldr-method { display: flex; align-items: center; gap: 12px; padding: 12px 14px; border: 1px solid var(--s-line); border-radius: 12px; background: rgba(255,255,255,.02); }
.ldr-method.active { border-color: rgba(76,141,255,.6); background: rgba(76,141,255,.08); box-shadow: 0 0 0 3px rgba(76,141,255,.12); }
.ldr-method .ldr-radio { width: 18px; height: 18px; border-radius: 50%; border: 2px solid rgba(255,255,255,.2); flex-shrink: 0; }
.ldr-method.active .ldr-radio { border-color: var(--s-brand); background: radial-gradient(circle, var(--s-brand) 42%, transparent 46%); }
.ldr-method .ldr-name { font-weight: 800; color: var(--s-ink); font-size: 13.5px; }
.ldr-method .ldr-name code { font-family: "SF Mono", Menlo, monospace; font-size: 12px; color: #9fd0ff; }
.ldr-method .ldr-sub { font-size: 11.5px; color: var(--s-muted); }
.ldr-method .ldr-badge { margin-left: auto; font-size: 10.5px; font-weight: 800; color: #6ee7b7; background: rgba(52,211,153,.14); padding: 3px 9px; border-radius: 7px; white-space: nowrap; }

/* self-test lab */
.lab { width: 100%; border-collapse: collapse; font-size: 13px; }
.lab td, .lab th { padding: 9px 8px; border-bottom: 1px solid var(--s-line-2); text-align: left; }
.lab th { font-size: 11px; text-transform: uppercase; letter-spacing: .05em; color: var(--s-muted); font-weight: 800; }
.lab td.vec { font-family: "SF Mono", Menlo, monospace; font-size: 12px; color: #dfe7fb; }
.lab .stopped { color: #6ee7b7; font-weight: 800; }
.lab .gap { color: var(--s-amber); font-weight: 800; }
.lab td.us { text-align: right; color: var(--s-muted); font-family: "SF Mono", Menlo, monospace; font-size: 12px; }

/* ── Video ─────────────────────────────────────────────────────────── */
.youtube-embed { position: relative; padding-bottom: 56.25%; margin-top: 34px; border-radius: var(--s-radius); overflow: hidden; box-shadow: var(--s-glow); border: 1px solid var(--s-line); }
.youtube-embed iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }

/* ═══════════════════════════════════════════════════════════════════
   CTA
   ═══════════════════════════════════════════════════════════════════ */
.section-cta {
    background:
        radial-gradient(70% 70% at 82% 18%, rgba(52,211,240,.2), transparent 60%),
        radial-gradient(60% 60% at 12% 88%, rgba(158,134,255,.16), transparent 60%),
        linear-gradient(150deg, var(--s-bg-deep) 0%, #0C1428 100%);
    background-color: var(--s-bg-deep);
    text-align: center;
    border-top: 1px solid var(--s-line-2);
}
.section-cta::after {
    content: ''; position: absolute; inset: 0; pointer-events: none;
    background-image: repeating-linear-gradient(90deg, rgba(255,255,255,.025) 0 1px, transparent 1px 120px);
    mask-image: linear-gradient(180deg, transparent, #000 40%, #000 60%, transparent);
    -webkit-mask-image: linear-gradient(180deg, transparent, #000 40%, #000 60%, transparent);
}
.section-cta .section-content { position: relative; z-index: 1; }
.section-cta h2.section-center::after { display: none; }
.section-cta p { color: #c6d3f2; font-size: 1.12em; }
.cta-features { display: flex; justify-content: center; gap: 40px; margin-top: 30px; }
.cta-feature { display: flex; align-items: center; gap: 10px; color: var(--s-text); font-size: 14px; }
.cta-feature i { color: var(--s-cyan); }
.section-final-cta { padding: 104px 0; }
.section-final-cta h2 { font-size: 2.5em; }

/* ═══════════════════════════════════════════════════════════════════
   PRICING
   ═══════════════════════════════════════════════════════════════════ */
#pricing {
    display: flex; flex-direction: column; align-items: center; padding: 88px 20px;
    background:
        radial-gradient(circle at 50% 38%, rgba(76,141,255,.16) 0%, rgba(52,211,240,.08) 40%, transparent 72%),
        var(--s-bg-alt);
    border-top: 1px solid var(--s-line-2);
}
#pricing h2 { margin: 15px 0; font-size: 2.1em; text-align: center; }
#pricing > p { margin: 0; font-size: 1.15em; max-width: 620px; text-align: center; color: var(--s-muted); }
.pricing-table { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; margin: 42px auto; gap: 22px; max-width: 100%; }
.pricing-col { display: flex; flex-direction: column; align-items: center; gap: 16px; width: 284px; max-width: calc(100% - 20px); padding: 20px 18px; border-radius: 14px; background: var(--s-panel); border: 1px solid var(--s-line); box-shadow: 0 14px 40px rgba(0,0,0,.35); }
/* Single and Multi: identical width + height → identical wrapping */
.pricing-col.pricing-col-sm,
.pricing-col.pricing-col-md { width: 284px; min-height: 536px; justify-content: space-between; }
.pricing-col h3 { display: flex; justify-content: center; padding: 10px; align-items: center; width: 100%; font-size: 1.1em; text-transform: uppercase; background: rgba(255,255,255,.05); border: 1px solid var(--s-line); color: var(--s-ink); border-radius: 9px; letter-spacing: 4px; }
.pricing-table-price { text-align: center; font-size: 2em; font-weight: 500; margin: 2px 0 8px; color: var(--s-ink); }
.pricing-table-price sup { font-size: .5em; color: var(--s-muted); }
.pricing-table-features { display: flex; flex-direction: column; gap: .65em; font-size: .95em; list-style: none; padding: 0; margin: 0; width: 100%; }
.pricing-table-features li { position: relative; padding-inline-start: 2em; color: var(--s-text); }
.pricing-table-features li::before { content: '\f058'; font-family: 'Font Awesome 6 Free'; font-weight: 900; font-size: 14px; position: absolute; left: 0; top: 50%; transform: translateY(-50%); color: var(--s-cyan); }
.pricing-col a { display: flex; justify-content: center; width: 100%; padding: 12px 10px; margin: 10px 0 4px; background: var(--s-grad); color: #04122b; text-decoration: none; font-size: 1em; border-radius: 9px; text-transform: uppercase; font-weight: 800; letter-spacing: 2px; transition: transform .15s, box-shadow .2s, filter .15s; }
.pricing-col a:hover { transform: translateY(-2px); filter: brightness(1.05); box-shadow: 0 9px 22px rgba(56,214,240,.22); color: #04122b; }

.pricing-col.pricing-col-highlight { position: relative; background: linear-gradient(180deg, rgba(76,141,255,.14), rgba(255,255,255,.03)); color: #fff; width: 300px; padding: 22px 22px 16px; border: 1.5px solid rgba(52,211,240,.55); box-shadow: 0 24px 60px rgba(0,0,0,.5), 0 0 46px rgba(52,211,240,.18); }
.pricing-ribbon { position: absolute; top: -2px; right: -2px; width: 130px; height: 130px; overflow: hidden; border-radius: 0 14px 0 0; pointer-events: none; }
.pricing-ribbon span { position: absolute; top: 30px; right: -48px; display: block; width: 190px; padding: 6px 0; background: var(--s-grad); color: #04122b; font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; text-align: center; transform: rotate(45deg); box-shadow: 0 4px 12px rgba(0,0,0,.4); }
.pricing-col.pricing-col-highlight h3 { background: transparent; border-color: transparent; text-transform: none; margin-top: -6px; letter-spacing: 1px; }
.pricing-col.pricing-col-highlight .pricing-table-price { color: #fff; }
.pricing-col.pricing-col-highlight .pricing-table-features li::before { color: var(--s-cyan); }
.pricing-col.pricing-col-highlight > img { width: 80px; }
.pricing-table-plugin-list { list-style: none; display: flex; gap: 16px 24px; flex-wrap: wrap; justify-content: center; padding: 0; margin: 20px auto 0; }
.pricing-table-plugin-list li { position: relative; background: rgba(255,255,255,.06); display: flex; align-items: center; justify-content: center; padding: 6px; border: 1px solid rgba(52,211,240,.35); border-radius: 8px; }
.pricing-table-plugin-list li:not(:last-child)::after { content: '+'; position: absolute; right: -20px; top: 50%; transform: translateY(-50%); font-size: 1.1em; line-height: 1; color: var(--s-muted); }
.pricing-table-plugin-list li img { width: 36px; height: 36px; object-fit: contain; }

.money-back { display: flex; align-items: center; gap: 18px; margin: 50px auto 0; max-width: 560px; padding: 20px 28px; background: rgba(255,255,255,.04); border: 1px solid var(--s-line); border-radius: var(--s-radius); box-shadow: 0 14px 40px rgba(0,0,0,.3); }
.money-back > i { flex: none; font-size: 34px; color: var(--s-cyan); }
.money-back-text strong { display: block; font-size: 17px; color: var(--s-ink); margin-bottom: 2px; }
.money-back-text p { margin: 0; font-size: 14px; color: var(--s-muted); }

/* ═══════════════════════════════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════════════════════════════ */
.faq-wrapper { display: flex; gap: 0 30px; margin-top: 44px; }
.faq-col { flex: 1; }
.faq-item { border-bottom: 1px solid var(--s-line); }
.faq-item input[type="checkbox"] { display: none; }
.faq-item label { display: block; padding: 17px 30px 17px 0; font-weight: 700; font-size: 15px; cursor: pointer; color: var(--s-ink); position: relative; transition: color .15s; }
.faq-item label:hover { color: #9fd0ff; }
.faq-item label::after { content: '+'; position: absolute; right: 0; top: 15px; font-size: 20px; color: var(--s-cyan); transition: transform .2s; }
.faq-item input:checked + label::after { content: '\2212'; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-item input:checked ~ .faq-answer { max-height: 360px; }
.faq-answer p { padding: 0 0 17px; font-size: 14px; color: var(--s-text); line-height: 1.7; margin: 0; }
.faq-answer code { font-size: 12.5px; background: rgba(76,141,255,.14); padding: 1px 5px; border-radius: 4px; color: #9fd0ff; }

/* ═══════════════════════════════════════════════════════════════════
   Animations
   ═══════════════════════════════════════════════════════════════════ */
@keyframes s-rise { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes s-pulse { 0%,100% { box-shadow: 0 0 0 3px rgba(52,211,153,.2), 0 0 12px rgba(52,211,153,.6); } 50% { box-shadow: 0 0 0 6px rgba(52,211,153,.05), 0 0 6px rgba(52,211,153,.3); } }
@keyframes s-scan { 0% { transform: translateY(-100%); } 60%,100% { transform: translateY(120%); } }
@media (prefers-reduced-motion: reduce) { *, .log-panel::after { animation: none !important; } .log-panel::after { display: none; } }

/* ═══════════════════════════════════════════════════════════════════
   Responsive
   ═══════════════════════════════════════════════════════════════════ */
@media (max-width: 1080px) {
    .hero-split { gap: 40px; }
    .hero-copy h1 { font-size: 2.6em; }
}
@media (max-width: 960px) {
    .layer-stack { --rail-x: 56px; }
    .layer { grid-template-columns: 56px minmax(0, 1fr); gap: 0 20px; min-height: 0; padding: 26px 24px 26px 28px; }
    .layer-does { grid-column: 2; padding: 18px 0 0; border-left: 0; }
    .section-cols { flex-direction: column; gap: 34px; }
    .ink-split { flex-direction: column; gap: 36px; }
    .ink-copy { flex: none; width: 100%; }
    h1 { font-size: 2.3em; }
    .section-hero { padding: 62px 0 58px; }
    .hero-split { grid-template-columns: 1fr; gap: 46px; margin-bottom: 46px; text-align: center; }
    .hero-logo { margin-left: auto; margin-right: auto; }
    .hero-subtitle { margin-left: auto; margin-right: auto; }
    .hero-cta-row, .hero-trust-row { justify-content: center; }
    .hero-visual { max-width: 460px; margin: 0 auto; }
    .ink-copy h2 { font-size: 2.1em; }
    .hero-stat-box { padding: 0 30px; }
}
@media (max-width: 768px) {
    .hero-logo { height: 56px; }
    .section-row { padding: 54px 0; }
    .section-ink { padding: 60px 0; }
    #pricing { padding: 54px 20px; }
    .layer { grid-template-columns: 1fr; gap: 0; padding: 22px 20px 22px 24px; }
    .layer-mark { width: 44px; height: 49px; margin-bottom: 14px; }
    .layer-mark i { font-size: 16px; }
    .layer-does { grid-column: 1; grid-template-columns: 1fr; gap: 8px; padding-top: 16px; }
    .layer-journal { padding: 18px 20px 18px 24px; }
    .faq-wrapper { flex-direction: column; }
    .cta-features { display: none; }
    .section-hero { padding: 48px 0 46px; }
    .hero-copy h1 { font-size: 2em; }
    .hero-subtitle { font-size: 1.04em; }
    .hero-cta-row { flex-direction: column; align-items: stretch; gap: 14px; }
    .hero-cta-row .cta-btn { justify-content: center; }
    .hero-ghost-link { justify-content: center; }
    .hero-trust-row { flex-direction: column; gap: 8px; align-items: center; }
    .hero-box-wrapper { flex-wrap: wrap; justify-content: center; margin-bottom: 34px; }
    .cta-btn { white-space: nowrap; padding: 14px 22px; }
    .cta-btn-large { padding: 16px 26px; font-size: 15px; }
    .hero-stat-box-wrapper { flex-direction: column; gap: 22px; align-items: center; padding-top: 40px; }
    .hero-stat-box + .hero-stat-box { border-left: none; }
    .hero-stat-box span { max-width: 280px; }
    .perm-factors { flex-wrap: wrap; }
    .wr-steps { flex-wrap: wrap; }
}
