/* ============================================================
   Neffico — company website (neffico.com)
   Pure static site, no framework, no JS (deployed CSP: script-src 'none').
   Brand source: docs/dev-redesign/neffico-site/ (brand guide v1.0 + mockup);
   conventions: .claude/skills/no-js-front/
   Fonts: self-hosted IBM Plex, copied from packages/typography/fonts/
   (regenerate there via `yarn workspace @br-portal/typography build:fonts`).
   ============================================================ */

/* ---- fonts (self-hosted, SIL OFL — see fonts/OFL-PLEX.txt) ---- */
@font-face {
  font-family: "IBM Plex Sans";
  src: url("fonts/ibm-plex-sans-var-roman.woff2") format("woff2");
  font-weight: 100 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "IBM Plex Sans";
  src: url("fonts/ibm-plex-sans-var-italic.woff2") format("woff2");
  font-weight: 100 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "IBM Plex Mono";
  src: url("fonts/ibm-plex-mono-roman.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ---- brand tokens (brand guide v1.0 §Color) ----
   DARK-ONLY by design: the company brand is a single-mode dark system —
   do not add a prefers-color-scheme light block (that is a neffico-point
   convention, not this brand's). Mint is the company accent; amber exists
   ONLY for the Neffico Point product band — never elsewhere on this site. */
:root {
  --ink: #13191A;          /* page background, deepest layer */
  --charcoal: #1B2221;     /* primary surface — matches logo backdrop */
  --slate: #232C2A;        /* raised cards & panels */
  --slate-2: #2B3633;
  --line: #384340;         /* borders, dividers, hairlines */
  --mint: #CAF3E5;         /* the mark's line work — accents/large text on dark ONLY */
  --mint-bright: #7FE9C6;  /* links, eyebrows, interactive accents */
  --teal: #1F6E61;         /* depth, circuit traces, glows */
  --teal-deep: #164A42;    /* darkest anchor, avatar fills */
  --amber: #FF9F1C;        /* Neffico Point product band ONLY */
  --paper: #EEF4F2;        /* body text on dark */
  --paper-2: #D6E0DD;      /* emphasised secondary text (quotes, badges) */
  --paper-3: #C5D0CD;      /* lede + list copy — one step below paper */
  --mute: #8C9A96;         /* secondary text, captions */
  --mute-2: #5E6B68;       /* faint labels — decorative/large text only */
  --mint-soft: #A9D8CB;    /* muted mint for small mono labels (card results) */
  --on-mint: #0E1614;      /* text on a mint fill */
  --on-amber: #241200;     /* text on an amber fill */
  --amber-hover: #FFB347;

  /* Product-band palette — the amber-tinted surfaces used ONLY inside
     .product-band. Kept as tokens so the band's warm neutrals never leak
     into the company (mint) part of the site. */
  --pb-ink: #141210;       /* band's deepest surface (mock UI shell) */
  --pb-surface: #1C1812;   /* raised warm surface (kpi, chrome bar) */
  --pb-surface-2: #1E1A12; /* feature tiles */
  --pb-side: #18140E;      /* mock UI sidebar */
  --pb-row: #19150F;       /* mock UI list rows */
  --pb-wash: #1A1611;      /* the band's warm mid-gradient stop */
  --pb-line: #3A3324;      /* warm border */
  --pb-line-2: #2A2418;    /* warm hairline */
  --pb-mute: #7A6F56;      /* warm muted label */
  --pb-text: #D8CDB6;      /* warm body text */
  --pb-lede: #CBB89E;      /* warm lede */
  --pb-fd: #A89878;        /* warm caption */

  --sans: "IBM Plex Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;

  --maxw: 1180px;
}

/* ---- base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--ink);
  color: var(--paper);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
.mono { font-family: var(--mono); }
/* Display type is set tight and balanced by default — body's 1.6 line-height
   is for running text, not headlines. Per-section rules only override size. */
h1, h2, h3, h4, h5 { line-height: 1.12; text-wrap: balance; }
p { text-wrap: pretty; }
.eyebrow {
  font-family: var(--mono);
  font-size: .72rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--mint-bright); font-weight: 400;
}
a { color: inherit; text-decoration: none; }
:focus-visible { outline: 2px solid var(--mint-bright); outline-offset: 3px; border-radius: 3px; }

/* Inline Lucide glyphs (lucide.dev, ISC). Icons are pasted as inline SVG rather
   than loaded from a package — this site has no build step and no JS, and the
   CSP forbids third-party requests. Lucide's own geometry expects the round
   caps/joins and 24-unit viewBox set here; only the size varies per context. */
.ico { width: 16px; height: 16px; flex: 0 0 auto; stroke: currentColor; fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.ico-sm { width: 14px; height: 14px; }
/* Brand glyphs (LinkedIn) come from Simple Icons and are solid, not stroked —
   Lucide dropped its social icons, so brand marks have to come from elsewhere. */
.ico-fill { fill: currentColor; stroke: none; }

/* ---------- NAV ---------- */
.nav { position: sticky; top: 0; z-index: 50;
  background: rgba(19, 25, 26, .82); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between;
  gap: 12px 24px; min-height: 70px; flex-wrap: wrap; padding-top: 8px; padding-bottom: 8px; }
.brand { display: flex; align-items: center; gap: 12px; }
/* The logo is the supplied raster asset (logo.png). The flat dark backdrop was
   keyed out (see README) so the mint mark now sits directly on the page. */
.brand-mark { width: 40px; height: 40px; display: block; }
.brand .wordmark { font-weight: 600; font-size: 1.18rem; letter-spacing: -.01em; }
.nav-links { display: flex; align-items: center; gap: 30px; flex-wrap: wrap; }
.nav-links a.navlink { font-size: .92rem; color: var(--mute); transition: color .18s; }
.nav-links a.navlink:hover { color: var(--paper); }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--sans); font-weight: 500; font-size: .92rem;
  padding: 11px 20px; border-radius: 9px; cursor: pointer; border: 1px solid transparent;
  transition: transform .15s, background .2s, border-color .2s;
}
.btn-primary { background: var(--mint); color: var(--on-mint); }
.btn-primary:hover { background: var(--mint-bright); transform: translateY(-1px); }
.btn-ghost { background: transparent; border-color: var(--line); color: var(--paper); }
.btn-ghost:hover { border-color: var(--mint); color: var(--mint); }
/* amber button — Neffico Point product band ONLY (brand-architecture rule) */
.btn-amber { background: var(--amber); color: var(--on-amber); }
.btn-amber:hover { background: var(--amber-hover); transform: translateY(-1px); }

/* ---------- HERO ---------- */
.hero { position: relative; padding: 104px 0 64px; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.02fr .98fr; gap: 56px; align-items: center; }
.hero h1 {
  font-size: clamp(2.5rem, 5.2vw, 4rem); line-height: 1.04; font-weight: 600;
  letter-spacing: -.025em; margin: 18px 0 24px;
}
.hero h1 .hl { color: var(--mint); }
/* ~46ch keeps the lede a comfortable two-to-four lines instead of the tall,
   ragged column a 33ch cap produced next to a 4rem headline. */
.hero p.lede { font-size: 1.14rem; color: var(--paper-3); max-width: 46ch; margin-bottom: 32px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
/* stacked vertically: three mono credentials read as a clean spec list here,
   where a single horizontal row would crowd the half-width hero column */
.hero-meta { margin-top: 36px; padding-top: 26px; border-top: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 11px;
  font-family: var(--mono); font-size: .78rem; color: var(--mute); letter-spacing: .02em; }
.hero-meta span { display: flex; align-items: center; gap: 8px; }
.dot { width: 7px; height: 7px; border-radius: 50%; background: var(--mint-bright); box-shadow: 0 0 10px var(--mint-bright); }
.hero-visual { position: relative; height: 460px; display: grid; place-items: center; }
.hero-visual svg { width: 100%; height: 100%; max-width: 480px; overflow: visible; }
.bg-glow { position: absolute; top: -140px; right: -120px; width: 620px; height: 620px;
  background: radial-gradient(circle, rgba(31, 110, 97, .34), transparent 66%);
  filter: blur(24px); z-index: -1; pointer-events: none; }

/* the page's one expressive moment (motif rule): a CSS-only hero entrance
   plus the live circuit traces below — no scroll-reveal JS on this site */
@keyframes rise { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
.hero-copy { animation: rise .7s ease both; }
.hero-visual { animation: rise .7s ease .15s both; }

/* circuit node animation */
.node { fill: var(--charcoal); stroke: var(--mint); stroke-width: 2; }
.node-core { fill: var(--mint-bright); }
.trace { fill: none; stroke: var(--teal); stroke-width: 2; }
.trace-live { fill: none; stroke: var(--mint); stroke-width: 2;
  stroke-dasharray: 6 220; stroke-dashoffset: 0; animation: flow 4.5s linear infinite; }
@keyframes flow { to { stroke-dashoffset: -452; } }
.pulse { animation: pulse 3s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { opacity: .5; } 50% { opacity: 1; } }

/* ---------- TRUST STRIP ---------- */
/* Three equal columns divided by hairlines, each a stacked label + fact — the
   old flex row left the items floating at uneven widths and baselines. */
.trust { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: var(--charcoal); padding: 30px 0; }
.trust-inner { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; align-items: stretch; }
.trust-item { display: flex; flex-direction: column; justify-content: center; gap: 10px;
  padding: 4px 34px; border-left: 1px solid var(--line); }
.trust-item:first-child { padding-left: 0; border-left: 0; }
.trust-item:last-child { padding-right: 0; }
.trust-label { font-family: var(--mono); font-size: .68rem; letter-spacing: .16em;
  text-transform: uppercase; color: var(--mute-2); }
.badge-row { display: flex; flex-wrap: wrap; gap: 8px; }
.badge { display: inline-flex; align-items: center; gap: 10px; align-self: flex-start;
  padding: 9px 15px; border: 1px solid var(--line);
  border-radius: 10px; background: var(--slate); font-size: .86rem; color: var(--paper-2); }
/* client badges link out to each partner's site */
a.badge { transition: border-color .18s, color .18s; }
a.badge:hover { border-color: var(--mint); color: var(--mint); }
.quote { font-size: .95rem; color: var(--paper-3); font-style: italic; max-width: 52ch; }
.quote cite { display: block; font-style: normal; font-family: var(--mono); font-size: .72rem;
  color: var(--mute); margin-top: 7px; letter-spacing: .03em; }

/* ---------- SECTION SHELL ---------- */
/* vertical only (padding-block) — two sections merge this class onto the
   SAME element as .wrap ("wrap section"), and a `padding: 88px 0` shorthand
   would zero out .wrap's 28px side padding there (flush-edge mobile bug) */
.section { padding-block: 88px; }
#services, #point, #team, #contact, #top { scroll-margin-top: 84px; }
.section-head { max-width: 640px; margin-bottom: 48px; }
.section-head h2 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); font-weight: 600;
  letter-spacing: -.02em; line-height: 1.1; margin: 14px 0 14px; }
.section-head p { color: var(--mute); font-size: 1.06rem; }

/* ---------- DUAL PATHS ---------- */
.paths { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; position: relative; }
/* column layout so the closing link sits on a shared baseline in both cards
   regardless of how many list items each one carries */
.path { position: relative; display: flex; flex-direction: column; align-items: flex-start;
  border: 1px solid var(--line); border-radius: 18px;
  padding: 38px 34px; background: linear-gradient(160deg, var(--slate), var(--charcoal));
  transition: transform .25s, border-color .25s; }
.path ul { width: 100%; }
.path .arrow { margin-top: auto; }
.path:hover { transform: translateY(-4px); }
.path.consult:hover { border-color: var(--mint); }
.path.product:hover { border-color: var(--amber); }
.path .ptag { font-family: var(--mono); font-size: .72rem; letter-spacing: .14em;
  text-transform: uppercase; color: var(--mute); }
.path.product .ptag { color: var(--amber); }
.path h3 { font-size: 1.5rem; font-weight: 600; margin: 14px 0 12px; letter-spacing: -.01em; }
.path p { color: var(--mute); margin-bottom: 22px; font-size: .98rem; }
.path .arrow { font-family: var(--mono); font-size: .9rem; display: inline-flex;
  align-items: center; gap: 8px; color: var(--mint); }
.path.product .arrow { color: var(--amber); }
.path ul { list-style: none; margin-bottom: 26px; }
.path li { font-size: .92rem; color: var(--paper-3); padding: 7px 0 7px 22px; position: relative; }
.path li::before { content: ""; position: absolute; left: 0; top: 14px; width: 9px; height: 9px;
  border-radius: 50%; border: 1.5px solid var(--mint); }
.path.product li::before { border-color: var(--amber); }

/* ---------- SERVICES BENTO ---------- */
.bento { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
/* column layout pins .result to the card floor, so every card in a row closes
   on the same line even when the body copy differs in length */
.card { display: flex; flex-direction: column; align-items: flex-start;
  border: 1px solid var(--line); border-radius: 16px; padding: 28px;
  background: var(--slate); transition: border-color .2s, transform .2s; }
.card:hover { border-color: var(--teal); transform: translateY(-3px); }
.card .num { font-family: var(--mono); font-size: .72rem; color: var(--mint-bright);
  letter-spacing: .1em; margin-top: 18px; }
.card h4 { font-size: 1.18rem; font-weight: 600; margin: 8px 0 9px; letter-spacing: -.01em; }
.card p { font-size: .92rem; color: var(--mute); line-height: 1.55; max-width: 62ch;
  margin-bottom: 20px; }
.card .result { margin-top: auto; width: 100%; font-family: var(--mono); font-size: .74rem;
  color: var(--mint-soft); padding-top: 18px; border-top: 1px solid var(--line);
  display: flex; align-items: center; gap: 8px; }
.c-wide { grid-column: span 2; }
.c-third { grid-column: span 1; }
.c-full3 { grid-column: span 3; }
/* flex + display:block, not grid place-items: mobile Safari mis-centers
   replaced grid items (the tile glyph drifted up-left on real phones) */
.icon { width: 40px; height: 40px; border-radius: 10px; background: var(--charcoal);
  border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; }
.icon svg { display: block; width: 20px; height: 20px; stroke: var(--mint); fill: none;
  stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }

/* ---------- PRODUCT BAND (the ONLY amber context on this site) ---------- */
.product-band { background:
  linear-gradient(180deg, var(--ink), var(--pb-wash) 60%, var(--ink));
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.prod-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: 54px; align-items: center; }
.prod-lock { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; }
.prod-lock .pp { font-family: var(--mono); font-size: .7rem; letter-spacing: .1em;
  color: var(--mute); text-transform: uppercase; }
.product-band h2 { font-size: clamp(2rem, 4vw, 2.9rem); font-weight: 600;
  letter-spacing: -.02em; margin: 6px 0 18px; }
.product-band h2 b { color: var(--amber); }
.product-band .pl { color: var(--pb-lede); font-size: 1.08rem; margin-bottom: 26px; max-width: 42ch; }
.prod-cta { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
/* secondary button, product band only: outlined amber, never mint (brand rule) */
.btn-amber-ghost { background: transparent; border-color: var(--pb-line); color: var(--amber); }
.btn-amber-ghost:hover { border-color: var(--amber); transform: translateY(-1px); }
.prod-site { display: inline-flex; align-items: center; gap: 8px; margin-top: 16px;
  font-family: var(--mono); font-size: .9rem; color: var(--amber); }
.prod-site:hover { color: var(--amber-hover); }
.feat-list { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 30px; }
.feat { border: 1px solid var(--pb-line); border-radius: 12px; padding: 16px 16px; background: var(--pb-surface-2); }
.feat .ft { font-weight: 600; font-size: .96rem; margin-bottom: 4px; }
.feat .fd { font-size: .82rem; color: var(--pb-fd); }
/* product screenshot in a browser-chrome frame */
.ui { border: 1px solid var(--pb-line); border-radius: 16px; overflow: hidden;
  background: var(--pb-ink); box-shadow: 0 30px 70px -30px rgba(0, 0, 0, .7); }
.ui-top { display: flex; align-items: center; gap: 7px; padding: 13px 16px; background: var(--pb-surface);
  border-bottom: 1px solid var(--pb-line-2); }
.ui-top i { width: 10px; height: 10px; border-radius: 50%; background: var(--pb-line); display: block; }
.ui-top .url { margin-left: 12px; font-family: var(--mono); font-size: .7rem; color: var(--pb-mute); }
.ui-shot { display: block; width: 100%; height: auto; }
/* feature collage: dashboard hero + two cropped feature tiles */
.collage { display: flex; flex-direction: column; gap: 16px; }
.collage-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.shot { margin: 0; border: 1px solid var(--pb-line); border-radius: 12px; overflow: hidden;
  background: var(--pb-ink); box-shadow: 0 20px 50px -30px rgba(0, 0, 0, .7); }
.shot img { display: block; width: 100%; height: auto; }
.shot figcaption { font-family: var(--mono); font-size: .64rem; letter-spacing: .12em;
  text-transform: uppercase; color: var(--pb-mute); padding: 9px 12px; border-top: 1px solid var(--pb-line-2); }

/* ---------- TEAM ---------- */
/* start-aligned: centring the short copy column against four tall cards left a
   large void at the top of the section. The copy column sticks instead. */
.team-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 56px; align-items: start; }
.team-copy { position: sticky; top: 104px; }
.team-copy h2 { font-size: clamp(1.8rem, 3.4vw, 2.5rem); font-weight: 600; letter-spacing: -.02em; margin: 14px 0 16px; }
.team-copy p { color: var(--mute); margin-bottom: 18px; font-size: 1.02rem; max-width: 42ch; }
.linkedin { display: inline-flex; align-items: center; gap: 9px; font-family: var(--mono);
  font-size: .82rem; color: var(--mint); border: 1px solid var(--line); padding: 9px 15px; border-radius: 9px; }
.linkedin:hover { border-color: var(--mint); }
.people { display: flex; flex-direction: column; gap: 12px; }
.person { display: flex; align-items: flex-start; gap: 18px; border: 1px solid var(--line);
  border-radius: 14px; padding: 22px 24px; background: var(--slate);
  transition: border-color .2s; }
.person:hover { border-color: var(--teal); }
.avatar { width: 48px; height: 48px; border-radius: 12px; flex-shrink: 0;
  display: grid; place-items: center; font-family: var(--mono); font-weight: 400;
  background: var(--teal-deep); color: var(--mint); border: 1px solid var(--teal); }
.person .pn { font-weight: 600; font-size: 1rem; }
.person .pr { font-family: var(--mono); font-size: .7rem; color: var(--mint-bright); margin-top: 3px; letter-spacing: .04em; text-transform: uppercase; }
.person .pb { font-size: .86rem; color: var(--mute); margin-top: 9px; line-height: 1.55; max-width: 56ch; }
.person .pli { display: inline-flex; align-items: center; gap: 6px; font-family: var(--mono);
  font-size: .72rem; color: var(--mint); margin-top: 10px; }
.person .pli:hover { text-decoration: underline; }

/* ---------- CONTACT (no form by design — mailto/tel only) ---------- */
.contact { background: var(--charcoal); border-top: 1px solid var(--line); }
.contact-grid { display: grid; grid-template-columns: 1fr .9fr; gap: 54px; align-items: center; }
.contact h2 { font-size: clamp(2rem, 4vw, 2.9rem); font-weight: 600; letter-spacing: -.025em;
  margin: 14px 0 18px; }
.contact p { color: var(--mute); font-size: 1.05rem; margin-bottom: 0; max-width: 42ch; }
.contact-card { border: 1px solid var(--line); border-radius: 18px; padding: 34px 30px;
  background: linear-gradient(160deg, var(--slate), var(--charcoal));
  display: flex; flex-direction: column; align-items: flex-start; gap: 14px; }
.contact-card .cc-label { font-family: var(--mono); font-size: .7rem; letter-spacing: .16em;
  text-transform: uppercase; color: var(--mute-2); }
/* stretched so the email and phone buttons share one edge instead of sitting
   at two different content widths */
.contact-card .btn { font-family: var(--mono); font-size: .88rem;
  align-self: stretch; justify-content: center; padding: 13px 20px; }
.contact-card .cc-note { font-size: .9rem; color: var(--mute); }
.contact-card .cc-addr { font-family: var(--mono); font-size: .8rem; color: var(--mute);
  line-height: 1.7; padding-top: 16px; border-top: 1px solid var(--line); align-self: stretch;
  display: flex; align-items: flex-start; gap: 10px; }
.contact-card .cc-addr .ico { margin-top: 4px; }

/* ---------- FOOTER ---------- */
.footer { padding: 64px 0 34px; border-top: 1px solid var(--line); background: var(--ink); }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px 30px; margin-bottom: 44px; }
.footer .brand { margin-bottom: 14px; }
.footer .ftxt { color: var(--mute); font-size: .88rem; max-width: 30ch; }
/* 40px centered row = the .brand-mark height, so column headings sit on the
   same visual line as the logo/wordmark beside them (grid rows align tops;
   without this the tiny caps float above the logo's center). The ~14px of
   slack below the centered text replaces the old margin-bottom. */
.fcol h5 { font-family: var(--mono); font-size: .7rem; letter-spacing: .12em;
  text-transform: uppercase; color: var(--mute-2); font-weight: 400;
  display: flex; align-items: center; min-height: 40px; }
.fcol a { display: block; color: var(--mute); font-size: .9rem; padding: 5px 0; }
.fcol a:hover { color: var(--mint); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px; border-top: 1px solid var(--line); flex-wrap: wrap; gap: 14px; }
.footer-bottom p { font-family: var(--mono); font-size: .74rem; color: var(--mute-2); }

/* ---------- 404 / simple pages ---------- */
/* padding-block, not the `padding` shorthand: 404.html uses `class="wrap
   simple-hero"`, and this rule comes after .wrap — a shorthand would zero
   .wrap's `0 28px` side padding and run the page edge-to-edge on phones. */
.simple-hero { min-height: 55vh; display: grid; place-items: center; text-align: center; padding-block: 80px; }
.simple-hero h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 600; letter-spacing: -.025em; margin: 14px 0 14px; }
.simple-hero h1 .hl { color: var(--mint); }
.simple-hero p { color: var(--mute); margin-bottom: 26px; }
.simple-hero .actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- prose (legal pages) ---------- */
.prose { max-width: 720px; margin: 0 auto; padding: 64px 0 96px; }
.prose h1 { font-size: 2rem; font-weight: 600; letter-spacing: -.02em; margin-bottom: 10px; }
.prose h2 { font-size: 1.3rem; font-weight: 600; margin: 32px 0 10px; }
.prose p, .prose li { color: var(--mute); font-size: .98rem; margin-bottom: 1em; }
.prose a { color: var(--mint-bright); }
.prose .updated { font-family: var(--mono); font-size: .76rem; color: var(--mute-2); }
.prose ol, .prose ul { padding-left: 1.4em; margin-bottom: 1em; }

/* ---------- RESPONSIVE ----------
   No hamburger by design (no JS): below 920px the nav links stay visible
   and simply compress/wrap under the brand row. */
@media (max-width: 920px) {
  .section { padding-block: 64px; }
  .hero { padding: 72px 0 48px; }
  .hero-grid, .prod-grid, .team-grid, .contact-grid { grid-template-columns: 1fr; }
  /* the visual stays BELOW the copy — a decorative graphic must not be the
     first thing a phone reader meets */
  .hero-visual { height: 320px; }
  .team-copy { position: static; }
  .paths { grid-template-columns: 1fr; }
  .bento { grid-template-columns: 1fr 1fr; }
  .c-wide, .c-third { grid-column: span 1; }
  .c-full3 { grid-column: span 2; }
  .trust-inner { grid-template-columns: 1fr 1fr; gap: 26px 0; }
}
@media (max-width: 640px) {
  /* The three-row stack ate a third of a phone screen and never gave it back,
     because the bar is sticky. Drop the nav CTA (hero and contact both carry
     one) and stop pinning: two compact rows that scroll away. */
  .nav { position: static; }
  .nav-inner { min-height: 56px; }
  /* desktop hero padding reads as a void under the compact static nav */
  .hero { padding: 40px 0 40px; }
  .nav-links { gap: 18px; }
  .nav-links a.navlink { font-size: .82rem; }
  /* sibling selector so 404.html, whose nav holds ONLY the CTA, keeps it */
  .nav-links a.navlink ~ .btn { display: none; }
  .brand svg { width: 28px; height: 28px; }
  .brand .wordmark { font-size: 1.02rem; }
}
@media (max-width: 560px) {
  .bento { grid-template-columns: 1fr; }
  .c-full3 { grid-column: span 1; }
  .feat-list { grid-template-columns: 1fr; }
  .collage-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .trust-inner { grid-template-columns: 1fr; gap: 22px; }
  .trust-item { padding: 22px 0 0; border-left: 0;
    border-top: 1px solid var(--line); }
  .trust-item:first-child { padding-top: 0; border-top: 0; }
  .nav-links { gap: 14px; }
}
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto !important; }
  .path:hover, .card:hover, .btn:hover { transform: none; }
}
