/* Vecta Compute — shared design system
   Light: white with a lavender tint · deep-navy ink · indigo accent edge.
   Dark: navy mirror. Header/footer identical on every page. */

:root {
  color-scheme: light;   /* site is forced to the light palette */
  --bg:        #F5F6FC;
  --bg-tint:   rgba(58,70,201,0.05);
  --panel:     #FFFFFF;
  --panel-2:   #FBFBFE;
  --ink:       #171B2E;
  --muted:     #545C77;
  --faint:     #8A90A8;
  --accent:    #3A46C9;
  --accent-2:  #5866E6;
  --accent-ink:#2A338F;
  --wash:      rgba(58,70,201,0.06);
  --flip-front:#E9EAF6;
  --line:      rgba(23,27,46,0.12);
  --line-2:    rgba(23,27,46,0.06);
  --nav:       #0E1430;          /* deep navy header/footer, consistent */
  --nav-ink:   #E7EAF6;
  --nav-muted: rgba(231,234,246,0.62);
  --shadow:    0 1px 2px rgba(23,27,46,.05), 0 14px 38px -22px rgba(23,27,46,.32);
  --shadow-sm: 0 1px 2px rgba(23,27,46,.05), 0 8px 22px -16px rgba(23,27,46,.28);
  --fh: "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --fb: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --fm: ui-monospace, "SF Mono", "JetBrains Mono", Menlo, Consolas, monospace;
}
/* Dark theme intentionally DISABLED — the site is forced to the light
   grey-white palette regardless of the viewer's OS setting. Re-enable by
   removing the comment markers around the block below.
@media (prefers-color-scheme: dark) {
  :root {
    --bg:#0A0E20; --bg-tint:rgba(124,135,245,0.08); --panel:#111634; --panel-2:#0E1330;
    --ink:#E6E9F6; --muted:#9BA2C1; --faint:#6B7397;
    --accent:#7C87F5; --accent-2:#96A0FF; --accent-ink:#AEB6FF; --wash:rgba(124,135,245,0.10); --flip-front:#171E3C;
    --line:rgba(255,255,255,0.11); --line-2:rgba(255,255,255,0.05);
    --nav:#080B1C; --nav-ink:#E7EAF6; --nav-muted:rgba(231,234,246,0.6);
    --shadow:0 1px 2px rgba(0,0,0,.4), 0 24px 54px -30px rgba(0,0,0,.8);
    --shadow-sm:0 1px 2px rgba(0,0,0,.4), 0 14px 30px -22px rgba(0,0,0,.7);
  }
  .logo { filter: invert(1) brightness(1.7); }
}
*/

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0;
  background: radial-gradient(115% 65% at 92% -8%, var(--bg-tint), transparent 55%), var(--bg);
  color: var(--ink); font-family: var(--fb); line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.wrap { max-width: 1120px; margin: 0 auto; padding: 0 clamp(22px, 4vw, 48px); }
.eyebrow { font-family: var(--fm); font-size: 12.5px; letter-spacing: .22em; text-transform: uppercase; color: var(--accent-ink); font-weight: 600; }

/* ── Consistent header ─────────────────────────────── */
header.nav { position: sticky; top: 0; z-index: 30; background: var(--nav); border-bottom: 1px solid rgba(255,255,255,.07); }
.nav .row { display: flex; align-items: center; justify-content: space-between; height: 62px; }
.brand { display: flex; align-items: center; gap: 11px; transition: transform .16s ease; }
.brand:hover { transform: translateY(-1px); }
.brand .logo { width: 34px; height: 34px; background: none; padding: 0; object-fit: contain; filter: none; transition: filter .16s ease; }
.brand:hover .logo { filter: drop-shadow(0 0 13px rgba(255,176,64,.95)) drop-shadow(0 0 5px rgba(255,140,40,.85)); }
.brand .wordmark { font-family: var(--fh); font-weight: 700; letter-spacing: .16em; text-transform: uppercase; font-size: 13.5px; color: var(--nav-ink); transition: text-shadow .16s ease, color .16s ease; }
.brand:hover .wordmark { color: #FFD9A0; text-shadow: 0 0 16px rgba(255,176,64,.75); }
@media (prefers-reduced-motion: reduce) { .brand:hover { transform: none; } }
.brand .wordmark span { color: var(--nav-muted); font-weight: 500; }
.nav nav { display: flex; align-items: center; gap: 24px; }
.nav nav a.link { font-family: var(--fh); font-size: 13px; font-weight: 500; letter-spacing: .04em; color: var(--nav-muted); text-transform: uppercase; }
.nav nav a.link:hover { color: #fff; }
@media (max-width: 820px) { .nav nav a.link { display: none; } }

/* Dropdown (Technology) — CSS only, hover + keyboard focus */
.dd { position: relative; }
.dd > .link { cursor: pointer; }
.dd > .link::after { content: "▾"; margin-left: 6px; font-size: 9px; opacity: .7; }
.dd .menu { position: absolute; top: calc(100% + 8px); left: 0; min-width: 236px; background: var(--panel); border: 1px solid var(--line); border-radius: 11px; box-shadow: var(--shadow); padding: 7px; opacity: 0; visibility: hidden; transform: translateY(-4px); transition: opacity .14s ease, transform .14s ease, visibility .14s; z-index: 40; }
.dd:hover .menu, .dd:focus-within .menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dd .menu a { display: block; padding: 9px 12px; border-radius: 7px; font-family: var(--fh); font-size: 13px; font-weight: 500; color: var(--ink); text-transform: none; letter-spacing: .01em; }
.dd .menu a:hover { background: var(--wash); color: var(--accent-ink); }

/* Back + Home icons — subtle grey, no background square, on every inner page */
.pagenav { display: flex; align-items: center; gap: 2px; margin: 0 0 16px -7px; }
.iconbtn { display: inline-flex; align-items: center; justify-content: center; width: 34px; height: 34px; color: var(--faint); background: none; border: 0; cursor: pointer; transition: color .15s ease, transform .15s ease, filter .15s ease; }
.iconbtn:hover { color: #F07020; transform: translateY(-2px) scale(1.08); filter: drop-shadow(0 0 5px rgba(240,112,32,.7)); }
@media (prefers-reduced-motion: reduce) { .iconbtn:hover { transform: none; } }
.iconbtn svg { width: 20px; height: 20px; }

.btn { display: inline-flex; align-items: center; gap: 8px; white-space: nowrap; font-family: var(--fh); background: var(--accent); color: #fff; font-weight: 600; padding: 10px 18px; border-radius: 9px; font-size: 13.5px; border: 0; cursor: pointer; box-shadow: 0 0 0 4px var(--wash); transition: transform .14s ease, box-shadow .14s ease; }
.btn:hover { transform: translateY(-2px); box-shadow: 0 0 0 2px rgba(46,178,110,.55), 0 8px 22px -8px rgba(46,178,110,.6); }
.btn:focus-visible { outline: 2px solid var(--accent-2); outline-offset: 3px; }
.btn.ghost { background: transparent; color: var(--nav-ink); box-shadow: inset 0 0 0 1px rgba(255,255,255,.22); }
.btn.ghost:hover { box-shadow: inset 0 0 0 1px rgba(255,255,255,.55); background: rgba(255,255,255,.06); }
.btn.on-light.ghost { color: var(--ink); box-shadow: inset 0 0 0 1px var(--line); }
.btn.on-light.ghost:hover { box-shadow: inset 0 0 0 1px var(--accent); background: transparent; }
.btn .m { font-family: var(--fm); font-weight: 600; opacity: .9; }

/* ── Hero (smaller headline than the one-pager) ─────── */
.hero { position: relative; padding: clamp(48px, 7vw, 84px) 0 clamp(20px, 4vw, 40px); overflow: hidden; }
.hero .mark-bg { position: absolute; right: -50px; top: 50%; transform: translateY(-50%); width: min(40vw, 380px); opacity: .05; pointer-events: none; filter: invert(0); }
/* dark-only hero mark tweak disabled (site forced light) */
.hero h1 { font-family: var(--fh); font-size: clamp(24px, 3.1vw, 36px); line-height: 1.16; letter-spacing: -0.015em; font-weight: 780; margin: 16px 0 0; max-width: none; }
.hero h1 .g { color: var(--accent); }
.hero .lede { margin: 18px 0 0; font-size: clamp(15px, 1.5vw, 17.5px); color: var(--muted); max-width: 60ch; }
.hero .actions { margin-top: 26px; display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.hero .note { margin-top: 13px; color: var(--faint); font-size: 12.5px; }

/* ── Section scaffolding ────────────────────────────── */
section.band { padding: clamp(30px, 5vw, 58px) 0; }
.idx { font-family: var(--fm); font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--faint); display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.idx b { color: var(--accent); font-weight: 700; }
.idx::after { content:""; flex:1; height:1px; background: var(--line-2); }
h2.head { font-family: var(--fh); font-size: clamp(23px, 2.9vw, 34px); font-weight: 750; letter-spacing: -0.018em; margin: 0; text-wrap: balance; }
.sub { color: var(--muted); font-size: clamp(15px, 1.5vw, 17.5px); margin: 10px 0 0; max-width: 66ch; }

/* ── Cards: 3px indigo top-edge, thin line, shadow ──── */
.card { background: var(--panel); border: 1px solid var(--line); border-top: 3px solid var(--accent); border-radius: 13px; box-shadow: var(--shadow-sm); padding: clamp(24px, 2.6vw, 30px); transition: transform .17s ease, box-shadow .17s ease, border-top-color .17s ease; }
.card.lead { box-shadow: var(--shadow); }
.card:hover { transform: translateY(-4px); border-top-color: var(--accent-2); box-shadow: 0 -5px 18px -5px var(--accent), 0 20px 44px -22px rgba(23,27,46,.42); }
@media (prefers-reduced-motion: reduce) { .card:hover { transform: none; } }
.card h3 { font-family: var(--fh); }

/* Category card with a More footer */
.catgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.catcard { display: flex; flex-direction: column; }
.catcard .cap { font-family: var(--fm); font-size: 10.5px; letter-spacing: .18em; text-transform: uppercase; color: var(--accent-ink); font-weight: 600; }
.capicon { color: var(--accent); line-height: 0; margin-bottom: 8px; }
.capicon svg { width: 26px; height: 26px; }

/* Cards are non-flippable — the detailed side always faces the reader. The
   label rides at the top of each card (see .catlabel), coloured per card. */
.flip { cursor: default; transition: transform .18s ease; }
.flip:hover { transform: translateY(-5px); }
.flip:focus-visible { outline: 2px solid var(--accent-2); outline-offset: 3px; border-radius: 14px; }
.flip-inner { display: grid; height: 100%; }
.flip-front { display: none; }
.flip-back { grid-area: 1 / 1; }
.flip:hover .flip-back { box-shadow: 0 -5px 18px -5px var(--accent), 0 22px 46px -22px rgba(23,27,46,.45); }
@media (prefers-reduced-motion: reduce) { .flip { transition: none; } .flip:hover { transform: none; } }
/* Per-card label pill, top of the detailed card. Colour is set inline per
   card so each card in a section reads distinctly. */
.catcard .catlabel { align-self: flex-start; font-family: var(--fm); font-size: 10px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; padding: 4px 11px; border-radius: 999px; border: 1px solid currentColor; background: color-mix(in srgb, currentColor 13%, transparent); margin: 0 0 2px; }
.catcard h3 { margin: 12px 0 0; font-size: clamp(18.5px, 2vw, 23px); font-weight: 720; letter-spacing: -0.012em; line-height: 1.2; }
.catcard p { margin: 11px 0 0; color: var(--muted); font-size: 15px; line-height: 1.6; }
.catcard ul { margin: 14px 0 0; padding: 0; list-style: none; display: grid; gap: 9px; }
.catcard ul li { display: grid; grid-template-columns: 15px 1fr; gap: 10px; font-size: 15px; color: var(--muted); line-height: 1.55; }
.catcard ul li .tick { color: var(--accent); font-family: var(--fm); font-size: 12px; margin-top: 1px; }
.catcard ul li b { color: var(--ink); font-weight: 600; }
.catcard .more { margin-top: auto; padding-top: 18px; }
.catcard .more a { display: inline-grid; place-items: center; width: 44px; height: 30px; border: 1px solid var(--line); border-radius: 8px; color: var(--accent); transition: background .15s ease, border-color .15s ease; }
.catcard .more a:hover { border-color: var(--accent); background: var(--wash); }
.catcard .more a svg { width: 20px; height: 20px; }
.soon { color: var(--accent-ink); font-weight: 600; font-size: 10.5px; letter-spacing: .04em; font-family: var(--fm); }

/* Exposure question grid */
.qgrid { list-style: none; margin: 18px 0 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 14px 34px; }
.qgrid li { display: grid; grid-template-columns: 20px 1fr; gap: 10px; align-items: start; font-size: 15px; }
.qgrid .box { width: 15px; height: 15px; margin-top: 3px; border: 1.5px solid var(--accent); border-radius: 4px; }
.verdict { margin: 22px calc(-1 * clamp(20px,2.3vw,26px)) calc(-1 * clamp(20px,2.3vw,26px)); padding: 15px clamp(20px, 2.3vw, 26px); border-top: 1px solid var(--line); background: var(--wash); font-weight: 600; font-size: 15px; border-radius: 0 0 12px 12px; display: flex; gap: 10px; align-items: baseline; }
.verdict .arw { color: var(--accent); font-family: var(--fm); }
.verdict em { font-style: normal; color: var(--accent-ink); }

/* Try-free CTA card */
.trycard { display: grid; grid-template-columns: 1.3fr 1fr; gap: 24px; align-items: center; background: linear-gradient(180deg, var(--wash), var(--panel) 46%); }
.trycard h3 { margin: 8px 0 0; font-size: clamp(20px, 2.4vw, 27px); font-weight: 760; letter-spacing: -0.015em; }
.trycard p { margin: 12px 0 0; color: var(--muted); font-size: 14.5px; }
.trycard .cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }
@media (max-width: 780px) { .trycard { grid-template-columns: 1fr; } }

/* Trust band */
.trust { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 40px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: clamp(22px,3vw,32px) 0; }
.trust .item { display: flex; gap: 14px; align-items: flex-start; }
.trust .badge { color: var(--accent); font-size: 18px; font-family: var(--fm); margin-top: 2px; }
.trust .item p { margin: 0; font-size: 14.5px; }
.trust .item p span { color: var(--muted); }

/* Detail-page hero */
.pagehero { padding: clamp(40px, 6vw, 72px) 0 clamp(20px, 3vw, 34px); }
.pagehero h1 { font-family: var(--fh); font-size: clamp(24px, 3.2vw, 36px); font-weight: 770; letter-spacing: -0.02em; margin: 14px 0 0; text-wrap: balance; max-width: 22ch; }
.pagehero .lede { margin: 16px 0 0; color: var(--muted); font-size: clamp(15px,1.5vw,17px); max-width: 64ch; }
.crumb { font-family: var(--fm); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--faint); }
.crumb a:hover { color: var(--accent); }

/* ── Product hero — Zero-Trust band, sized like the .higher band on the
   homepage. The photo is hue-rotated to indigo at source (see
   assets/product-zero-trust.jpg) and only lightly desaturated here, so it
   reads as brand navy rather than a grey wash. The white bar is the last
   child in flow, which puts it flush on the bottom edge of the image. ─── */
.prodhero { position: relative; overflow: hidden; padding: 0; color: #F1F3FB;
            background: linear-gradient(180deg,#0A0E20,#141A38);
            margin-bottom: clamp(18px,2.6vw,30px); }
.prodhero::before { content:""; position:absolute; inset:0; z-index:0;
            background: linear-gradient(160deg,rgba(60,74,155,.20),rgba(10,14,34,.42)),
                        url('assets/product-zero-trust.jpg') center 42%/cover no-repeat;
            background-blend-mode: multiply;
            filter: grayscale(.3) brightness(.98) contrast(1.04); opacity:.95; }
/* Left-hand scrim: the source art is centre-weighted, and the headline needs
   a dark ground under it or it sits on the glow ring and turns to mush. */
.prodhero::after { content:""; position:absolute; inset:0; z-index:1; pointer-events:none;
            background: linear-gradient(90deg,rgba(8,11,28,.90) 0%,rgba(8,11,28,.60) 34%,rgba(8,11,28,.18) 62%,transparent 88%); }
.prodhero-main { position:relative; z-index:2; padding: clamp(44px,5.1vw,80px) 0 clamp(40px,4.6vw,72px); }
.prodhero-main .crumb { color: rgba(231,234,246,.62); }
.prodhero-main .crumb a { color: rgba(231,234,246,.85); }
.prodhero-main .crumb a:hover { color: #AEB6FF; }
.prodhero-main .iconbtn { color: rgba(231,234,246,.6); }
.prodhero-main h1 { color: #F5F7FF; }
.prodhero-main .lede { color: #C4CAE6; }
/* The bar itself: white ground, tagline in brand orange, deliberately larger
   than the lede above it — it is the page's positioning line, not a caption. */
.prodbar { position:relative; z-index:2; background:#FFFFFF;
           border-top: 1px solid rgba(23,27,46,.10);
           padding: clamp(15px,1.9vw,24px) 0; }
.prodbar-row { display:flex; align-items:center; gap: clamp(13px,1.5vw,22px); }
/* Height is tied to the two-line tagline beside it, so the chevrons span the
   whole block rather than sitting against the first line. */
.prodbar-chev { flex:none; height: clamp(40px,4.9vw,68px); width:auto; display:block; }
.prodbar p { margin:0; font-family: var(--fh); font-weight: 800;
             font-size: clamp(18px,2.3vw,30px); line-height:1.28;
             letter-spacing:-.015em; color:#F07020; text-wrap: balance; }
@media (max-width:560px){ .prodbar-chev { height:34px; } }
@media (max-width:820px){ .prodhero::after { background: linear-gradient(90deg,rgba(8,11,28,.9) 0%,rgba(8,11,28,.66) 60%,rgba(8,11,28,.34) 100%); } }

/* Feature list on detail pages */
.flist { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.flist li { display: grid; grid-template-columns: 18px 1fr; gap: 12px; font-size: 16px; color: var(--muted); line-height: 1.6; }
.flist li .tick { color: var(--accent); font-family: var(--fm); margin-top: 2px; }
.flist li b { color: var(--ink); font-weight: 650; }
.grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* Numbered hero cards — "Secure & control" (01) and "Govern & understand"
   (02). Real card panels, larger type, an oversized index number. */
.herocard { background: var(--panel); border: 1px solid var(--line); border-top: 3px solid var(--accent); border-radius: 15px; box-shadow: var(--shadow-sm); padding: clamp(24px, 2.6vw, 32px); }
.herocard .cardhead { display: flex; align-items: center; gap: 14px; margin-bottom: 4px; }
.herocard .cardno { font-family: var(--fh); font-size: 30px; font-weight: 800; line-height: 1; letter-spacing: -0.03em; color: var(--accent); opacity: .9; }
.herocard .eyebrow { font-size: 14px; }
.herocard .flist { margin-top: 16px; gap: 15px; }
.herocard .flist li { font-size: 16.5px; grid-template-columns: 20px 1fr; }

/* Form (try-free) */
.formcard { max-width: 560px; }
.field { display: grid; gap: 6px; margin-bottom: 16px; }
.field label { font-family: var(--fh); font-size: 13px; font-weight: 600; color: var(--ink); }
.field input, .field select { font-family: var(--fb); font-size: 15px; padding: 11px 13px; border-radius: 9px; border: 1px solid var(--line); background: var(--panel-2); color: var(--ink); }
.field input:focus, .field select:focus { outline: 2px solid var(--accent-2); outline-offset: 1px; border-color: var(--accent); }
.field .hint { font-size: 12px; color: var(--faint); }
.radio-row { display: flex; gap: 18px; }
.radio-row label { font-weight: 500; display: flex; gap: 7px; align-items: center; font-family: var(--fb); font-size: 14px; }
.formnote { font-size: 12.5px; color: var(--faint); margin-top: 4px; }

/* ── Consistent footer ─────────────────────────────── */
footer.foot { background: var(--nav); color: var(--nav-ink); margin-top: 30px; padding: 34px 0 30px; }
footer.foot .frow { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
footer.foot .fnav { display: flex; gap: 8px; flex-wrap: wrap; }
footer.foot .fnav a { font-family: var(--fh); font-size: 12px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--nav-muted); padding: 6px 12px; border-radius: 6px; }
footer.foot .fnav a:hover { color: #fff; background: rgba(255,255,255,.07); }
footer.foot .fbot { border-top: 1px solid rgba(255,255,255,.08); margin-top: 20px; padding-top: 16px; display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
footer.foot .fbot span { font-family: var(--fm); font-size: 11.5px; color: var(--nav-muted); letter-spacing: .04em; }
.totop { display: inline-flex; align-items: center; justify-content: center; width: 34px; height: 34px; color: var(--nav-muted); border: 0; background: none; cursor: pointer; transition: color .15s ease, transform .15s ease, filter .15s ease; }
.totop:hover { color: #FF6B6B; transform: translateY(-3px) scale(1.08); filter: drop-shadow(0 0 8px rgba(240,60,60,.85)); }
.totop svg { width: 20px; height: 20px; }
@media (prefers-reduced-motion: reduce) { .totop:hover { transform: none; } }

/* Downloads page */
.dl-list { display: grid; gap: 14px; margin-top: 26px; }
.dlcard { display: flex; align-items: center; gap: 18px; justify-content: space-between; background: var(--panel); border: 1px solid var(--line); border-left: 3px solid var(--accent); border-radius: 13px; box-shadow: var(--shadow-sm); padding: 20px 22px; }
.dlcard .dlinfo .cap { font-family: var(--fm); font-size: 10.5px; letter-spacing: .18em; text-transform: uppercase; color: var(--accent-ink); font-weight: 600; }
.dlcard .dlinfo h3 { font-family: var(--fh); margin: 8px 0 0; font-size: clamp(17px,1.9vw,20px); font-weight: 730; }
.dlcard .dlinfo p { margin: 6px 0 0; color: var(--muted); font-size: 13.5px; max-width: 62ch; }
.dlbtn { flex-shrink: 0; display: inline-flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px; width: 66px; height: 66px; border-radius: 12px; border: 1px solid var(--line); background: var(--panel-2); color: #D0342C; text-decoration: none; transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease, opacity .15s ease; }
.dlbtn svg { width: 26px; height: 26px; }
.dlbtn b { font-family: var(--fm); font-size: 8.5px; letter-spacing: .12em; }
.dlbtn:hover { transform: translateY(-2px); border-color: #D0342C; box-shadow: 0 8px 20px -8px rgba(208,52,44,.55); }
.dl-locked .dlbtn { opacity: .4; filter: grayscale(.7); cursor: not-allowed; }
.dl-locked .dlbtn:hover { transform: none; border-color: var(--line); box-shadow: none; }

@media (max-width: 820px) { .catgrid, .qgrid, .trust, .grid2 { grid-template-columns: 1fr; } .dlcard { flex-wrap: wrap; } }

/* Product Hunt review badge in the footer */
.fbadge { display: flex; justify-content: center; margin-top: 28px; padding: 22px 0 6px; border-top: 1px solid rgba(255,255,255,0.10); }
.fbadge img { width: 250px; height: 54px; }
.fbadge a { display: inline-flex; }

/* ── The stakes band (agentic-AI breach) ─────────────────────── */
.stakes{position:relative;overflow:hidden;color:#F1F3FB;padding:clamp(60px,7vw,110px) 0;background:linear-gradient(180deg,#0A0E20,#141A38);}
.stakes::before{content:"";position:absolute;inset:0;z-index:0;background:linear-gradient(160deg,rgba(60,74,155,.55),rgba(10,14,34,.86)),url('assets/stakes-bg.jpg') center/cover no-repeat;background-blend-mode:multiply;filter:grayscale(.75) brightness(.85) contrast(1.02);opacity:.62;}
.stakes::after{content:"";position:absolute;inset:0;pointer-events:none;background:radial-gradient(120% 80% at 85% -10%,rgba(124,135,245,.20),transparent 60%),radial-gradient(90% 70% at 0% 115%,rgba(124,135,245,.10),transparent 55%);}
.stakes .wrap{position:relative;z-index:2}
.stakes .eyebrow{color:#AEB6FF}
.stakes h2{font-family:var(--fh);font-weight:780;letter-spacing:-.02em;line-height:1.14;font-size:clamp(27px,3.7vw,46px);margin:14px 0 0;max-width:22ch;text-wrap:balance;color:#F1F3FB}
.stakes h2 em{font-style:normal;color:#AEB6FF}
.stakes .lede{margin:15px 0 0;font-size:clamp(15px,1.6vw,18px);color:#A6ADCB;font-weight:500}
.sstats{margin-top:clamp(34px,4.5vw,56px);display:grid;grid-template-columns:1fr auto 1fr auto 1fr;align-items:stretch;gap:12px}
.sstat{background:rgba(255,255,255,.04);border:1px solid rgba(255,255,255,.10);border-radius:16px;padding:24px 22px;box-shadow:0 24px 60px -34px rgba(0,0,0,.9)}
.snum{font-family:var(--fh);font-weight:800;letter-spacing:-.03em;line-height:1;font-size:clamp(40px,5vw,66px);background:linear-gradient(180deg,#fff,#AEB6FF);-webkit-background-clip:text;background-clip:text;color:transparent}
.slbl{margin-top:12px;font-size:14px;line-height:1.5;color:#A6ADCB;max-width:27ch}
.slbl b{color:#D3D8F7;font-weight:600}
.sarrow{display:flex;align-items:center;justify-content:center;color:#7C87F5;font-size:26px}
.snote{margin-top:20px;font-size:13.5px;color:#A6ADCB;line-height:1.6;max-width:64ch}
.snote b{color:#D3D8F7;font-weight:600}
.ssrc{margin-top:12px;font-size:11.5px;color:#727AA0}
.scta{margin-top:24px;display:flex;gap:14px;flex-wrap:wrap;align-items:center}
@media (max-width:820px){.sstats{grid-template-columns:1fr}.sarrow{transform:rotate(90deg)}.slbl{max-width:none}}
.sbig{margin-top:22px;font-size:clamp(18px,2.2vw,27px);line-height:1.45;color:#E9ECFB;font-weight:500;max-width:42ch}
.sbig .chev{color:#FFB86B;font-weight:800;letter-spacing:-.05em;margin-right:10px}

/* ── Higher stakes — same greyscale band as .stakes (gg1), white panel right ── */
.higher{position:relative;overflow:hidden;color:#F1F3FB;padding:clamp(60px,7vw,110px) 0;margin-top:clamp(64px,9vw,132px);background:linear-gradient(180deg,#0A0E20,#141A38)}
.higher::before{content:"";position:absolute;inset:0;z-index:0;background:linear-gradient(160deg,rgba(60,74,155,.55),rgba(10,14,34,.86)),url('assets/stakes-photo.jpg') center/cover no-repeat;background-blend-mode:multiply;filter:grayscale(.75) brightness(.85) contrast(1.02);opacity:.62}
.higher::after{content:"";position:absolute;inset:0;pointer-events:none;background:radial-gradient(120% 80% at 12% -10%,rgba(124,135,245,.20),transparent 60%)}
.higher-grid{position:relative;z-index:2;display:grid;grid-template-columns:1fr minmax(300px,360px);gap:clamp(28px,5vw,56px);align-items:center}
.higher-main .eyebrow{color:#AEB6FF}
.higher-main h2{font-family:var(--fh);font-weight:780;letter-spacing:-.02em;line-height:1.14;font-size:clamp(27px,3.7vw,46px);margin:14px 0 0;color:#F1F3FB;max-width:15ch}
.higher-main h2 em{font-style:normal;color:#AEB6FF}
.higher-white{background:rgba(255,255,255,.85);backdrop-filter:blur(3px);-webkit-backdrop-filter:blur(3px);color:var(--ink);border-radius:18px;padding:clamp(24px,2.6vw,34px);box-shadow:0 40px 100px -50px rgba(0,0,0,.7)}
.hchev{width:clamp(84px,9vw,124px);height:auto;display:block;margin-bottom:4px}
.htext{margin-top:14px;font-size:clamp(17px,1.95vw,23px);line-height:1.5;color:var(--ink);font-weight:500}
@media (max-width:820px){.higher-grid{grid-template-columns:1fr}}

/* ── Section 02: Governance paired with the live audit panel ───── */
.govfeature{position:relative;overflow:hidden;margin:clamp(40px,5vw,72px) 0;padding:clamp(34px,4.5vw,60px) 0;background:linear-gradient(180deg,#0A0E20,#141A38)}
.govfeature::before{content:"";position:absolute;inset:0;z-index:0;background:linear-gradient(160deg,rgba(60,74,155,.55),rgba(10,14,34,.86)),url('assets/stakes-photo.jpg') center bottom/cover no-repeat;background-blend-mode:multiply;filter:grayscale(.75) brightness(.85) contrast(1.02);opacity:.62}
.govfeature-grid{position:relative;z-index:2;max-width:1120px;margin:0 auto;padding:0 clamp(22px,4vw,48px);display:grid;grid-template-columns:1fr 1.1fr;gap:clamp(24px,4vw,46px);align-items:stretch}
.govfeature .flip,.govfeature .flip-inner,.govfeature .flip-back{height:100%}
.govimg{display:flex;align-items:center;justify-content:center}
.govimg img{width:100%;border:0;box-shadow:none;mix-blend-mode:lighten}
.govfeature + .catgrid{margin-top:clamp(34px,4.5vw,60px)}
@media (max-width:820px){.govfeature-grid{grid-template-columns:1fr}}
.hnote{margin-top:16px;font-family:var(--fb);font-size:13.5px;color:#A6ADCB;line-height:1.6}

/* ── Exposure boxes: one RED-OUTLINE + subtle orange glow at a time, every 3s ── */
@keyframes boxglow{
  0%{border-color:var(--accent);box-shadow:none}
  4%{border-color:#EF4444;box-shadow:0 0 9px 1px rgba(249,115,22,.75)}
  18%{border-color:#EF4444;box-shadow:0 0 9px 1px rgba(249,115,22,.75)}
  20%{border-color:var(--accent);box-shadow:none}
  100%{border-color:var(--accent);box-shadow:none}
}
.qgrid .box{animation:boxglow 15s linear infinite}
.qgrid li:nth-child(1) .box{animation-delay:0s}
.qgrid li:nth-child(2) .box{animation-delay:3s}
.qgrid li:nth-child(3) .box{animation-delay:6s}
.qgrid li:nth-child(4) .box{animation-delay:9s}
.qgrid li:nth-child(5) .box{animation-delay:12s}
@media (prefers-reduced-motion:reduce){.qgrid .box{animation:none}}
