/* ============================================================
   Goose · site.css
   Shared stylesheet for all marketing pages.
   ============================================================ */

:root {
  /* ink + paper */
  --ink:        #0a0c10;
  --ink-2:      #14171c;
  --ink-3:      #1f242b;
  --paper:      #ffffff;
  --paper-2:    #f6f5f0;
  --paper-3:    #ebeae3;
  --line:       #e2e0d8;
  --line-2:     #d2cfc4;
  --line-strong:#c2bfb4;
  --muted:      #6b6b66;
  --muted-2:    #9a9a93;
  --muted-dark: rgba(255,255,255,0.62);
  --muted-dark-2: rgba(255,255,255,0.38);

  /* accent (used SPARINGLY: hairlines, hover, single em color) */
  --accent:     #ff5a3c;
  --accent-2:   #d94528;

  /* atmosphere (gradient meshes, photo tints, deep-blue moments) */
  --atmos:      #1f3b6e;
  --atmos-2:    #0c1d3a;

  /* layout */
  --max:        1240px;
  --gutter:     32px;
  --radius:     14px;
  --radius-sm:  8px;
  --radius-xs:  4px;

  /* type */
  --font:       'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --serif:      'Instrument Serif', 'Times New Roman', serif;
  --mono:       'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;

  /* motion */
  --ease:       cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-soft:  cubic-bezier(0.4, 0, 0.2, 1);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.55;
  font-feature-settings: "ss01", "cv11";
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font: inherit; }

.container { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }
.wide      { max-width: 1400px; margin: 0 auto; padding: 0 var(--gutter); }
.tight     { max-width: 880px;  margin: 0 auto; padding: 0 var(--gutter); }

.mono     { font-family: var(--mono); }
.serif    { font-family: var(--serif); font-weight: 400; font-style: italic; }
.kicker {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 0;
}
.kicker.dark   { color: var(--muted-dark); }
.kicker.center { text-align: center; }

/* spacing utility scale (replaces inline style="margin-top: ..."s) */
.mt-xs  { margin-top: 8px; }
.mt-sm  { margin-top: 16px; }
.mt-md  { margin-top: 24px; }
.mt-lg  { margin-top: 32px; }
.mt-xl  { margin-top: 48px; }
.mt-2xl { margin-top: 72px; }
.mb-xs  { margin-bottom: 8px; }
.mb-sm  { margin-bottom: 16px; }
.mb-md  { margin-bottom: 24px; }
.mb-lg  { margin-bottom: 32px; }
.stack  { --stack: 16px; }
.stack > * + * { margin-top: var(--stack); }

/* motion utilities */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 600ms var(--ease), transform 600ms var(--ease);
  will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal[data-d="100"] { transition-delay: 100ms; }
.reveal[data-d="200"] { transition-delay: 200ms; }
.reveal[data-d="300"] { transition-delay: 300ms; }
.reveal[data-d="400"] { transition-delay: 400ms; }
.reveal[data-d="500"] { transition-delay: 500ms; }

@keyframes ambient-drift {
  0%   { transform: translate3d(0, 0, 0); }
  50%  { transform: translate3d(-3%, 2%, 0); }
  100% { transform: translate3d(0, 0, 0); }
}
@keyframes mesh-shift {
  0%, 100% { transform: rotate(0deg) scale(1); }
  50%      { transform: rotate(8deg)  scale(1.08); }
}

/* ============================================================
   NAV
   ============================================================ */
nav.top {
  position: fixed; top: 0; left: 0; right: 0; z-index: 80;
  background: rgba(255,255,255,0);
  backdrop-filter: saturate(180%) blur(0);
  -webkit-backdrop-filter: saturate(180%) blur(0);
  transition: background 250ms ease, backdrop-filter 250ms ease, border-color 250ms ease;
  border-bottom: 1px solid transparent;
}
nav.top.scrolled {
  background: rgba(255,255,255,0.82);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom-color: var(--line);
}
nav.top.on-dark:not(.scrolled) {
  color: var(--paper);
}
nav.top.on-dark:not(.scrolled) .brand,
nav.top.on-dark:not(.scrolled) ul a { color: var(--paper); }
nav.top.on-dark:not(.scrolled) .nav-cta { background: var(--paper); color: var(--ink); }
nav.top .row {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.brand {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 17px; letter-spacing: -0.02em;
  color: var(--ink);
}
.brand .mark {
  width: 28px; height: 28px;
  background: var(--ink) url('/static/logo.png') no-repeat center / 76%;
  border-radius: 6px;
}
nav.top ul {
  list-style: none; margin: 0; padding: 0;
  display: flex; gap: 30px;
}
nav.top ul a {
  font-size: 14.5px; font-weight: 500;
  position: relative; padding: 4px 0;
  transition: opacity 150ms ease;
}
nav.top ul a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 0; height: 1px; background: var(--accent);
  transition: width 220ms var(--ease);
}
nav.top ul a:hover::after { width: 100%; }
.nav-cta {
  background: var(--ink); color: var(--paper);
  padding: 9px 18px; border-radius: 999px;
  font-weight: 500; font-size: 14px;
  transition: transform 100ms ease, opacity 150ms ease;
}
.nav-cta:hover { opacity: 0.88; }
.nav-cta:active { transform: scale(0.97); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 24px;
  border-radius: 999px;
  font-weight: 500; font-size: 15px;
  cursor: pointer;
  border: 1px solid transparent;
  font-family: inherit;
  transition: transform 150ms var(--ease), box-shadow 200ms var(--ease), background 150ms var(--ease), color 150ms var(--ease), border-color 150ms var(--ease);
}
.btn.primary  { background: var(--ink); color: var(--paper); }
.btn.primary:hover { transform: translateY(-1px); box-shadow: 0 14px 30px -10px rgba(10,12,16,0.34); }
.btn.ghost    { color: var(--ink); border-color: var(--line-2); background: transparent; }
.btn.ghost:hover { background: var(--paper-2); border-color: var(--ink); }
.btn.light    { background: var(--paper); color: var(--ink); }
.btn.light:hover { transform: translateY(-1px); box-shadow: 0 14px 30px -10px rgba(255,255,255,0.25); }
.btn.dark-ghost { color: var(--paper); border-color: rgba(255,255,255,0.22); background: transparent; }
.btn.dark-ghost:hover { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.5); }
.btn .arr { display: inline-block; transition: transform 200ms var(--ease); }
.btn:hover .arr { transform: translateX(3px); }

/* ============================================================
   HEADINGS  (text-wrap: balance everywhere)
   ============================================================ */
.h-display {
  font-size: clamp(44px, 6.8vw, 96px);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.045em;
  text-wrap: balance;
}
.h1 {
  font-size: clamp(36px, 5.4vw, 72px);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.035em;
  text-wrap: balance;
}
.h2 {
  font-size: clamp(30px, 3.8vw, 48px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.028em;
  text-wrap: balance;
}
.h3 {
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: -0.02em;
  text-wrap: balance;
}
.lede {
  font-size: clamp(17px, 1.5vw, 21px);
  color: var(--muted);
  line-height: 1.55;
  max-width: 58ch;          /* baseline cap; scoped variants override below */
}
.lede.dark { color: var(--muted-dark); }
.eyebrow {
  font-family: var(--mono);
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  font-weight: 500;
}

/* ============================================================
   EDITORIAL ESSAY (about page long-form prose)
   ============================================================ */
.essay {
  border-left: 1px solid var(--accent);
  padding: 4px 0 4px 32px;
  max-width: 62ch;
}
.essay p {
  font-size: 18px;
  line-height: 1.7;
  margin: 0 0 22px 0;
  color: var(--ink-2);
}
.essay p:first-of-type {
  font-size: 22px;
  color: var(--ink);
  font-weight: 500;
  margin-bottom: 28px;
}
.essay p:last-child { margin-bottom: 0; }
.essay em, .essay i { font-family: var(--serif); font-style: italic; font-size: 1.05em; }

/* ============================================================
   GRADIENT MESH BACKGROUNDS
   ============================================================ */
.mesh-bg {
  position: absolute; inset: -10%;
  z-index: 0; pointer-events: none;
  background:
    radial-gradient(40% 35% at 18% 22%, rgba(31, 59, 110, 0.55), transparent 60%),
    radial-gradient(34% 30% at 82% 18%, rgba(255, 90, 60, 0.32), transparent 65%),
    radial-gradient(50% 45% at 64% 76%, rgba(12, 29, 58, 0.55), transparent 60%),
    linear-gradient(180deg, #0a0c10 0%, #0a0c10 100%);
  filter: blur(28px) saturate(110%);
  animation: mesh-shift 24s ease-in-out infinite;
}
.mesh-bg.bright {
  background:
    radial-gradient(40% 35% at 18% 22%, rgba(255, 200, 180, 0.55), transparent 60%),
    radial-gradient(34% 30% at 82% 18%, rgba(180, 200, 255, 0.55), transparent 65%),
    radial-gradient(50% 45% at 64% 76%, rgba(255, 235, 220, 0.65), transparent 60%),
    var(--paper);
  filter: blur(38px) saturate(105%);
}
.grain {
  position: absolute; inset: 0; pointer-events: none;
  opacity: 0.06; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.6 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}
.dot-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.06) 1px, transparent 0);
  background-size: 24px 24px;
  mask-image: radial-gradient(ellipse 70% 60% at center, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at center, black 30%, transparent 80%);
}
.dot-grid.light {
  background-image: radial-gradient(circle at 1px 1px, rgba(11,13,16,0.07) 1px, transparent 0);
}

/* ============================================================
   PRODUCT FRAGMENTS
   ============================================================ */
.frag {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow:
    0 1px 1px rgba(11,13,16,0.04),
    0 30px 60px -28px rgba(11,13,16,0.20),
    0 60px 120px -40px rgba(11,13,16,0.10);
}
.frag.tilt-right { transform: perspective(1200px) rotateY(-3deg) rotateX(2deg); transform-origin: left center; }
.frag.tilt-left  { transform: perspective(1200px) rotateY(3deg)  rotateX(2deg); transform-origin: right center; }
.frag-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 13px 18px;
  background: var(--paper-2);
  border-bottom: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 11.5px; color: var(--muted);
}
.frag-head .live { display: inline-flex; align-items: center; gap: 6px; }
.frag-head .live .dot { width: 6px; height: 6px; border-radius: 999px; background: #2eb872; box-shadow: 0 0 0 0 rgba(46,184,114,0.55); animation: pulse-dot 2s ease-out infinite; }
@keyframes pulse-dot {
  0%   { box-shadow: 0 0 0 0 rgba(46,184,114,0.55); }
  70%  { box-shadow: 0 0 0 8px rgba(46,184,114,0); }
  100% { box-shadow: 0 0 0 0 rgba(46,184,114,0); }
}
.frag-row {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 13.5px;
}
.frag-row:last-child { border-bottom: 0; }
.frag-row .id { font-family: var(--mono); font-size: 12px; color: var(--muted-2); }
.frag-row .amt { font-family: var(--mono); font-weight: 600; }
.frag-row .badge {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 11.5px; padding: 3px 9px;
  border-radius: 999px;
  background: var(--paper-3); color: var(--ink);
  font-weight: 500;
}
.frag-row .badge.green { background: rgba(46,184,114,0.13); color: #1e8a4f; }
.frag-row .badge.amber { background: rgba(255,170,0,0.16); color: #a26b00; }
.frag-row .badge.blue  { background: rgba(60,120,255,0.12); color: #2b58c4; }
.frag-row.pulse { animation: row-pulse 6s ease-in-out infinite; }
@keyframes row-pulse {
  0%, 86%  { background: transparent; }
  93%      { background: rgba(255, 90, 60, 0.07); }
  100%     { background: transparent; }
}

/* timeline */
.frag.timeline .step {
  display: grid; grid-template-columns: 14px 1fr auto;
  gap: 16px; padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  align-items: center;
}
.frag.timeline .step:last-child { border-bottom: 0; }
.frag.timeline .step .dot {
  width: 10px; height: 10px;
  border: 2px solid var(--ink); border-radius: 999px; background: var(--paper);
}
.frag.timeline .step .dot.filled { background: var(--ink); }
.frag.timeline .step .text { color: var(--ink); font-size: 13.5px; }
.frag.timeline .step .text .ch {
  display: block; font-family: var(--mono); font-size: 11.5px;
  color: var(--muted); margin-bottom: 2px;
}
.frag.timeline .step .when {
  font-family: var(--mono); font-size: 11.5px; color: var(--muted-2);
}

/* audit */
.frag.audit .row {
  display: grid; grid-template-columns: auto 1fr auto;
  gap: 14px; padding: 13px 18px;
  border-bottom: 1px solid var(--line);
  font-size: 13px; align-items: center;
}
.frag.audit .row:last-child { border-bottom: 0; }
.frag.audit .ts { font-family: var(--mono); font-size: 11.5px; color: var(--muted-2); }
.frag.audit .ev { color: var(--ink); }
.frag.audit .regime {
  font-family: var(--mono); font-size: 10.5px;
  background: var(--paper-2); border: 1px solid var(--line);
  padding: 2px 8px; border-radius: 4px; color: var(--ink);
}

/* csv */
.frag.csv { font-family: var(--mono); font-size: 12px; }
.frag.csv .head, .frag.csv .row {
  display: grid; grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 10px; padding: 11px 18px;
  border-bottom: 1px solid var(--line);
}
.frag.csv .head {
  background: var(--paper-2); color: var(--muted);
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.06em;
}
.frag.csv .row:last-child { border-bottom: 0; }
.frag.csv .row span { color: var(--ink); }

/* operator dashboard */
.frag.ops .top {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  border-bottom: 1px solid var(--line);
}
.frag.ops .stat {
  padding: 18px 20px; border-right: 1px solid var(--line);
}
.frag.ops .stat:last-child { border-right: 0; }
.frag.ops .stat .v {
  font-family: var(--mono); font-size: 22px; font-weight: 600; color: var(--ink); letter-spacing: -0.02em;
}
.frag.ops .stat .k {
  font-family: var(--mono); font-size: 10.5px; color: var(--muted);
  text-transform: uppercase; letter-spacing: 0.08em; margin-top: 3px;
}
.frag.ops .line {
  display: grid; grid-template-columns: auto 1fr auto;
  gap: 12px; align-items: center;
  padding: 11px 18px; font-size: 13px;
}
.frag.ops .line .id   { font-family: var(--mono); font-size: 11.5px; color: var(--muted-2); }
.frag.ops .line .what { color: var(--ink); }
.frag.ops .line .when { font-family: var(--mono); font-size: 11px; color: var(--muted); }

/* topology */
.frag.topology { padding: 28px 24px 24px 24px; }
.frag.topology .row3 {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 12px; margin-bottom: 18px;
}
.frag.topology .box {
  border: 1px solid var(--line); background: var(--paper-2);
  padding: 20px 12px 18px 12px; border-radius: var(--radius-sm);
  text-align: center;
}
.frag.topology .box .ico {
  font-family: var(--mono); font-size: 11px; color: var(--muted);
  letter-spacing: 0.06em; margin-bottom: 10px;
}
.frag.topology .box .name { font-weight: 600; font-size: 14px; }
.frag.topology .joint {
  height: 1px; background: var(--line); position: relative; margin: 6px 12px 16px 12px;
}
.frag.topology .joint::after {
  content: "shared product · shared SLAs · your controls";
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  background: var(--paper); padding: 0 12px;
  font-family: var(--mono); font-size: 11px; color: var(--muted);
}
.frag.topology .foot {
  display: flex; justify-content: space-between;
  font-family: var(--mono); font-size: 11.5px; color: var(--muted);
}

/* ============================================================
   PHOTO TREATMENTS
   ============================================================ */
.photo {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--ink);
}
.photo > img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 1200ms var(--ease);
}
.photo.tinted::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,12,16,0.05) 0%, rgba(10,12,16,0.55) 100%);
  pointer-events: none;
}
.photo.duotone > img { filter: grayscale(0.9) contrast(1.05); }
.photo.duotone::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(31,59,110,0.40), rgba(10,12,16,0.10));
  mix-blend-mode: screen; pointer-events: none;
}
.full-bleed-photo {
  position: relative;
  height: 60vh; min-height: 420px; max-height: 720px;
  overflow: hidden;
  background: var(--ink);
}
.full-bleed-photo > img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.full-bleed-photo .overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,12,16,0.40) 0%, rgba(10,12,16,0.05) 35%, rgba(10,12,16,0.55) 100%);
}
.full-bleed-photo .caption {
  position: absolute; left: 0; right: 0; bottom: 48px;
  text-align: center; color: var(--paper);
  font-family: var(--mono); font-size: 12px;
  letter-spacing: 0.12em; text-transform: uppercase;
  opacity: 0.8;
}
.full-bleed-photo .quote {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  color: var(--paper);
  font-family: var(--serif); font-style: italic;
  font-size: clamp(28px, 4vw, 56px);
  font-weight: 400;
  line-height: 1.2; letter-spacing: -0.01em;
  max-width: 22ch; text-align: center;
}

/* ============================================================
   SECTION RHYTHM
   ============================================================ */
section { position: relative; }
.pad-xl { padding: 160px 0; }
.pad-lg { padding: 130px 0; }
.pad-md { padding: 96px 0; }
.pad-sm { padding: 64px 0; }
.divider { height: 1px; background: var(--line); margin: 0; }

/* ============================================================
   HERO (home)
   ============================================================ */
.hero-home {
  position: relative;
  min-height: 100vh;
  color: var(--paper);
  overflow: hidden;
  display: flex; align-items: center;
  padding: 140px 0 120px 0;
}
.hero-home .bg-stack {
  position: absolute; inset: 0; overflow: hidden; z-index: 0;
}
.hero-home .bg-stack > img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(0.9) contrast(1.05) brightness(0.55);
  transform: scale(1.05);
  animation: ambient-drift 20s ease-in-out infinite;
}
.hero-home .bg-stack::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(60% 60% at 80% 20%, rgba(255, 90, 60, 0.22), transparent 60%),
    radial-gradient(70% 60% at 10% 80%, rgba(31, 59, 110, 0.55), transparent 60%),
    linear-gradient(180deg, rgba(10,12,16,0.35) 0%, rgba(10,12,16,0.75) 100%);
  pointer-events: none;
}
.hero-home .container { position: relative; z-index: 2; }
.hero-home .grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-home h1 {
  font-size: clamp(46px, 6.8vw, 96px);
  font-weight: 700; line-height: 1.05;
  letter-spacing: -0.045em;
  margin: 24px 0 28px 0;
  color: var(--paper);
  max-width: 14ch;
  text-wrap: balance;
}
.hero-home h1 .accent-line {
  display: inline-block;
  box-shadow: inset 0 -3px 0 var(--accent);
  padding-bottom: 2px;
}
.hero-home .lede {
  color: rgba(255,255,255,0.78);
  max-width: 460px;
  margin: 0 0 40px 0;
  font-size: clamp(17px, 1.5vw, 20px);
}
.hero-home .kicker.dark { color: rgba(255,255,255,0.55); }
.hero-home .cta-row { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-home .float {
  position: relative;
  transform: translateY(0);
  animation: float-y 9s ease-in-out infinite;
}
@keyframes float-y {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}
.hero-home .scroll-cue {
  position: absolute; left: 50%; bottom: 32px;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.5);
  font-family: var(--mono);
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  z-index: 2;
}
.hero-home .scroll-cue::after {
  content: ""; width: 1px; height: 40px;
  background: linear-gradient(180deg, rgba(255,255,255,0.5), transparent);
}

/* ============================================================
   SECTION TYPES
   ============================================================ */

/* interior page hero (smaller, light) */
.hero-page {
  padding: 160px 0 88px 0;
  position: relative;
  overflow: hidden;
  background: var(--paper-2);
  border-bottom: 1px solid var(--line);
}
.hero-page .mesh-bg.bright { opacity: 0.7; }
.hero-page .grain { opacity: 0.04; }
.hero-page .container { position: relative; z-index: 2; }
.hero-page .kicker { margin-bottom: 18px; }
.hero-page h1 { margin: 0 0 24px 0; max-width: 22ch; text-wrap: balance; }
.hero-page .lede { max-width: 640px; margin: 0; }

/* split section (text + visual) */
.split {
  padding: 130px 0;
}
.split .grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 80px;
  align-items: center;
}
.split.reverse .grid {
  grid-template-columns: 1.15fr 1fr;
}
.split.reverse .text { order: 2; }
.split.reverse .visual { order: 1; }
.split .text .kicker { margin-bottom: 18px; }
.split .text h2 { margin: 0 0 20px 0; }
.split .text .lede { margin: 0 0 24px 0; max-width: 48ch; }
.split .text .bullets {
  list-style: none; margin: 8px 0 0 0; padding: 0;
  display: grid; gap: 14px;
}
.split .text .bullets li {
  display: grid; grid-template-columns: 18px 1fr; gap: 12px;
  font-size: 15.5px; color: var(--ink-2); line-height: 1.55;
}
.split .text .bullets li::before {
  content: ""; display: block; width: 8px; height: 8px;
  background: var(--accent); border-radius: 999px; margin-top: 9px;
}
.split .text .bullets strong { color: var(--ink); font-weight: 600; }

/* metrics strip */
.metrics-strip { background: var(--paper); padding: 110px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.metrics-strip .kicker { text-align: center; margin-bottom: 12px; }
.metrics-strip h3 { text-align: center; font-size: clamp(18px, 1.6vw, 21px); font-weight: 500; color: var(--ink); margin: 0 0 56px 0; letter-spacing: -0.01em; }
.metrics-strip .grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.metric-cell {
  background: var(--paper);
  padding: 44px 32px;
  text-align: left;
}
.metric-cell .num {
  font-family: var(--mono); font-weight: 500;
  font-size: clamp(50px, 5.8vw, 76px);
  color: var(--ink); letter-spacing: -0.045em;
  line-height: 1; margin-bottom: 18px;
}
.metric-cell .label { font-size: 14.5px; color: var(--ink); line-height: 1.5; margin: 0 0 14px 0; }
.metric-cell .cite { display: block; margin-top: 4px; font-family: var(--mono); font-size: 11px; color: var(--muted-2); }

/* /about principles strip variant (no big numeric, no body) */
.principle-cell {
  background: var(--paper);
  padding: 44px 32px;
  text-align: left;
}
.principle-cell .num {
  font-family: var(--mono); font-size: clamp(36px, 3.4vw, 48px);
  font-weight: 500; color: var(--muted-2);
  letter-spacing: -0.02em; line-height: 1;
  margin-bottom: 20px;
}
.principle-cell .label {
  font-size: 18px; font-weight: 600; color: var(--ink);
  letter-spacing: -0.012em; margin: 0;
}

/* mechanism rows */
.mech-row {
  display: grid;
  grid-template-columns: 80px 1.05fr 1.25fr;
  gap: 48px;
  align-items: center;
  padding: 60px 0;
  border-top: 1px solid var(--line);
}
.mech-row:last-child { border-bottom: 1px solid var(--line); }
.mech-row .num { font-family: var(--mono); font-size: 14px; color: var(--muted-2); font-weight: 500; }
.mech-row .copy h3 { margin: 0 0 14px 0; max-width: 18ch; text-wrap: balance; }
.mech-row .copy p  { font-size: 16px; color: var(--muted); line-height: 1.6; margin: 0; max-width: 46ch; }
.mech-row .copy .tags { margin-top: 24px; display: flex; flex-wrap: wrap; gap: 6px 8px; }
.mech-row .copy .tags .tag {
  font-family: var(--mono); font-size: 11px;
  color: var(--ink); background: var(--paper);
  border: 1px solid var(--line-2); padding: 4px 10px;
  border-radius: 4px;
}

/* deploy / pillar card grid */
.cardgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 32px 32px;
  transition: transform 200ms var(--ease), border-color 200ms var(--ease), box-shadow 240ms var(--ease);
  position: relative;
  overflow: hidden;
  display: flex; flex-direction: column; gap: 14px;
}
.card:hover {
  transform: translateY(-4px);
  border-color: var(--ink);
  box-shadow: 0 24px 50px -18px rgba(11,13,16,0.18);
}
.card .tag { font-family: var(--mono); font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; margin: 0; }
.card h3 { font-size: 22px; font-weight: 600; letter-spacing: -0.015em; margin: 0; }
.card p  { font-size: 15px; color: var(--muted); line-height: 1.6; margin: 0; }
.card .sub { margin-top: auto; font-family: var(--mono); font-size: 12px; color: var(--muted); padding-top: 10px; }

/* dark banner (competitive reframe) */
.banner {
  background: var(--ink);
  color: var(--paper);
  padding: 140px 0;
  position: relative;
  overflow: hidden;
}
.banner .container { position: relative; z-index: 2; }
.banner p {
  font-size: clamp(24px, 3.2vw, 44px);
  font-weight: 500;
  line-height: 1.22;
  letter-spacing: -0.022em;
  max-width: 32ch; margin: 0 auto;
  text-align: center;
  text-wrap: balance;
}
.banner p .em { color: var(--paper); font-weight: 600; }
.banner p .dim { color: rgba(255,255,255,0.5); font-weight: 400; }
.banner p .line { display: block; }

/* closer */
.closer {
  background: var(--ink);
  color: var(--paper);
  padding: 150px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.closer .container { position: relative; z-index: 2; }
.closer .h-display, .closer .h2 { color: var(--paper); margin: 0 0 22px 0; text-wrap: balance; }
.closer .lede { margin: 0 auto 36px auto; max-width: 540px; color: rgba(255,255,255,0.66); }
.closer .cta-row { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }

/* careers / contact internal page wrap */
.page-wrap { padding-top: 72px; }

/* ============================================================
   FOOTER (simplified: no Trust column, no Account column, no compliance row)
   ============================================================ */
footer.site {
  background: var(--ink);
  color: rgba(255,255,255,0.55);
  padding: 72px 0 32px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}
footer.site .row-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
footer.site .col h4 {
  font-family: var(--mono);
  font-size: 11.5px;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase; letter-spacing: 0.12em;
  font-weight: 500;
  margin: 0 0 18px 0;
}
footer.site .col ul {
  list-style: none; margin: 0; padding: 0;
  display: grid; gap: 12px;
}
footer.site .col a {
  font-size: 14px;
  position: relative;
  transition: color 150ms ease;
}
footer.site .col a:hover { color: var(--paper); }
footer.site .brand-col p {
  margin: 16px 0 0 0;
  font-size: 13.5px;
  color: rgba(255,255,255,0.45);
  max-width: 38ch; line-height: 1.55;
}
footer.site .row-bottom {
  display: flex; justify-content: flex-end; align-items: center;
  gap: 16px;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 22px;
}
footer.site .small { font-size: 12.5px; }

/* ============================================================
   THIN-SECTION UTILITIES
   Glyph + mono numeral + serif label + mini-fragment pattern.
   Used by home product teaser, home deploy teaser, about
   principles strip, deploy posture trio, contact info column.
   ============================================================ */

/* mini-fragment: embeds existing .frag.* at smaller intrinsic size (no transform) */
.frag.mini { font-size: 11.5px; box-shadow: 0 1px 1px rgba(11,13,16,0.03), 0 16px 32px -18px rgba(11,13,16,0.18); }
.frag.mini .frag-head { padding: 9px 14px; font-size: 10.5px; }
.frag.mini.timeline .step { padding: 11px 14px; gap: 12px; }
.frag.mini.timeline .step .text { font-size: 12px; }
.frag.mini.timeline .step .text .ch { font-size: 10.5px; }
.frag.mini.timeline .step .when { font-size: 10.5px; }
.frag.mini.timeline .step .dot { width: 8px; height: 8px; border-width: 2px; }
.frag.mini.audit .row { padding: 10px 14px; gap: 10px; font-size: 11.5px; }
.frag.mini.audit .ts { font-size: 10.5px; }
.frag.mini.audit .regime { font-size: 9.5px; padding: 2px 7px; }
.frag.mini.topology { padding: 18px 16px 14px; }
.frag.mini.topology .row3 { gap: 8px; margin-bottom: 12px; }
.frag.mini.topology .box { padding: 14px 8px 12px; }
.frag.mini.topology .box .ico { font-size: 9px; margin-bottom: 6px; letter-spacing: 0.08em; }
.frag.mini.topology .box .name { font-size: 11.5px; }
.frag.mini.topology .joint { margin: 4px 8px 10px; }
.frag.mini.topology .joint::after { font-size: 9.5px; padding: 0 8px; }
.frag.mini.topology .foot { font-size: 9.5px; }

/* 32px glyph cell with hairline border */
.glyph-cell {
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  font-family: var(--mono);
  font-size: 16px;
  color: var(--ink);
  flex-shrink: 0;
}
.glyph-cell.dark {
  background: var(--ink); color: var(--paper); border-color: var(--ink);
}

/* thin-row: layout for glyph + numeral + label-stack */
.thin-row {
  display: grid;
  grid-template-columns: 36px auto 1fr;
  gap: 14px;
  align-items: center;
}
.thin-row .num {
  font-family: var(--mono);
  font-size: 11.5px; font-weight: 500;
  color: var(--muted-2);
  letter-spacing: 0.06em;
}
.thin-row .label-stack { min-width: 0; }
.thin-row .label-stack .label {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.15;
  margin: 0 0 4px 0;
  letter-spacing: -0.01em;
}
.thin-row .label-stack .one-liner {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
}

/* serif-line: epigraph caption under a principle/label */
.serif-line {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: var(--muted);
  line-height: 1.4;
  margin: 14px 0 0 0;
  max-width: 24ch;
}

/* status dots */
.status-dot {
  display: inline-block;
  width: 10px; height: 10px;
  border-radius: 50%;
  border: 1px solid var(--ink);
  background: transparent;
  vertical-align: middle;
  margin-right: 8px;
  flex-shrink: 0;
}
.status-dot.filled  { background: var(--ink); }
.status-dot.half    { background: linear-gradient(90deg, var(--ink) 50%, transparent 50%); }
.status-dot.outline { background: transparent; }
.status-dot.shipped { background: #2eb872; border-color: #2eb872; }

/* mono stamp: small positioned caption */
.mono.stamp {
  font-family: var(--mono);
  font-size: 10.5px;
  color: var(--muted-2);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* section footnote: mono caption inside a section, with optional CTA */
.section-footnote {
  font-family: var(--mono);
  font-size: 11.5px;
  color: var(--muted);
  text-align: center;
  margin-top: 36px;
}
.section-footnote a {
  color: var(--ink);
  border-bottom: 1px solid var(--accent);
  padding-bottom: 1px;
}

/* serif accent line: confident declarative line between headline and content */
.serif-accent {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(20px, 1.6vw, 24px);
  color: var(--ink-2);
  line-height: 1.35;
  margin: 18px 0 40px 0;
  max-width: 30ch;
  letter-spacing: -0.005em;
}
.serif-accent.center { margin-left: auto; margin-right: auto; text-align: center; }

/* thin-card: container used in the home product teaser 3-card row */
.thin-card-row {
  display: grid;
  grid-template-columns: 1.05fr 1fr 1.15fr;
  gap: 24px;
  align-items: stretch;
}
.thin-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px 0;
  display: flex; flex-direction: column;
  gap: 16px;
  overflow: hidden;
  transition: border-color 200ms var(--ease), transform 200ms var(--ease), box-shadow 240ms var(--ease);
}
.thin-card:hover {
  border-color: var(--ink);
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -16px rgba(11,13,16,0.14);
}
.thin-card .head {
  display: flex; align-items: center; gap: 14px;
}
.thin-card .head .num {
  font-family: var(--mono); font-size: 11.5px; color: var(--muted-2); font-weight: 500;
  letter-spacing: 0.06em;
}
.thin-card .label {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(22px, 2.2vw, 26px);
  color: var(--ink); line-height: 1.1; letter-spacing: -0.012em;
  margin: 0;
}
.thin-card p.one-liner {
  font-size: 14.5px; color: var(--muted); line-height: 1.55;
  margin: 0;
}
.thin-card .frag-slot {
  margin-top: auto;
  padding-top: 16px;
  overflow: hidden;
  min-height: 140px;
}

/* deploy row: 3-row grid for home deploy teaser bullets */
.deploy-row { padding: 14px 0; border-bottom: 1px solid var(--line); }
.deploy-row:first-child { border-top: 1px solid var(--line); }

/* posture-cell: deploy compliance trio variant of metric-cell */
.posture-cell {
  background: var(--paper);
  padding: 36px 30px 30px;
  position: relative;
}
.posture-cell .stamp {
  position: absolute; top: 22px; right: 24px;
}
.posture-cell .head-row {
  display: flex; align-items: center; gap: 4px; margin-bottom: 18px;
}
.posture-cell .head-row .name {
  font-family: var(--mono); font-weight: 500;
  font-size: clamp(28px, 2.8vw, 36px);
  color: var(--ink); letter-spacing: -0.025em; line-height: 1;
}
.posture-cell .label { font-size: 14.5px; color: var(--ink); line-height: 1.5; margin: 0 0 10px 0; }
.posture-cell .cite { display: block; font-family: var(--mono); font-size: 11px; color: var(--muted-2); }

/* spec-list: technical-spec-sheet row pattern for security/posture bullets.
   Used by /deploy security section. Mono caps key + body across an explicit
   2-column grid so label and value are visually distinct row units, not an
   inline strong + flowing text that wraps awkwardly. */
.spec-list { display: grid; gap: 0; margin-top: 4px; }
.spec-row {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 28px;
  align-items: baseline;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}
.spec-row:last-child { border-bottom: 1px solid var(--line); }
.spec-row .key {
  font-family: var(--mono);
  font-size: 11.5px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.spec-row .val {
  font-size: 14.5px;
  color: var(--ink-2);
  line-height: 1.55;
}
.spec-row.in-progress .key::after {
  content: " · in progress";
  color: var(--accent);
  font-weight: 500;
  letter-spacing: 0.04em;
}
@media (max-width: 980px) {
  .spec-row { grid-template-columns: 1fr; gap: 4px; padding: 14px 0; }
}

/* contact info column: glyph + mono label + serif value */
.contact-meta {
  margin-top: 32px;
  display: grid;
  gap: 14px;
}
.contact-meta .row {
  display: grid;
  grid-template-columns: 36px 78px 1fr;
  gap: 14px;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}
.contact-meta .row:last-child { border-bottom: 0; }
.contact-meta .row .key {
  font-family: var(--mono); font-size: 11px;
  color: var(--muted); text-transform: uppercase; letter-spacing: 0.12em;
}
.contact-meta .row .val {
  font-family: var(--serif); font-style: italic;
  font-size: 18px; color: var(--ink); letter-spacing: -0.005em;
}
.contact-meta .foot {
  margin-top: 8px;
  font-family: var(--mono); font-size: 11px; color: var(--muted-2);
}

@media (max-width: 980px) {
  .thin-card-row { grid-template-columns: 1fr; gap: 16px; }
  .frag.mini { transform: scale(0.92); width: 109%; margin-bottom: -8%; }
  .contact-meta .row { grid-template-columns: 32px 70px 1fr; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .mech-row { grid-template-columns: 56px 1fr 1.1fr; gap: 32px; }
}
@media (max-width: 980px) {
  nav.top ul { display: none; }
  nav.top .row { height: 60px; }
  .hero-home { padding: 110px 0 80px 0; min-height: 88vh; }
  .hero-home .grid { grid-template-columns: 1fr; gap: 56px; }
  .hero-home h1 { max-width: 18ch; }
  .hero-home .scroll-cue { display: none; }
  .pad-xl, .pad-lg { padding: 90px 0; }
  .split { padding: 90px 0; }
  .split .grid, .split.reverse .grid { grid-template-columns: 1fr; gap: 40px; }
  .split.reverse .text { order: 1; } .split.reverse .visual { order: 2; }
  .metrics-strip .grid { grid-template-columns: 1fr; }
  .metric-cell, .principle-cell { padding: 36px 28px; }
  .metric-cell .num { font-size: clamp(44px, 12vw, 60px); margin-bottom: 14px; }
  .mech-row { grid-template-columns: 1fr; gap: 22px; padding: 40px 0; }
  .mech-row .num {
    font-size: 12px; color: var(--accent);
    letter-spacing: 0.14em; text-transform: uppercase;
  }
  .cardgrid { grid-template-columns: 1fr; }
  .banner { padding: 90px 0; }
  .closer { padding: 100px 0; }
  footer.site .row-top { grid-template-columns: 1fr 1fr 1fr; gap: 32px 24px; }
  footer.site .brand-col { grid-column: 1 / -1; }
  .hero-page { padding: 112px 0 56px 0; }
  .frag.tilt-right, .frag.tilt-left { transform: none; }
}
@media (max-width: 600px) {
  .full-bleed-photo { height: 50vh; min-height: 320px; }
  .full-bleed-photo .quote {
    font-size: clamp(22px, 6vw, 34px);
    top: 42%;
    max-width: 18ch;
  }
  .full-bleed-photo .quote .serif { display: inline; }
  .full-bleed-photo .caption { bottom: 24px; font-size: 11px; }
  .essay { padding-left: 24px; }
  .essay p { font-size: 16.5px; }
  .essay p:first-of-type { font-size: 19px; }
}
