/* ---------------------------------------------------------------------------
   Sofic investor demo site — single stylesheet.

   Ground rules this file follows on purpose:
     * No web fonts, no CDN, no external anything. The Content-Security-Policy
       on this host is "default-src 'self'", so an external font URL would
       silently fail to load. System font stacks look native on every device.
     * No inline styles anywhere in the HTML either — CSP blocks those too.
     * Mobile first. Investors read on a phone; the desktop layout is the
       enhancement, not the baseline.
     * Colors live in :root as tokens so a rebrand is one block, not a sweep.
   ------------------------------------------------------------------------- */

:root {
    /* PALETTE: "Ochre & Ink" (chosen 2026-08-11 over teal / navy / green).
       Ledger paper and pencil. Deliberately NOT the navy that every incumbent
       in this market wears.

       ★ There is no pure white anywhere in this file, by request. The ground is
       warm paper; "white" surfaces are #fffdf8, a warm off-white. Every text
       pair below was measured, not eyeballed — the lowest is 4.54:1 (the ochre
       eyebrow on the ground) and AA needs 4.50. Do not lighten the accent
       without re-measuring. */
    --ink:        #1c1917;   /* headings — warm near-black, not blue-black */
    --ink-soft:   #44403c;
    --paper:      #fffdf8;   /* raised surfaces: cards, top bar */
    --paper-alt:  #f7f3ec;   /* the page ground */
    --paper-deep: #efe8dd;   /* alternating sections, one step down */
    --line:       #cbb99b;   /* card edges — anything lighter vanishes on warm
                                paper (measured 1.26:1 and invisible) */
    --line-soft:  #d5c6ac;   /* hairline rules, where invisible is fine */

    --text:       #3f3a35;   /* 10.16 on ground · 8.92 over the ledger */
    --text-muted: #4e463f;   /*  7.99 on ground · 5.36 over the ledger.
                                Darkened twice: #6f6760 -> #655d56 -> here,
                                each time the ledger background got stronger.
                                At the current background it must not go
                                lighter than #585049 (4.58, bare AA pass). */
    --text-invert:#f5f0e8;

    /* Accent: ochre. Used sparingly — headings stay ink, the accent marks
       actions and the few numbers that matter. */
    --accent:      #b45309;
    --accent-dark: #92400e;
    --accent-soft: #fdf1de;
    --accent-lt:   #fcd34d;  /* reversed-on-ink only */
    /* Ochre as TEXT needs to be darker than ochre as a FILL: over the ledger
       background #b45309 measured 3.97 (AA needs 4.50). Buttons keep the
       brighter --accent because they carry their own solid background. */
    --accent-text: #7a3309;  /*  8.02 on ground · 5.28 over the ledger */

    /* Surfaces that sit ON the accent or on ink. Warm off-white, never #fff. */
    --on-accent:  #fffdf8;

    /* Status colors for the module grid. Semantic, so they are allowed to step
       outside the brand accent — but they stay earthy to live with it. */
    --ok:      #3f6212;
    --ok-bg:   #f0f4e3;
    --work:    #92400e;
    --work-bg: #fdf1de;
    --plan:    #57534e;
    --plan-bg: #efe8dd;

    --radius: 10px;
    --shadow: 0 1px 2px rgba(60, 45, 25, .07), 0 8px 24px rgba(60, 45, 25, .07);

    /* Fluid type: clamp() lets headings scale with the viewport without a pile
       of breakpoints. min / preferred / max. */
    --h1: clamp(2rem, 5.2vw, 3.4rem);
    --h2: clamp(1.5rem, 3.4vw, 2.25rem);
}

/* --- Reset-ish ---------------------------------------------------------- */

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

html {
    /* Anchor navigation glides instead of jumping — the only "interaction"
       on the page, and it costs zero JavaScript. */
    scroll-behavior: smooth;
    /* Stop the sticky header from covering the heading you just jumped to. */
    scroll-padding-top: 72px;
}

/* Respect users who have asked their OS to stop animating things. */
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
}

body {
    margin: 0;
    /* The ground is warm paper, NOT the lighter card tone — cards need
       something to sit on top of or the whole page flattens. */
    background: var(--paper-alt);
    color: var(--text);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
                 "Helvetica Neue", Arial, sans-serif;
    font-size: 17px;
    line-height: 1.62;
    -webkit-font-smoothing: antialiased;
}

/* --- Page background ---------------------------------------------------- */

/* A generated, blurred ledger sheet (tools/make-ledger-bg.py), fixed behind
   everything. z-index -1 puts it above the body's flat colour but below all
   content. It is decorative: if the image fails to load the page still reads,
   because the warm paper ground underneath is the real background. */
.ledger-bg {
    position: fixed;
    inset: 0;
    z-index: -1;
    /* Two layers: a warm paper veil ON TOP of the ledger, then the ledger.
       The veil is what stops the figures reading as content you could actually
       parse — they should be texture, not something a visitor tries to read
       behind the headline. */
    background:
        linear-gradient(rgba(247, 243, 236, .05), rgba(247, 243, 236, .05)),
        url("img/ledger-bg.jpg") center center / cover no-repeat;
    /* Extra blur on top of the blur baked into the JPEG. The image is
       downscaled by the browser, which sharpens it again, so this earns its
       keep at large viewports. */
    filter: blur(1.8px);
    /* Raising this eats text contrast — MEASURE before changing. At .85 with a
       .05 veil the darkest composited pixel is (203,196,188); that is what the
       --text-muted and --accent-text tokens are pinned to. Going to full
       opacity with no veil drops muted text under AA. */
    opacity: .85;
    pointer-events: none;
}

img { max-width: 100%; height: auto; }

a { color: var(--accent-text); }

h1, h2, h3 {
    color: var(--ink);
    line-height: 1.18;
    letter-spacing: -0.015em;
    margin: 0 0 .6em;
}

h1 { font-size: var(--h1); }
h2 { font-size: var(--h2); }
h3 { font-size: 1.08rem; }

p { margin: 0 0 1.1em; }

/* Visible focus ring for keyboard users — never remove it, some investor is
   tabbing through this on a laptop trackpad they hate. */
a:focus-visible, .btn:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 3px;
    border-radius: 4px;
}

/* --- Layout ------------------------------------------------------------- */

.wrap {
    width: min(1120px, 100% - 2.5rem);
    margin-inline: auto;
}

.wrap.narrow { width: min(720px, 100% - 2.5rem); }

.section { padding: 4.5rem 0; }
/* Translucent so the ledger shows through the alternating bands too. */
.section.alt { background: rgba(239, 232, 221, .62); border-block: 1px solid var(--line-soft); }

@media (min-width: 800px) {
    .section { padding: 6rem 0; }
}

/* --- Top bar ------------------------------------------------------------ */

.topbar {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: .7rem clamp(1rem, 4vw, 2rem);
    background: rgba(255, 253, 248, .90);
    /* Frosted bar keeps the text underneath legible while scrolling past. */
    backdrop-filter: saturate(180%) blur(10px);
    border-bottom: 1px solid var(--line);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    text-decoration: none;
    color: var(--ink);
    font-weight: 700;
    letter-spacing: -0.02em;
}

/* The mark is a self-contained SVG (disc included), so this only sizes it —
   no background, no border-radius, nothing for the CSS to get wrong. */
.brand-mark {
    display: block;
    width: 36px;
    height: 36px;
    flex: none;
}

/* Wordmark: sans, BOLD, slightly tightened. Chosen over serif so the brand
   reads as modern software rather than an audit firm.
   ★ Weight raised 600 -> 700 and size 1.18 -> ~1.5rem on 2026-08-11: at the
   original weight it was getting lost against the nav links, which sit at
   roughly the same visual weight. The wordmark has to out-rank its own
   navigation. Keep it noticeably heavier than .nav a. */
.brand-name {
    font-size: clamp(1.35rem, 1.1rem + 1vw, 1.55rem);
    font-weight: 700;
    letter-spacing: -.02em;
    color: var(--ink);
}

.nav { display: flex; align-items: center; gap: clamp(.6rem, 2vw, 1.6rem); }

.nav a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: .93rem;
    font-weight: 500;
    white-space: nowrap;
}

.nav a:hover { color: var(--ink); }

/* On narrow screens the four section links would wrap into the logo, so only
   the call-to-action survives. */
@media (max-width: 640px) {
    .nav a:not(.nav-cta) { display: none; }
}

.nav-cta {
    padding: .42rem .85rem;
    border: 1px solid var(--accent);
    border-radius: 999px;
    color: var(--accent-text) !important;
}

.nav-cta:hover { background: var(--accent); color: var(--on-accent) !important; }

/* --- Buttons ------------------------------------------------------------ */

.btn {
    display: inline-block;
    padding: .78rem 1.4rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: .97rem;
    text-decoration: none;
    transition: background .15s ease, color .15s ease, transform .15s ease;
}

.btn:active { transform: translateY(1px); }

.btn-primary { background: var(--accent); color: var(--on-accent); }
.btn-primary:hover { background: var(--accent-dark); }

.btn-ghost { border: 1px solid var(--line); color: var(--ink); background: var(--paper); }
.btn-ghost:hover { border-color: var(--ink); }

.btn-lg { padding: .95rem 1.9rem; font-size: 1.03rem; }

/* --- Hero --------------------------------------------------------------- */

.hero {
    padding: 4rem 0 4.5rem;
    /* Subtle wash rather than a hero image: no photo of a diverse team at a
       laptop is going to convince anyone, and it would cost a page-weight. */
    background:
        radial-gradient(900px 380px at 12% -8%, rgba(253, 241, 222, .62), transparent 70%),
        linear-gradient(180deg, rgba(255, 253, 248, .60) 0%, rgba(247, 243, 236, .34) 100%);
    border-bottom: 1px solid var(--line);
}

@media (min-width: 800px) { .hero { padding: 6.5rem 0 6rem; } }

.eyebrow {
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: .76rem;
    font-weight: 700;
    color: var(--accent-text);
    margin-bottom: 1rem;
}

.hero h1 { max-width: 17ch; }

/* --- Hero two-column layout --------------------------------------------- */

.hero-grid {
    display: grid;
    gap: 2.75rem;
    align-items: center;
}

@media (min-width: 900px) {
    /* The art column is now the WIDER of the two. The logo is sized by its
       column (width:100%), so growing the image meant giving it more track —
       raising max-width alone would have done nothing. */
    .hero-grid { grid-template-columns: minmax(0, .81fr) minmax(0, 1fr); gap: 3.5rem; }

    /* Align the top of the wordmark with the top of the h1 beside it, rather
       than centering the logo in the row. That was leaving a band of dead
       air above the mark and another below it; aligning the tops collapses
       both into one block of space under the logo, which .hero-ai fills. */
    .hero-art {
        align-self: start;
        margin-top: 2.35rem;
    }
}

.hero-art img {
    display: block;
    width: 100%;
    /* 15% up from the previous 32rem cap; the widened column is what actually
       lets it render at this size. */
    max-width: 37rem;
    height: auto;
    margin-inline: auto;
}

/* Under 900px the logo sits below the buttons, where it reads as a sign-off
   rather than a second masthead. Slightly smaller so it does not compete. */
@media (max-width: 899px) {
    .hero-art img { max-width: 22rem; }
}

/* Fills the space opened up by aligning the logo to the top of the row
   instead of centering it. Same accent-soft treatment as .assist, so it
   reads as a companion callout rather than a competing card style. */
.hero-ai {
    margin-top: 2rem;
    padding: 1.6rem 1.8rem;
    background: var(--accent-soft);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.hero-ai-eyebrow {
    text-transform: uppercase;
    letter-spacing: .1em;
    font-size: .74rem;
    font-weight: 700;
    color: var(--accent-text);
    margin-bottom: .7rem;
}

.hero-ai-lede {
    color: var(--text-muted);
    font-size: .93rem;
    margin-bottom: 1.1rem;
}

.hero-ai .ticks li { font-size: .89rem; }
.hero-ai .ticks li:last-child { margin-bottom: 0; }

/* Under 900px the logo sits below the hero copy at its own smaller size, so
   this panel does not need the top-alignment trick — just normal flow. */
@media (max-width: 899px) {
    .hero-ai { margin-top: 1.6rem; }
}

.hero-kicker {
    font-size: 1.05rem;
    color: var(--accent-text);
    margin-bottom: .9rem;
}

.lede {
    max-width: 58ch;
    font-size: clamp(1.02rem, 1.9vw, 1.2rem);
    color: var(--text-muted);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    margin-top: 1.8rem;
}

/* --- Section furniture -------------------------------------------------- */

.kicker {
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: .74rem;
    font-weight: 700;
    color: var(--accent-text);
    margin-bottom: .7rem;
}

.section h2 { max-width: 22ch; }

.section-lede {
    max-width: 62ch;
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 2.4rem;
}

/* --- Generic cards ------------------------------------------------------ */

.cards {
    display: grid;
    gap: 1.1rem;
    grid-template-columns: 1fr;
}

@media (min-width: 720px) {
    .cards.three { grid-template-columns: repeat(3, 1fr); }
}

.card {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: var(--shadow);
}

.card h3 { color: var(--ink); }
.card p { color: var(--text-muted); margin: 0; font-size: .96rem; }

.pullquote {
    margin: 2.5rem 0 0;
    padding-left: 1.1rem;
    border-left: 4px solid var(--accent);
    font-size: 1.12rem;
    color: var(--ink);
    max-width: 55ch;
}

/* --- Module grid -------------------------------------------------------- */

.modules {
    display: grid;
    gap: 1.1rem;
    /* auto-fit + minmax is the whole responsive story: as many columns as fit
       at 270px minimum, no breakpoints needed. */
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
}

.module {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: var(--shadow);
    /* Left edge is color-coded by readiness — scannable at a glance. */
    border-left: 4px solid var(--line);
}

.module.shipped  { border-left-color: var(--ok); }
.module.building { border-left-color: var(--work); }
.module.planned  { border-left-color: var(--plan); }

.module-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: .9rem;
}

/* Module icons are inline SVG drawn with fill="currentColor", so the tile
   colour follows this one declaration — including the faded .35 tiles, which
   inherit the same hue at lower opacity. Recolouring the whole system is a
   one-line change here. */
.module-icon {
    display: block;
    width: 34px;
    height: 34px;
    color: var(--accent);
    flex: none;
}

.module p { color: var(--text-muted); font-size: .95rem; margin: 0; }

.tag {
    font-size: .68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .07em;
    padding: .22rem .6rem;
    border-radius: 999px;
    white-space: nowrap;
}

.tag-shipped  { color: var(--ok);   background: var(--ok-bg); }
.tag-building { color: var(--work); background: var(--work-bg); }
.tag-planned  { color: var(--plan); background: var(--plan-bg); }

/* --- Intelligent workflows panel ---------------------------------------- */

/* Sits on the accent-soft tone so it reads as a feature spotlight rather than
   a seventh card, without introducing another surface colour. */
.assist {
    margin-top: 2.4rem;
    padding: 1.9rem;
    background: var(--accent-soft);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.assist > h3 { font-size: 1.15rem; margin-bottom: .4rem; }

.assist-lede {
    color: var(--text-muted);
    font-size: .97rem;
    max-width: 66ch;
    margin-bottom: 1.6rem;
}

.assist-cols {
    display: grid;
    gap: 1.4rem;
    grid-template-columns: 1fr;
}

@media (min-width: 780px) {
    .assist-cols { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
}

.assist-col h4 {
    margin: 0 0 .4rem;
    font-size: .82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .09em;
    color: var(--accent-dark);
}

.assist-col p { margin: 0; color: var(--text-muted); font-size: .93rem; }

.assist-note {
    margin: 1.7rem 0 0;
    padding-top: 1.3rem;
    border-top: 1px solid var(--line);
    color: var(--text-muted);
    font-size: .9rem;
    max-width: 76ch;
}

.assist-note strong { color: var(--ink); }

/* --- Fact row ----------------------------------------------------------- */

.facts {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    margin-top: 2.2rem;
    padding-top: 2.2rem;
    border-top: 1px solid var(--line);
}

.fact-num {
    display: block;
    font-size: 1.22rem;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -0.01em;
}

.fact-sep { color: var(--accent); padding: 0 .3rem; }

.fact-label { display: block; color: var(--text-muted); font-size: .93rem; }

/* --- Pull-quote callout -------------------------------------------------- */

.callout {
    margin: 2.4rem 0 0;
    padding: 1.6rem 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    font-size: clamp(1.15rem, 2.4vw, 1.6rem);
    font-weight: 600;
    color: var(--ink);
    text-align: center;
    max-width: 42ch;
    margin-inline: auto;
}

/* --- Sofic Verified (KB) citation demo ----------------------------------- */

/* Styled like a small paper receipt sitting on the ledger — a stand-in for
   what a real, signed answer looks like. Labeled "illustrative" in the copy
   itself; this block must never be allowed to read as a live query result. */
.citation-demo {
    margin-top: 2.4rem;
    padding: 1.8rem 2rem;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    max-width: 62ch;
}

.citation-demo-label {
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: .68rem;
    font-weight: 700;
    color: var(--text-muted);
    margin-bottom: 1.1rem;
}

.citation-q {
    font-weight: 600;
    color: var(--ink);
    margin-bottom: .6rem;
}

.citation-a { color: var(--text-muted); font-size: .96rem; margin-bottom: 0; }

.citation-meta {
    display: flex;
    flex-wrap: wrap;
    gap: .3rem;
    margin-top: 1.3rem;
    padding-top: 1.1rem;
    border-top: 1px dashed var(--line);
    font-size: .82rem;
    font-weight: 600;
    color: var(--accent-text);
}

.citation-meta code {
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    background: var(--paper-deep);
    padding: .1rem .4rem;
    border-radius: 4px;
    color: var(--text-muted);
    font-weight: 500;
}

.citation-sep { color: var(--line); }

.verified-note {
    margin: 1.6rem 0 0;
    color: var(--text-muted);
    font-size: .92rem;
    max-width: 62ch;
}

/* --- Deployment & licensing --------------------------------------------- */

.deploy {
    display: grid;
    gap: 1.1rem;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    margin-bottom: 2.2rem;
}

.deploy-card {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: var(--shadow);
}

/* A small label above the heading rather than an icon: the tile vocabulary is
   reserved for modules, and deployment options are not modules. */
.deploy-label {
    font-size: .68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--accent-text);
    margin-bottom: .5rem;
}

.deploy-card h3 { font-size: 1.1rem; margin-bottom: .5rem; }
.deploy-card p { margin: 0; color: var(--text-muted); font-size: .95rem; }

.licensing {
    display: grid;
    gap: 1.6rem;
    grid-template-columns: 1fr;
    padding: 1.8rem;
    background: var(--accent-soft);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

@media (min-width: 860px) {
    .licensing { grid-template-columns: 1.6fr 1fr; gap: 2.4rem; }
}

.licensing h3 { font-size: 1.15rem; margin-bottom: .6rem; }
.licensing p { color: var(--text-muted); font-size: .96rem; }
.licensing p:last-child { margin-bottom: 0; }
.licensing strong { color: var(--ink); }
.licensing-side { align-self: center; }
.licensing-side em { color: var(--ink); font-style: normal; font-weight: 600; }

/* --- Founders ----------------------------------------------------------- */

/* Two cards, equal width — deliberately not a "founder + supporting cast"
   layout. The accent bar on top ties them to the module cards without
   repeating the left-border treatment used there. */
.founders {
    display: grid;
    gap: 1.1rem;
    grid-template-columns: 1fr;
    margin-bottom: 2.8rem;
}

@media (min-width: 760px) {
    .founders { grid-template-columns: 1fr 1fr; gap: 1.4rem; }
}

.founder {
    background: var(--paper);
    border: 1px solid var(--line);
    border-top: 4px solid var(--accent);
    border-radius: var(--radius);
    padding: 1.6rem;
    box-shadow: var(--shadow);
    /* Anchors the LinkedIn badge to the card's own top-right corner. */
    position: relative;
}

/* LinkedIn badge, top right of each founder card.
   Muted by default and ochre on hover: at full accent it competed with the
   name for first read, which is the wrong order on a credentials card. */
.founder-li {
    position: absolute;
    top: .9rem;
    right: .9rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 6px;
    color: var(--text-muted);
    transition: color .15s ease, background-color .15s ease;
}

.founder-li svg { width: 1.15rem; height: 1.15rem; fill: currentColor; }

.founder-li:hover,
.founder-li:focus-visible {
    color: var(--accent-text);
    background: var(--accent-soft);
}

/* Portrait + name/role sit on one row. padding-right keeps the row clear of
   the absolutely-positioned LinkedIn badge so a long name never runs under it. */
.founder-head {
    display: flex;
    align-items: center;
    gap: .9rem;
    margin-bottom: 1.1rem;
    padding-right: 2.4rem;
}

.founder-photo {
    width: 4.5rem;
    height: 4.5rem;
    border-radius: 50%;
    object-fit: cover;
    /* flex-shrink 0, or the circle squashes to an oval on narrow cards. */
    flex: 0 0 auto;
    border: 2px solid var(--line);
    background: var(--paper-deep);
}

.founder h3 { font-size: 1.18rem; margin-bottom: .15rem; }
/* The role already carries the head row's bottom margin. */
.founder-head .founder-role { margin-bottom: 0; }

.founder-role {
    color: var(--accent-text);
    font-size: .82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .09em;
    margin-bottom: 1rem;
}

.founder p { color: var(--text-muted); font-size: .96rem; }
.founder p:last-child { margin-bottom: 0; }
.founder strong { color: var(--ink); }

/* --- Why us split ------------------------------------------------------- */

.split { display: grid; gap: 2rem; grid-template-columns: 1fr; }

@media (min-width: 900px) {
    /* Prose column wider than the aside — a 50/50 split makes long paragraphs
       feel like a wall. */
    .split { grid-template-columns: 1.55fr 1fr; gap: 3rem; }
}

.split-main p { max-width: 62ch; }

.split-side {
    background: var(--paper-deep);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.6rem;
    align-self: start;
}

.split-side h3 { margin-bottom: .9rem; }

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

.ticks li {
    position: relative;
    padding-left: 1.6rem;
    margin-bottom: .8rem;
    color: var(--text-muted);
    font-size: .95rem;
}

.ticks li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

.ticks li:last-child { margin-bottom: 0; }

/* --- Why Sofic (naming footnote) ----------------------------------------- */
/* Deliberately low-emphasis: smaller type, muted color, no icon or card
   treatment. A footnote for curious readers, not a headline claim. */

.why-sofic { padding-block: 2.2rem; }

.why-sofic h3 {
    font-size: .95rem;
    font-weight: 700;
    color: var(--text-muted);
    margin-bottom: .6rem;
}

.why-sofic p {
    font-size: .88rem;
    color: var(--text-muted);
    max-width: 68ch;
}

/* --- Status ------------------------------------------------------------- */

.status-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    margin-bottom: 2.4rem;
}

.status-item {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.4rem;
    text-align: center;
    box-shadow: var(--shadow);
}

.status-num {
    display: block;
    font-size: 2.3rem;
    font-weight: 700;
    color: var(--accent-text);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.status-label {
    display: block;
    margin-top: .35rem;
    color: var(--text-muted);
    font-size: .9rem;
}

.status-notes {
    display: grid;
    gap: 1.2rem;
    grid-template-columns: 1fr;
    max-width: 78ch;
}

@media (min-width: 800px) {
    .status-notes { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

.status-notes p { color: var(--text-muted); margin: 0; font-size: .97rem; }
.status-notes strong { color: var(--ink); }

/* --- Contact ------------------------------------------------------------ */

.contact {
    background: var(--ink);
    color: var(--text-invert);
    text-align: center;
}

.contact h2, .contact .kicker { color: var(--text-invert); }
.contact .kicker { color: var(--accent-lt); }
.contact .section-lede { color: #c9c0b4; margin-inline: auto; }

.contact-actions { margin: 0 0 1.2rem; }

.contact .btn-primary { background: var(--accent-lt); color: var(--ink); }
.contact .btn-primary:hover { background: var(--on-accent); }

.contact-alt { color: #c9c0b4; font-size: .95rem; margin: 0; line-height: 2.1; }
.contact-alt a { color: var(--accent-lt); }

/* Separates an address from its role without a punctuation pile-up. */
.contact-sep { opacity: .5; padding: 0 .35rem; }

/* --- Footer ------------------------------------------------------------- */

.footer {
    padding: 1.8rem 0;
    background: var(--ink);
    border-top: 1px solid rgba(245, 240, 232, .12);
}

.footer p {
    margin: 0;
    color: #a39a8e;
    font-size: .85rem;
    text-align: center;
}
