/* ============================================================
   Kyroq · Design System v1.0 · May 2026
   Tokens lifted verbatim from the design guidelines.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@400;500;600;700&family=Archivo+Black&family=JetBrains+Mono:wght@400;500;600&display=swap');

:root {
  /* Surface */
  --bg: #FAF7F0;
  --bg-soft: #F1ECE0;
  --paper: #FFFFFF;
  --ink: #0B0B0A;
  --ink-2: #1A1A18;
  --muted: #6B675E;
  --line: #1d1d1b22;
  --line-strong: #1d1d1b3a;

  /* Accent */
  --accent: #1B3A26;
  --accent-2: #2E5A3A;
  --accent-tint: #B8E0BF;

  /* Status */
  --ok: #B8E0BF;
  --ok-text: #1B3A26;
  --warn: #E6CB8B;
  --warn-text: #6c4c1a;
  --danger: #b14242;

  /* Space — 8pt */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 40px;
  --space-8: 56px;
  --space-9: 80px;
  --space-10: 120px;

  /* Layout */
  --maxw: 1320px;
  --pad: 40px;
  --radius: 14px;
  --radius-sm: 8px;
  --radius-pill: 999px;

  /* Type */
  --sans: "Archivo", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --display: "Archivo Black", "Archivo", sans-serif;
  --mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;

  /* Type scale */
  --text-display-1: clamp(54px, 7.4vw, 116px);
  --text-display-2: clamp(40px, 5.4vw, 80px);
  --text-display-3: clamp(28px, 3vw, 38px);
  --text-h3: 26px;
  --text-lede: 17px;
  --text-body: 15px;
  --text-small: 13px;
  --text-mono: 11px;

  /* Motion */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

@media (max-width: 980px) {
  :root {
    --pad: 24px;
    --space-10: 56px;
  }
}

/* ============================================================
   Reset
   ============================================================ */

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink-2);
  font-family: var(--sans);
  font-size: var(--text-body);
  line-height: 1.55;
  font-feature-settings: "kern", "liga", "calt", "ss01";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, picture, video, svg { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }   /* No underlines anywhere — design rule */

::selection { background: var(--ink); color: var(--bg); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ============================================================
   Layout shell
   ============================================================ */

.shell {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding-inline: var(--pad);
}

.section { padding-block: var(--space-10); }
.section--tight { padding-block: var(--space-9); }

.section-head {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--space-8);
  margin-bottom: var(--space-9);
}

.section-head h2 {
  font: 500 var(--text-display-2)/1 var(--sans);
  letter-spacing: -0.03em;
  margin: 0;
  max-width: 14ch;
  color: var(--ink);
}

.section-head .section-lede {
  align-self: end;
  color: var(--ink-2);
  font-size: var(--text-lede);
  line-height: 1.55;
  max-width: 56ch;
}

@media (max-width: 980px) {
  .section-head { grid-template-columns: 1fr; gap: var(--space-5); }
}

/* ============================================================
   Typography utilities
   ============================================================ */

.display-1 {
  font: 500 var(--text-display-1)/.96 var(--sans);
  letter-spacing: -0.035em;
  margin: 0;
  color: var(--ink);
}

.display-3 {
  font: 500 var(--text-display-3)/1.1 var(--sans);
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--ink);
}

.h3 {
  font: 500 var(--text-h3)/1.1 var(--sans);
  letter-spacing: -0.015em;
  margin: 0;
  color: var(--ink);
}

.lede {
  font-size: var(--text-lede);
  line-height: 1.55;
  color: var(--ink-2);
}

.muted { color: var(--muted); }

.numeral {
  font-family: var(--display);
  font-size: clamp(48px, 5vw, 72px);
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--ink);
}

.kicker,
.eyebrow-text {
  font-family: var(--mono);
  font-size: var(--text-mono);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  font-weight: 500;
}

.muted-mono {
  font-family: var(--mono);
  font-size: var(--text-mono);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  font-weight: 500;
}

/* ============================================================
   NAV (top shell)
   ============================================================ */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 247, 240, 0.92);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: var(--space-4);
}

.wordmark {
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.nav-links {
  display: flex;
  gap: var(--space-6);
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-size: var(--text-small);
  color: var(--ink-2);
  transition: color .2s var(--ease);
}

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

.nav-cta { display: flex; gap: var(--space-3); align-items: center; }

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  color: var(--ink);
  padding: 8px;
  cursor: pointer;
}

@media (max-width: 980px) {
  .nav-links { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav.is-open .nav-links {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    padding: var(--space-5) var(--pad);
  }
}

/* ============================================================
   Buttons (atom)
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: var(--radius-pill);
  font: 500 14px/1 var(--sans);
  border: 1px solid var(--ink);
  white-space: nowrap;
  cursor: pointer;
  transition: transform .2s var(--ease), background .2s var(--ease), color .2s var(--ease);
  text-decoration: none;
  background: transparent;
  color: var(--ink);
}

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

.btn--primary { background: var(--ink); color: var(--bg); }
.btn--primary:hover { background: var(--ink-2); }
.btn--ghost { background: transparent; color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--bg); }
.btn--disc {
  background: var(--bg-soft);
  color: var(--ink);
  border-color: var(--line);
  padding: 10px 16px;
  font-size: var(--text-small);
}
.btn--disc:hover { background: var(--ink); color: var(--bg); border-color: var(--ink); }

.btn--lg { padding: 16px 26px; font-size: 15px; }

.btn--on-dark { background: var(--bg); color: var(--ink); border-color: var(--bg); }
.btn--on-dark-ghost {
  background: transparent;
  color: var(--bg);
  border-color: var(--bg);
}
.btn--on-dark-ghost:hover { background: var(--bg); color: var(--ink); }

.btn .arrow { transition: transform .2s var(--ease); }
.btn:hover .arrow { transform: translateX(2px); }

/* Disc-style read-more link */
.read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--text-small);
  color: var(--ink);
  font-weight: 500;
  transition: gap .2s var(--ease);
}
.read-more:hover { gap: 10px; color: var(--accent); }

/* ============================================================
   Eyebrow pill + tags (atom)
   ============================================================ */

.eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--line-strong);
  background: var(--bg);
  font-family: var(--mono);
  font-size: var(--text-mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
}

.eyebrow-pill .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  background: var(--bg-soft);
  font-family: var(--mono);
  font-size: var(--text-mono);
  letter-spacing: 0.06em;
  text-transform: none;
  color: var(--ink-2);
  border: 1px solid var(--line);
}

.tag--ok { background: var(--ok); color: var(--ok-text); border-color: transparent; }
.tag--warn { background: var(--warn); color: var(--warn-text); border-color: transparent; }

/* ============================================================
   Input field (atom)
   ============================================================ */

.input-row {
  display: flex;
  gap: var(--space-3);
  align-items: center;
  flex-wrap: wrap;
}

.field {
  width: 100%;
  padding: 14px 22px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--line-strong);
  background: var(--paper);
  color: var(--ink);
  font: 400 var(--text-body)/1.4 var(--sans);
  outline: none;
  transition: border-color .2s var(--ease);
}

.field:focus { border-color: var(--ink); }
.field::placeholder { color: var(--muted); }

.field--block { border-radius: 12px; }

textarea.field { resize: vertical; min-height: 120px; padding: 16px 20px; }

select.field {
  appearance: none;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="8" viewBox="0 0 12 8"><path fill="%230B0B0A" d="M6 8 0 0h12z"/></svg>');
  background-repeat: no-repeat;
  background-position: right 22px center;
  padding-right: 44px;
}

label.field-label {
  display: block;
  font-family: var(--mono);
  font-size: var(--text-mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}

/* ============================================================
   HERO (home) — matches the May 2026 mock exactly
   ============================================================ */

.hero { padding-top: var(--space-7); padding-bottom: var(--space-9); }

.hero .eyebrow-pill { margin-bottom: var(--space-7); }

.hero h1 {
  font: 500 var(--text-display-1)/.96 var(--sans);
  letter-spacing: -0.035em;
  margin: 0;
  max-width: 18ch;
  color: var(--ink);
}

.hero h1 .accent-word { color: var(--accent); }

.hero-meta-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: var(--space-7);
  align-items: end;
  margin-top: var(--space-7);
  padding-bottom: var(--space-7);
}

.hero-meta-row .lede { max-width: 42ch; margin: 0; }

.hero-cta-row { display: flex; gap: var(--space-3); flex-wrap: wrap; align-items: flex-start; padding-top: 4px; justify-content: flex-start; }

/* Trust baseline — a quiet single line below the film */
.hero-trust-baseline {
  display: flex;
  gap: var(--space-5);
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-top: var(--space-5);
  margin-top: var(--space-7);
  border-top: 1px solid var(--line);
}
.hero-trust-baseline .badges {
  font-family: var(--mono);
  font-size: var(--text-mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  white-space: nowrap;
}
.hero-trust-baseline .sub {
  font-size: var(--text-small);
  color: var(--muted);
}

/* Hero film — stylised SVG-style (no photo) per the mock */

.hero-film {
  position: relative;
  aspect-ratio: 21 / 9;
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  background: radial-gradient(120% 90% at 78% 38%, #3f6d4d 0%, #1c3825 38%, #0f1e15 78%);
  isolation: isolate;
}

/* Horizontal scanlines (subtle, fine) */
.hero-film::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    180deg,
    rgba(250, 247, 240, 0.045) 0,
    rgba(250, 247, 240, 0.045) 1px,
    transparent 1px,
    transparent 5px
  );
  z-index: 1;
  pointer-events: none;
  mix-blend-mode: screen;
}

/* Soft mint orb — top-right, brighter centre, fades out cleanly */
.hero-film::after {
  content: "";
  position: absolute;
  top: -22%;
  right: -4%;
  width: 62%;
  aspect-ratio: 1.45 / 1;
  border-radius: 50%;
  background:
    radial-gradient(closest-side, rgba(220, 240, 222, 0.92) 0%, rgba(184, 224, 191, 0.65) 30%, rgba(184, 224, 191, 0.18) 60%, rgba(184, 224, 191, 0) 78%);
  filter: blur(6px);
  z-index: 2;
  pointer-events: none;
}

/* Topographic / contour lines — adds the "instrument panel" feel */
.hero-film .film-contours {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  opacity: 0.55;
}

.hero-film .film-overlay-top,
.hero-film .film-overlay-bottom {
  position: absolute;
  left: var(--space-7);
  right: var(--space-7);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  color: rgba(250, 247, 240, .75);
  font-family: var(--mono);
  font-size: var(--text-mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  z-index: 3;
}

.hero-film .film-overlay-top { top: var(--space-5); }
.hero-film .film-overlay-bottom { bottom: var(--space-5); align-items: flex-end; }

.hero-film .film-line {
  position: absolute;
  top: 50%;
  left: var(--space-7);
  transform: translateY(-50%);
  font: 500 clamp(22px, 2.8vw, 38px)/1.2 var(--sans);
  letter-spacing: -0.015em;
  color: rgba(250, 247, 240, 0.92);
  max-width: 30ch;
  z-index: 3;
}

.hero-film .film-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(11, 11, 10, .55);
  color: var(--bg);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-family: var(--mono);
  font-size: var(--text-mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid rgba(250, 247, 240, 0.20);
}

.hero-film .film-chip .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent-tint);
  display: inline-block;
  animation: pulse 2.4s ease-in-out infinite;
}

.hero-film .film-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(250, 247, 240, .80);
}

.hero-film .film-pip {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ff5b3a;
  box-shadow: 0 0 0 0 rgba(255, 91, 58, 0.7);
  animation: kq-live 1.6s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes kq-live {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 91, 58, 0.5); opacity: .9; }
  50%      { box-shadow: 0 0 0 5px rgba(255, 91, 58, 0); opacity: 1; }
}

@keyframes pulse {
  0%, 100% { opacity: .5; }
  50% { opacity: 1; }
}

@media (max-width: 980px) {
  .hero-meta-row { grid-template-columns: 1fr; gap: var(--space-5); }
  .hero-trust { text-align: left; }
  .hero-film { aspect-ratio: 4 / 3; }
  .hero-film .film-line { font-size: 18px; left: var(--space-5); }
  .hero-film .film-overlay-top, .hero-film .film-overlay-bottom { left: var(--space-5); right: var(--space-5); }
}

/* ============================================================
   Compliance ticker — animated marquee
   ============================================================ */

.ticker {
  border-block: 1px solid var(--line);
  background: var(--bg-soft);
  overflow: hidden;
  position: relative;
}

/* Soft fade at edges so labels don't pop in/out hard */
.ticker::before,
.ticker::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.ticker::before { left: 0; background: linear-gradient(90deg, var(--bg-soft), transparent); }
.ticker::after  { right: 0; background: linear-gradient(-90deg, var(--bg-soft), transparent); }

.ticker-track {
  display: flex;
  gap: var(--space-7);
  width: max-content;
  padding-block: var(--space-7);
  animation: kq-ticker 60s linear infinite;
}

.ticker:hover .ticker-track { animation-play-state: paused; }

@keyframes kq-ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .ticker-track { animation: none; transform: translateX(0); }
}

.ticker-track > .ticker-row {
  display: flex;
  gap: var(--space-7);
  align-items: center;
  flex-shrink: 0;
}

/* Big, bold, sans — billboard energy. Static muted color. */
.ticker-row span {
  font-family: var(--sans);
  font-size: clamp(20px, 1.6vw, 26px);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
  line-height: 1;
}

/* Replace text "·" with a real round dot — more confident than the punctuation glyph */
.ticker-row .sep {
  font-size: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--muted);
  opacity: 0.55;
  align-self: center;
  flex-shrink: 0;
}

/* ============================================================
   Pillar 3-up
   ============================================================ */

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}

.pillar {
  border-right: 1px solid var(--line);
  padding: var(--space-7) var(--space-5);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  transition: background .2s var(--ease);
  text-decoration: none;
  color: inherit;
}
.pillar:last-child { border-right: 0; }
.pillar:hover { background: var(--bg-soft); }
.pillar h3 { max-width: 14ch; }
.pillar p { color: var(--ink-2); font-size: var(--text-body); margin: 0; max-width: 36ch; }
.pillar .read-more { margin-top: auto; padding-top: var(--space-5); }
.pillar .pillar-num { color: var(--ink); font-weight: 600; }

@media (max-width: 980px) {
  .pillars { grid-template-columns: 1fr; }
  .pillar { border-right: 0; border-bottom: 1px solid var(--line); }
  .pillar:last-child { border-bottom: 0; }
}

/* ============================================================
   Showcase (dark)
   ============================================================ */

.showcase {
  background: var(--ink);
  color: var(--bg);
  border-radius: var(--radius);
  padding: var(--space-9) var(--space-8);
  margin-block: var(--space-10);
}

.showcase-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: var(--space-8);
  align-items: start;
}

.showcase h2 { color: var(--bg); max-width: 16ch; }

.showcase .section-lede { color: rgba(250,247,240,.75); }

.showcase .features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: var(--space-7);
  border-top: 1px solid rgba(250,247,240,.12);
}

.showcase .feature {
  padding: var(--space-5) var(--space-5) var(--space-5) 0;
  border-bottom: 1px solid rgba(250,247,240,.12);
  border-right: 1px solid rgba(250,247,240,.12);
}
.showcase .feature:nth-child(2n) { padding-right: 0; padding-left: var(--space-5); border-right: 0; }
.showcase .feature:nth-last-child(-n+2) { border-bottom: 0; }

.showcase .feature h4 {
  font: 600 14px/1.2 var(--sans);
  margin: 0 0 6px;
  color: var(--bg);
  letter-spacing: -0.005em;
}
.showcase .feature p {
  margin: 0;
  font-size: var(--text-small);
  color: rgba(250,247,240,.65);
  line-height: 1.5;
}

/* Dashboard mock */
.dashboard {
  background: var(--ink);
  border: 1px solid rgba(250,247,240,.10);
  border-radius: 12px;
  overflow: hidden;
}

.dashboard-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px var(--space-4);
  border-bottom: 1px solid rgba(250,247,240,.10);
}
.dashboard-bar .dot { width: 9px; height: 9px; border-radius: 50%; background: rgba(250,247,240,.20); }
.dashboard-bar .url {
  font-family: var(--mono);
  font-size: var(--text-mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(250,247,240,.65);
  margin-left: 8px;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5);
  padding: var(--space-5);
}

.dashboard-num {
  font: 600 56px/1 var(--sans);
  color: var(--bg);
  letter-spacing: -0.035em;
  margin-top: 4px;
}

.dashboard .sub {
  font-size: var(--text-small);
  color: var(--accent-tint);
  margin-top: var(--space-3);
  font-family: var(--mono);
  letter-spacing: 0.04em;
}

.bars {
  display: flex;
  align-items: end;
  gap: 6px;
  height: 60px;
  margin-top: var(--space-6);
}
.bars span {
  flex: 1;
  background: var(--accent-2);
  border-radius: 2px;
  transition: opacity .2s var(--ease);
}
.bars span.is-current { background: var(--accent-tint); }

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

.exception-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(250,247,240,.10);
}
.exception-list li:last-child { border-bottom: 0; }

.exception-list .id {
  font-family: var(--mono);
  font-size: var(--text-mono);
  color: rgba(250,247,240,.65);
  letter-spacing: 0.06em;
}

.exception-list .label {
  font-size: var(--text-small);
  color: var(--bg);
}

.status-pill {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  border: 1px solid currentColor;
  font-weight: 500;
  white-space: nowrap;
  flex-shrink: 0;
}
.status-pill--verified { color: var(--accent-tint); }
.status-pill--review { color: var(--warn); }

@media (max-width: 980px) {
  .showcase-grid { grid-template-columns: 1fr; }
  .showcase .features { grid-template-columns: 1fr; }
  .showcase { padding: var(--space-7) var(--space-5); }
  .dashboard-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   Insights feed (1 lead + 5 grid)
   ============================================================ */

.insights-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-7);
}

.insights-grid .lead { grid-row: span 2; }

.article-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  text-decoration: none;
  color: inherit;
}

.article-card .thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-soft);
}

.article-card.lead .thumb { aspect-ratio: 6 / 5; }

.article-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}

.article-card:hover .thumb img { transform: scale(1.025); }

.article-card .meta {
  font-family: var(--mono);
  font-size: var(--text-mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0;
}

.article-card h3 {
  font: 500 26px/1.15 var(--sans);
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0;
  max-width: 22ch;
}

.article-card.lead h3 { font-size: clamp(28px, 3vw, 40px); line-height: 1.08; max-width: 18ch; }

.article-card .dek {
  color: var(--ink-2);
  font-size: var(--text-body);
  margin: 0;
  max-width: 56ch;
}

.insights-3up {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-7);
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  align-items: center;
  padding-block: var(--space-5);
}

.filter-chip {
  font-family: var(--sans);
  font-size: var(--text-small);
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--line-strong);
  background: var(--bg);
  color: var(--ink-2);
  cursor: pointer;
  transition: all .15s var(--ease);
}
.filter-chip:hover { border-color: var(--ink); }
.filter-chip[aria-current="true"], .filter-chip.is-active { background: var(--ink); color: var(--bg); border-color: var(--ink); }

@media (max-width: 980px) {
  .insights-grid { grid-template-columns: 1fr; }
  .insights-grid .lead { grid-row: auto; }
  .insights-3up { grid-template-columns: 1fr; }
}

/* ============================================================
   Metrics 4-up
   ============================================================ */

.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
}
.metrics--3 { grid-template-columns: repeat(3, 1fr); }

.metric {
  padding: var(--space-7) var(--space-5);
  border-right: 1px solid var(--line);
}
.metric:last-child { border-right: 0; }
.metric .numeral { white-space: nowrap; font-size: clamp(40px, 4.2vw, 60px); line-height: 1; letter-spacing: -0.02em; }
.metric .label {
  margin-top: var(--space-3);
  color: var(--muted);
  font-size: var(--text-small);
  max-width: 22ch;
}

/* ============================================================
   Compare side-by-side (Today vs Kyroq)
   ============================================================ */
.compare { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-7); margin-top: var(--space-9); }
@media (max-width: 980px) { .compare { grid-template-columns: 1fr; } }
.bullet-tight { list-style: none; margin: 0; padding: 0; }
.bullet-tight li { padding: var(--space-3) 0; border-top: 1px solid rgba(0,0,0,0.08); font-size: var(--text-body); }
.bullet-tight li:first-child { border-top: 0; }
.tier--featured .bullet-tight li { border-top: 1px solid rgba(250,247,240,0.12); }
.display-climax { font: 500 clamp(36px, 4.8vw, 64px)/1.05 var(--sans); letter-spacing: -0.03em; max-width: 22ch; margin: var(--space-9) auto 0; text-align: center; }

/* ============================================================
   Who-buys archetype grid — text-only, editorial
   ============================================================ */
.archetypes { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-top: 1px solid var(--line); }
.archetype { padding: var(--space-7) var(--space-6); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); display: block; transition: background 0.15s ease; }
.archetype:nth-child(2n) { border-right: 0; }
.archetype:nth-last-child(-n+2):not(:nth-child(odd):last-child) { border-bottom: 0; }
.archetype:hover { background: rgba(27,58,38,0.03); }
.archetype .num { font: 500 clamp(40px, 4vw, 56px)/1 var(--sans); color: var(--muted); letter-spacing: -0.02em; }
.archetype h3 { font: 500 clamp(22px, 2vw, 28px)/1.15 var(--sans); letter-spacing: -0.02em; margin: var(--space-5) 0 var(--space-3); max-width: 22ch; }
.archetype .dek { color: var(--ink-2); max-width: 50ch; }
.archetype .read-more { margin-top: var(--space-5); display: inline-block; }
@media (max-width: 780px) {
  .archetypes { grid-template-columns: 1fr; }
  .archetype { border-right: 0; }
}

/* ============================================================
   Engagement options — numbered, no images
   ============================================================ */
.engagement-3up { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--line); margin-top: var(--space-8); }
.engagement-card { padding: var(--space-7) var(--space-6); border-right: 1px solid var(--line); display: flex; flex-direction: column; gap: var(--space-4); }
.engagement-card:last-child { border-right: 0; }
.engagement-card .num { font: 500 clamp(40px, 4vw, 56px)/1 var(--sans); color: var(--accent); letter-spacing: -0.02em; }
.engagement-card h3 { font: 500 clamp(22px, 2vw, 28px)/1.15 var(--sans); letter-spacing: -0.02em; margin: 0; max-width: 18ch; }
.engagement-card .dek { color: var(--ink-2); }
.engagement-card .read-more { margin-top: auto; }
@media (max-width: 780px) {
  .engagement-3up { grid-template-columns: 1fr; }
  .engagement-card { border-right: 0; border-bottom: 1px solid var(--line); }
  .engagement-card:last-child { border-bottom: 0; }
}

@media (max-width: 980px) {
  .metrics { grid-template-columns: 1fr 1fr; }
  .metric { border-right: 0; border-bottom: 1px solid var(--line); }
  .metric:nth-child(odd) { border-right: 1px solid var(--line); }
  .metric:nth-last-child(-n+2) { border-bottom: 0; }
}

/* ============================================================
   CTA band
   ============================================================ */

.cta-band {
  background: var(--ink);
  color: var(--bg);
  border-radius: var(--radius);
  padding: var(--space-9) var(--space-8);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-7);
  align-items: end;
  margin-block: var(--space-9);
}

.cta-band h2 {
  margin: 0;
  font: 500 var(--text-display-2)/1 var(--sans);
  letter-spacing: -0.03em;
  max-width: 14ch;
  color: var(--bg);
}

.cta-band-aside {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.cta-band-aside p { color: rgba(250,247,240,.75); margin: 0; font-size: var(--text-lede); max-width: 36ch; }

@media (max-width: 980px) {
  .cta-band { grid-template-columns: 1fr; padding: var(--space-7) var(--space-5); }
}

/* ============================================================
   Footer
   ============================================================ */

.footer {
  border-top: 1px solid var(--line);
  background: var(--bg-soft);
  padding-block: var(--space-9);
  margin-top: var(--space-9);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: var(--space-7);
  margin-bottom: var(--space-7);
}

.footer-brand .wordmark { display: inline-block; margin-bottom: var(--space-4); }
.footer-brand p { color: var(--muted); font-size: var(--text-small); max-width: 30ch; margin: 0 0 var(--space-3); }
.footer-brand .locations { color: var(--muted); font-size: var(--text-mono); font-family: var(--mono); letter-spacing: 0.12em; text-transform: uppercase; }

.footer-col h4 {
  font-family: var(--mono);
  font-size: var(--text-mono);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 var(--space-4);
  font-weight: 500;
}

.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.footer-col a { font-size: var(--text-small); color: var(--ink-2); transition: color .2s var(--ease); }
.footer-col a:hover { color: var(--accent); }

.footer-base {
  border-top: 1px solid var(--line);
  padding-top: var(--space-5);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.footer-base p, .footer-base a {
  font-family: var(--mono);
  font-size: var(--text-mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0;
}

.footer-base .legal-links { display: flex; gap: var(--space-5); }
.footer-base .legal-links a:hover { color: var(--accent); }

@media (max-width: 980px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
}

/* ============================================================
   Page header (inner pages)
   ============================================================ */

.page-header {
  padding-block: var(--space-9) var(--space-8);
  border-bottom: 1px solid var(--line);
}

.page-header .breadcrumb {
  display: flex;
  gap: 6px;
  margin-bottom: var(--space-5);
  font-family: var(--mono);
  font-size: var(--text-mono);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.page-header .breadcrumb a:hover { color: var(--accent); }
.page-header .breadcrumb .sep { opacity: .5; }

.page-header h1 {
  font: 500 var(--text-display-2)/.98 var(--sans);
  letter-spacing: -0.03em;
  margin: 0;
  color: var(--ink);
  max-width: 18ch;
}

.page-header .lede {
  margin-top: var(--space-5);
  max-width: 64ch;
}

/* ============================================================
   Article view
   ============================================================ */

.article-shell {
  display: grid;
  grid-template-columns: 1fr min(720px, 100%) 1fr;
  padding-block: var(--space-9);
}

.article-shell > * { grid-column: 2; }

.article-shell .hero-img {
  grid-column: 1 / -1;
  width: 100%;
  aspect-ratio: 16 / 9;
  margin-bottom: var(--space-8);
  border-radius: 0;
  overflow: hidden;
  max-height: 70vh;
}

.article-shell .hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-meta {
  font-family: var(--mono);
  font-size: var(--text-mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: var(--space-4);
}

.article-title {
  font: 500 var(--text-display-2)/1.02 var(--sans);
  letter-spacing: -0.03em;
  margin: 0 0 var(--space-5);
  color: var(--ink);
  max-width: 16ch;
}

.article-author {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding-block: var(--space-5);
  border-block: 1px solid var(--line);
  margin-bottom: var(--space-7);
}

.author-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--bg-soft); object-fit: cover; }
.article-author .name { font-size: var(--text-body); font-weight: 500; color: var(--ink); }
.article-author .role { font-family: var(--mono); font-size: var(--text-mono); text-transform: uppercase; letter-spacing: .12em; color: var(--muted); }

.prose {
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-2);
}
.prose p { margin: 0 0 var(--space-5); }
.prose h2 {
  font: 500 32px/1.15 var(--sans);
  letter-spacing: -0.02em;
  margin: var(--space-9) 0 var(--space-4);
  color: var(--ink);
}
.prose h3 {
  font: 500 22px/1.2 var(--sans);
  letter-spacing: -0.01em;
  margin: var(--space-7) 0 var(--space-3);
  color: var(--ink);
}
.prose strong { font-weight: 600; color: var(--ink); }
.prose ul, .prose ol { margin: 0 0 var(--space-5); padding-left: var(--space-5); }
.prose li { margin-bottom: var(--space-2); }
.prose a { color: var(--accent); border-bottom: 1px solid var(--accent-tint); }
.prose a:hover { background: var(--accent-tint); color: var(--accent); }
.prose code { font-family: var(--mono); font-size: 0.92em; background: var(--bg-soft); padding: 1px 6px; border-radius: 4px; }

.pull-quote {
  margin: var(--space-8) 0;
  padding: var(--space-6) 0 var(--space-6) var(--space-5);
  border-left: 4px solid var(--accent);
  font: 500 24px/1.35 var(--sans);
  letter-spacing: -0.01em;
  color: var(--ink);
}

.ai-cite {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-left: 4px solid var(--accent);
  padding: var(--space-5) var(--space-6);
  margin-block: var(--space-7);
  border-radius: var(--radius-sm);
}
.ai-cite .label {
  font-family: var(--mono);
  font-size: var(--text-mono);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-3);
}
.ai-cite .primary { font: 500 17px/1.45 var(--sans); color: var(--ink); margin: 0 0 var(--space-3); }
.ai-cite .supporting { font-size: var(--text-body); color: var(--ink-2); margin: 0 0 var(--space-2); }
.ai-cite .hedge { font-size: var(--text-small); color: var(--muted); margin: 0; }

.faq-block {
  margin-block: var(--space-9);
  padding-block: var(--space-7);
  border-top: 1px solid var(--line);
}
.faq-block h2 { font: 500 32px/1.15 var(--sans); margin: 0 0 var(--space-5); }
.faq details {
  border-bottom: 1px solid var(--line);
  padding-block: var(--space-4);
}
.faq summary {
  font: 500 17px/1.4 var(--sans);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: var(--space-4);
  color: var(--ink);
}
.faq summary::after { content: "+"; color: var(--accent); font-family: var(--mono); font-size: 22px; }
.faq details[open] summary::after { content: "−"; }
.faq details > p { margin: var(--space-3) 0 0; color: var(--ink-2); font-size: var(--text-body); }

/* ============================================================
   Pricing
   ============================================================ */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
  margin-block: var(--space-7);
}

.tier {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: var(--space-7);
  background: var(--bg);
  display: flex;
  flex-direction: column;
}
.tier--featured { border-color: var(--ink); background: var(--ink); color: var(--bg); }
.tier--featured h3,
.tier--featured .price-num { color: var(--bg); }
.tier--featured .price-sub,
.tier--featured ul li { color: rgba(250,247,240,.75); }
.tier--featured ul li::before { color: var(--accent-tint); }

.tier h3 { font: 500 22px/1.2 var(--sans); margin: 0 0 var(--space-2); color: var(--ink); }
.tier .price { display: flex; align-items: baseline; gap: 8px; margin-bottom: var(--space-5); }
.tier .price-num { font: 500 44px/1 var(--sans); color: var(--ink); letter-spacing: -0.025em; }
.tier .price-sub { font-size: var(--text-small); color: var(--muted); }

.tier ul { list-style: none; padding: 0; margin: 0 0 var(--space-7); display: flex; flex-direction: column; gap: var(--space-3); }
.tier li { font-size: var(--text-body); color: var(--ink-2); padding-left: 22px; position: relative; }
.tier li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-weight: 700;
}

.tier .btn { margin-top: auto; align-self: flex-start; }

@media (max-width: 980px) {
  .pricing-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   Solutions / Industry
   ============================================================ */

.solutions-hero {
  display: grid;
  grid-template-columns: 6fr 6fr;
  gap: var(--space-8);
  align-items: center;
  padding-block: var(--space-9);
}

.solutions-hero img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  border-radius: var(--radius);
}

.logos-strip {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-7);
  align-items: center;
  justify-content: center;
  padding-block: var(--space-7);
  border-block: 1px solid var(--line);
  background: var(--bg-soft);
}

.logo-name {
  font-family: var(--display);
  font-size: 18px;
  color: var(--muted);
  letter-spacing: -0.01em;
  opacity: .8;
}

.problem-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  padding-block: var(--space-9);
}

.case-card {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: var(--space-7);
  align-items: stretch;
  background: var(--bg-soft);
  border-radius: var(--radius);
  padding: var(--space-7);
  margin-block: var(--space-9);
}
.case-card .cs-img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: var(--radius-sm);
  min-height: 260px;
}
.case-card .stats { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-5); margin-block: var(--space-5); }
.case-card .stat .num { font-family: var(--display); font-size: 36px; color: var(--ink); letter-spacing: -0.02em; }
.case-card .stat .lab { font-family: var(--mono); font-size: var(--text-mono); text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted); margin-top: 4px; }

@media (max-width: 980px) {
  .solutions-hero, .problem-2col, .case-card { grid-template-columns: 1fr; }
}

/* ============================================================
   About
   ============================================================ */

.statement {
  padding-block: var(--space-10) var(--space-8);
  font: 500 clamp(36px, 4vw, 64px)/1.05 var(--sans);
  letter-spacing: -0.025em;
  max-width: 22ch;
  color: var(--ink);
  margin: 0;
}

.about-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  padding-block: var(--space-7);
}
.about-cols p { font-size: var(--text-lede); color: var(--ink-2); margin: 0 0 var(--space-4); }

/* Two-founder layout: 2 large editorial cards, each clickable, photo + bio side-by-side */
.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-7);
  padding-block: var(--space-9);
}

.team-card {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: var(--space-5);
  text-decoration: none;
  color: inherit;
  align-items: stretch;
  transition: transform .25s var(--ease);
}
.team-card:hover { transform: translateY(-3px); }
.team-card:hover .portrait { filter: saturate(105%); }

.team-card .portrait {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius);
  background: var(--bg-soft);
  transition: filter .25s var(--ease);
}

.team-card .body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: var(--space-3) 0 var(--space-3);
}

.team-card .role-label {
  font-family: var(--mono);
  font-size: var(--text-mono);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}
.team-card .name {
  font: 500 28px/1.1 var(--sans);
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: var(--space-3) 0 var(--space-3);
  max-width: 16ch;
}
.team-card .bio-blurb {
  font-size: var(--text-body);
  color: var(--ink-2);
  margin: 0 0 var(--space-5);
  line-height: 1.55;
}
.team-card .read-bio {
  font-size: var(--text-small);
  font-weight: 500;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap .2s var(--ease), color .2s var(--ease);
}
.team-card:hover .read-bio { gap: 10px; color: var(--accent); }

@media (max-width: 980px) {
  .about-cols { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; gap: var(--space-9); }
  .team-card { grid-template-columns: 1fr; }
}

/* Single-bio page layout */
.bio-shell {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: var(--space-9);
  padding-block: var(--space-9);
  align-items: start;
}
.bio-shell .portrait {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius);
  position: sticky;
  top: 100px;
}
.bio-shell .bio-body { max-width: 64ch; }
.bio-shell h1 {
  font: 500 var(--text-display-2)/.98 var(--sans);
  letter-spacing: -0.03em;
  margin: var(--space-3) 0 var(--space-5);
  color: var(--ink);
}
.bio-shell .role-label {
  font-family: var(--mono);
  font-size: var(--text-mono);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
}

@media (max-width: 980px) {
  .bio-shell { grid-template-columns: 1fr; }
  .bio-shell .portrait { position: static; max-width: 360px; }
}

/* ============================================================
   Contact form
   ============================================================ */

.contact-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: var(--space-9);
  padding-block: var(--space-9);
}

.contact-form { display: grid; gap: var(--space-5); }
.contact-form .row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-4); }
.contact-form .actions { display: flex; gap: var(--space-3); margin-top: var(--space-4); }

.locations-list { display: grid; gap: var(--space-5); margin-top: var(--space-7); }
.location { display: flex; flex-direction: column; gap: 4px; }
.location .city { font-family: var(--mono); font-size: var(--text-mono); text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted); }
.location .addr { font-size: var(--text-body); color: var(--ink-2); }

@media (max-width: 980px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-form .row { grid-template-columns: 1fr; }
}

/* ============================================================
   Trust signals strip
   ============================================================ */

.trust-strip {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: var(--space-6);
  padding-block: var(--space-7);
  border-block: 1px solid var(--line);
  background: var(--bg-soft);
}

.trust-item { text-align: center; }
.trust-item .badge {
  font-family: var(--mono);
  font-size: var(--text-mono);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 4px;
  font-weight: 500;
}
.trust-item .desc { font-size: var(--text-small); color: var(--muted); }

/* ============================================================
   Helpers
   ============================================================ */

.divider { border-top: 1px solid var(--line); }
.bg-soft { background: var(--bg-soft); }
.center { text-align: center; }
.mt-7 { margin-top: var(--space-7); }
.mb-5 { margin-bottom: var(--space-5); }
.mb-7 { margin-bottom: var(--space-7); }
