/* ============================================
   GLOBAL/SCM — bold disruptor aesthetic
   Editorial-brutalist for supply chain operators
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,300;9..144,400;9..144,600;9..144,800;9..144,900&family=JetBrains+Mono:wght@400;500;700&family=Inter+Tight:wght@400;500;600;700;800&display=swap');

:root {
  /* Industrial palette — bill of lading meets oscilloscope */
  --ink: #0a0a0a;
  --paper: #f4f1ea;
  --paper-warm: #ede8dc;
  --rust: #c4351c;
  --signal: #ff4a1c;
  --amber: #e8a317;
  --steel: #2a2a2a;
  --steel-mid: #4a4a4a;
  --steel-light: #8a8a87;
  --line: #1a1a1a;
  --ledger: #d8d2c4;

  /* Type */
  --display: 'Fraunces', 'Times New Roman', serif;
  --sans: 'Inter Tight', system-ui, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, monospace;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Grain texture overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

a { color: inherit; text-decoration: none; }

/* ============================================
   NAVIGATION — sticky top bar with ticker feel
   ============================================ */

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.nav-ticker {
  background: var(--ink);
  color: var(--paper);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  padding: 6px 0;
  overflow: hidden;
  white-space: nowrap;
}

.nav-ticker-inner {
  display: inline-flex;
  gap: 48px;
  padding-left: 100%;
  animation: ticker 60s linear infinite;
}

.nav-ticker span::before {
  content: '◆';
  margin-right: 12px;
  color: var(--signal);
}

@keyframes ticker {
  to { transform: translateX(-100%); }
}

.nav-main {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 48px;
  padding: 20px 48px;
  max-width: 1600px;
  margin: 0 auto;
}

.logo {
  font-family: var(--display);
  font-weight: 900;
  font-size: 22px;
  letter-spacing: -0.02em;
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.logo-slash {
  color: var(--signal);
  font-weight: 400;
  font-family: var(--mono);
  font-size: 18px;
}

.logo-sub {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--steel-light);
  text-transform: uppercase;
  margin-left: 4px;
  font-weight: 400;
}

.nav-links {
  display: flex;
  gap: 36px;
  justify-content: center;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links a {
  position: relative;
  padding: 4px 0;
  transition: color 0.2s;
}

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

.nav-links a.active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--signal);
}

.nav-cta {
  background: var(--ink);
  color: var(--paper);
  padding: 12px 22px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid var(--ink);
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.nav-cta:hover {
  background: var(--signal);
  border-color: var(--signal);
  color: var(--paper);
}

.nav-cta::after {
  content: '→';
  transition: transform 0.2s;
}

.nav-cta:hover::after { transform: translateX(4px); }

/* ===== MOBILE NAV (hamburger + drawer) =====
   On desktop, .nav-panel is invisible (display: contents) so its children
   (.nav-links + .nav-cta) participate directly in the .nav-main grid.
   On mobile, .nav-panel becomes a fixed full-screen drawer.
*/
.nav-panel {
  display: contents;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid var(--ink);
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  position: relative;
  z-index: 201;
  transition: border-color 0.2s;
}

.nav-toggle:hover { border-color: var(--signal); }

.nav-toggle-line {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.nav.is-open .nav-toggle-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav.is-open .nav-toggle-line:nth-child(2) {
  opacity: 0;
}
.nav.is-open .nav-toggle-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============================================
   HERO — editorial monster
   ============================================ */

.hero {
  position: relative;
  padding: 80px 48px 120px;
  max-width: 1600px;
  margin: 0 auto;
  border-bottom: 1px solid var(--line);
}

.hero-meta {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--steel-mid);
  margin-bottom: 60px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--ledger);
}

.hero-meta-rule {
  height: 1px;
  background: var(--steel-light);
}

.hero-headline {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(56px, 11vw, 168px);
  line-height: 0.88;
  letter-spacing: -0.045em;
  margin-bottom: 48px;
}

.hero-headline .italic {
  font-style: italic;
  font-weight: 400;
  color: var(--rust);
}

.hero-headline .strike {
  position: relative;
  display: inline-block;
}

.hero-headline .strike::after {
  content: '';
  position: absolute;
  top: 52%;
  left: -4%;
  right: -4%;
  height: 6px;
  background: var(--signal);
  transform: rotate(-2deg);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-top: 80px;
}

.hero-lede {
  font-family: var(--display);
  font-size: 22px;
  line-height: 1.35;
  font-weight: 400;
  grid-column: 1 / 3;
  max-width: 640px;
  color: var(--steel);
}

.hero-lede strong {
  font-weight: 600;
  color: var(--ink);
  background: linear-gradient(180deg, transparent 60%, var(--amber) 60%, var(--amber) 92%, transparent 92%);
  padding: 0 2px;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}

.btn-primary {
  background: var(--signal);
  color: var(--paper);
  padding: 22px 32px;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--ink);
  transform: translateY(100%);
  transition: transform 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
  z-index: 0;
}

.btn-primary:hover::before { transform: translateY(0); }
.btn-primary span, .btn-primary::after { position: relative; z-index: 1; }
.btn-primary::after { content: '→'; transition: transform 0.25s; position: relative; z-index: 1; }
.btn-primary:hover::after { transform: translateX(6px); }

.btn-secondary {
  background: transparent;
  color: var(--ink);
  padding: 14px 24px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid var(--ink);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.2s;
}

.btn-secondary:hover {
  background: var(--ink);
  color: var(--paper);
}

.cta-caption {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--steel-light);
  text-align: right;
}

/* Decorative crosshair in hero */
.hero-crosshair {
  position: absolute;
  top: 100px;
  right: 48px;
  width: 80px;
  height: 80px;
  pointer-events: none;
  opacity: 0.4;
}

.hero-crosshair::before, .hero-crosshair::after {
  content: '';
  position: absolute;
  background: var(--ink);
}
.hero-crosshair::before { top: 50%; left: 0; right: 0; height: 1px; }
.hero-crosshair::after { left: 50%; top: 0; bottom: 0; width: 1px; }

/* ============================================
   STAT STRIP
   ============================================ */

.stat-strip {
  background: var(--ink);
  color: var(--paper);
  padding: 60px 48px;
}

.stat-strip-inner {
  max-width: 1600px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.stat {
  padding: 0 32px;
  border-right: 1px solid var(--steel-mid);
}

.stat:first-child { padding-left: 0; }
.stat:last-child { padding-right: 0; border-right: none; }

.stat-num {
  font-family: var(--display);
  font-weight: 800;
  font-size: 80px;
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 12px;
}

.stat-num .unit {
  font-size: 32px;
  vertical-align: super;
  color: var(--signal);
  margin-left: 4px;
}

.stat-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--steel-light);
  line-height: 1.5;
}

/* ============================================
   SECTION BASE
   ============================================ */

.section {
  padding: 120px 48px;
  max-width: 1600px;
  margin: 0 auto;
  border-bottom: 1px solid var(--line);
}

.section-label {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--steel-mid);
  margin-bottom: 48px;
}

.section-label-rule { height: 1px; background: var(--ledger); }

.section-headline {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(40px, 6vw, 88px);
  line-height: 0.95;
  letter-spacing: -0.035em;
  max-width: 1100px;
  margin-bottom: 32px;
}

.section-headline .italic {
  font-style: italic;
  font-weight: 400;
  color: var(--rust);
}

/* ============================================
   POV / WE BELIEVE — opinionated statements
   ============================================ */

.pov {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-top: 80px;
}

.pov-item {
  border-top: 2px solid var(--ink);
  padding-top: 24px;
}

.pov-num {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--signal);
  margin-bottom: 16px;
  font-weight: 700;
}

.pov-statement {
  font-family: var(--display);
  font-size: 28px;
  line-height: 1.25;
  font-weight: 400;
  letter-spacing: -0.015em;
  margin-bottom: 16px;
}

.pov-statement strong {
  font-weight: 800;
  font-style: italic;
}

.pov-body {
  font-size: 15px;
  line-height: 1.6;
  color: var(--steel-mid);
  max-width: 540px;
}

/* ============================================
   SERVICES — practice cards
   ============================================ */

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
}

.service-card {
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  padding: 48px;
  background: var(--paper);
  position: relative;
  transition: background 0.3s;
  cursor: pointer;
}

.service-card:hover {
  background: var(--paper-warm);
}

.service-card-num {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--steel-light);
  margin-bottom: 24px;
  display: flex;
  justify-content: space-between;
}

.service-card-num .arrow {
  transition: transform 0.2s;
}

.service-card:hover .service-card-num .arrow {
  transform: translate(4px, -4px);
  color: var(--signal);
}

.service-card-title {
  font-family: var(--display);
  font-weight: 800;
  font-size: 36px;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
}

.service-card-title .italic {
  font-style: italic;
  font-weight: 400;
  color: var(--rust);
}

.service-card-desc {
  font-size: 15px;
  line-height: 1.6;
  color: var(--steel-mid);
  margin-bottom: 32px;
  max-width: 540px;
}

.service-card-list {
  list-style: none;
  border-top: 1px solid var(--ledger);
  padding-top: 20px;
}

.service-card-list li {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 10px 0;
  border-bottom: 1px solid var(--ledger);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.service-card-list li::before {
  content: '+';
  color: var(--signal);
  font-weight: 700;
  margin-right: 8px;
}

.service-card-flag {
  position: absolute;
  top: 48px;
  right: 48px;
  background: var(--signal);
  color: var(--paper);
  padding: 4px 10px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  font-weight: 600;
}

/* ============================================
   APPROACH — process steps
   ============================================ */

.process {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  border-top: 2px solid var(--ink);
}

.process-step {
  display: contents;
}

.process-num {
  font-family: var(--display);
  font-weight: 800;
  font-size: 64px;
  line-height: 1;
  color: var(--signal);
  padding: 48px 0;
  border-bottom: 1px solid var(--ledger);
  position: relative;
}

.process-content {
  padding: 48px 0;
  border-bottom: 1px solid var(--ledger);
}

.process-step:last-child .process-num,
.process-step:last-child .process-content {
  border-bottom: 2px solid var(--ink);
}

.process-title {
  font-family: var(--display);
  font-weight: 700;
  font-size: 32px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.process-duration {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--signal);
  margin-bottom: 16px;
}

.process-desc {
  font-size: 16px;
  line-height: 1.6;
  color: var(--steel-mid);
  max-width: 720px;
  margin-bottom: 16px;
}

.process-deliverables {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.deliverable-pill {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 12px;
  border: 1px solid var(--ink);
  background: var(--paper-warm);
}

/* ============================================
   CALLOUT BANNER
   ============================================ */

.callout {
  background: var(--ink);
  color: var(--paper);
  padding: 100px 48px;
}

.callout-inner {
  max-width: 1600px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 80px;
  align-items: end;
}

.callout-headline {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1;
  letter-spacing: -0.035em;
}

.callout-headline .italic {
  font-style: italic;
  font-weight: 400;
  color: var(--amber);
}

.callout-headline .signal {
  color: var(--signal);
}

.callout-body {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ledger);
  margin-bottom: 24px;
}

/* ============================================
   INSIGHTS
   ============================================ */

.insights-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1px;
  background: var(--ink);
  border: 1px solid var(--ink);
}

.insight-card {
  background: var(--paper);
  padding: 40px;
  display: flex;
  flex-direction: column;
  min-height: 360px;
  transition: background 0.2s;
  cursor: pointer;
}

.insight-card:hover { background: var(--paper-warm); }

.insight-tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--signal);
  font-weight: 600;
  margin-bottom: 16px;
}

.insight-date {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--steel-light);
  margin-bottom: 16px;
}

.insight-title {
  font-family: var(--display);
  font-weight: 700;
  font-size: 26px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  flex-grow: 1;
}

.insight-excerpt {
  font-size: 14px;
  line-height: 1.55;
  color: var(--steel-mid);
  margin-bottom: 20px;
}

.insight-read {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.insight-read::after {
  content: '→';
  transition: transform 0.2s;
}

.insight-card:hover .insight-read::after { transform: translateX(4px); }

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background: var(--ink);
  color: var(--paper);
  padding: 80px 48px 32px;
}

.footer-inner {
  max-width: 1600px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--steel-mid);
}

.footer-brand {
  font-family: var(--display);
  font-weight: 900;
  font-size: 48px;
  line-height: 1;
  letter-spacing: -0.03em;
}

.footer-brand-sub {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--steel-light);
  margin-top: 16px;
  text-transform: uppercase;
  max-width: 320px;
  line-height: 1.6;
}

.footer-col h4 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--steel-light);
  margin-bottom: 20px;
  font-weight: 600;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  font-size: 14px;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--signal); }

.footer-bottom {
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--steel-light);
}

.footer-bottom-meta {
  display: flex;
  gap: 32px;
}

/* ============================================
   PAGE HEADERS (sub-pages)
   ============================================ */

.page-header {
  padding: 80px 48px 100px;
  max-width: 1600px;
  margin: 0 auto;
  border-bottom: 1px solid var(--line);
}

.page-header-meta {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--steel-mid);
  margin-bottom: 60px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--ledger);
}

.page-header h1 {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(56px, 9vw, 140px);
  line-height: 0.9;
  letter-spacing: -0.04em;
  margin-bottom: 40px;
}

.page-header h1 .italic {
  font-style: italic;
  font-weight: 400;
  color: var(--rust);
}

.page-header-lede {
  font-family: var(--display);
  font-size: 22px;
  line-height: 1.35;
  font-weight: 400;
  color: var(--steel);
  max-width: 800px;
}

/* ============================================
   ABOUT — values + bio
   ============================================ */

.about-statement {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(28px, 3.5vw, 48px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  max-width: 1100px;
  margin: 40px 0;
}

.about-statement .italic {
  font-style: italic;
  color: var(--rust);
}

.about-statement strong {
  font-weight: 800;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  margin-top: 80px;
}

.value {
  border-top: 2px solid var(--ink);
  padding-top: 24px;
}

.value-num {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--signal);
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.value-title {
  font-family: var(--display);
  font-weight: 700;
  font-size: 28px;
  line-height: 1.15;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.value-body {
  font-size: 15px;
  line-height: 1.6;
  color: var(--steel-mid);
}

/* ============================================
   ASSESSMENT / CONTACT FORM
   ============================================ */

.form-wrap {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 100px;
  align-items: start;
}

.form-side h2 {
  font-family: var(--display);
  font-weight: 800;
  font-size: 48px;
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.form-side h2 .italic {
  font-style: italic;
  font-weight: 400;
  color: var(--rust);
}

.form-side p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--steel-mid);
  margin-bottom: 32px;
}

.form-side ul {
  list-style: none;
  border-top: 1px solid var(--ink);
}

.form-side ul li {
  padding: 16px 0;
  border-bottom: 1px solid var(--ledger);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  line-height: 1.5;
}

.form-side ul li::before {
  content: '◆';
  color: var(--signal);
  flex-shrink: 0;
  margin-top: 2px;
}

.form {
  background: var(--ink);
  color: var(--paper);
  padding: 48px;
}

.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--steel-light);
  margin-bottom: 8px;
  font-weight: 600;
}

.form-label .req {
  color: var(--signal);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--steel-mid);
  padding: 12px 0;
  font-family: var(--sans);
  font-size: 16px;
  color: var(--paper);
  transition: border-color 0.2s;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-bottom-color: var(--signal);
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%23ff4a1c' d='M5 6L0 0h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 8px center;
  appearance: none;
  cursor: pointer;
}

.form-select option {
  background: var(--ink);
  color: var(--paper);
}

.form-textarea {
  min-height: 100px;
  resize: vertical;
  border: 1px solid var(--steel-mid);
  padding: 12px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.form-checkbox-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 8px;
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 12px;
  border: 1px solid var(--steel-mid);
  transition: all 0.15s;
}

.form-check:hover {
  border-color: var(--signal);
}

.form-check input {
  appearance: none;
  width: 14px;
  height: 14px;
  border: 1px solid var(--paper);
  background: transparent;
  cursor: pointer;
  flex-shrink: 0;
  position: relative;
  margin-top: 1px;
}

.form-check input:checked {
  background: var(--signal);
  border-color: var(--signal);
}

.form-check input:checked::after {
  content: '✓';
  position: absolute;
  inset: 0;
  color: var(--paper);
  font-size: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.form-submit {
  width: 100%;
  background: var(--signal);
  color: var(--paper);
  padding: 22px;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  border: none;
  cursor: pointer;
  margin-top: 16px;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.form-submit:hover { background: var(--paper); color: var(--ink); }
.form-submit::after { content: '→'; }

.form-note {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--steel-light);
  margin-top: 16px;
  line-height: 1.6;
}

.form-success {
  background: var(--signal);
  color: var(--paper);
  padding: 32px;
  font-family: var(--display);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.3;
  display: none;
}

.form-success.show { display: block; }

/* ============================================
   PROSE (insight articles, about pages)
   ============================================ */

.prose {
  max-width: 760px;
  font-size: 18px;
  line-height: 1.7;
  color: var(--steel);
}

.prose p { margin-bottom: 24px; }

.prose h2 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 36px;
  line-height: 1.15;
  margin: 56px 0 20px;
  letter-spacing: -0.02em;
}

.prose h3 {
  font-family: var(--display);
  font-weight: 600;
  font-size: 24px;
  line-height: 1.2;
  margin: 32px 0 12px;
}

.prose blockquote {
  font-family: var(--display);
  font-style: italic;
  font-size: 28px;
  line-height: 1.3;
  color: var(--rust);
  border-left: 4px solid var(--signal);
  padding-left: 24px;
  margin: 40px 0;
  font-weight: 400;
}

.prose strong { font-weight: 700; color: var(--ink); }

/* ============================================
   ANIMATIONS — staggered reveals
   ============================================ */

.reveal {
  opacity: 0;
  transform: translateY(20px);
  animation: reveal 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.reveal-1 { animation-delay: 0.1s; }
.reveal-2 { animation-delay: 0.25s; }
.reveal-3 { animation-delay: 0.4s; }
.reveal-4 { animation-delay: 0.55s; }
.reveal-5 { animation-delay: 0.7s; }

@keyframes reveal {
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
  .nav-main { grid-template-columns: 1fr auto; gap: 16px; padding: 16px 24px; }
  .nav-toggle { display: flex; }

  .nav-panel {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--paper);
    padding: 100px 32px 48px;
    z-index: 101;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0s linear 0.22s;
  }
  .nav.is-open .nav-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: opacity 0.22s ease, transform 0.22s ease;
  }

  .nav-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    width: 100%;
    text-transform: uppercase;
  }
  .nav-links a {
    display: block;
    width: 100%;
    padding: 22px 0;
    border-bottom: 1px solid var(--ledger);
    font-size: 22px;
    letter-spacing: 0.04em;
  }
  .nav-links a:first-child { border-top: 1px solid var(--ledger); }
  .nav-links a.active::after { display: none; }
  .nav-links a.active { color: var(--signal); }

  .nav-cta {
    margin-top: 40px;
    align-self: flex-start;
    padding: 16px 28px;
    font-size: 12px;
  }

  body.nav-locked { overflow: hidden; }

  .hero, .section, .page-header { padding-left: 24px; padding-right: 24px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-lede { grid-column: 1; }
  .hero-cta { align-items: flex-start; }
  .cta-caption { text-align: left; }
  .stat-strip { padding: 40px 24px; }
  .stat-strip-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .stat { padding: 0; border-right: none; border-bottom: 1px solid var(--steel-mid); padding-bottom: 24px; }
  .stat:nth-last-child(-n+2) { border-bottom: none; padding-bottom: 0; }
  .stat-num { font-size: 56px; }
  .pov, .services-grid, .insights-grid, .values-grid { grid-template-columns: 1fr; }
  .pov { gap: 40px; }
  .form-wrap { grid-template-columns: 1fr; gap: 48px; }
  .form { padding: 32px 24px; }
  .form-row, .form-checkbox-group { grid-template-columns: 1fr; }
  .callout-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer { padding: 48px 24px 24px; }
  .footer-brand { font-size: 36px; }
  .process { grid-template-columns: 56px 1fr; gap: 16px; }
  .process-num { font-size: 40px; padding: 32px 0; }
  .process-content { padding: 32px 0; }
  .hero-crosshair { display: none; }
}

@media (max-width: 600px) {
  .stat-strip-inner { grid-template-columns: 1fr; }
  .stat { border-right: none; padding: 16px 0; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 16px; }
  .footer-bottom-meta { flex-direction: column; gap: 8px; }
}

/* ===== FOUNDER ===== */
.founder {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 60px;
  margin-top: 60px;
  align-items: start;
}
.founder-portrait {
  margin: 0;
  border: 1px solid var(--ink);
  background: var(--paper-warm);
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.founder-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.founder-meta {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 20px;
}
.founder-name {
  font-family: var(--display);
  font-size: 56px;
  line-height: 1.0;
  margin: 0 0 28px;
}
.founder-blurb {
  font-size: 18px;
  line-height: 1.55;
  max-width: 60ch;
  margin: 0 0 24px;
}
.founder-prev {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.04em;
  border-top: 1px solid var(--ledger);
  padding-top: 20px;
  margin: 0;
}
.founder-prev a { text-decoration: underline; }

@media (max-width: 800px) {
  .founder { grid-template-columns: 1fr; gap: 32px; }
  .founder-portrait { max-width: 280px; }
  .founder-name { font-size: 40px; }
}
