/* ============================================================
   ANER GROUP - consolidated site stylesheet (aner.css)
   Single source of truth for the Aner deck-style web system.
   Layers, in order: fonts, base system, deck skin, shared
   components (hero-full, soc2). Page-specific styles remain
   inline in each page.
   ============================================================ */
@font-face{font-family:'Montserrat';font-style:normal;font-weight:600;font-display:swap;src:url('fonts/montserrat-latin-600-normal.woff2') format('woff2');}
@font-face{font-family:'Montserrat';font-style:normal;font-weight:700;font-display:swap;src:url('fonts/montserrat-latin-700-normal.woff2') format('woff2');}
@font-face{font-family:'Montserrat';font-style:normal;font-weight:800;font-display:swap;src:url('fonts/montserrat-latin-800-normal.woff2') format('woff2');}
@font-face{font-family:'Inter';font-style:normal;font-weight:400;font-display:swap;src:url('fonts/inter-latin-400-normal.woff2') format('woff2');}
@font-face{font-family:'Inter';font-style:normal;font-weight:500;font-display:swap;src:url('fonts/inter-latin-500-normal.woff2') format('woff2');}
@font-face{font-family:'Inter';font-style:normal;font-weight:600;font-display:swap;src:url('fonts/inter-latin-600-normal.woff2') format('woff2');}
@font-face{font-family:'IBM Plex Mono';font-style:normal;font-weight:400;font-display:swap;src:url('fonts/ibm-plex-mono-latin-400-normal.woff2') format('woff2');}
@font-face{font-family:'IBM Plex Mono';font-style:normal;font-weight:500;font-display:swap;src:url('fonts/ibm-plex-mono-latin-500-normal.woff2') format('woff2');}

/* ============================================================
   ANER GROUP - brand tokens (shared Aner house system)
   ============================================================ */
:root{
  --cobalt:      #1E40C9;
  --cobalt-deep: #16329F;
  --cobalt-lt:   #8FA3F2;   /* dark-section eyebrow accent */
  --cobalt-hz:   #9DB2FF;   /* hero headline accent */
  --ink:         #14182B;
  --ink-2:       #1B2138;   /* dark card surface */
  --ink-line:    #2A3050;
  --ink-text:    #EDEFF8;   /* dark section body text */
  --ink-soft:    #C7CCDD;   /* dark section lede */
  --ink-mut:     #9AA3BE;   /* dark section muted */
  --navy-deep:   #0C1536;   /* SOC 2 panel */
  --grey:        #6A7488;
  --paper:       #FFFFFF;
  --mist:        #F4F6FC;
  --lavender:    #EEF1FB;   /* shaded card surface */
  --line:        #E2E7F3;

  --font-display:'Montserrat', sans-serif;
  --font-body:   'Inter', sans-serif;
  --font-mono:   'IBM Plex Mono', monospace;

  --radius-card: 16px;
  --radius-btn:  10px;
  --radius-pill: 99px;

  --shadow-media:  0 24px 60px -38px rgba(20,24,43,.55);
  --shadow-accent: 0 22px 44px -30px rgba(30,64,201,.45);
  --shadow-dark:   0 18px 40px -30px rgba(0,0,0,.65);
  --shadow-micro:  0 1px 3px rgba(20,24,43,.08);

  --max-w: 1240px;
  --pad-x: clamp(20px, 5vw, 48px);
}

*{ margin:0; padding:0; box-sizing:border-box; }
html{ scroll-behavior:smooth; }
@media (prefers-reduced-motion: reduce){ html{ scroll-behavior:auto; } }

body{
  font-family:var(--font-body);
  color:var(--ink);
  background:var(--paper);
  font-size:17px;
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
}
img{ display:block; max-width:100%; }

a{ color:var(--cobalt); text-decoration:none; }
a:hover{ color:var(--cobalt-deep); }
a:focus-visible, button:focus-visible{ outline:2px solid var(--cobalt); outline-offset:3px; border-radius:2px; }

.wrap{ max-width:var(--max-w); margin:0 auto; padding-left:var(--pad-x); padding-right:var(--pad-x); }

/* mono eyebrow labels - structural signposts throughout */
.eyebrow{
  font-family:var(--font-mono);
  font-size:12px; letter-spacing:0.14em; text-transform:uppercase;
  color:var(--cobalt); display:block; margin-bottom:18px;
}
h2{
  font-family:var(--font-display); font-weight:700;
  font-size:clamp(26px, 3.4vw, 36px); line-height:1.2; letter-spacing:-0.01em;
  max-width:70ch;
}
.subline{
  font-family:var(--font-display); font-weight:600;
  font-size:clamp(17px,1.9vw,20px); line-height:1.3; letter-spacing:-0.01em;
  color:var(--ink); margin-top:14px; max-width:46ch;
}
.lede{ color:var(--grey); font-size:clamp(16px, 1.6vw, 18px); max-width:70ch; margin-top:16px; }

/* ============================================================ Header */
header{
  position:sticky; top:0; z-index:50;
  background:rgba(255,255,255,0.92); backdrop-filter:blur(8px);
  border-bottom:1px solid var(--line);
  border-top:3px solid var(--cobalt);
}
.header-in{ display:flex; align-items:center; justify-content:space-between; height:84px; }
.brand{ display:flex; align-items:center; }
.logo-h{ height:52px; width:auto; display:block; }
@media (max-width:680px){ .logo-h{ height:44px; } }
nav.main{ display:flex; gap:26px; align-items:center; }
nav.main a{ font-family:var(--font-display); font-size:13px; font-weight:700; letter-spacing:0.06em; text-transform:uppercase; color:var(--ink); }
nav.main a:hover{ color:var(--cobalt); }
nav.main a.active{ color:var(--cobalt); }
.btn-nav{ padding:10px 18px; font-size:12px; letter-spacing:0.06em; }
@media (max-width:780px){ nav.main{ display:none; } }

/* ============================================================ Hero */
.hero{ padding:clamp(72px, 11vh, 130px) 0 clamp(56px, 8vh, 96px); }
.hero h1{
  font-family:var(--font-display); font-weight:800;
  font-size:clamp(34px, 5.6vw, 62px); line-height:1.08; letter-spacing:-0.015em;
  max-width:18ch;
}
.hero h1 em{ font-style:normal; color:var(--cobalt); }
.hero .lede{ margin-top:24px; max-width:62ch; }
.hero-actions{ margin-top:36px; display:flex; gap:14px; flex-wrap:wrap; }
.btn{
  display:inline-block; font-family:var(--font-display);
  font-weight:700; font-size:14px; letter-spacing:0.04em;
  padding:13px 26px; border-radius:var(--radius-btn);
  transition:background-color .18s ease, color .18s ease, border-color .18s ease;
}
.btn-primary{ background:var(--cobalt); color:#fff; }
.btn-primary:hover{ background:var(--cobalt-deep); color:#fff; }
.btn-ghost{ border:1.5px solid var(--line); color:var(--ink); }
.btn-ghost:hover{ border-color:var(--cobalt); color:var(--cobalt); }

/* status strip */
.status{ border-top:1px solid var(--line); border-bottom:1px solid var(--line); background:var(--mist); }
.status-in{ display:grid; grid-template-columns:repeat(4, 1fr); gap:0; }
.status-cell{ padding:20px 24px; font-family:var(--font-mono); font-size:12px; letter-spacing:0.06em; }
.status-cell + .status-cell{ border-left:1px solid var(--line); }
.status-cell .k{ color:var(--grey); display:block; margin-bottom:4px; text-transform:uppercase; font-size:11px; letter-spacing:0.12em; }
.status-cell .v{ color:var(--ink); font-weight:500; }
.dot{ display:inline-block; width:7px; height:7px; border-radius:50%; margin-right:7px; background:var(--cobalt); vertical-align:1px; }
.dot.amber{ background:#C9821E; }
@media (max-width:960px){
  .status-in{ grid-template-columns:repeat(2, 1fr); }
  .status-cell:nth-child(3){ border-left:none; }
  .status-cell:nth-child(n+3){ border-top:1px solid var(--line); }
}
@media (max-width:560px){
  .status-in{ grid-template-columns:1fr; }
  .status-cell + .status-cell{ border-left:none; border-top:1px solid var(--line); }
}

/* ============================================================ Sections */
section{ padding:clamp(64px, 9vh, 110px) 0; }
section + section{ border-top:1px solid var(--line); }

/* pillars */
.pillars{ margin-top:48px; display:grid; grid-template-columns:repeat(3, 1fr); gap:28px; }
.pillar{ border:1px solid var(--line); border-radius:var(--radius-card); padding:28px 26px 30px; transition:border-color .2s ease; }
.pillar:hover{ border-color:var(--cobalt); }
.pillar h3{ font-family:var(--font-display); font-weight:700; font-size:17px; letter-spacing:0.01em; margin:18px 0 10px; }
.pillar p{ color:var(--grey); font-size:15px; }
.pillar .tag{
  font-family:var(--font-mono); font-size:11px; letter-spacing:0.12em; text-transform:uppercase;
  color:var(--grey); border:1px solid var(--line); border-radius:var(--radius-pill); padding:4px 10px; display:inline-block;
}
.pillar-icon{ width:34px; height:34px; color:var(--cobalt); }
@media (max-width:860px){ .pillars{ grid-template-columns:1fr; } }

/* rows */
.rows{ margin-top:44px; border-top:1px solid var(--line); }
.row{ display:grid; grid-template-columns:220px 1fr; gap:32px; padding:26px 0; border-bottom:1px solid var(--line); }
.row .label{ font-family:var(--font-mono); font-size:12px; letter-spacing:0.12em; text-transform:uppercase; color:var(--cobalt); padding-top:4px; }
.row p{ color:var(--ink); max-width:62ch; }
.row p span{ color:var(--grey); }
@media (max-width:680px){ .row{ grid-template-columns:1fr; gap:8px; } }

/* group / heritage */
.group-grid{ margin-top:44px; display:grid; grid-template-columns:repeat(4, 1fr); gap:24px; }
.gcard{ padding-top:22px; border-top:3px solid var(--cobalt); }
.gcard .gmark{ width:44px; height:44px; display:block; margin-bottom:14px; }
.gcard .yr{ font-family:var(--font-mono); font-size:12px; letter-spacing:0.1em; color:var(--grey); }
.gcard h3{ font-family:var(--font-display); font-weight:700; font-size:16px; margin:8px 0 8px; }
.gcard p{ font-size:15px; color:var(--grey); }
.gcard .here{ font-family:var(--font-mono); font-size:11px; letter-spacing:0.1em; text-transform:uppercase; color:var(--cobalt); display:inline-block; margin-top:10px; }
@media (max-width:860px){ .group-grid{ grid-template-columns:1fr 1fr; } }
@media (max-width:560px){ .group-grid{ grid-template-columns:1fr; } }

/* labs */
.labs-logo{ height:40px; width:auto; margin-bottom:22px; }

/* registry - signature dark element */
.registry{ background:var(--ink); color:#fff; }
.registry .eyebrow{ color:var(--cobalt-lt); }
.registry h2{ color:#fff; }
.reg-table{ margin-top:44px; border:1px solid var(--ink-line); border-radius:var(--radius-card); overflow:hidden; font-family:var(--font-mono); font-size:14px; }
.reg-row{ display:grid; grid-template-columns:260px 1fr; border-bottom:1px solid var(--ink-line); }
.reg-row:last-child{ border-bottom:none; }
.reg-row .rk{ padding:16px 22px; color:var(--cobalt-lt); letter-spacing:0.1em; font-size:12px; text-transform:uppercase; background:rgba(255,255,255,0.025); border-right:1px solid var(--ink-line); }
.reg-row .rv{ padding:16px 22px; color:var(--ink-text); }
.reg-row .rv .sub{ color:var(--ink-mut); }
@media (max-width:680px){
  .reg-row{ grid-template-columns:1fr; }
  .reg-row .rk{ border-right:none; padding-bottom:6px; }
  .reg-row .rv{ padding-top:0; }
}

/* contact + footer */
.contact .channels{ margin-top:40px; display:grid; grid-template-columns:repeat(2, 1fr); gap:28px; }
.channel{ border:1px solid var(--line); border-radius:var(--radius-card); padding:26px; }
.channel .label{ font-family:var(--font-mono); font-size:11px; letter-spacing:0.12em; text-transform:uppercase; color:var(--grey); display:block; margin-bottom:10px; }
.channel a{ font-family:var(--font-display); font-weight:700; font-size:17px; }
.channel p{ color:var(--grey); font-size:14px; margin-top:8px; }
@media (max-width:680px){ .contact .channels{ grid-template-columns:1fr; } }

footer{ border-top:1px solid var(--line); padding:48px 0 56px; }
.foot-brand{ display:flex; align-items:center; gap:10px; margin-bottom:22px; }
.foot-brand .glyph{ width:28px; height:28px; }
.foot-brand .name{ font-family:var(--font-display); font-weight:800; font-size:14px; letter-spacing:0.22em; }
.disclaimer{ color:var(--grey); font-size:12px; line-height:1.7; }
.disclaimer + .disclaimer{ margin-top:12px; }
.foot-meta{ margin-top:28px; font-family:var(--font-mono); font-size:12px; letter-spacing:0.06em; color:var(--grey); display:flex; justify-content:space-between; flex-wrap:wrap; gap:10px; }

/* imagery / media */
.media{ border-radius:var(--radius-card); overflow:hidden; border:1px solid var(--line); box-shadow:var(--shadow-media); background:var(--mist); }
.media img{ width:100%; height:100%; object-fit:cover; display:block; }
.media-43{ aspect-ratio:4/3; }
.media-32{ aspect-ratio:3/2; }
.hero-grid{ display:grid; grid-template-columns:1.05fr 0.92fr; gap:clamp(28px,4vw,56px); align-items:center; }
.hero-grid .hero-copy{ min-width:0; }
@media (max-width:860px){ .hero-grid{ grid-template-columns:1fr; } }
.split-media{ display:grid; grid-template-columns:1fr 1fr; gap:clamp(28px,4vw,56px); align-items:center; }
.split-media .prose{ min-width:0; }
@media (max-width:860px){ .split-media{ grid-template-columns:1fr; } }
.ops-head{ display:grid; grid-template-columns:1.25fr 0.75fr; gap:clamp(28px,4vw,56px); align-items:center; }
@media (max-width:860px){ .ops-head{ grid-template-columns:1fr; } .ops-head .media{ display:none; } }
.labs-banner{ margin-top:36px; }
.labs-banner .media{ aspect-ratio:21/9; }
.band-sec{ padding:clamp(40px,6vh,72px) 0; }
.band{ position:relative; border-radius:var(--radius-card); overflow:hidden; }
.band img{ width:100%; height:100%; object-fit:cover; object-position:center 10%; display:block; aspect-ratio:16/7; }
.band .ov{ position:absolute; inset:0; display:flex; align-items:center;
  background:linear-gradient(90deg, rgba(20,24,43,.84) 0%, rgba(20,24,43,.55) 46%, rgba(20,24,43,.12) 100%); }
.band .ov .t{ padding:0 clamp(26px,5vw,60px); color:#fff; font-family:var(--font-display); font-weight:700;
  font-size:clamp(20px,3vw,32px); line-height:1.2; max-width:26ch; letter-spacing:-0.01em; }
@media (max-width:680px){ .band img{ aspect-ratio:4/3; object-position:center top; } .band .ov{ background:linear-gradient(180deg, rgba(20,24,43,.35), rgba(20,24,43,.82)); align-items:flex-end; } .band .ov .t{ padding-bottom:24px; } }

/* reveal */
.reveal{ opacity:0; transform:translateY(14px); transition:opacity .6s ease, transform .6s ease; }
.reveal.in{ opacity:1; transform:none; }
@media (prefers-reduced-motion: reduce){ .reveal{ opacity:1; transform:none; transition:none; } }

/* ============================================================
   ANER deck skin
   Shaded-card system carried over from the GIFT IFIH deck:
   lavender panels, white icon chips, rounded outlined rows,
   numbered eyebrows; dark sections run clean (no watermarks).
   ============================================================ */

/* eyebrows: cobalt index number, slate label (deck header style) */
.eyebrow{ color:var(--grey); }
.eyebrow b{ color:var(--cobalt); font-weight:600; }
.registry .eyebrow{ color:var(--ink-mut); }
.registry .eyebrow b{ color:var(--cobalt-lt); }
.hero-full .eyebrow{ color:var(--ink-mut); }
.hero-full .eyebrow b{ color:var(--cobalt-hz); }

/* pillar cards: shaded lavender panels with white icon chips */
.pillar{
  background:var(--lavender);
  border:1px solid var(--line);
  border-radius:var(--radius-card);
  padding:30px 28px 32px;
  transition:transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.pillar:hover{
  border-color:var(--cobalt);
  transform:translateY(-3px);
  box-shadow:var(--shadow-accent);
}
.pillar-icon{
  width:54px; height:54px; padding:14px;
  color:var(--cobalt); background:#FFFFFF;
  border-radius:var(--radius-btn);
  box-shadow:var(--shadow-micro);
}
.pillar .tag{
  background:#FFFFFF; border-color:transparent;
  box-shadow:var(--shadow-micro);
}

/* rows: outlined list cards (deck corridor rows) */
.rows{ border-top:none; display:grid; gap:14px; }
.row{
  border:1px solid #E2E7F3; border-bottom:1px solid #E2E7F3;
  border-radius:var(--radius-card); padding:22px 26px; background:#FFFFFF;
  transition:border-color .2s ease, box-shadow .2s ease;
}
.row:hover{ border-color:var(--cobalt); box-shadow:var(--shadow-accent); }

/* group cards: shaded like the pillars, no accent borders;
   the current entity is marked by a cobalt pill instead */
.gcard{
  border:1px solid var(--line);
  border-radius:var(--radius-card); background:var(--lavender);
  padding:24px 24px 26px;
  transition:transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.gcard:hover{ border-color:var(--cobalt); transform:translateY(-3px); box-shadow:var(--shadow-accent); }
.gcard .here{ background:var(--cobalt); color:#FFFFFF; border-radius:var(--radius-pill); padding:4px 11px; }

/* contact channels: shaded panels */
.channel{
  background:var(--lavender); border:1px solid var(--line);
  border-radius:var(--radius-card); padding:28px;
}

/* dark registry: rounded table */
.registry{ position:relative; overflow:hidden; }
.registry .wrap{ position:relative; z-index:1; }
.reg-table{ border-radius:var(--radius-card); background:rgba(255,255,255,.015); }

.hero-full{ position:relative; }
@media (max-width:780px){
  .registry::before, .registry::after, }

/* ============================================================
   typography boost: deck-weight headlines, larger card titles,
   darker slate body text for readability
   ============================================================ */
h2{
  font-weight:800;
  font-size:clamp(29px, 3.9vw, 42px);
  letter-spacing:-0.015em;
  line-height:1.14;
}
.subline{ font-weight:700; }
.lede{ color:#49536B; font-size:clamp(16px, 1.6vw, 18px); }
.pillar h3{ font-size:18px; font-weight:800; letter-spacing:-0.015em; margin-top:20px; }
.pillar p{ color:#525D77; font-size:16px; }
.gcard h3{ font-size:18px; font-weight:800; letter-spacing:-0.01em; }
.gcard p{ color:#525D77; }
.channel a{ font-size:18px; font-weight:800; }
.channel p{ color:#525D77; }
.row p{ font-size:17px; }
.row p span{ color:#525D77; }
.aspect h3{ font-weight:800; }
.aspect p{ color:#49536B; }
.status-cell .k{ color:#525D77; }

/* ============================================================
   deck navy panel: closing CTA rendered as a dark rounded card
   ============================================================ */
#cta .wrap{
  background:var(--ink); border-radius:var(--radius-card);
  padding-top:clamp(44px, 6vh, 64px);
  padding-bottom:clamp(48px, 6vh, 68px);
  position:relative; overflow:hidden;
}
#cta .wrap > *{ position:relative; z-index:1; }
#cta h2{ color:#FFFFFF; }
#cta .lede{ color:#C2C9DC; }
#cta .eyebrow{ color:var(--ink-mut); }
#cta .eyebrow b{ color:var(--cobalt-hz); }
#cta .btn-ghost{ border-color:rgba(255,255,255,.32); color:#FFFFFF; }
#cta .btn-ghost:hover{ border-color:#FFFFFF; color:#FFFFFF; }
@media (max-width:780px){ }

/* ============================================================
   navy contrast system: deck dark-slide treatment site-wide.
   Applied to service-page heroes, status strips, the rows
   sections (#work, #why, #how) and the Labs section on home.
   ============================================================ */
:is(section.hero, #work, #why, #how, #labs){
  background:var(--ink);
  border-top-color:var(--ink-line);
}
:is(section.hero, #work, #why, #how, #labs) :is(h1, h2, .subline){ color:#FFFFFF; }
section.hero h1 em{ color:var(--cobalt-hz); }
:is(section.hero, #work, #why, #how, #labs) .lede{ color:#C2C9DC; }
:is(section.hero, #work, #why, #how, #labs) .eyebrow{ color:var(--ink-mut); }
:is(section.hero, #work, #why, #how, #labs) .eyebrow b{ color:var(--cobalt-hz); }
section.hero .hero-copy > a{ color:var(--ink-mut) !important; }

/* rows become dark cards (deck dark-slide list cards) */
:is(section.hero, #work, #why, #how, #labs) .row{
  background:var(--ink-2); border-color:var(--ink-line);
}
:is(section.hero, #work, #why, #how, #labs) .row:hover{
  border-color:var(--cobalt-hz);
  box-shadow:var(--shadow-dark);
}
:is(section.hero, #work, #why, #how, #labs) .row .label{ color:var(--cobalt-hz); }
:is(section.hero, #work, #why, #how, #labs) .row p{ color:var(--ink-text); }
:is(section.hero, #work, #why, #how, #labs) .row p span{ color:var(--ink-mut); }

/* pillar cards inside navy sections: dark cards, cobalt chips */
:is(section.hero, #work, #why, #how, #labs) .pillar{ background:var(--ink-2); border-color:var(--ink-line); }
:is(section.hero, #work, #why, #how, #labs) .pillar h3{ color:#FFFFFF; }
:is(section.hero, #work, #why, #how, #labs) .pillar p{ color:#B9C1D6; }
:is(section.hero, #work, #why, #how, #labs) .pillar-icon{ background:var(--cobalt); color:#FFFFFF; box-shadow:none; }
:is(section.hero, #work, #why, #how, #labs) .tag{
  background:transparent; border:1px solid var(--ink-line); color:var(--ink-mut); box-shadow:none;
}
:is(section.hero, #work, #why, #how, #labs) .media{ border-color:var(--ink-line); }
:is(section.hero, #work, #why, #how, #labs) .btn-ghost{ border-color:rgba(255,255,255,.32); color:#FFFFFF; }
:is(section.hero, #work, #why, #how, #labs) .btn-ghost:hover{ border-color:#FFFFFF; color:#FFFFFF; }

/* Labs wordmark on navy: white brand chip keeps it legible */
#labs .labs-logo{ background:#FFFFFF; padding:10px 14px; height:60px; border-radius:var(--radius-btn); }

/* service hero: hexagon echo from the deck cover */
section.hero{ position:relative; overflow:hidden; }
section.hero .wrap{ position:relative; z-index:1; }

/* status strips: navy capsule band under the hero */
.status{ background:var(--ink); border-top:1px solid var(--ink-line); border-bottom:1px solid var(--ink-line); }
.status-cell + .status-cell{ border-left-color:var(--ink-line); }
.status-cell .k{ color:var(--ink-mut); }
.status-cell .v{ color:var(--ink-text); }
@media (max-width:960px){ .status-cell:nth-child(n+3){ border-top-color:var(--ink-line); } }
@media (max-width:560px){ .status-cell + .status-cell{ border-top-color:var(--ink-line); } }

/* ============================================================ Shared: full-bleed dark hero */
.hero-full{ position:relative; overflow:hidden; background:var(--ink); min-height:clamp(520px,72vh,680px); display:flex; align-items:center; }
.hero-full .bg{ position:absolute; inset:0; z-index:0; }
.hero-full .bg img{ width:100%; height:100%; object-fit:cover; object-position:center; display:block; }
.hero-full .scrim{ position:absolute; inset:0; z-index:1; background:linear-gradient(90deg, rgba(15,18,32,.94) 0%, rgba(15,18,32,.80) 55%, rgba(15,18,32,.58) 100%); }
.hero-full .wrap{ position:relative; z-index:2; padding-top:48px; padding-bottom:48px; }
.hero-full .eyebrow{ color:var(--cobalt-hz); font-size:13px; letter-spacing:0.18em; }
.hero-full h1{
  color:#fff; max-width:70ch;
  font-family:var(--font-display); font-weight:800;
  font-size:clamp(38px, 6.2vw, 72px); line-height:1.06; letter-spacing:-0.015em;
}
.hero-full h1 em{ font-style:normal; color:var(--cobalt-hz); }
.hero-full .lede{ color:#E4E9F6; max-width:70ch; font-size:clamp(17px, 2vw, 21px); font-weight:500; margin-top:22px; }
.hero-full .btn-ghost{ border-color:rgba(255,255,255,.32); color:#fff; }
.hero-full .btn-ghost:hover{ border-color:#fff; color:#fff; }
@media (max-width:680px){
  .hero-full{ min-height:0; }
  .hero-full .scrim{ background:linear-gradient(180deg, rgba(15,18,32,.80) 0%, rgba(15,18,32,.88) 100%); }
  .hero-full h1{ max-width:none; }
}

/* ============================================================ Shared: SOC 2 panel */
.soc2{ background:var(--navy-deep); color:#fff; border-radius:var(--radius-card); padding:clamp(28px,4vw,44px); display:grid; grid-template-columns:1fr auto; gap:clamp(24px,4vw,48px); align-items:center; }
.soc2 .eyebrow{ color:var(--cobalt-lt); margin-bottom:12px; }
.soc2 h3{ font-family:var(--font-display); font-weight:800; font-size:clamp(28px,4vw,40px); line-height:1; letter-spacing:-0.01em; color:#fff; }
.soc2 p{ color:var(--ink-soft); max-width:46ch; margin-top:12px; }
.soc2 .badge{ width:clamp(112px,14vw,144px); height:auto; display:block; border-radius:var(--radius-btn); }
@media (max-width:680px){ .soc2{ grid-template-columns:1fr; justify-items:start; } }
