/* =============================================================================
   SAI ERP — article.css
   Styles for single article pages (body.article-page).
   Reference: article-daycare-v6_2.html
   Vertical accent colours are injected as CSS vars by PHP (inc/helpers.php):
     --V  primary  · --VL light  · --VD deep-dark  · --VM medium-dark
   Orange (always): --O #F07830 · --OL #F4A030 · --OD #c2410c
   ============================================================================= */

/* ── Design tokens ──────────────────────────────────────────────────────────── */
body.article-page {
    --O:  #F07830;
    --OL: #F4A030;
    --OD: #c2410c;
    --BK: #0d0d0d;
    --G9: #111;
    --G5: #6b7280;
    --G3: #d1d5db;
    --G2: #e5e7eb;
    --G1: #f3f4f6;
    --W:  #fff;
    --ui: 'Plus Jakarta Sans', system-ui, sans-serif;
    /* --V / --VL / --VD / --VM injected per-post by PHP */
    background: var(--W);
    color: var(--BK);
    font-family: var(--ui);
    overflow-x: hidden;
}

/* ── Reading progress bar ───────────────────────────────────────────────────── */
#prog {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--V, #F07830), var(--VL, #F4A030));
    width: 0%;
    z-index: 400;
    transition: width .08s linear;
    pointer-events: none;
}

/* ── Mobile sticky CTA ──────────────────────────────────────────────────────── */
.mob-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 300;
    background: var(--BK);
    border-top: 1px solid rgba(255,255,255,.1);
    padding: 14px 20px;
    gap: 10px;
    align-items: center;
}

.mob-cta-text {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,.7);
    flex: 1;
    line-height: 1.3;
}

.mob-cta-text strong {
    color: #fff;
    display: block;
}

.mob-btn {
    background: var(--O);
    color: #fff;
    padding: 11px 20px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
}

@media (max-width: 900px) {
    .mob-cta { display: flex; }
}

/* ── Article nav ────────────────────────────────────────────────────────────── */
nav {
    position: fixed;
    top: 3px;   /* sits below 3px progress bar */
    left: 0;
    right: 0;
    z-index: 200;
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(0,0,0,.07);
    padding: 0 40px;
}

.ni {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 58px;
}

.nlogo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.nlogo-text {
    font-size: 20px;
    font-weight: 900;
    color: #111;
    letter-spacing: -1px;
    font-family: var(--ui);
}

.nbadge {
    font-size: 9.5px;
    font-weight: 800;
    letter-spacing: .8px;
    padding: 2px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    background: color-mix(in srgb, var(--V, #F07830) 12%, transparent);
    border: 1.5px solid color-mix(in srgb, var(--V, #F07830) 30%, transparent);
    color: var(--V, #F07830);
}

.nr {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nback {
    font-size: 12.5px;
    font-weight: 600;
    color: var(--G5);
    text-decoration: none;
    transition: color .15s;
}

.nback:hover { color: var(--BK); }

.ncta {
    background: var(--O);
    color: #fff;
    padding: 8px 20px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: all .15s;
}

.ncta:hover {
    background: var(--OD);
    transform: translateY(-1px);
}

/* ── Hero ───────────────────────────────────────────────────────────────────── */
.hero {
    padding: 100px 40px 0;
    background: var(--W);
}

.hi {
    max-width: 1200px;
    margin: 0 auto;
}

/* Summary box */
.summary-box {
    background: linear-gradient(135deg,
        color-mix(in srgb, var(--V, #16a34a) 7%, transparent),
        color-mix(in srgb, var(--V, #16a34a) 2%, transparent));
    border: 1px solid color-mix(in srgb, var(--V, #16a34a) 20%, transparent);
    border-left: 4px solid var(--V, #16a34a);
    border-radius: 0 14px 14px 0;
    padding: 24px 28px;
    margin-bottom: 28px;
}

.sb-title {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--V, #16a34a);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sb-title::before {
    content: '⚡';
    font-size: 13px;
}

.sb-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sb-list li {
    font-size: 14px;
    font-weight: 500;
    color: #1a2e20;
    padding: 3px 0 3px 18px;
    position: relative;
    line-height: 1.5;
}

.sb-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--V, #16a34a);
    font-weight: 800;
    font-size: 12px;
}

/* Category label */
.acat {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--V, #16a34a);
}

.acat::before {
    content: '';
    width: 22px;
    height: 2px;
    background: var(--V, #16a34a);
    border-radius: 2px;
}

/* H1 */
.art-h1 {
    font-family: var(--ui);
    font-size: clamp(28px, 3.6vw, 50px);
    font-weight: 600;
    font-style: italic;
    letter-spacing: -.3px;
    line-height: 1.15;
    color: var(--BK);
    max-width: 820px;
    margin-bottom: 22px;
}

.art-h1 em {
    font-style: normal;
    color: var(--V, #16a34a);
}

/* Author meta row */
.ameta {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px 0;
    border-top: 1px solid var(--G2);
    border-bottom: 1px solid var(--G2);
    flex-wrap: wrap;
}

.ama {
    display: flex;
    align-items: center;
    gap: 10px;
}

.avtr {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--OL), var(--O));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0;
}

.aname {
    font-size: 13px;
    font-weight: 700;
    color: var(--BK);
}

.arole {
    font-size: 11px;
    color: var(--G5);
}

.arole a {
    color: var(--V, #16a34a);
    text-decoration: none;
}

.arole a:hover { text-decoration: underline; }

.asep {
    width: 1px;
    height: 32px;
    background: var(--G2);
}

.ainfo {
    font-size: 12px;
    color: var(--G5);
    line-height: 1.7;
}

/* Trust badge inside ameta */
.tb-badge {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 11px;
    font-weight: 700;
    background: color-mix(in srgb, var(--V, #16a34a) 10%, transparent);
    color: var(--V, #16a34a);
    border: 1px solid color-mix(in srgb, var(--V, #16a34a) 25%, transparent);
    padding: 4px 12px;
    border-radius: 20px;
    margin-left: auto;
}

/* Trust bar */
.trust-bar {
    background: var(--G1);
    border: 1px solid var(--G2);
    border-radius: 10px;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 16px;
}

.tb-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    color: var(--G5);
}

.tb-item strong { color: var(--BK); }

.tb-item::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--V, #16a34a);
    flex-shrink: 0;
}

/* ── Layout grid ────────────────────────────────────────────────────────────── */
.layout {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 288px;
    gap: 60px;
    padding: 0 40px 100px;
}

.artbody {
    padding-top: 44px;
    min-width: 0;
}

/* ── Article typography ─────────────────────────────────────────────────────── */
.artbody h2 {
    font-family: var(--ui);
    font-size: 23px;
    font-weight: 800;
    letter-spacing: -.5px;
    color: var(--BK);
    margin: 52px 0 16px;
    padding-top: 4px;
    line-height: 1.25;
    position: relative;
    scroll-margin-top: 80px;
}

.artbody h2::before {
    content: '';
    position: absolute;
    left: -24px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 28px;
    background: var(--V, #16a34a);
    border-radius: 2px;
}

.artbody h3 {
    font-family: var(--ui);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: -.2px;
    color: var(--BK);
    margin: 28px 0 10px;
    display: flex;
    align-items: center;
    gap: 9px;
}

.artbody h3::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--V, #16a34a);
    flex-shrink: 0;
}

.artbody p {
    font-family: var(--ui);
    font-size: 17px;
    line-height: 1.88;
    color: #262626;
    margin-bottom: 20px;
}

.artbody p strong {
    font-family: var(--ui);
    font-weight: 700;
    color: var(--BK);
    font-size: 15.5px;
}

.artbody ul,
.artbody ol {
    margin: 0 0 24px;
    padding: 0;
}

.artbody li {
    font-family: var(--ui);
    font-size: 16.5px;
    line-height: 1.8;
    color: #262626;
    padding: 6px 0 6px 22px;
    border-bottom: 1px solid rgba(0,0,0,.05);
    position: relative;
    list-style: none;
}

.artbody li:last-child { border-bottom: none; }

.artbody li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--V, #16a34a);
    font-size: 13px;
    font-weight: 700;
    top: 8px;
}

.artbody li strong {
    font-family: var(--ui);
    font-weight: 700;
    color: var(--BK);
    font-size: 15.5px;
}

.artbody a { color: var(--W, #ffffff); }
.artbody a:hover { text-decoration: underline; }

/* ── Blocks ─────────────────────────────────────────────────────────────────── */

/* Callout */
.callout {
    background: linear-gradient(135deg,
        color-mix(in srgb, var(--V, #16a34a) 7%, transparent),
        color-mix(in srgb, var(--V, #16a34a) 2%, transparent));
    border-left: 3px solid var(--V, #16a34a);
    border-radius: 0 12px 12px 0;
    padding: 20px 26px;
    margin: 28px 0;
}

.callout p {
    font-family: var(--ui);
    font-size: 15px;
    color: #1a2e20;
    line-height: 1.75;
    margin: 0;
    font-weight: 500;
}

.callout strong { color: var(--V, #16a34a); }

/* Q&A */
.qa {
    background: var(--G1);
    border: 1px solid var(--G2);
    border-radius: 14px;
    padding: 26px 30px;
    margin: 32px 0;
    scroll-margin-top: 80px;
}

.qa-q {
    font-family: var(--ui);
    font-size: 17px;
    font-weight: 800;
    color: var(--BK);
    margin-bottom: 14px;
    letter-spacing: -.3px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.qa-q::before {
    content: '?';
    width: 27px;
    height: 27px;
    background: var(--V, #16a34a);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 900;
    flex-shrink: 0;
    margin-top: 2px;
}

.qa-a p {
    font-family: var(--ui);
    font-size: 15.5px;
    color: #262626;
    line-height: 1.8;
    margin: 0 0 10px;
}

.qa-a p:last-child { margin: 0; }

/* Micro-CTA */
.micro-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: rgba(240,120,48,.07);
    border: 1px solid rgba(240,120,48,.2);
    border-radius: 10px;
    padding: 14px 20px;
    margin: 20px 0 32px;
}

.mc-text {
    font-family: var(--ui);
    font-size: 13px;
    font-weight: 600;
    color: var(--BK);
    line-height: 1.4;
}

.mc-text span {
    color: var(--G5);
    font-weight: 500;
    font-size: 12px;
    display: block;
}

.mc-btn {
    background: var(--O);
    color: #fff;
    padding: 9px 18px;
    border-radius: 8px;
    font-size: 12.5px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background .15s;
    box-shadow: 0 3px 12px rgba(240,120,48,.25);
}

.mc-btn:hover { background: var(--OD); }

/* Testimonial */
.testi {
    background: var(--W);
    border: 1px solid var(--G2);
    border-radius: 14px;
    padding: 28px 30px;
    margin: 36px 0;
    box-shadow: 0 2px 16px rgba(0,0,0,.05);
    position: relative;
}

.testi::before {
    content: '\201C';
    font-family: var(--ui);
    font-size: 72px;
    color: var(--V, #16a34a);
    position: absolute;
    top: -8px;
    left: 22px;
    line-height: 1;
    opacity: .3;
}

.testi-text {
    font-family: var(--ui);
    font-size: 16px;
    font-style: italic;
    color: #2c2c2c;
    line-height: 1.8;
    margin-bottom: 16px;
    padding-top: 24px;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testi-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--VD, #052e16), var(--V, #16a34a));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0;
}

.testi-name {
    font-size: 13px;
    font-weight: 700;
    color: var(--BK);
}

.testi-role {
    font-size: 11.5px;
    color: var(--G5);
}

.testi-stars {
    margin-left: auto;
    color: var(--OL);
    font-size: 13px;
    letter-spacing: 2px;
}

/* Data row */
.data-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin: 24px 0;
}

.dc {
    background: var(--G1);
    border: 1px solid var(--G2);
    border-radius: 12px;
    padding: 18px 20px;
    text-align: center;
}

.dc-val {
    font-size: 26px;
    font-weight: 900;
    color: var(--V, #16a34a);
    letter-spacing: -1px;
    font-family: var(--ui);
    font-variant-numeric: tabular-nums;
}

.dc-lbl {
    font-size: 11px;
    color: var(--G5);
    margin-top: 5px;
    line-height: 1.5;
    font-family: var(--ui);
}

/* Pull-quote */
.pullq {
    margin: 44px -40px;
    padding: 32px 56px;
    background: linear-gradient(135deg, var(--VD, #052e16), var(--VM, #14532d));
    position: relative;
    overflow: hidden;
}

.pullq::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle,
        color-mix(in srgb, var(--VL, #4ade80) 12%, transparent) 0%,
        transparent 65%);
}

.pullq p {
    font-family: var(--ui);
    font-size: clamp(19px, 2.2vw, 26px);
    font-style: italic;
    color: #fff;
    line-height: 1.45;
    max-width: 600px;
    position: relative;
    z-index: 1;
}

.pullq em {
    font-style: normal;
    color: var(--VL, #4ade80);
    font-family: var(--ui);
    font-weight: 800;
}

/* Steps */
.steps { margin: 0 0 20px; }

.step {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 14px;
    margin-bottom: 18px;
    align-items: flex-start;
}

.snum {
    width: 42px;
    height: 42px;
    background: var(--V, #16a34a);
    color: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 900;
    font-family: var(--ui);
    flex-shrink: 0;
}

.stit {
    font-family: var(--ui);
    font-size: 14.5px;
    font-weight: 800;
    color: var(--BK);
    margin-bottom: 5px;
}

.sbod {
    font-family: var(--ui);
    font-size: 15px;
    color: #3a3a3a;
    line-height: 1.75;
}

/* Comparison table */
.comp-wrap { overflow-x: auto; }

.comp-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 28px 0;
    font-size: 13px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--G2);
}

.comp-table thead th {
    background: var(--G1);
    padding: 12px 16px;
    font-family: var(--ui);
    font-weight: 700;
    color: var(--G5);
    text-align: left;
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-bottom: 1px solid var(--G2);
}

.comp-table thead th:first-child { color: var(--BK); }

.comp-table thead th.hl {
    background: color-mix(in srgb, var(--V, #16a34a) 10%, transparent);
    color: var(--V, #16a34a);
}

.comp-table tbody tr:nth-child(even) td { background: rgba(0,0,0,.015); }

.comp-table td {
    padding: 11px 16px;
    border-bottom: 1px solid var(--G2);
    color: #3a3a3a;
    vertical-align: top;
    font-family: var(--ui);
}

.comp-table tr:last-child td { border-bottom: none; }

.comp-table td.hl {
    background: color-mix(in srgb, var(--V, #16a34a) 4%, transparent);
    font-weight: 600;
    color: var(--BK);
}

.comp-table td.feature { font-weight: 600; color: var(--BK); }

.ic-y { color: var(--V, #16a34a); font-size: 15px; }
.ic-n { color: #d1d5db; font-size: 15px; }
.ic-p { color: var(--OL); font-size: 13px; }

/* Human grid */
.human-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin: 28px 0;
}

.hcard {
    border-radius: 14px;
    padding: 22px;
    border: 1px solid var(--G2);
    border-top: 3px solid var(--V, #16a34a);
    background: var(--W);
    transition: box-shadow .2s;
}

.hcard:hover { box-shadow: 0 6px 24px rgba(0,0,0,.07); }

.hcard-icon {
    font-size: 28px;
    margin-bottom: 10px;
}

.hcard-title {
    font-size: 13.5px;
    font-weight: 800;
    color: var(--BK);
    margin-bottom: 8px;
}

.hcard-body {
    font-size: 13px;
    color: var(--G5);
    line-height: 1.7;
}

/* Inline form */
.inline-form {
    background: linear-gradient(160deg, var(--BK), #1c1c1c);
    border-radius: 16px;
    padding: 32px 36px;
    margin: 44px 0;
    position: relative;
    overflow: hidden;
}

.inline-form::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(240,120,48,.12) 0%, transparent 65%);
}

.if-urgency {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 700;
    background: rgba(240,120,48,.15);
    color: var(--OL);
    border: 1px solid rgba(240,120,48,.3);
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 18px;
    letter-spacing: .5px;
}

.if-urgency::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--OL);
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: .3; }
}

.if-head {
    font-family: var(--ui);
    font-size: 20px;
    font-weight: 900;
    color: #fff;
    letter-spacing: -.4px;
    margin-bottom: 6px;
}

.if-sub {
    font-size: 13px;
    color: rgba(255,255,255,.45);
    margin-bottom: 22px;
    line-height: 1.6;
}

.if-demo-info {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.idi {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: rgba(255,255,255,.5);
}

.if-fields {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}

.if-field {
    flex: 1;
    min-width: 180px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 9px;
    padding: 12px 16px;
    font-size: 14px;
    color: #fff;
    font-family: var(--ui);
    outline: none;
    transition: border-color .15s;
}

.if-field::placeholder { color: rgba(255,255,255,.3); }

.if-field:focus {
    border-color: color-mix(in srgb, var(--V, #16a34a) 60%, transparent);
}

.if-btn {
    background: var(--O);
    color: #fff;
    padding: 12px 26px;
    border-radius: 9px;
    font-size: 14px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    font-family: var(--ui);
    transition: all .15s;
    box-shadow: 0 4px 16px rgba(240,120,48,.3);
}

.if-btn:hover {
    background: var(--OD);
    transform: translateY(-1px);
}

.if-note {
    font-size: 11px;
    color: rgba(255,255,255,.25);
    line-height: 1.6;
    margin-top: 12px;
}

.if-note a { color: rgba(255,255,255,.4); }

/* Divider */
.divider {
    height: 1px;
    background: var(--G2);
    margin: 44px 0;
}

/* ── Sidebar ────────────────────────────────────────────────────────────────── */
.sidebar { padding-top: 44px; }

.sticky {
    position: sticky;
    top: 78px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

/* TOC card */
.toc-card {
    background: var(--G1);
    border: 1px solid var(--G2);
    border-radius: 14px;
    padding: 20px 22px;
}

.toc-ttl {
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--G5);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 7px;
}

.toc-ttl::before {
    content: '';
    width: 12px;
    height: 2px;
    background: var(--V, #16a34a);
    border-radius: 2px;
}

.toc-ul { list-style: none; padding: 0; margin: 0; }
.toc-ul li { margin-bottom: 2px; }

.toc-ul a {
    font-size: 12px;
    font-weight: 500;
    color: var(--G5);
    text-decoration: none;
    display: flex;
    align-items: flex-start;
    gap: 7px;
    padding: 4px 0;
    line-height: 1.4;
    transition: color .15s;
}

.toc-ul a:hover,
.toc-ul a.on,
.toc-ul a.is-active { color: var(--V, #16a34a); }

.toc-ul a.on,
.toc-ul a.is-active { font-weight: 700; }

.toc-ul a::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--G3);
    flex-shrink: 0;
    margin-top: 5.5px;
    transition: background .15s;
}

.toc-ul a.on::before,
.toc-ul a.is-active::before,
.toc-ul a:hover::before { background: var(--V, #16a34a); }

/* Sidebar CTA */
.scta {
    background: linear-gradient(160deg, var(--VD, #052e16), var(--VM, #14532d));
    border-radius: 14px;
    padding: 22px;
    position: relative;
    overflow: hidden;
}

.scta::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle,
        color-mix(in srgb, var(--VL, #4ade80) 14%, transparent) 0%,
        transparent 65%);
}

.sc-lbl {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--VL, #4ade80);
    margin-bottom: 8px;
}

.sc-ttl {
    font-size: 17px;
    font-weight: 900;
    color: #fff;
    letter-spacing: -.4px;
    margin-bottom: 8px;
    line-height: 1.2;
}

.sc-sub {
    font-size: 12px;
    color: rgba(255,255,255,.48);
    margin-bottom: 16px;
    line-height: 1.6;
}

.sc-btn {
    background: var(--O);
    color: #fff;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    display: block;
    text-align: center;
    transition: background .15s;
    position: relative;
    z-index: 1;
}

.sc-btn:hover { background: var(--OD); }

/* Social proof / stats card */
.sp-card {
    background: var(--W);
    border: 1px solid var(--G2);
    border-radius: 14px;
    padding: 20px 22px;
}

.sp-ttl {
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--G5);
    margin-bottom: 14px;
}

.sp-stat {
    text-align: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--G2);
}

.sp-stat:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.sp-val {
    font-size: 24px;
    font-weight: 900;
    color: var(--V, #16a34a);
    letter-spacing: -1px;
    font-variant-numeric: tabular-nums;
}

.sp-lbl {
    font-size: 11px;
    color: var(--G5);
    margin-top: 3px;
    line-height: 1.4;
}

/* Keywords card */
.kw-card {
    background: var(--G1);
    border: 1px solid var(--G2);
    border-radius: 14px;
    padding: 18px 20px;
}

.kw-ttl {
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--G5);
    margin-bottom: 10px;
}

.kws {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.kw {
    font-size: 10.5px;
    font-weight: 600;
    padding: 3px 9px;
    border-radius: 20px;
    cursor: default;
}

.kw-m {
    background: color-mix(in srgb, var(--V, #16a34a) 10%, transparent);
    color: var(--V, #16a34a);
    border: 1px solid color-mix(in srgb, var(--V, #16a34a) 25%, transparent);
}

.kw-s {
    background: var(--W);
    color: var(--G5);
    border: 1px solid var(--G2);
}

.kw-l {
    background: rgba(240,120,48,.08);
    color: var(--O);
    border: 1px solid rgba(240,120,48,.2);
}

/* ── Footer ─────────────────────────────────────────────────────────────────── */
footer {
    background: var(--BK);
    padding: 32px 40px;
    border-top: 1px solid rgba(255,255,255,.05);
}

.fi {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.foot-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.foot-brand {
    font-size: 17px;
    font-weight: 900;
    color: #fff;
    letter-spacing: -1px;
    font-family: var(--ui);
}

.foot-tagline {
    font-size: 12px;
    color: rgba(255,255,255,.2);
    font-style: italic;
}

.foot-copy {
    font-size: 11px;
    color: rgba(255,255,255,.15);
}

/* ── Scroll-reveal ──────────────────────────────────────────────────────────── */
[data-r] {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .5s ease, transform .5s ease;
}

[data-r].vis {
    opacity: 1;
    transform: none;
}

/* ── Entry animations ───────────────────────────────────────────────────────── */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(18px); }
    to   { opacity: 1; transform: translateY(0);    }
}

.a1 { animation: fadeUp .6s ease both; }
.a2 { animation: fadeUp .6s .1s ease both; }
.a3 { animation: fadeUp .6s .2s ease both; }

/* ── Responsive ─────────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
    .layout {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 0 20px 120px;
    }

    .sidebar { display: none; }

    .hero { padding: 90px 20px 0; }

    .pullq {
        margin: 32px -20px;
        padding: 24px 28px;
    }

    .artbody h2::before { display: none; }

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

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

    .if-fields { flex-direction: column; }

    nav { padding: 0 20px; }

    .ameta { gap: 10px; }

    .trust-bar { gap: 12px; }

    .tb-badge { margin-left: 0; }
}

@media (max-width: 600px) {
    .human-grid { grid-template-columns: 1fr; }
    .data-row   { grid-template-columns: 1fr; }
}
