/* Intellodocs — shared stylesheet
   Design tokens, layout and components for all pages.
   Palette maps to the three movements: green=capture, violet=understand, blue=retrieve. */

/* ============================================================
   INTELLODOCS
   Palette taken from the product itself, and mapped to the three movements:
   green = CAPTURE (WhatsApp / arrival)  ·  violet = UNDERSTAND (the AI read)
   blue  = RETRIEVE (the app / the answer)
   ============================================================ */
/* ============================================================
   THEMES
   Light is the default. data-theme="dark" flips the tokens.
   Every component reads these — nothing hardcodes a colour.
   ============================================================ */
:root {
    /* ground + surfaces */
    --void: #FFFFFF;
    --void-2: #EAF0F8;
    --panel: #FFFFFF;
    --surf-1: rgba(15,32,60,.025);
    --surf-2: rgba(15,32,60,.04);
    --surf-3: rgba(15,32,60,.055);
    --surf-4: rgba(15,32,60,.08);
    --edge: rgba(15,32,60,.12);
    --edge-2: rgba(15,32,60,.20);
    --glass: rgba(255,255,255,.80);
    --glass-solid: rgba(255,255,255,.94);
    /* accents — darkened for AA contrast on white */
    --blue: #1D4ED8;
    --blue-dim: rgba(29,78,216,.09);
    --blue-tx: #1D4ED8;
    --green: #047857;
    --green-dim: rgba(4,120,87,.09);
    --violet: #6D28D9;
    --violet-dim: rgba(109,40,217,.09);
    --violet-tx: #6D28D9;
    --danger-tx: #B42318;
    /* Solid fills that carry white text must clear 4.5:1 against white. */
    --btn-solid: #1D4ED8;
    --btn-fill: linear-gradient(180deg,#2563EB,#1D4ED8);
    --btn-glow: rgba(29,78,216,.38);
    /* text */
    --tx: #0B1220;
    --tx-2: #48576E;
    --tx-3: #56657A;
    /* device + panel chrome */
    --bezel: linear-gradient(160deg,#39435A,#1B2231 46%,#2A3346);
    --bezel-edge: rgba(15,32,60,.22);
    --notch: #151B26;
    --shadow: rgba(15,32,60,.30);
    --chip-bg: rgba(255,255,255,.96);
    --cta-bg: linear-gradient(135deg,#EEF3FB,#E7EEFA 45%,#F3F6FC);
    /* embedded document card (the citation proof) */
    --doc-bg: #FFFFFF;
    --doc-tx: #0B1220;
    --doc-tx-2: #48576E;
    --doc-edge: rgba(15,32,60,.13);
    /* blog thumbnails */
    --thumb-bg: linear-gradient(150deg,#E8EEF9,#F5F8FC);
    --thumb-flat: #F0F4FA;
    --thumb-tx: rgba(15,32,60,.82);
    --thumb-edge: rgba(15,32,60,.18);
    --display: 'Bricolage Grotesque',system-ui,sans-serif;
    --body: 'Inter Tight',system-ui,sans-serif;
    --mono: 'JetBrains Mono',ui-monospace,monospace;
    --gut: clamp(20px,5vw,60px);
    --maxw: 1240px;
}

[data-theme="dark"] {
    --void: #05080F;
    --void-2: #101A2C;
    --panel: #131E33;
    --surf-1: rgba(255,255,255,.025);
    --surf-2: rgba(255,255,255,.04);
    --surf-3: rgba(255,255,255,.05);
    --surf-4: rgba(255,255,255,.08);
    --edge: rgba(255,255,255,.09);
    --edge-2: rgba(255,255,255,.16);
    --glass: rgba(5,8,15,.72);
    --glass-solid: rgba(5,8,15,.92);
    --blue: #3B7DFF;
    --blue-dim: rgba(59,125,255,.13);
    --blue-tx: #7FA9FF;
    --green: #22C55E;
    --green-dim: rgba(34,197,94,.12);
    --violet: #8B6BFF;
    --violet-dim: rgba(139,107,255,.13);
    --violet-tx: #B49BFF;
    --danger-tx: #FCA5A5;
    --btn-solid: #2E6BEF;
    --btn-fill: linear-gradient(180deg,#2E6BEF,#1D4ED8);
    --btn-glow: rgba(59,125,255,.55);
    --tx: #EAF0FA;
    --tx-2: #93A5C4;
    --tx-3: #7A8DAB;
    --bezel: linear-gradient(160deg,#2C3852,#0E1524 46%,#1D2740);
    --bezel-edge: rgba(255,255,255,.10);
    --notch: #05080F;
    --shadow: rgba(0,0,0,.95);
    --chip-bg: rgba(12,18,32,.92);
    --cta-bg: linear-gradient(135deg,#0D1526,#111C33 45%,#0C1322);
    --doc-bg: #F7F9FC;
    --doc-tx: #1A2434;
    --doc-tx-2: #41506A;
    --doc-edge: #DFE5EE;
    --thumb-bg: linear-gradient(150deg,#101C2E,#0A0F1C);
    --thumb-flat: #0A0F1C;
    --thumb-tx: rgba(255,255,255,.55);
    --thumb-edge: rgba(255,255,255,.22);
}

html {
    color-scheme: light
}

[data-theme="dark"] {
    color-scheme: dark
}

*, *::before, *::after {
    box-sizing: border-box
}

html {
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth
}

body {
    margin: 0;
    background: var(--void);
    color: var(--tx);
    font-family: var(--body);
    font-size: 17px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden
}

img {
    max-width: 100%;
    display: block
}

a {
    color: inherit;
    text-decoration: none
}

button {
    font: inherit
}

:focus-visible {
    outline: 2.5px solid var(--blue);
    outline-offset: 3px;
    border-radius: 6px
}

.wrap {
    max-width: var(--maxw);
    margin: 0 auto;
    padding-inline: var(--gut);
    position: relative
}

.sr {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0)
}

h1, h2, h3, h4 {
    font-family: var(--display);
    font-weight: 700;
    letter-spacing: -.035em;
    line-height: 1.03;
    margin: 0
}

h1 {
    font-size: clamp(2.15rem,3.9vw,3.15rem);
    font-weight: 800;
    max-width: 19ch;
    text-wrap: balance
}

h2 {
    font-size: clamp(2rem,4.2vw,3.25rem);
    font-weight: 800;
    text-wrap: balance
}

h3 {
    font-size: 1.2rem;
    letter-spacing: -.02em;
    line-height: 1.25
}

p {
    margin: 0
}

.lede {
    font-size: clamp(1.03rem,1.45vw,1.19rem);
    color: var(--tx-2);
    line-height: 1.58;
    max-width: 56ch
}

h1 + .lede, h2 + .lede {
    margin-top: 20px
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-family: var(--mono);
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--tx-3);
    margin-bottom: 20px
}

    .eyebrow::before {
        content: "";
        width: 22px;
        height: 1px;
        background: var(--edge-2)
    }

    .eyebrow.g {
        color: var(--green)
    }

    .eyebrow.v {
        color: var(--violet)
    }

    .eyebrow.b {
        color: var(--blue-tx)
    }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    font-size: .96rem;
    font-weight: 600;
    padding: 15px 26px;
    border-radius: 11px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: .2s ease;
    white-space: nowrap
}

.btn-main {
    background: var(--btn-fill);
    color: #fff;
    box-shadow: 0 8px 24px -8px var(--btn-glow)
}

    .btn-main:hover {
        transform: translateY(-2px);
        box-shadow: 0 14px 32px -8px var(--btn-glow)
    }

.btn-line {
    background: var(--surf-2);
    color: var(--tx);
    border-color: var(--edge-2)
}

    .btn-line:hover {
        background: var(--surf-4);
        border-color: rgba(255,255,255,.3)
    }

.aura {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
    z-index: 0
}
/* ---------------- nav ---------------- */
.hdr {
    position: sticky;
    top: 0;
    z-index: 80;
    background: var(--glass);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid transparent;
    transition: .25s
}

    .hdr.stuck {
        border-bottom-color: var(--edge);
        background: var(--glass-solid)
    }

.nav {
    display: flex;
    align-items: center;
    gap: 30px;
    height: 72px
}

.brand {
    display: flex;
    align-items: center;
    line-height: 0
}

    .brand img {
        height: 26px;
        width: auto;
        display: block
    }

.ft .brand img {
    height: 28px
}

.brand .logo-d {
    display: none
}

[data-theme="dark"] .brand .logo-l {
    display: none
}

[data-theme="dark"] .brand .logo-d {
    display: block
}



@media(max-width:420px) {
    .brand img {
        height: 23px
    }
}

.nav-links {
    display: flex;
    gap: 26px;
    margin-left: auto
}

    .nav-links a {
        font-size: .93rem;
        font-weight: 500;
        color: var(--tx-2);
        transition: color .16s
    }

        .nav-links a:hover {
            color: var(--tx)
        }

.nav .btn {
    padding: 11px 20px;
    font-size: .9rem
}

.burger {
    display: none;
    margin-left: auto;
    background: var(--surf-3);
    border: 1px solid var(--edge-2);
    border-radius: 9px;
    padding: 10px 12px;
    cursor: pointer
}

    .burger i {
        display: block;
        width: 17px;
        height: 1.5px;
        background: var(--tx)
    }

        .burger i + i {
            margin-top: 4px
        }
/* ---------------- hero ---------------- */
.hero {
    position: relative;
    padding: clamp(26px,3vw,44px) 0 clamp(38px,4.2vw,56px);
    overflow: hidden
}

    .hero .a1 {
        width: 620px;
        height: 620px;
        background: rgba(59,125,255,.30);
        top: -220px;
        left: -140px
    }

    .hero .a2 {
        width: 520px;
        height: 520px;
        background: rgba(139,107,255,.22);
        top: 60px;
        right: -120px
    }

    .hero .a3 {
        width: 400px;
        height: 400px;
        background: rgba(34,197,94,.16);
        bottom: -200px;
        left: 38%
    }

.hero-grid {
    display: grid;
    grid-template-columns: 1fr .82fr;
    gap: clamp(30px,4.5vw,64px);
    align-items: center;
    position: relative;
    z-index: 2
}

.tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--surf-3);
    border: 1px solid var(--edge-2);
    padding: 8px 16px 8px 12px;
    border-radius: 99px;
    margin-bottom: 26px;
    font-family: var(--mono);
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase
}

.dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--green);
    position: relative;
    flex: none;
    box-shadow: 0 0 10px var(--green)
}

    .dot::after {
        content: "";
        position: absolute;
        inset: -5px;
        border-radius: 50%;
        border: 1px solid var(--green);
        opacity: .5;
        animation: ping 2.4s ease-out infinite
    }



@keyframes ping {
    0% {
        transform: scale(.5);
        opacity: .7
    }

    100% {
        transform: scale(1.6);
        opacity: 0
    }
}

.hero h1 {
    margin-bottom: 24px
}

.hero .lede {
    margin-bottom: 32px
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
    margin-bottom: 34px
}

.trust {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 22px;
    padding: 24px 0 0;
    border-top: 1px solid var(--edge);
    list-style: none;
    margin: 0
}

    .trust li {
        display: flex;
        align-items: center;
        gap: 8px;
        font-family: var(--mono);
        font-size: .66rem;
        font-weight: 500;
        letter-spacing: .11em;
        text-transform: uppercase;
        color: var(--tx-3)
    }

    .trust svg {
        color: var(--green);
        flex: none
    }
/* ---------------- phone ---------------- */
.stage {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center
}

.phone {
    position: relative;
    width: 300px;
    max-width: 100%;
    border-radius: 38px;
    padding: 9px;
    background: var(--bezel);
    box-shadow: 0 0 0 1px var(--bezel-edge),0 44px 90px -30px var(--shadow),0 0 90px -18px rgba(59,125,255,.5)
}

    .phone.g {
        box-shadow: 0 0 0 1px var(--bezel-edge),0 44px 90px -30px var(--shadow),0 0 90px -18px rgba(34,197,94,.55)
    }

    .phone.v {
        box-shadow: 0 0 0 1px var(--bezel-edge),0 44px 90px -30px var(--shadow),0 0 90px -18px rgba(139,107,255,.6)
    }

.screen {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    background: #fff;
    aspect-ratio: 440/950
}

#waScreen, #exScreen {
    aspect-ratio: 440/880
}

.screen img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    opacity: 0;
    transition: opacity .5s ease
}

    .screen img.on {
        opacity: 1
    }

.notch {
    position: absolute;
    top: 9px;
    left: 50%;
    transform: translateX(-50%);
    width: 96px;
    height: 22px;
    background: var(--notch);
    border-radius: 0 0 13px 13px;
    z-index: 4
}

.badge {
    position: absolute;
    z-index: 6;
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--chip-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--edge-2);
    border-radius: 11px;
    padding: 9px 13px;
    font-family: var(--mono);
    font-size: .63rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    box-shadow: 0 14px 34px -12px var(--shadow);
    white-space: nowrap;
    transition: .45s cubic-bezier(.2,.8,.3,1)
}

    .badge.tl {
        top: 14%;
        right: calc(100% - 34px);
        left: auto;
        text-align: right
    }

    .badge.br {
        bottom: 20%;
        left: calc(100% - 34px);
        right: auto
    }

.badge {
    max-width: 190px;
    white-space: normal;
    line-height: 1.35
}

    .badge.is-green {
        border-color: rgba(34,197,94,.45);
        color: var(--green)
    }

    .badge.is-blue {
        border-color: rgba(59,125,255,.45);
        color: var(--blue-tx)
    }

    .badge.is-violet {
        border-color: rgba(139,107,255,.45);
        color: var(--violet-tx)
    }

.channels {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
    margin-bottom: 11px;
    max-width: 392px
}

.ch {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1px solid var(--edge);
    border-radius: 9px;
    padding: 6px 10px;
    background: var(--surf-1);
    font-family: var(--mono);
    font-size: .58rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--tx-3)
}

    .ch.live {
        color: var(--green);
        border-color: rgba(34,197,94,.45);
        background: var(--green-dim);
        box-shadow: 0 0 24px -10px rgba(34,197,94,.85)
    }

.ch-note {
    font-family: var(--mono);
    font-size: .6rem;
    letter-spacing: .13em;
    text-transform: uppercase;
    color: var(--tx-3);
    margin-bottom: 20px
}

.rail {
    width: 100%;
    max-width: 392px;
    margin-top: 24px
}

.rail-steps {
    display: flex;
    gap: 5px;
    margin-bottom: 15px
}

    .rail-steps button {
        flex: 1;
        height: 3px;
        border: 0;
        padding: 0;
        border-radius: 99px;
        background: var(--surf-4);
        cursor: pointer;
        position: relative;
        overflow: hidden
    }

        .rail-steps button::after {
            content: "";
            position: absolute;
            inset: 0;
            width: 0;
            background: linear-gradient(90deg,var(--green),var(--blue));
            border-radius: 99px
        }

        .rail-steps button.is-filled::after {
            width: 100%
        }

        .rail-steps button.is-active::after {
            width: 100%;
            animation: fill 2000ms linear
        }



@keyframes fill {
    from {
        width: 0
    }

    to {
        width: 100%
    }
}

.rail-state {
    font-family: var(--mono);
    font-size: .64rem;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 7px
}

.rail-cap {
    font-size: .92rem;
    color: var(--tx-2);
    line-height: 1.5;
    min-height: 3em
}



@keyframes slide {
    to {
        transform: translateX(-50%)
    }
}
/* ---------------- sections ---------------- */
.sect {
    padding: clamp(46px,5.2vw,74px) 0;
    position: relative
}

.sect-head {
    max-width: 62ch;
    margin-bottom: clamp(26px,3vw,40px)
}

    .sect-head h2 {
        margin-bottom: 18px
    }

.alt {
    background: var(--void-2);
    border-block: 1px solid var(--edge)
}
/* three movements */
.moves {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 18px
}

.move {
    position: relative;
    border: 1px solid var(--edge);
    border-radius: 20px;
    padding: 30px 28px;
    overflow: hidden;
    transition: .25s
}

    .move::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px
    }

    .move.m1::before {
        background: var(--green)
    }

    .move.m2::before {
        background: var(--violet)
    }

    .move.m3::before {
        background: var(--blue)
    }

    .move.m1:hover {
        border-color: rgba(34,197,94,.4)
    }

    .move.m2:hover {
        border-color: rgba(139,107,255,.4)
    }

    .move.m3:hover {
        border-color: rgba(59,125,255,.4)
    }

    .move:hover {
        transform: translateY(-3px)
    }

.move-n {
    font-family: var(--mono);
    font-size: .66rem;
    font-weight: 600;
    letter-spacing: .2em;
    text-transform: uppercase;
    margin-bottom: 18px;
    display: block
}

.move.m1 .move-n {
    color: var(--green)
}

.move.m2 .move-n {
    color: var(--violet)
}

.move.m3 .move-n {
    color: var(--blue-tx)
}

.move h3 {
    font-size: 1.35rem;
    margin-bottom: 11px
}

.move p {
    font-size: .95rem;
    color: var(--tx-2);
    line-height: 1.55
}
/* split layouts */
.split {
    display: grid;
    grid-template-columns: 1fr .78fr;
    gap: clamp(34px,5vw,72px);
    align-items: center
}

    .split.flip .s-media {
        order: -1
    }

.s-media {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center
}
/* retrieve — questions */
.asks {
    list-style: none;
    padding: 0;
    margin: 26px 0 0;
    display: grid;
    gap: 10px
}

    .asks li {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        border: 1px solid var(--edge);
        border-radius: 12px;
        padding: 14px 17px;
        background: var(--surf-1);
        font-size: .95rem;
        transition: .22s
    }

        .asks li:hover {
            border-color: rgba(59,125,255,.45);
            background: var(--blue-dim)
        }

    .asks svg {
        color: var(--blue);
        flex: none;
        margin-top: 3px
    }
/* trust — the cited answer */
.cite {
    display: grid;
    gap: 14px;
    max-width: 560px
}

.cite-q {
    font-family: var(--mono);
    font-size: .72rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--tx-3)
}

.cite-a {
    border: 1px solid rgba(59,125,255,.35);
    background: linear-gradient(135deg,var(--blue-dim),transparent);
    border-radius: 16px;
    padding: 22px 24px
}

    .cite-a p {
        font-size: 1.02rem;
        line-height: 1.5
    }

    .cite-a b {
        font-family: var(--mono);
        font-weight: 600;
        color: var(--blue-tx)
    }

.cite-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    font-family: var(--mono);
    font-size: .63rem;
    font-weight: 600;
    letter-spacing: .11em;
    text-transform: uppercase;
    color: var(--blue);
    border: 1px solid rgba(59,125,255,.4);
    border-radius: 8px;
    padding: 7px 11px
}

.cite-doc {
    background: var(--doc-bg);
    color: var(--doc-tx);
    border: 1px solid var(--doc-edge);
    border-radius: 16px;
    padding: 26px 26px 24px;
    box-shadow: 0 30px 60px -30px var(--shadow)
}

.cite-doc-h {
    display: flex;
    align-items: center;
    gap: 9px;
    padding-bottom: 14px;
    margin-bottom: 16px;
    border-bottom: 1px solid var(--doc-edge);
    font-family: var(--mono);
    font-size: .63rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--doc-tx-2)
}

.cite-doc p {
    font-size: .92rem;
    line-height: 1.75;
    color: var(--doc-tx-2)
}

.hl {
    background: rgba(59,125,255,.22);
    box-shadow: 0 0 0 4px rgba(59,125,255,.22);
    border-radius: 2px;
    color: var(--doc-tx);
    font-weight: 500
}

.sec-card.wide {
    grid-column: span 2;
    border-color: rgba(34,197,94,.38);
    background: linear-gradient(120deg,var(--green-dim),transparent 62%)
}

.stack {
    margin-top: 20px;
    border: 1px solid var(--edge);
    border-radius: 18px;
    overflow: hidden
}

.st-row {
    display: grid;
    grid-template-columns: 130px 1fr;
    gap: 20px;
    padding: 18px 22px;
    border-bottom: 1px solid var(--edge)
}

    .st-row:last-child {
        border-bottom: 0
    }

    .st-row dt {
        font-family: var(--mono);
        font-size: .64rem;
        font-weight: 600;
        letter-spacing: .16em;
        text-transform: uppercase;
        color: var(--tx-3);
        padding-top: 3px
    }

    .st-row dd {
        margin: 0;
        font-size: .94rem;
        color: var(--tx-2);
        line-height: 1.5
    }

.hcard.no {
    border-style: dashed
}

    .hcard.no svg {
        color: var(--tx-3)
    }

    .hcard.no li {
        color: var(--tx-2)
    }
/* faq */
.faq {
    max-width: 840px
}

.q {
    border-bottom: 1px solid var(--edge)
}

    .q summary {
        cursor: pointer;
        list-style: none;
        padding: 22px 44px 22px 0;
        position: relative;
        font-family: var(--display);
        font-weight: 700;
        font-size: 1.07rem;
        letter-spacing: -.02em
    }

        .q summary::-webkit-details-marker {
            display: none
        }

        .q summary::after {
            content: "";
            position: absolute;
            right: 10px;
            top: 29px;
            width: 12px;
            height: 2px;
            background: var(--tx-2);
            transition: .2s
        }

        .q summary::before {
            content: "";
            position: absolute;
            right: 15px;
            top: 24px;
            width: 2px;
            height: 12px;
            background: var(--tx-2);
            transition: .2s
        }

    .q[open] summary::before {
        transform: rotate(90deg);
        opacity: 0
    }

    .q[open] summary::after {
        background: var(--blue)
    }

    .q p {
        padding: 0 44px 24px 0;
        color: var(--tx-2);
        font-size: .96rem;
        max-width: 70ch
    }
/* cta */
.cta {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    border: 1px solid var(--edge-2);
    background: var(--cta-bg);
    padding: clamp(32px,4.6vw,60px)
}

    .cta .c1 {
        width: 520px;
        height: 520px;
        background: rgba(59,125,255,.30);
        top: -240px;
        left: -100px
    }

    .cta .c2 {
        width: 420px;
        height: 420px;
        background: rgba(34,197,94,.18);
        bottom: -240px;
        right: -60px
    }

.cta-grid {
    display: grid;
    grid-template-columns: 1fr .95fr;
    gap: clamp(30px,4vw,58px);
    align-items: start;
    position: relative;
    z-index: 2
}

.cta h2 {
    margin-bottom: 18px
}

.cohort {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 26px;
    padding: 16px;
    border-radius: 13px;
    background: var(--surf-3);
    border: 1px solid var(--edge);
    font-size: .88rem;
    color: var(--tx-2)
}

    .cohort b {
        font-family: var(--mono);
        font-size: 1.5rem;
        font-weight: 600;
        color: var(--tx);
        line-height: 1
    }

form {
    display: grid;
    gap: 14px
}

.row {
    display: grid;
    gap: 14px;
    grid-template-columns: 1fr 1fr
}

label {
    display: block;
    font-family: var(--mono);
    font-size: .62rem;
    font-weight: 600;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--tx-3);
    margin-bottom: 7px
}

input, select {
    width: 100%;
    font-family: var(--body);
    font-size: .95rem;
    color: var(--tx);
    padding: 13px 14px;
    border: 1px solid var(--edge-2);
    border-radius: 11px;
    background: var(--surf-2);
    transition: .16s
}

    select option {
        background: var(--panel);
        color: var(--tx)
    }

    input::placeholder {
        color: var(--tx-3)
    }

    input:focus, select:focus {
        outline: none;
        border-color: var(--blue);
        background: rgba(59,125,255,.08);
        box-shadow: 0 0 0 3px rgba(59,125,255,.16)
    }

.consent {
    display: flex;
    gap: 11px;
    align-items: flex-start;
    font-family: var(--body);
    font-size: .84rem;
    font-weight: 400;
    text-transform: none;
    letter-spacing: normal;
    color: var(--tx-3);
    line-height: 1.5;
    margin-bottom: 0
}

    .consent input {
        width: auto;
        margin-top: 2px;
        accent-color: var(--blue)
    }

form .btn {
    width: 100%;
    padding: 16px
}

.done {
    display: none;
    text-align: center;
    padding: 40px 22px;
    border: 1px solid rgba(34,197,94,.45);
    background: var(--green-dim);
    border-radius: 16px
}

    .done h3 {
        color: var(--green);
        margin-bottom: 10px
    }

    .done p {
        font-size: .92rem;
        color: var(--tx-2)
    }

    .done.show {
        display: block;
        animation: pop .45s cubic-bezier(.2,.8,.3,1)
    }



@keyframes pop {
    from {
        opacity: 0;
        transform: scale(.96)
    }

    to {
        opacity: 1;
        transform: none
    }
}
/* footer */
.ft {
    border-top: 1px solid var(--edge);
    padding: 48px 0 28px;
    color: var(--tx-2);
    font-size: .9rem;
    background: var(--void-2)
}

.ft-grid {
    display: grid;
    grid-template-columns: 1.7fr 1fr 1fr 1.25fr;
    gap: 34px;
    padding-bottom: 38px;
    border-bottom: 1px solid var(--edge)
}

.ft .brand {
    margin-bottom: 16px
}

.ft-blurb {
    max-width: 34ch;
    line-height: 1.55;
    font-size: .88rem;
    color: var(--tx-3)
}

.ft-col h4 {
    font-family: var(--mono);
    font-size: .63rem;
    font-weight: 600;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--tx-3);
    margin-bottom: 16px
}

.ft-col a, .ft-col address {
    display: block;
    color: var(--tx-2);
    margin-bottom: 10px;
    font-style: normal;
    line-height: 1.5;
    transition: color .16s
}

    .ft-col a:hover {
        color: var(--tx)
    }

.ft-bot {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: space-between;
    padding-top: 26px;
    font-size: .82rem;
    color: var(--tx-3)
}

.rv {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .7s ease,transform .7s cubic-bezier(.2,.8,.3,1)
}

    .rv.in {
        opacity: 1;
        transform: none
    }





@media(max-width:1000px) {
    .hero-grid, .split, .cta-grid {
        grid-template-columns: 1fr
    }

    .hero-grid {
        gap: 52px
    }

    .split.flip .s-media {
        order: 0
    }

    .moves {
        grid-template-columns: 1fr 1fr
    }

    .sec-card.wide {
        grid-column: span 2
    }

    .ft-grid {
        grid-template-columns: 1fr 1fr
    }

    .nav-links {
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        gap: 0;
        background: var(--panel);
        border-block: 1px solid var(--edge);
        padding: 6px var(--gut) 14px
    }

        .nav-links.open {
            display: flex
        }

        .nav-links a {
            padding: 14px 0;
            border-bottom: 1px solid var(--edge)
        }

    .burger {
        display: block
    }

    .nav .btn {
        display: none
    }

    .badge.tl {
        right: calc(100% - 22px);
        left: auto
    }

    .badge.br {
        left: calc(100% - 22px);
        right: auto
    }
}




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

    .moves, .ft-grid, .row {
        grid-template-columns: 1fr
    }

    .sec-card.wide {
        grid-column: span 1
    }

    .st-row {
        grid-template-columns: 1fr;
        gap: 6px
    }

    .badge {
        font-size: .57rem;
        padding: 8px 11px
    }

    .badge {
        max-width: 132px;
        font-size: .55rem;
        padding: 7px 9px
    }

        .badge.tl {
            right: calc(100% - 16px);
            left: auto;
            top: 12%
        }

        .badge.br {
            left: calc(100% - 16px);
            right: auto;
            bottom: 18%
        }

    .hero .aura {
        filter: blur(70px);
        opacity: .75
    }
}




@media(prefers-reduced-motion:reduce) {
    *, *::before, *::after {
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .001ms !important
    }

    html {
        scroll-behavior: auto
    }

    .rv {
        opacity: 1;
        transform: none
    }
}
/* ---------- inner-page shell ---------- */
.page-hero {
    position: relative;
    padding: clamp(38px,4.6vw,64px) 0 clamp(26px,3vw,40px);
    overflow: hidden
}

    .page-hero .ph1 {
        width: 560px;
        height: 560px;
        background: rgba(59,125,255,.24);
        top: -260px;
        left: -160px
    }

    .page-hero .ph2 {
        width: 420px;
        height: 420px;
        background: rgba(139,107,255,.18);
        top: -120px;
        right: -120px
    }

.page-hero-in {
    position: relative;
    z-index: 2;
    max-width: 56ch
}

.page-hero h1 {
    margin-bottom: 20px;
    max-width: 24ch
}

.crumb {
    display: flex;
    align-items: center;
    gap: 9px;
    font-family: var(--mono);
    font-size: .65rem;
    font-weight: 600;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--tx-3);
    margin-bottom: 22px
}

    .crumb a:hover {
        color: var(--tx)
    }

    .crumb span {
        opacity: .45
    }
/* ---------- long-form prose ---------- */
.doc {
    display: grid;
    grid-template-columns: 230px 1fr;
    gap: clamp(30px,5vw,64px);
    align-items: start
}

.toc {
    position: sticky;
    top: 96px
}

    .toc h4 {
        font-family: var(--mono);
        font-size: .63rem;
        font-weight: 600;
        letter-spacing: .16em;
        text-transform: uppercase;
        color: var(--tx-3);
        margin-bottom: 14px
    }

    .toc a {
        display: block;
        padding: 7px 0 7px 14px;
        border-left: 2px solid var(--edge);
        font-size: .87rem;
        color: var(--tx-2);
        transition: .18s
    }

        .toc a:hover {
            color: var(--tx);
            border-left-color: var(--blue)
        }

.prose {
    max-width: 72ch
}

    .prose h2 {
        font-size: clamp(1.35rem,2.2vw,1.75rem);
        margin: 44px 0 14px;
        scroll-margin-top: 100px
    }

        .prose h2:first-child {
            margin-top: 0
        }

    .prose h3 {
        font-size: 1.06rem;
        margin: 26px 0 10px
    }

    .prose p {
        color: var(--tx-2);
        font-size: 1rem;
        line-height: 1.72;
        margin-bottom: 16px
    }

    .prose ul {
        color: var(--tx-2);
        font-size: 1rem;
        line-height: 1.72;
        padding-left: 20px;
        margin: 0 0 18px
    }

    .prose li {
        margin-bottom: 9px
    }

    .prose a {
        color: var(--blue-tx);
        text-decoration: underline;
        text-underline-offset: 3px
    }

    .prose strong {
        color: var(--tx);
        font-weight: 600
    }

.legal-note {
    border: 1px solid rgba(59,125,255,.35);
    background: var(--blue-dim);
    border-radius: 14px;
    padding: 20px 22px;
    margin-bottom: 34px
}

    .legal-note p {
        margin: 0;
        font-size: .93rem;
        color: var(--tx-2);
        line-height: 1.6
    }

    .legal-note b {
        color: var(--tx)
    }

.updated {
    font-family: var(--mono);
    font-size: .65rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--tx-3);
    margin-bottom: 30px;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--edge)
}

.caps {
    font-family: var(--mono);
    font-size: .83rem;
    line-height: 1.7;
    color: var(--tx-3);
    background: var(--surf-1);
    border: 1px solid var(--edge);
    border-radius: 12px;
    padding: 18px 20px;
    margin-bottom: 18px
}

.principles {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 18px
}

.pr {
    border: 1px solid var(--edge);
    border-radius: 20px;
    padding: 30px 28px;
    position: relative;
    overflow: hidden;
    transition: .25s
}

    .pr::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px
    }

    .pr.p1::before {
        background: var(--green)
    }

    .pr.p2::before {
        background: var(--violet)
    }

    .pr.p3::before {
        background: var(--blue)
    }

    .pr:hover {
        transform: translateY(-3px);
        border-color: var(--edge-2)
    }

.pr-n {
    font-family: var(--mono);
    font-size: .65rem;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--tx-3);
    display: block;
    margin-bottom: 16px
}

.pr h3 {
    font-size: 1.28rem;
    margin-bottom: 11px
}

.pr p {
    font-size: .95rem;
    color: var(--tx-2);
    line-height: 1.55
}

.avatar {
    width: 76px;
    height: 76px;
    border-radius: 20px;
    display: grid;
    place-items: center;
    font-family: var(--display);
    font-weight: 800;
    font-size: 1.6rem;
    letter-spacing: -.04em;
    color: #fff;
    background: linear-gradient(150deg,#5A92FF,#8B6BFF);
    flex: none
}

.founder .role {
    font-family: var(--mono);
    font-size: .65rem;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--tx-3);
    margin-bottom: 16px
}

.timeline {
    border-top: 1px solid var(--edge)
}

.tl-row {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 24px;
    padding: 22px 0;
    border-bottom: 1px solid var(--edge)
}

    .tl-row dt {
        font-family: var(--mono);
        font-size: .66rem;
        font-weight: 600;
        letter-spacing: .15em;
        text-transform: uppercase;
        color: var(--blue);
        padding-top: 4px
    }

    .tl-row dd {
        margin: 0
    }

    .tl-row h3 {
        font-size: 1.05rem;
        margin-bottom: 7px
    }

    .tl-row p {
        font-size: .94rem;
        color: var(--tx-2);
        line-height: 1.55
    }
/* ---------- blog ---------- */
.feature {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: clamp(28px,4vw,56px);
    align-items: center;
    border: 1px solid var(--edge);
    border-radius: 24px;
    padding: clamp(26px,3.4vw,44px);
    background: linear-gradient(135deg,rgba(59,125,255,.10),transparent 60%);
    transition: .25s
}

    .feature:hover {
        border-color: rgba(59,125,255,.45)
    }

    .feature h2 {
        font-size: clamp(1.6rem,3vw,2.35rem);
        margin-bottom: 16px
    }

    .feature p {
        color: var(--tx-2);
        font-size: 1rem;
        line-height: 1.6
    }

.art-thumb {
    border-radius: 18px;
    aspect-ratio: 16/10;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--edge-2);
    display: grid;
    place-items: center
}

    .art-thumb.t1 {
        background: radial-gradient(120% 120% at 20% 15%,rgba(34,197,94,.4),transparent 60%),var(--thumb-bg)
    }

    .art-thumb.t2 {
        background: radial-gradient(120% 120% at 80% 20%,rgba(139,107,255,.4),transparent 60%),var(--thumb-bg)
    }

    .art-thumb.t3 {
        background: radial-gradient(120% 120% at 30% 80%,rgba(59,125,255,.42),transparent 60%),var(--thumb-bg)
    }

    .art-thumb.t4 {
        background: radial-gradient(120% 120% at 70% 70%,rgba(34,197,94,.3),transparent 55%),radial-gradient(90% 90% at 20% 20%,rgba(59,125,255,.32),transparent 60%),var(--thumb-flat)
    }

.art-glyph {
    font-family: var(--mono);
    font-size: .63rem;
    font-weight: 600;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--thumb-tx);
    border: 1px solid var(--thumb-edge);
    border-radius: 8px;
    padding: 8px 13px;
    backdrop-filter: blur(6px)
}

.meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    font-family: var(--mono);
    font-size: .62rem;
    font-weight: 600;
    letter-spacing: .13em;
    text-transform: uppercase;
    color: var(--tx-3);
    margin-bottom: 16px
}

.cat {
    color: var(--blue);
    border: 1px solid rgba(59,125,255,.4);
    border-radius: 6px;
    padding: 4px 9px
}

    .cat.g {
        color: var(--green);
        border-color: rgba(34,197,94,.4)
    }

    .cat.v {
        color: var(--violet-tx);
        border-color: rgba(139,107,255,.4)
    }

    .cat.n {
        color: var(--tx-2);
        border-color: var(--edge-2)
    }

.posts {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px
}

.post {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--edge);
    border-radius: 20px;
    overflow: hidden;
    background: var(--surf-1);
    transition: .25s
}

    .post:hover {
        transform: translateY(-4px);
        border-color: var(--edge-2)
    }

    .post .art-thumb {
        border: 0;
        border-radius: 0;
        aspect-ratio: 16/9
    }

.post-body {
    padding: 24px
}

.post h3 {
    font-size: 1.1rem;
    line-height: 1.3;
    margin-bottom: 10px
}

.post p {
    font-size: .91rem;
    color: var(--tx-2);
    line-height: 1.55
}

.filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 34px
}

.filt {
    font-family: var(--mono);
    font-size: .63rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    border: 1px solid var(--edge);
    background: var(--surf-1);
    color: var(--tx-3);
    border-radius: 8px;
    padding: 9px 14px;
    cursor: pointer;
    transition: .2s
}

    .filt:hover {
        color: var(--tx);
        border-color: var(--edge-2)
    }

    .filt[aria-pressed="true"] {
        background: var(--btn-solid);
        border-color: var(--btn-solid);
        color: #fff
    }

.post.hide {
    display: none
}
/* ---------- article ---------- */
.article {
    max-width: none
}

.art-head {
    max-width: 70ch
}

    .art-head h1 {
        max-width: 26ch;
        margin-bottom: 22px
    }

.byline {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 22px 0;
    border-block: 1px solid var(--edge);
    margin: 30px 0 40px
}

    .byline .avatar {
        width: 44px;
        height: 44px;
        border-radius: 12px;
        font-size: .95rem
    }

    .byline b {
        display: block;
        font-size: .95rem;
        font-weight: 600
    }

    .byline span {
        font-family: var(--mono);
        font-size: .63rem;
        letter-spacing: .12em;
        text-transform: uppercase;
        color: var(--tx-3)
    }

.lead {
    font-family: var(--display);
    font-weight: 600;
    font-size: clamp(1.15rem,1.9vw,1.42rem);
    line-height: 1.45;
    letter-spacing: -.02em;
    color: var(--tx);
    margin-bottom: 30px
}

.pull {
    margin: 36px 0;
    padding: 26px 30px;
    border-left: 3px solid var(--violet);
    background: var(--violet-dim);
    border-radius: 0 14px 14px 0;
    font-family: var(--display);
    font-weight: 600;
    font-size: clamp(1.05rem,1.7vw,1.3rem);
    letter-spacing: -.02em;
    line-height: 1.45;
    color: var(--tx)
}

.figure {
    margin: 34px 0;
    border: 1px solid var(--edge);
    border-radius: 18px;
    overflow: hidden;
    background: var(--surf-1)
}

    .figure .art-thumb {
        border: 0;
        border-radius: 0;
        aspect-ratio: 16/7
    }

    .figure figcaption {
        padding: 14px 18px;
        font-family: var(--mono);
        font-size: .65rem;
        letter-spacing: .1em;
        text-transform: uppercase;
        color: var(--tx-3);
        border-top: 1px solid var(--edge)
    }

.share {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 44px;
    padding-top: 28px;
    border-top: 1px solid var(--edge)
}

    .share span {
        font-family: var(--mono);
        font-size: .63rem;
        font-weight: 600;
        letter-spacing: .14em;
        text-transform: uppercase;
        color: var(--tx-3);
        align-self: center;
        margin-right: 4px
    }

    .share a {
        border: 1px solid var(--edge);
        border-radius: 9px;
        padding: 8px 14px;
        font-size: .85rem;
        color: var(--tx-2);
        transition: .2s
    }

        .share a:hover {
            border-color: var(--edge-2);
            color: var(--tx)
        }

.endcta {
    margin-top: 44px;
    border: 1px solid rgba(59,125,255,.4);
    background: linear-gradient(135deg,var(--blue-dim),transparent 65%);
    border-radius: 20px;
    padding: 32px
}

    .endcta h3 {
        font-size: 1.3rem;
        margin-bottom: 11px
    }

    .endcta p {
        color: var(--tx-2);
        font-size: .96rem;
        margin-bottom: 20px;
        max-width: 52ch
    }





@media(max-width:1000px) {
    .doc {
        grid-template-columns: 1fr
    }

    .toc {
        position: static;
        border: 1px solid var(--edge);
        border-radius: 16px;
        padding: 20px
    }

    .principles, .posts {
        grid-template-columns: 1fr 1fr
    }

    .feature {
        grid-template-columns: 1fr
    }

        .feature .art-thumb {
            order: -1
        }
}




@media(max-width:640px) {
    .principles, .posts {
        grid-template-columns: 1fr
    }

    .tl-row {
        grid-template-columns: 1fr;
        gap: 8px
    }
}
/* ============================================================ FEATURE GRID */
.feat {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 16px
}

.f-card {
    border: 1px solid var(--edge);
    border-radius: 20px;
    padding: 26px;
    background: linear-gradient(170deg,var(--surf-2),transparent 60%);
    transition: .25s
}

    .f-card:hover {
        border-color: var(--edge-2);
        transform: translateY(-3px)
    }

    .f-card.wide {
        grid-column: span 2
    }

    .f-card.flag {
        border-color: rgba(59,125,255,.45);
        background: linear-gradient(120deg,var(--blue-dim),transparent 58%)
    }

.f-ico {
    width: 40px;
    height: 40px;
    border-radius: 11px;
    background: var(--surf-4);
    display: grid;
    place-items: center;
    margin-bottom: 17px;
    color: var(--blue)
}

.f-card.flag .f-ico {
    background: var(--btn-solid);
    color: #fff;
    box-shadow: 0 6px 18px -6px var(--btn-glow)
}

.f-card h3 {
    margin-bottom: 9px;
    font-size: 1.08rem
}

.f-card p {
    font-size: .93rem;
    color: var(--tx-2);
    line-height: 1.55
}

.type-chip.more {
    border-style: dashed;
    color: var(--tx-3)
}




@media(max-width:1000px) {
    .feat {
        grid-template-columns: 1fr 1fr
    }

    .f-card.wide {
        grid-column: span 2
    }
}




@media(max-width:640px) {
    .feat {
        grid-template-columns: 1fr
    }

    .f-card.wide {
        grid-column: span 1
    }
}

.prose code {
    font-family: var(--mono);
    font-size: .87em;
    background: var(--surf-4);
    border: 1px solid var(--edge);
    border-radius: 5px;
    padding: 2px 6px;
    color: var(--tx)
}
/* ============================================================ FORM STATE */
.hp {
    position: absolute !important;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden
}

.form-status {
    margin: 12px 0 0;
    font-size: .87rem;
    line-height: 1.45;
    min-height: 1.2em
}

    .form-status.is-busy {
        color: var(--tx-2)
    }

    .form-status.is-error {
        color: var(--danger-tx)
    }

.field-error {
    margin: 7px 0 0;
    font-size: .8rem;
    color: var(--danger-tx);
    line-height: 1.4
}

input.has-error, select.has-error {
    border-color: #F87171;
    background: rgba(248,113,113,.07)
}

    input.has-error:focus, select.has-error:focus {
        box-shadow: 0 0 0 3px rgba(248,113,113,.18)
    }

.consent input.has-error {
    outline: 2px solid #F87171;
    outline-offset: 3px
}

button[disabled] {
    opacity: .65;
    cursor: progress;
    transform: none !important
}
/* ============================================================
   THEME ADJUSTMENTS
   Things tokens alone can't express: glow intensity, and how the
   light-UI screenshots need to be separated from a light page.
   ============================================================ */

/* On white, big soft glows read as smudges. Dial them right back. */
.aura {
    opacity: .42;
    filter: blur(110px)
}

[data-theme="dark"] .aura {
    opacity: 1;
    filter: blur(90px)
}
/* Device glow: coloured halo on dark, honest drop shadow on light. */
.phone, .phone.g, .phone.v {
    box-shadow: 0 0 0 1px var(--bezel-edge), 0 32px 64px -28px var(--shadow);
}

[data-theme="dark"] .phone {
    box-shadow: 0 0 0 1px var(--bezel-edge),0 44px 90px -30px var(--shadow),0 0 90px -18px rgba(59,125,255,.5);
}

    [data-theme="dark"] .phone.g {
        box-shadow: 0 0 0 1px var(--bezel-edge),0 44px 90px -30px var(--shadow),0 0 90px -18px rgba(34,197,94,.55);
    }

    [data-theme="dark"] .phone.v {
        box-shadow: 0 0 0 1px var(--bezel-edge),0 44px 90px -30px var(--shadow),0 0 90px -18px rgba(139,107,255,.6);
    }
/* Gradient headline text: saturated on dark, deepened for contrast on light. */
/* Use background-IMAGE, never the `background` shorthand: the shorthand resets
   background-clip to border-box, which paints the gradient as solid blocks and
   makes the text invisible. A higher-specificity theme override did exactly
   that in dark mode. */
.grad {
    background-image: linear-gradient(96deg,var(--blue) 0%,var(--violet) 46%,var(--green) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    padding-bottom: .08em; /* stop descenders being clipped by the text box */
}

[data-theme="dark"] .grad {
    background-image: linear-gradient(96deg,#6FA0FF 0%,#8B6BFF 44%,#22C55E 100%);
}
/* If background-clip:text is unsupported, fall back to a flat readable colour
   rather than invisible text. */
@supports not ((background-clip:text) or (-webkit-background-clip:text)) {
    .grad {
        background-image: none;
        color: var(--blue);
        -webkit-text-fill-color: currentColor
    }
}
/* CTA panel keeps its own border on light so it reads as a panel. */
[data-theme="light"] .cta, html:not([data-theme="dark"]) .cta {
    border-color: var(--edge)
}
/* ============================================================ THEME TOGGLE */
.theme-btn {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    flex: none;
    border: 1px solid var(--edge);
    border-radius: 10px;
    background: var(--surf-1);
    color: var(--tx-2);
    cursor: pointer;
    transition: .2s;
    margin-left: 4px;
}

    .theme-btn:hover {
        color: var(--tx);
        border-color: var(--edge-2);
        background: var(--surf-3)
    }

    .theme-btn .moon {
        display: none
    }

[data-theme="dark"] .theme-btn .sun {
    display: none
}

[data-theme="dark"] .theme-btn .moon {
    display: block
}
/* ============================================================ DESKTOP APP WINDOW */
.deskwin {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--edge);
    background: var(--panel);
    box-shadow: 0 40px 80px -40px var(--shadow),0 2px 6px -2px var(--shadow);
}

.deskwin-bar {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 12px 16px;
    background: var(--surf-2);
    border-bottom: 1px solid var(--edge);
}

    .deskwin-bar i {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        display: block;
        flex: none;
        opacity: .85
    }

        .deskwin-bar i:nth-child(1) {
            background: #FF5F57
        }

        .deskwin-bar i:nth-child(2) {
            background: #FEBC2E
        }

        .deskwin-bar i:nth-child(3) {
            background: #28C840
        }

    .deskwin-bar span {
        margin-left: 12px;
        font-family: var(--mono);
        font-size: .62rem;
        font-weight: 600;
        letter-spacing: .12em;
        text-transform: uppercase;
        color: var(--tx-3);
    }

.deskwin-screen {
    position: relative;
    aspect-ratio: 1280/792;
    background: #fff
}

    .deskwin-screen img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: top center;
        opacity: 0;
        transition: opacity .45s ease;
    }

        .deskwin-screen img.on {
            opacity: 1
        }

.vault-tabs {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 12px;
    margin-bottom: 26px
}

.vtab {
    display: block;
    text-align: left;
    width: 100%;
    cursor: pointer;
    color: inherit;
    background: var(--surf-1);
    border: 1px solid var(--edge);
    border-radius: 15px;
    padding: 18px 20px;
    transition: .22s;
}

    .vtab:hover {
        border-color: var(--edge-2);
        background: var(--surf-3)
    }

    .vtab[aria-selected="true"] {
        border-color: var(--blue);
        background: var(--blue-dim)
    }

.vtab-n {
    display: block;
    font-family: var(--mono);
    font-size: .58rem;
    font-weight: 600;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--tx-3);
    margin-bottom: 11px;
}

.vtab[aria-selected="true"] .vtab-n {
    color: var(--blue)
}

.vtab h3 {
    font-size: 1rem;
    line-height: 1.25
}

.vault-cap {
    margin-top: 20px;
    font-size: .95rem;
    color: var(--tx-2);
    line-height: 1.55;
    max-width: 70ch;
}




@media(max-width:900px) {
    .vault-tabs {
        grid-template-columns: 1fr 1fr
    }
}




@media(max-width:560px) {
    .vault-tabs {
        grid-template-columns: 1fr;
        gap: 9px
    }

    .vtab {
        padding: 14px 16px
    }
}

.lnk {
    color: var(--blue-tx)
}
/* ============================================================ SCOPE (in / not yet) */
.scope {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px
}

.scope-col {
    border: 1px solid rgba(4,120,87,.3);
    border-radius: 18px;
    padding: 26px 28px;
    background: linear-gradient(170deg,var(--green-dim),transparent 62%)
}

[data-theme="dark"] .scope-col {
    border-color: rgba(34,197,94,.3)
}

.scope-col.out {
    border-color: var(--edge);
    border-style: dashed;
    background: none
}

.scope-col h3 {
    font-size: 1.12rem;
    margin-bottom: 16px
}

.scope-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 11px
}

.scope-col li {
    position: relative;
    padding-left: 26px;
    font-size: .94rem;
    line-height: 1.5;
    color: var(--tx-2)
}

    .scope-col li::before {
        content: "\2713";
        position: absolute;
        left: 0;
        top: 0;
        color: var(--green);
        font-weight: 700
    }

.scope-col.out li::before {
    content: "\2715";
    color: var(--tx-3);
    font-weight: 600
}




@media(max-width:760px) {
    .scope {
        grid-template-columns: 1fr
    }
}
/* understand — extraction table */
.extract {
    margin-top: 30px;
    border-top: 1px solid var(--edge)
}

.ex-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 22px;
    padding: 15px 0;
    border-bottom: 1px solid var(--edge)
}

    .ex-row dt {
        font-size: .95rem;
        color: var(--tx-2)
    }

    .ex-row dd {
        margin: 0;
        font-family: var(--mono);
        font-size: .9rem;
        font-weight: 600;
        text-align: right;
        color: var(--tx)
    }

.ex-none {
    margin-top: 20px;
    font-family: var(--mono);
    font-size: .66rem;
    font-weight: 600;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--violet)
}

.understood {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 26px;
    border: 1px solid rgba(139,107,255,.4);
    background: var(--violet-dim);
    border-radius: 12px;
    padding: 12px 16px;
    font-family: var(--mono);
    font-size: .71rem;
    letter-spacing: .05em;
    color: var(--violet-tx)
}

.rules {
    list-style: none;
    padding: 0;
    margin: 30px 0 0;
    display: grid;
    gap: 13px
}

    .rules li {
        display: flex;
        gap: 12px;
        align-items: flex-start;
        font-size: .96rem;
        line-height: 1.5;
        color: var(--tx-2)
    }

    .rules svg {
        flex: none;
        margin-top: 4px;
        color: var(--green)
    }
/* inclusion */
.incl {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 16px
}

.inc {
    border: 1px solid var(--edge);
    border-radius: 18px;
    padding: 26px;
    background: linear-gradient(165deg,var(--surf-2),transparent 60%)
}

    .inc h3 {
        font-size: 1.05rem;
        margin-bottom: 9px
    }

    .inc p {
        font-size: .93rem;
        color: var(--tx-2);
        line-height: 1.55
    }

    .inc svg {
        color: var(--green);
        margin-bottom: 15px
    }
/* security */
.sec-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 16px
}

.sec-card {
    border: 1px solid var(--edge);
    border-radius: 18px;
    padding: 26px;
    background: linear-gradient(170deg,var(--surf-2),transparent);
    transition: .25s
}

    .sec-card:hover {
        border-color: rgba(34,197,94,.4);
        transform: translateY(-3px)
    }

    .sec-card svg {
        color: var(--green);
        margin-bottom: 16px
    }

    .sec-card h3 {
        margin-bottom: 9px;
        font-size: 1.04rem
    }

    .sec-card p {
        font-size: .91rem;
        color: var(--tx-2);
        line-height: 1.55
    }

    .sec-card.wide {
        grid-column: span 2;
        border-color: rgba(34,197,94,.38);
        background: linear-gradient(120deg,var(--green-dim),transparent 62%)
    }

.in-tag {
    display: inline-block;
    margin-bottom: 15px;
    font-family: var(--mono);
    font-size: .62rem;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--green);
    border: 1px solid rgba(34,197,94,.4);
    padding: 5px 10px;
    border-radius: 6px
}
/* phase 1 */
.honest {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px
}

.hcard {
    border: 1px solid var(--edge);
    border-radius: 20px;
    padding: 32px
}

    .hcard.yes {
        background: linear-gradient(170deg,rgba(34,197,94,.09),transparent 60%);
        border-color: rgba(34,197,94,.3)
    }

    .hcard.no {
        border-style: dashed
    }

    .hcard h3 {
        margin-bottom: 20px;
        font-size: 1.24rem
    }

.hlist {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 13px
}

    .hlist li {
        display: flex;
        gap: 12px;
        align-items: flex-start;
        font-size: .95rem;
        line-height: 1.5
    }

    .hlist svg {
        flex: none;
        margin-top: 4px
    }

.hcard.yes svg {
    color: var(--green)
}

.hcard.no svg {
    color: var(--tx-3)
}

.hcard.no li {
    color: var(--tx-2)
}

.hnote {
    margin-top: 22px;
    padding-top: 20px;
    border-top: 1px solid var(--edge);
    font-size: .88rem;
    color: var(--tx-3)
}



@media(max-width:1000px) {
    .hero-grid, .split, .tabs-grid, .cta-grid, .honest {
        grid-template-columns: 1fr
    }

    .roles, .moves, .sec-grid {
        grid-template-columns: 1fr 1fr
    }

    .sec-card.wide {
        grid-column: span 2
    }
}



@media(max-width:640px) {
    .roles, .moves, .sec-grid, .incl, .ft-grid, .row {
        grid-template-columns: 1fr
    }

    .sec-card.wide {
        grid-column: span 1
    }
}
/* feature-card tag + document-type chips */
.f-tag {
    display: inline-block;
    margin-bottom: 15px;
    font-family: var(--mono);
    font-size: .6rem;
    font-weight: 600;
    letter-spacing: .13em;
    text-transform: uppercase;
    color: var(--blue);
    background: var(--blue-dim);
    border: 1px solid rgba(59,125,255,.35);
    padding: 5px 10px;
    border-radius: 6px
}

.f-card.wide {
    grid-column: span 2
}

.types {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 24px
}

.type-chip {
    font-family: var(--mono);
    font-size: .73rem;
    background: var(--surf-1);
    border: 1px solid var(--edge);
    padding: 9px 14px;
    border-radius: 8px;
    color: var(--tx-2)
}

    .type-chip.more {
        border-style: dashed;
        color: var(--tx-3)
    }



@media(max-width:1000px) {
    .f-card.wide {
        grid-column: span 2
    }
}



@media(max-width:640px) {
    .f-card.wide {
        grid-column: span 1
    }
}
/* ============================================================
   CAPTURE FLOW INFOGRAPHIC
   Four sources converging on the capture layer. SVG on wide
   screens, a stacked list on narrow ones (SVG text would be
   ~6px at 390px wide, so it is swapped rather than squeezed).
   ============================================================ */
.flowfig {
    margin: 0 0 clamp(28px,3.4vw,44px)
}

.flowsvg {
    width: 100%;
    height: auto;
    display: block;
    overflow: visible
}

.flowsteps {
    display: none
}

.flowsvg .srcnode rect, .flowsvg .outnode rect {
    fill: var(--panel);
    stroke: var(--edge);
    stroke-width: 1.5
}

.flowsvg .corenode rect {
    fill: var(--green-dim);
    stroke: var(--green);
    stroke-width: 1.6
}

.flowsvg .ic {
    fill: none;
    stroke: var(--green);
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round
}

.flowsvg .t1 {
    font-family: var(--body);
    font-size: 15px;
    font-weight: 600;
    fill: var(--tx)
}

.flowsvg .t2 {
    font-family: var(--body);
    font-size: 12.5px;
    fill: var(--tx-3)
}

.flowsvg .ct1 {
    font-family: var(--display);
    font-size: 17px;
    font-weight: 700;
    fill: var(--tx);
    letter-spacing: -.02em
}

.flowsvg .ct2 {
    font-family: var(--mono);
    font-size: 11px;
    fill: var(--tx-2);
    letter-spacing: .04em
}
/* a short dash running the length of each connector */
.flowsvg .pulses path {
    stroke-dasharray: 18 460;
    stroke-dashoffset: 478;
    animation: flowpulse 3.2s linear infinite;
}



@keyframes flowpulse {
    to {
        stroke-dashoffset: 0
    }
}

.flowsvg .corenode rect {
    animation: corepulse 3.2s ease-in-out infinite
}



@keyframes corepulse {
    0%, 100% {
        stroke-opacity: .55
    }

    45% {
        stroke-opacity: 1
    }
}




@media(max-width:760px) {
    .flowsvg {
        display: none
    }

    .flowsteps {
        display: grid;
        gap: 9px;
        list-style: none;
        padding: 0;
        margin: 0;
        counter-reset: fs;
    }

        .flowsteps li {
            position: relative;
            border: 1px solid var(--edge);
            border-radius: 14px;
            padding: 14px 16px 14px 46px;
            background: var(--panel);
        }

            .flowsteps li::before {
                counter-increment: fs;
                content: counter(fs);
                position: absolute;
                left: 14px;
                top: 14px;
                width: 20px;
                height: 20px;
                border-radius: 6px;
                display: grid;
                place-items: center;
                background: var(--green-dim);
                color: var(--green);
                font-family: var(--mono);
                font-size: .66rem;
                font-weight: 600;
            }

            .flowsteps li.fcore {
                border-color: var(--green);
                background: var(--green-dim)
            }

            .flowsteps li.fout {
                border-style: dashed
            }

        .flowsteps b {
            display: block;
            font-size: .96rem;
            margin-bottom: 3px
        }

        .flowsteps span {
            font-size: .86rem;
            color: var(--tx-2);
            line-height: 1.45
        }
}



@media(prefers-reduced-motion:reduce) {
    .flowsvg .pulses path {
        stroke-dasharray: none;
        stroke-dashoffset: 0;
        stroke-opacity: .35
    }
}
/* ============================================================ BUILT FOR */
.profs {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 16px
}

.prof {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--edge);
    border-radius: 20px;
    background: var(--panel);
    overflow: hidden;
    transition: .25s
}

    .prof:hover {
        transform: translateY(-3px);
        border-color: var(--edge-2)
    }

.prof-h {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 24px 24px 20px;
    border-bottom: 1px solid var(--edge)
}

.prof-ico {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    flex: none
}

.prof.p1 .prof-ico {
    background: var(--blue-dim);
    color: var(--blue)
}

.prof.p2 .prof-ico {
    background: var(--violet-dim);
    color: var(--violet)
}

.prof.p3 .prof-ico {
    background: var(--green-dim);
    color: var(--green)
}

.prof-h h3 {
    font-size: 1.07rem;
    margin-bottom: 5px
}

.prof-h p {
    font-size: .85rem;
    color: var(--tx-3);
    line-height: 1.4
}

.prof-list {
    list-style: none;
    margin: 0;
    padding: 20px 24px 26px;
    display: grid;
    gap: 13px;
    align-content: start
}

    .prof-list li {
        position: relative;
        padding-left: 25px;
        font-size: .92rem;
        line-height: 1.52;
        color: var(--tx-2)
    }

        .prof-list li::before {
            content: "\2713";
            position: absolute;
            left: 0;
            top: 0;
            font-weight: 700
        }

.prof.p1 .prof-list li::before {
    color: var(--blue)
}

.prof.p2 .prof-list li::before {
    color: var(--violet)
}

.prof.p3 .prof-list li::before {
    color: var(--green)
}

.prof-list b {
    color: var(--tx);
    font-weight: 600
}

.beyond {
    margin-top: 16px;
    border: 1px dashed var(--edge-2);
    border-radius: 20px;
    padding: 28px 30px;
    background: linear-gradient(160deg,var(--surf-2),transparent 62%)
}

    .beyond h3 {
        font-size: 1.16rem;
        margin-bottom: 11px
    }

    .beyond p {
        color: var(--tx-2);
        font-size: .97rem;
        line-height: 1.6;
        max-width: 78ch
    }

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

    .beyond-chips span {
        font-family: var(--mono);
        font-size: .71rem;
        border: 1px solid var(--edge);
        background: var(--panel);
        border-radius: 8px;
        padding: 8px 13px;
        color: var(--tx-2)
    }




@media(max-width:1060px) {
    .profs {
        grid-template-columns: 1fr 1fr
    }

        .profs .prof:last-child {
            grid-column: span 2
        }

            .profs .prof:last-child .prof-list {
                grid-template-columns: 1fr 1fr;
                column-gap: 26px
            }
}



@media(max-width:700px) {
    .profs, .profs .prof:last-child {
        grid-template-columns: 1fr
    }

        .profs .prof:last-child {
            grid-column: span 1
        }

            .profs .prof:last-child .prof-list {
                grid-template-columns: 1fr
            }

    .beyond {
        padding: 24px 22px
    }
}
/* How-it-works reads as a sequence, so link the movements with arrows.
   These hang off the grid container: .move has overflow:hidden for its top
   accent bar, which would clip an arrow drawn on the card itself. */
.moves.flow {
    --g: 18px;
    position: relative
}

    .moves.flow::before, .moves.flow::after {
        content: "";
        position: absolute;
        top: 50%;
        z-index: 2;
        width: 11px;
        height: 11px;
        transform: translate(-50%,-50%) rotate(45deg);
        border-top: 1.6px solid var(--edge-2);
        border-right: 1.6px solid var(--edge-2);
    }

    .moves.flow::before {
        left: calc(33.333% - var(--g) * 0.167)
    }

    .moves.flow::after {
        left: calc(66.667% + var(--g) * 0.167)
    }


@media(max-width:1000px) {
    .moves.flow::before, .moves.flow::after {
        display: none
    }
}


@media(max-width:1000px) {
    .moves.flow .move:not(:last-child)::after {
        top: auto;
        right: auto;
        bottom: -15px;
        left: 50%;
        transform: translateX(-50%) rotate(135deg);
    }
}
/* The header CTA button is hidden on narrow screens, so surface it inside the
   mobile menu instead — otherwise there is no call to action in the header at all. */
.nav-links .nav-cta {
    display: none
}

@media(max-width:1000px) {
    .nav-links .nav-cta {
        display: block;
        color: var(--blue);
        font-weight: 600;
        border-bottom: 0
    }
}
/* ============================================================ ABOUT PAGE */
.about-hero {
    display: grid;
    grid-template-columns: 1.05fr .8fr;
    gap: clamp(30px,4.5vw,60px);
    align-items: center;
    position: relative;
    z-index: 2
}

.factcard {
    margin-top: 0
}

    .factcard .st-row {
        grid-template-columns: 96px 1fr;
        padding: 15px 20px
    }

        .factcard .st-row dd {
            font-size: .9rem
        }

.prose-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(24px,3vw,44px);
    margin-bottom: clamp(30px,3.6vw,46px)
}

    .prose-2 p {
        font-size: 1rem;
        color: var(--tx-2);
        line-height: 1.65
    }

    .prose-2 code {
        font-family: var(--mono);
        font-size: .86em;
        background: var(--surf-3);
        border: 1px solid var(--edge);
        border-radius: 5px;
        padding: 2px 6px;
        color: var(--tx)
    }

.pr code {
    font-family: var(--mono);
    font-size: .86em;
    background: var(--surf-3);
    border: 1px solid var(--edge);
    border-radius: 5px;
    padding: 2px 5px;
    color: var(--tx);
    white-space: nowrap
}

@media(max-width:900px) {
    .about-hero {
        grid-template-columns: 1fr;
        gap: 34px
    }

    .prose-2 {
        grid-template-columns: 1fr;
        gap: 16px
    }
}


/* ============================================================ PAGINATION */
.pager {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: clamp(30px,3.6vw,46px);
    flex-wrap: wrap
}

    .pager[hidden] {
        display: none
    }

.pg-btn, .pg-num {
    font-family: var(--body);
    font-size: .88rem;
    font-weight: 500;
    color: var(--tx-2);
    background: var(--surf-1);
    border: 1px solid var(--edge);
    border-radius: 10px;
    padding: 10px 16px;
    cursor: pointer;
    transition: .2s;
}

.pg-num {
    min-width: 42px;
    font-family: var(--mono);
    font-size: .82rem;
    padding: 10px 12px
}

    .pg-btn:hover:not(:disabled), .pg-num:hover:not([aria-current="page"]) {
        color: var(--tx);
        border-color: var(--edge-2);
        background: var(--surf-3);
    }

.pg-btn:disabled {
    opacity: .4;
    cursor: default
}

.pg-num[aria-current="page"] {
    background: var(--btn-solid);
    border-color: var(--btn-solid);
    color: #fff;
    cursor: default
}

.pg-nums {
    display: flex;
    gap: 7px
}

@media(max-width:520px) {
    .pg-btn {
        padding: 10px 13px;
        font-size: .83rem
    }

    .pg-num {
        min-width: 36px
    }
}

/* Retrieve slider indicator — without it the "searching" frame reads as a stuck page */
.minirail {
    display: flex;
    gap: 5px;
    width: 100%;
    max-width: 300px;
    margin: 18px auto 0
}

    .minirail i {
        flex: 1;
        height: 3px;
        border-radius: 99px;
        background: var(--surf-4);
        transition: background .35s
    }

        .minirail i.is-active {
            background: linear-gradient(90deg,var(--violet),var(--blue))
        }

/* ============================================================ SOCIAL */
.social {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 20px
}

    .social a {
        display: grid;
        place-items: center;
        width: 38px;
        height: 38px;
        flex: none;
        border: 1px solid var(--edge);
        border-radius: 10px;
        background: var(--surf-1);
        color: var(--tx-3);
        margin: 0;
        transition: .2s;
    }

        .social a:hover {
            color: var(--tx);
            border-color: var(--edge-2);
            background: var(--surf-3);
            transform: translateY(-2px)
        }

    .social svg {
        width: 16px;
        height: 16px;
        fill: currentColor;
        display: block
    }

.filters[hidden] {
    display: none
}

/* Second feature block mirrors the first, so two posts fill the row rather
   than leaving one card stranded in a three-column grid. */
.feature-flip {
    background: linear-gradient(135deg,var(--green-dim),transparent 60%)
}

    .feature-flip:hover {
        border-color: rgba(4,120,87,.45)
    }

[data-theme="dark"] .feature-flip:hover {
    border-color: rgba(34,197,94,.45)
}

.feature-flip .art-thumb {
    order: -1
}

@media(max-width:1000px) {
    .feature-flip .art-thumb {
        order: -1
    }
}

/* Blog cards now carry real artwork rather than a gradient placeholder */
.art-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: inherit
}

.feature .art-thumb {
    padding: 0;
    overflow: hidden
}

.more-head {
    font-size: clamp(1.35rem,2.2vw,1.8rem);
    margin: clamp(38px,4.4vw,56px) 0 22px
}

.pg-num[aria-current="page"]:disabled {
    opacity: 1
}
/* Banners are 16:9 and carry their own headline — a 16:10 frame crops it. */
.feature .art-thumb {
    aspect-ratio: 16/9
}

/* Policy tables — sub-processors and app data collection */
.subs {
    width: 100%;
    border-collapse: collapse;
    margin: 18px 0 22px;
    font-size: .92rem
}

    .subs th {
        text-align: left;
        padding: 11px 14px 11px 0;
        border-bottom: 1px solid var(--edge-2);
        font-family: var(--mono);
        font-size: .62rem;
        font-weight: 600;
        letter-spacing: .13em;
        text-transform: uppercase;
        color: var(--tx-3);
        white-space: nowrap;
    }

    .subs td {
        padding: 13px 14px 13px 0;
        border-bottom: 1px solid var(--edge);
        color: var(--tx-2);
        line-height: 1.55;
        vertical-align: top
    }

    .subs tr td:first-child {
        color: var(--tx);
        font-weight: 500;
        padding-right: 22px
    }

@media(max-width:640px) {
    .subs, .subs tbody, .subs tr, .subs td {
        display: block;
        width: 100%
    }

        .subs thead {
            display: none
        }

        .subs tr {
            border-bottom: 1px solid var(--edge-2);
            padding: 12px 0
        }

        .subs td {
            border: 0;
            padding: 3px 0
        }

        .subs tr td:first-child {
            font-size: .98rem;
            margin-bottom: 4px
        }
}

/* ============================================================
   STALE-STYLESHEET PROBE — keep this as the LAST rule in the file.
   js/site.js checks for it. If a browser or CDN serves an older
   stylesheet, the probe fails and the console says so, instead of
   the page silently rendering with the newest rules missing.
   ============================================================ */
.css-probe {
    outline-style: dotted
}
