/* ──────────────────────────────────────────────────────────────
   Indigo Labs — production stylesheet
   Ported from the Claude Design React/JSX prototype to plain CSS
   so the homepage is fast, accessible and crawlable on Firebase
   Hosting. Visual parity with the prototype is the goal.
   ──────────────────────────────────────────────────────────── */

:root {
  --ink: #0E1638;
  --paper: #F4F1EB;
  --paper-warm: #EFEAE0;
  --rule: rgba(14, 22, 56, 0.12);
  --rule-strong: rgba(14, 22, 56, 0.22);
  --muted: rgba(14, 22, 56, 0.65);
  --faint: rgba(14, 22, 56, 0.45);
  --blue: #5BA9FF;
  --amber: #E89A4A;

  --display: "Inter Tight", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --body: "Inter Tight", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;
}

*, *::before, *::after { box-sizing: border-box; }
html, body {
  margin: 0;
  padding: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
::selection { background: var(--ink); color: var(--paper); }
a { -webkit-tap-highlight-color: transparent; }
button { font-family: inherit; }
img { max-width: 100%; display: block; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ── Eyebrow ─────────────────────────────────────────────── */
.eyebrow {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 18px;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}
.eyebrow.on-ink { color: rgba(244, 241, 235, 0.55); }

/* ── Pill ────────────────────────────────────────────────── */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--rule);
}
.pill.on-ink { color: rgba(244, 241, 235, 0.85); border-color: rgba(244, 241, 235, 0.18); }
.pill.on-ink.accent-blue { color: var(--blue); border-color: rgba(91, 169, 255, 0.45); }
.pill.on-ink.accent-amber { color: var(--amber); border-color: rgba(232, 154, 74, 0.45); }
.pill.on-genie { color: #F0E6D6; border-color: rgba(240, 230, 214, 0.25); }

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  border: 1px solid transparent;
  font-family: inherit;
}
.btn-primary {
  background: var(--ink);
  color: var(--paper);
}
.btn-secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--rule-strong);
}
.btn-amber {
  background: var(--amber);
  color: #1f1815;
  border: none;
}
.btn-nav {
  background: var(--ink);
  color: var(--paper);
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 13px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  white-space: nowrap;
  flex: none;
}
.btn-nav .arrow { display: inline-block; transform: translateY(-1px); }

/* ── Lockup ──────────────────────────────────────────────── */
.lockup {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-family: var(--display);
  text-decoration: none;
}
.lockup .lockup-mark { flex: none; display: block; }
.lockup .lockup-text {
  font-size: 22px;
  line-height: 1;
  letter-spacing: -0.03em;
  font-weight: 500;
}
.lockup .lockup-dot { opacity: 0.4; margin: 0 0.18em; }
.lockup.inverse { color: var(--paper); }

/* ── Nav ─────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.2s ease, border-color 0.2s ease, backdrop-filter 0.2s ease;
}
.nav.scrolled {
  background: rgba(244, 241, 235, 0.92);
  backdrop-filter: saturate(140%) blur(8px);
  -webkit-backdrop-filter: saturate(140%) blur(8px);
  border-bottom-color: var(--rule);
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 18px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 14px;
  color: var(--ink);
}
.nav-links a {
  color: inherit;
  text-decoration: none;
  opacity: 0.78;
  font-weight: 400;
}
.nav-links a:hover { opacity: 1; }
.nav-links a.active { opacity: 1; font-weight: 600; }
.nav-links a.btn-nav { color: var(--paper); opacity: 1; }
.nav-links a.btn-nav:hover { opacity: 0.92; }
.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--rule-strong);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 13px;
  color: var(--ink);
  cursor: pointer;
}

/* ── Hero ────────────────────────────────────────────────── */
.hero {
  max-width: 1280px;
  margin: 0 auto;
  padding: 60px 40px 100px;
  position: relative;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  margin-top: 36px;
  align-items: end;
}
.hero h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(56px, 8.4vw, 132px);
  line-height: 0.95;
  letter-spacing: -0.025em;
  font-weight: 400;
  color: var(--ink);
  text-wrap: pretty;
}
.hero h1 .strong { font-weight: 600; }
.hero-aside { padding-bottom: 16px; }
.hero-aside p {
  margin: 0;
  font-size: 18px;
  line-height: 1.5;
  color: var(--muted);
  max-width: 460px;
  text-wrap: pretty;
}
.hero-cta {
  display: flex;
  gap: 12px;
  margin-top: 28px;
  flex-wrap: wrap;
}

/* ── Sub-brand strip ─────────────────────────────────────── */
.subbrand-strip {
  margin-top: 80px;
  padding-top: 28px;
  border-top: 1px solid var(--rule);
  display: grid;
  grid-template-columns: auto 1fr 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}
.subbrand-label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--faint);
  font-weight: 500;
  align-self: center;
  padding-right: 8px;
}
.subbrand-tile {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 22px 22px 20px;
  border-radius: 12px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.subbrand-tile:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px -18px rgba(14, 22, 56, 0.25);
}
@media (prefers-reduced-motion: reduce) {
  .subbrand-tile { transition: none; }
  .subbrand-tile:hover { transform: none; }
}
.subbrand-tile.disabled { cursor: default; }
.subbrand-tile.disabled:hover { transform: none; box-shadow: none; }

.subbrand-tile--parent {
  background: var(--paper-warm);
  color: var(--ink);
  border: 1px solid var(--rule);
}
.subbrand-tile--ai {
  background: var(--ink);
  color: var(--paper);
}
.subbrand-tile--genie {
  background: #1f1815;
  color: #F0E6D6;
}

.subbrand-tile-head {
  display: flex;
  align-items: center;
  gap: 12px;
}
.subbrand-tile-name {
  font-size: 18px;
  font-weight: 500;
  font-family: var(--display);
  letter-spacing: -0.025em;
  line-height: 1;
  white-space: nowrap;
}
.subbrand-tile-dot { opacity: 0.4; margin: 0 0.18em; }
.subbrand-tile-dim { opacity: 0.55; }
.subbrand-tile-desc {
  font-size: 12.5px;
  line-height: 1.5;
  opacity: 0.75;
}

/* ── Pillars (dark section) ──────────────────────────────── */
.pillars {
  background: var(--ink);
  color: var(--paper);
  padding: 120px 40px;
}
.pillars-inner { max-width: 1280px; margin: 0 auto; }
.pillars h2 {
  margin: 24px 0 28px;
  font-family: var(--display);
  font-size: clamp(40px, 5.4vw, 80px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  font-weight: 400;
  max-width: 1000px;
  text-wrap: pretty;
}
.pillars h2 .strong { font-weight: 600; }
.pillars > .pillars-inner > p {
  margin-top: 28px;
  max-width: 620px;
  font-size: 17px;
  line-height: 1.55;
  color: rgba(244, 241, 235, 0.72);
}
.pillars-grid {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.pillar {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(244, 241, 235, 0.10);
  border-radius: 14px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  min-height: 620px;
}
.pillar-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.pillar-num {
  font-family: var(--display);
  font-size: 36px;
  color: rgba(244, 241, 235, 0.6);
  line-height: 1;
}
.pillar-visual {
  height: 150px;
  border-radius: 10px;
  overflow: hidden;
  background: rgba(244, 241, 235, 0.03);
  border: 1px solid rgba(244, 241, 235, 0.08);
  position: relative;
}
.pillar-eyebrow {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: rgba(244, 241, 235, 0.55);
}
.pillar-eyebrow.accent-blue { color: var(--blue); }
.pillar-eyebrow.accent-amber { color: var(--amber); }
.pillar h3 {
  margin: 0 0 4px;
  font-family: var(--display);
  font-size: 28px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 400;
  text-wrap: pretty;
}
.pillar > p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.6;
  color: rgba(244, 241, 235, 0.72);
}
.pillar-services {
  margin: auto 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pillar-services li {
  font-size: 13px;
  color: rgba(244, 241, 235, 0.85);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-top: 1px solid rgba(244, 241, 235, 0.08);
}
.pillar-services li::before {
  content: "·";
  color: rgba(244, 241, 235, 0.5);
  font-family: var(--display);
}
.pillar-services.accent-blue li::before { color: var(--blue); }
.pillar-services.accent-amber li::before { color: var(--amber); }
.pillar-stat {
  padding-top: 18px;
  border-top: 1px solid rgba(244, 241, 235, 0.12);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.pillar-stat-num {
  font-family: var(--display);
  font-size: 32px;
  line-height: 1.1;
  color: var(--paper);
}
.pillar-stat-num.accent-blue { color: var(--blue); }
.pillar-stat-num.accent-amber { color: var(--amber); }
.pillar-stat-label {
  font-size: 12px;
  color: rgba(244, 241, 235, 0.6);
  letter-spacing: 0.04em;
}

/* ── Work section ────────────────────────────────────────── */
.work {
  background: var(--paper);
  padding: 120px 40px 40px;
}
.work-inner { max-width: 1280px; margin: 0 auto; }
.work-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.work-head h2 {
  margin: 24px 0 28px;
  font-family: var(--display);
  font-size: clamp(40px, 5.4vw, 80px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  font-weight: 400;
}
.work-head h2 .strong { font-weight: 600; }

/* Genie spotlight */
.genie {
  margin-top: 70px;
  background: #1f1815;
  color: #F0E6D6;
  border-radius: 16px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
}
.genie-copy {
  padding: 48px 48px 44px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.genie-id {
  display: flex;
  align-items: center;
  gap: 12px;
}
.genie-id .name {
  font-family: var(--display);
  font-size: 26px;
  letter-spacing: -0.02em;
}
.genie h3 {
  margin: 0 0 8px;
  font-family: var(--display);
  font-size: clamp(36px, 4.2vw, 56px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 400;
  text-wrap: pretty;
}
.genie h3 .strong { font-weight: 600; }
.genie p {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(240, 230, 214, 0.78);
  max-width: 460px;
}
.genie-facets {
  display: flex;
  gap: 28px;
  margin-top: 8px;
}
.genie-facet h4 {
  margin: 0 0 6px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  font-weight: 500;
}
.genie-facet p { font-size: 13px; color: rgba(240, 230, 214, 0.82); margin: 0; }
.genie-cta {
  margin-top: auto;
  align-self: flex-start;
}
.genie-image {
  height: 100%;
  min-height: 460px;
  position: relative;
  overflow: hidden;
  background: #1a120e;
}
.genie-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Capability board */
.capability {
  margin-top: 96px;
}
.capability-lede {
  margin: 20px 0 36px;
  max-width: 720px;
  font-size: 17px;
  line-height: 1.55;
  color: var(--muted);
  font-family: var(--display);
  letter-spacing: -0.005em;
}
.cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.card {
  background: #FFFFFF;
  border: 1px solid var(--rule);
  border-radius: 14px;
  padding: 32px 32px 30px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}
.card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.card-num {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--faint);
}
.card-dot {
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: var(--ink);
  opacity: 0.85;
  flex: none;
}
.card-dot.accent-blue { background: var(--blue); }
.card-dot.accent-amber { background: var(--amber); }
.card h3 {
  margin: 0;
  font-family: var(--display);
  font-weight: 500;
  font-size: 26px;
  line-height: 1.18;
  letter-spacing: -0.018em;
  text-wrap: pretty;
  color: var(--ink);
}
.card-descriptor {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.5;
  font-style: italic;
  color: var(--muted);
  text-wrap: pretty;
}
.card-body {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink);
  text-wrap: pretty;
}
.card-outcome {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--rule);
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.card-outcome-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 600;
  flex: none;
  padding-top: 2px;
}
.card-outcome-label.accent-blue { color: var(--blue); }
.card-outcome-label.accent-amber { color: var(--amber); }
.card-outcome-text {
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--ink);
  text-wrap: pretty;
}

/* Sectors grid */
.sectors {
  margin-top: 96px;
}
.sectors-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.sectors-count {
  font-size: 13px;
  color: var(--faint);
  font-family: var(--mono);
}
.sectors-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--rule);
  border-radius: 14px;
  overflow: hidden;
  background: var(--paper-warm);
}
.sector {
  padding: 26px 26px 24px;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 138px;
}
.sector:nth-child(3n) { border-right: none; }
.sectors-grid .sector.last-row { border-bottom: none; }
.sector-name {
  font-family: var(--display);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.sector-proof {
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--muted);
  text-wrap: pretty;
}

/* Pull quotes */
.quotes {
  margin-top: 96px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.quote {
  margin: 0;
  padding: 36px 36px 30px;
  border: 1px solid var(--rule);
  border-radius: 14px;
  background: #FFFFFF;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
}
.quote::before {
  content: "\201C";
  position: absolute;
  top: 18px;
  left: 28px;
  font-family: var(--display);
  font-size: 64px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: -0.04em;
  opacity: 0.55;
}
.quote.amber::before { color: var(--amber); }
.quote.blue::before { color: var(--blue); }
.quote blockquote {
  margin: 14px 0 0;
  font-family: var(--display);
  font-weight: 400;
  font-size: 22px;
  line-height: 1.4;
  letter-spacing: -0.012em;
  color: var(--ink);
  text-wrap: pretty;
}
.quote figcaption {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--muted);
}
.quote figcaption::before {
  content: "";
  width: 18px;
  height: 1px;
  opacity: 0.8;
}
.quote.amber figcaption::before { background: var(--amber); }
.quote.blue figcaption::before { background: var(--blue); }

/* Stat strap */
.stat-strap {
  margin-top: 80px;
  padding: 36px 40px;
  border: 1px solid var(--rule);
  border-radius: 14px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-right: 24px;
  border-right: 1px solid var(--rule);
}
.stat:last-child {
  border-right: none;
  padding-right: 0;
}
.stat-num {
  font-family: var(--display);
  font-size: 36px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1;
}
.stat-label {
  font-size: 13px;
  color: var(--muted);
}

/* ── Process ─────────────────────────────────────────────── */
.process {
  padding: 40px 40px 120px;
  background: var(--paper);
}
.process-inner { max-width: 1280px; margin: 0 auto; }
.process-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: start;
}
.process-side { position: sticky; top: 100px; }
.process-side h2 {
  margin: 24px 0 44px;
  font-family: var(--display);
  font-size: clamp(36px, 4.4vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  font-weight: 400;
}
.process-side h2 .strong { font-weight: 600; }
.process-side p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 380px;
}
.process-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
}
.process-step {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 30px;
  padding: 36px 0;
  border-top: 1px solid var(--rule-strong);
}
.process-list .terminator {
  border-top: 1px solid var(--rule-strong);
  height: 0;
  padding: 0;
}
.process-step-num {
  font-family: var(--display);
  font-size: 64px;
  line-height: 0.9;
  color: var(--ink);
  opacity: 0.85;
}
.process-step h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 36px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 400;
}
.process-step p {
  margin: 14px 0 0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 540px;
}

/* ── Founder quote ───────────────────────────────────────── */
.founder {
  padding: 110px 40px;
  background: var(--ink);
  color: var(--paper);
  border-top: 1px solid rgba(244, 241, 235, 0.05);
}
.founder-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 50px;
  align-items: center;
}
.founder-portrait {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center 28%;
  border-radius: 999px;
  box-shadow: 0 0 0 1px rgba(244, 241, 235, 0.10), 0 30px 60px -30px rgba(0, 0, 0, 0.55);
}
.founder-quote-mark {
  font-family: var(--display);
  font-size: 80px;
  line-height: 0.5;
  color: var(--amber);
  display: inline-block;
}
.founder blockquote {
  margin: 6px 0 0;
  font-family: var(--display);
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.15;
  letter-spacing: -0.015em;
  font-weight: 400;
  color: var(--paper);
  text-wrap: pretty;
}
.founder blockquote .strong { font-weight: 600; }
.founder-attr {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.founder-name { font-size: 14px; font-weight: 600; }
.founder-dot { width: 4px; height: 4px; border-radius: 99px; background: var(--amber); }
.founder-role { font-size: 14px; color: rgba(244, 241, 235, 0.65); }

/* ── Contact ─────────────────────────────────────────────── */
.contact {
  padding: 120px 40px;
  background: var(--paper);
}
.contact-inner { max-width: 1280px; margin: 0 auto; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact h2 {
  margin: 24px 0 28px;
  font-family: var(--display);
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  font-weight: 400;
}
.contact h2 .strong { font-weight: 600; }
.contact-side p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
  margin-top: 24px;
  max-width: 460px;
}
.contact-channels {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 14px;
}
.contact-channels a {
  color: var(--ink);
  text-decoration: none;
  display: flex;
  gap: 14px;
  align-items: center;
}
.contact-channels a span {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.5;
  width: 60px;
}

.contact-form {
  background: var(--ink);
  color: var(--paper);
  padding: 40px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  overflow: hidden;
}
.field { display: flex; flex-direction: column; }
.field-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(244, 241, 235, 0.6);
  font-weight: 500;
}
.field-input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(244, 241, 235, 0.25);
  color: var(--paper);
  padding: 10px 0;
  font-size: 16px;
  outline: none;
  font-family: inherit;
}
.field-input:focus { border-bottom-color: var(--amber); }
.interest-options {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 10px;
}
.interest-chip {
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12.5px;
  cursor: pointer;
  background: transparent;
  color: var(--paper);
  border: 1px solid rgba(244, 241, 235, 0.25);
  font-family: inherit;
  letter-spacing: 0.04em;
}
.interest-chip:hover { border-color: rgba(244, 241, 235, 0.5); }
.interest-chip[aria-pressed="true"] {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
}

/* Pillar-coloured variants — subtle hint when unselected, full fill when pressed */
.interest-chip.accent-blue {
  color: var(--blue);
  border-color: rgba(91, 169, 255, 0.35);
}
.interest-chip.accent-blue:hover { border-color: rgba(91, 169, 255, 0.7); }
.interest-chip.accent-blue[aria-pressed="true"] {
  background: var(--blue);
  color: var(--ink);
  border-color: var(--blue);
}

.interest-chip.accent-amber {
  color: var(--amber);
  border-color: rgba(232, 154, 74, 0.35);
}
.interest-chip.accent-amber:hover { border-color: rgba(232, 154, 74, 0.7); }
.interest-chip.accent-amber[aria-pressed="true"] {
  background: var(--amber);
  color: var(--ink);
  border-color: var(--amber);
}
textarea.field-input {
  resize: vertical;
  margin-top: 10px;
  min-height: 96px;
  border: 1px solid rgba(244, 241, 235, 0.25);
  padding: 12px;
  border-radius: 6px;
}
.contact-submit { align-self: flex-start; margin-top: 4px; }
.contact-submit[disabled] { opacity: 0.6; cursor: progress; }

.form-thanks {
  position: absolute;
  inset: 0;
  background: var(--ink);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 40px;
  text-align: center;
  z-index: 2;
}
.form-thanks[hidden] { display: none; }
.form-thanks h3 {
  font-family: var(--display);
  font-size: 38px;
  margin: 0;
  font-weight: 400;
}
.form-thanks p {
  margin: 0;
  color: rgba(244, 241, 235, 0.7);
  max-width: 380px;
  font-size: 15px;
  line-height: 1.55;
  text-wrap: pretty;
}
.form-thanks a { color: var(--amber); white-space: nowrap; }
.form-error {
  font-size: 13px;
  color: #ffb4b4;
  margin: 0;
}

/* ── Footer ──────────────────────────────────────────────── */
.footer {
  background: var(--ink);
  color: var(--paper);
  padding: 70px 40px 40px;
}
.footer-inner { max-width: 1280px; margin: 0 auto; }
.footer-cols {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(244, 241, 235, 0.12);
}
.footer-blurb {
  font-size: 14px;
  color: rgba(244, 241, 235, 0.65);
  margin-top: 24px;
  max-width: 360px;
  line-height: 1.6;
}
.footer-col-title {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(244, 241, 235, 0.5);
  margin-bottom: 18px;
  font-weight: 500;
}
.footer-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-list a {
  color: var(--paper);
  text-decoration: none;
  font-size: 14px;
  opacity: 0.85;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.footer-list a:hover { opacity: 1; }
.footer-list .accent-dot { width: 6px; height: 6px; border-radius: 99px; flex: none; }
.footer-list .accent-dot.blue { background: var(--blue); }
.footer-list .accent-dot.amber { background: var(--amber); }
.footer-bottom {
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(244, 241, 235, 0.5);
}

/* ════════════════════════════════════════════════════════════
   SHARED PAGE TEMPLATES
   Used by /strategy, /ai-transformation, /products, /about,
   /terms, /privacy. The homepage doesn't need these.
   ══════════════════════════════════════════════════════════ */

/* ── Page hero (service + legal + about) ─────────────────── */
.page-hero {
  position: relative;
  overflow: hidden;
  background: var(--paper);
  padding: 0 0 100px;
}
.page-hero-watermark {
  position: absolute;
  right: -120px;
  top: 60px;
  opacity: 0.06;
  pointer-events: none;
  width: 620px;
  height: 620px;
}
.page-hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 60px 40px 0;
  position: relative;
  z-index: 1;
}
.page-hero-grid {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  gap: 60px;
  margin-top: 36px;
  align-items: end;
}
.page-hero h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(56px, 8.4vw, 132px);
  line-height: 0.95;
  letter-spacing: -0.025em;
  font-weight: 400;
  color: var(--ink);
  text-wrap: pretty;
}
.page-hero h1 .strong { font-weight: 600; }
.page-hero-aside { padding-bottom: 16px; }
.page-hero-aside p {
  margin: 0;
  font-size: 18px;
  line-height: 1.5;
  color: var(--muted);
  max-width: 460px;
  text-wrap: pretty;
}
.page-hero-aside p.legal-lede { font-size: 16px; line-height: 1.55; }
.page-hero-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.page-hero-rule {
  margin-top: 80px;
  height: 4px;
  width: 96px;
  background: var(--ink);
  border-radius: 2px;
}
.page-hero-rule.accent-blue { background: var(--blue); }
.page-hero-rule.accent-amber { background: var(--amber); }

/* ── Capabilities (service pages) ────────────────────────── */
.capabilities {
  padding: 20px 40px 100px;
  background: var(--paper);
}
.capabilities-inner { max-width: 1280px; margin: 0 auto; }
.capabilities-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: start;
}
.capabilities-side { position: sticky; top: 100px; }
.capabilities-side h2 {
  margin: 24px 0;
  font-family: var(--display);
  font-size: clamp(32px, 3.4vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 400;
}
.capabilities-side h2 .strong { font-weight: 600; }
.capabilities-side p {
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 360px;
}
.capabilities-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
}
.capability-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 26px;
  padding: 32px 0;
  border-top: 1px solid var(--rule-strong);
}
.capabilities-list .terminator {
  border-top: 1px solid var(--rule-strong);
  height: 0;
  padding: 0;
}
.capability-num {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--faint);
  padding-top: 8px;
  letter-spacing: 0.06em;
}
.capability-body { display: flex; flex-direction: column; gap: 14px; }
.capability-head {
  display: flex;
  align-items: baseline;
  gap: 14px;
  flex-wrap: wrap;
}
.capability-head h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 30px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  font-weight: 500;
}
.capability-formerly {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 500;
}
.capability-formerly.accent-blue { color: var(--blue); }
.capability-formerly.accent-amber { color: var(--amber); }
.capability-body > p {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 600px;
}
.capability-bullets {
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  font-size: 13.5px;
  color: var(--ink);
  opacity: 0.85;
}
.capability-bullets li {
  display: flex;
  align-items: center;
  gap: 8px;
}
.capability-bullets li::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 99px;
  background: var(--ink);
  flex: none;
}
.capability-bullets.accent-blue li::before { background: var(--blue); }
.capability-bullets.accent-amber li::before { background: var(--amber); }

/* ── Who-for (service pages) ─────────────────────────────── */
.who-for {
  padding: 110px 40px;
  background: var(--ink);
  color: var(--paper);
}
.who-for-inner { max-width: 1280px; margin: 0 auto; }
.who-for h2 {
  margin: 24px 0 60px;
  font-family: var(--display);
  font-size: clamp(36px, 4.4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  font-weight: 400;
  max-width: 900px;
  text-wrap: pretty;
}
.who-for h2 .strong { font-weight: 600; }
.who-for-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.who-for-card {
  padding: 32px 28px;
  border-radius: 12px;
  background: rgba(244, 241, 235, 0.04);
  border: 1px solid rgba(244, 241, 235, 0.10);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.who-for-card-dot {
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: var(--ink);
}
.who-for-card-dot.accent-blue { background: var(--blue); }
.who-for-card-dot.accent-amber { background: var(--amber); }
.who-for-card h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 24px;
  line-height: 1.15;
  letter-spacing: -0.015em;
  font-weight: 500;
}
.who-for-card p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.55;
  color: rgba(244, 241, 235, 0.72);
}

/* ── Illustrative engagement ─────────────────────────────── */
.illustrative {
  padding: 110px 40px;
  background: var(--paper);
}
.illustrative-inner { max-width: 1080px; margin: 0 auto; }
.illustrative-card {
  margin-top: 36px;
  padding: 50px;
  background: var(--paper-warm);
  border: 1px solid var(--rule);
  border-radius: 16px;
  position: relative;
}
.illustrative-tag {
  position: absolute;
  top: -14px;
  left: 32px;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink);
  background: var(--ink);
  color: var(--paper);
}
.illustrative-tag.accent-blue { background: var(--blue); color: var(--ink); }
.illustrative-tag.accent-amber { background: var(--amber); color: var(--ink); }
.illustrative-body {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 50px;
  margin-top: 8px;
}
.illustrative-meta-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 8px;
}
.illustrative-meta-value {
  font-size: 17px;
  font-weight: 500;
  margin-bottom: 24px;
}
.illustrative-meta-value:last-child { margin-bottom: 0; }
.illustrative-meta-value.small { font-size: 15px; line-height: 1.5; font-weight: 400; }
.illustrative-story {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(22px, 2.4vw, 28px);
  line-height: 1.35;
  letter-spacing: -0.012em;
  font-weight: 400;
  text-wrap: pretty;
  color: var(--ink);
}
.illustrative-outcome {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
}
.illustrative-outcome-text {
  font-size: 15px;
  line-height: 1.55;
  color: var(--muted);
}

/* ── Page CTA ────────────────────────────────────────────── */
.page-cta {
  padding: 120px 40px 130px;
  background: var(--paper);
}
.page-cta-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
  align-items: end;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--rule-strong);
}
.page-cta h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  font-weight: 400;
  text-wrap: pretty;
}
.page-cta h2 .strong { font-weight: 600; }
.page-cta-action {
  display: flex;
  justify-content: flex-end;
}
.page-cta-button {
  background: var(--ink);
  color: var(--paper);
  padding: 18px 28px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.page-cta-button .accent-dot {
  width: 6px;
  height: 6px;
  border-radius: 99px;
  background: var(--ink);
}
.page-cta-button .accent-dot.accent-blue { background: var(--blue); }
.page-cta-button .accent-dot.accent-amber { background: var(--amber); }

/* ── About: founder section ──────────────────────────────── */
.founder-bio {
  padding: 80px 40px 120px;
  background: var(--paper);
}
.founder-bio-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: start;
}
.founder-bio-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center 28%;
  border-radius: 12px;
  display: block;
  box-shadow: 0 0 0 1px var(--rule), 0 30px 60px -30px rgba(14, 22, 56, 0.3);
}
.founder-bio-id {
  margin-top: 22px;
}
.founder-bio-name {
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
}
.founder-bio-role {
  font-size: 14px;
  color: var(--muted);
  margin-top: 4px;
}
.founder-bio-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 13px;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: 0.04em;
  border-bottom: 1px solid var(--rule-strong);
  padding-bottom: 2px;
}
.founder-bio h2 {
  margin: 24px 0 32px;
  font-family: var(--display);
  font-size: clamp(32px, 3.6vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 400;
  text-wrap: pretty;
}
.founder-bio h2 .strong { font-weight: 600; }
.founder-bio-prose {
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  opacity: 0.86;
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 640px;
}
.founder-bio-prose p { margin: 0; }
.founder-bio-prose a { color: var(--ink); }

/* ── About: industries ──────────────────────────────────── */
.industries {
  padding: 110px 40px;
  background: var(--ink);
  color: var(--paper);
}
.industries-inner { max-width: 1280px; margin: 0 auto; }
.industries-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.4fr;
  gap: 70px;
  margin-top: 30px;
  align-items: start;
}
.industries h2 {
  margin: 0 0 50px;
  font-family: var(--display);
  font-size: clamp(36px, 4.4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  font-weight: 400;
  text-wrap: pretty;
}
.industries h2 .strong { font-weight: 600; }
.industries-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.industry-button {
  width: 100%;
  text-align: left;
  cursor: pointer;
  background: transparent;
  border: none;
  padding: 18px 0;
  border-bottom: 1px solid rgba(244, 241, 235, 0.16);
  color: var(--paper);
  display: flex;
  align-items: center;
  gap: 18px;
  font-family: var(--display);
}
.industries-list li:first-child .industry-button {
  border-top: 1px solid rgba(244, 241, 235, 0.16);
}
.industry-button-num {
  font-family: var(--mono);
  font-size: 12px;
  opacity: 0.55;
  width: 24px;
}
.industry-button-name {
  font-size: 22px;
  letter-spacing: -0.015em;
  font-weight: 400;
  opacity: 0.7;
  transition: opacity 0.15s, font-weight 0.15s;
}
.industry-button[aria-pressed="true"] .industry-button-name {
  font-weight: 600;
  opacity: 1;
}
.industry-button-pip {
  margin-left: auto;
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: transparent;
  border: 1px solid rgba(244, 241, 235, 0.3);
}
.industry-button[aria-pressed="true"] .industry-button-pip {
  background: var(--amber);
  border: none;
}
.industries-detail {
  position: sticky;
  top: 100px;
  padding: 40px 40px 44px;
  background: rgba(244, 241, 235, 0.04);
  border: 1px solid rgba(244, 241, 235, 0.10);
  border-radius: 16px;
  min-height: 280px;
}
.industries-detail-eyebrow {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amber);
  font-weight: 500;
  margin-bottom: 18px;
}
.industries-detail h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 500;
}
.industries-detail p {
  margin: 24px 0 0;
  font-size: 17px;
  line-height: 1.6;
  color: rgba(244, 241, 235, 0.8);
  text-wrap: pretty;
}

/* ── About: principles ───────────────────────────────────── */
.principles {
  padding: 110px 40px;
  background: var(--paper);
}
.principles-inner { max-width: 1280px; margin: 0 auto; }
.principles h2 {
  margin: 24px 0 60px;
  font-family: var(--display);
  font-size: clamp(36px, 4.4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  font-weight: 400;
  max-width: 900px;
  text-wrap: pretty;
}
.principles h2 .strong { font-weight: 600; }
.principles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.principle {
  padding: 28px 0 32px;
  border-top: 1px solid var(--rule-strong);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.principle-num {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--faint);
  letter-spacing: 0.06em;
}
.principle h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.015em;
  font-weight: 500;
}
.principle p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--muted);
}

/* ── About: CTA-only intro spacing override ──────────────── */
.about-cta { padding-top: 60px; }

/* ── Legal pages ─────────────────────────────────────────── */
html.has-smooth-scroll { scroll-behavior: smooth; }

.legal-body {
  padding: 70px 40px 120px;
  background: var(--paper);
}
.legal-body-inner { max-width: 1280px; margin: 0 auto; }
.legal-body-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 80px;
  align-items: start;
}
.legal-aside { position: sticky; top: 100px; }
.legal-updated-card {
  padding: 20px 22px;
  border: 1px solid var(--rule-strong);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.5);
  margin-bottom: 28px;
}
.legal-updated-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 6px;
}
.legal-updated-value {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
}
.legal-toc-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 14px;
  padding-left: 4px;
}
.legal-toc {
  margin: 0;
  padding: 0;
  list-style: none;
}
.legal-toc a {
  display: flex;
  gap: 12px;
  align-items: baseline;
  padding: 8px 4px;
  font-size: 13.5px;
  line-height: 1.4;
  color: var(--muted);
  text-decoration: none;
  border-top: 1px solid var(--rule);
}
.legal-toc li:first-child a { border-top: none; }
.legal-toc a:hover { color: var(--ink); }
.legal-toc-num {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--faint);
  min-width: 22px;
}
.legal-main { max-width: 760px; }
.legal-intro {
  padding: 22px 26px;
  background: var(--ink);
  color: var(--paper);
  border-radius: 12px;
  margin-bottom: 50px;
}
.legal-intro-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 10px;
}
.legal-intro-text {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(244, 241, 235, 0.92);
  text-wrap: pretty;
}
.legal-section {
  padding-top: 44px;
  padding-bottom: 44px;
  border-bottom: 1px solid var(--rule);
  scroll-margin-top: 100px;
}
.legal-section:first-of-type { padding-top: 0; }
.legal-section:last-of-type { border-bottom: none; }
.legal-section-head {
  display: flex;
  gap: 14px;
  align-items: baseline;
  margin-bottom: 18px;
}
.legal-section-num {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--faint);
  letter-spacing: 0.06em;
}
.legal-section-head h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(22px, 2.4vw, 28px);
  line-height: 1.25;
  letter-spacing: -0.015em;
  font-weight: 600;
  color: var(--ink);
}
.legal-section-body {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.legal-section-body p {
  margin: 0;
  text-wrap: pretty;
  opacity: 0.86;
}
.legal-section-body ul {
  margin: 4px 0;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.legal-section-body ul li {
  opacity: 0.86;
  padding-left: 4px;
}
.legal-section-body .note {
  margin: 0;
  padding: 12px 16px;
  background: rgba(14, 22, 56, 0.04);
  border-left: 3px solid var(--amber);
  border-radius: 4px;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink);
  opacity: 0.85;
}

/* ── Legal contact card ──────────────────────────────────── */
.legal-contact {
  padding: 0 40px 130px;
  background: var(--paper);
}
.legal-contact-card {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 50px;
  padding: 50px;
  background: var(--ink);
  color: var(--paper);
  border-radius: 16px;
}
.legal-contact-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
}
.legal-contact h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 500;
  text-wrap: pretty;
}
.legal-contact-lede {
  margin: 20px 0 0;
  font-size: 15.5px;
  line-height: 1.6;
  color: rgba(244, 241, 235, 0.78);
  max-width: 460px;
  text-wrap: pretty;
}
.legal-contact-channels {
  display: flex;
  flex-direction: column;
  gap: 14px;
  justify-content: center;
  font-size: 14.5px;
  line-height: 1.5;
}
.legal-contact-channels-label {
  color: rgba(244, 241, 235, 0.5);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.legal-contact-channels a {
  color: var(--paper);
  text-decoration: none;
  border-bottom: 1px solid var(--amber);
  padding-bottom: 1px;
}
.legal-contact-channels .post {
  color: rgba(244, 241, 235, 0.85);
}

/* ── 404 ─────────────────────────────────────────────────── */
.not-found {
  position: relative;
  overflow: hidden;
  background: var(--paper);
  padding: 0 0 130px;
  min-height: calc(100vh - 80px);
}
.not-found-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 60px 40px 0;
  position: relative;
  z-index: 1;
}
.not-found-code {
  font-family: var(--mono);
  letter-spacing: 0.18em;
  color: var(--ink);
  font-weight: 600;
}
.not-found-grid {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  gap: 60px;
  margin-top: 36px;
  align-items: end;
}
.not-found h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(56px, 8.4vw, 132px);
  line-height: 0.95;
  letter-spacing: -0.025em;
  font-weight: 400;
  color: var(--ink);
  text-wrap: pretty;
}
.not-found h1 .strong { font-weight: 600; }
.not-found-aside { padding-bottom: 16px; }
.not-found-aside p {
  margin: 0;
  font-size: 17px;
  line-height: 1.55;
  color: var(--muted);
  max-width: 460px;
  text-wrap: pretty;
}
.not-found-trace {
  margin-top: 22px !important;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--mono);
  font-size: 12.5px;
  color: var(--ink);
  padding: 10px 14px;
  background: rgba(14, 22, 56, 0.04);
  border: 1px solid var(--rule);
  border-radius: 6px;
  max-width: 420px;
  overflow: hidden;
}
.not-found-trace-label {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--faint);
  flex: none;
}
.not-found-trace-path {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--amber);
}
.not-found-chart {
  margin-top: 64px;
  background: var(--paper-warm);
  border: 1px solid var(--rule);
  border-radius: 14px;
  padding: 24px 32px 16px;
}

.not-found-options { margin-top: 70px; }
.not-found-cards {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.not-found-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 28px 28px 26px;
  background: #FFFFFF;
  border: 1px solid var(--rule);
  border-radius: 14px;
  text-decoration: none;
  color: var(--ink);
  transition: border-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}
.not-found-card:hover {
  border-color: var(--rule-strong);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px -18px rgba(14, 22, 56, 0.25);
}
@media (prefers-reduced-motion: reduce) {
  .not-found-card { transition: none; }
  .not-found-card:hover { transform: none; }
}
.not-found-card-num {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--faint);
}
.not-found-card h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.015em;
  font-weight: 500;
}
.not-found-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
}
.not-found-card-cta {
  margin-top: auto;
  padding-top: 14px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-top: 1px solid var(--rule);
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1080px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .pillars-grid { grid-template-columns: 1fr; }
  .pillar { min-height: 0; }
  .genie { grid-template-columns: 1fr; }
  .genie-image { min-height: 320px; }
  .cards { grid-template-columns: 1fr; }
  .sectors-grid { grid-template-columns: repeat(2, 1fr); }
  .sector { border-right: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
  .sector:nth-child(3n) { border-right: 1px solid var(--rule); }
  .sector:nth-child(2n) { border-right: none; }
  .sectors-grid .sector.last-row { border-bottom: 1px solid var(--rule); }
  .quotes { grid-template-columns: 1fr; }
  .stat-strap { grid-template-columns: repeat(2, 1fr); row-gap: 28px; }
  .stat:nth-child(2) { border-right: none; padding-right: 0; }
  .process-grid { grid-template-columns: 1fr; gap: 28px; }
  .process-side { position: static; }
  .founder-inner { grid-template-columns: 120px 1fr; gap: 28px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-cols { grid-template-columns: 1fr 1fr; row-gap: 40px; }
  .subbrand-strip { grid-template-columns: repeat(3, 1fr); row-gap: 16px; }
  .subbrand-label { grid-column: 1 / -1; padding-right: 0; }
  .page-hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .capabilities-grid { grid-template-columns: 1fr; gap: 30px; }
  .capabilities-side { position: static; }
  .who-for-grid { grid-template-columns: 1fr; }
  .illustrative-body { grid-template-columns: 1fr; gap: 30px; }
  .page-cta-inner { grid-template-columns: 1fr; gap: 30px; align-items: start; }
  .page-cta-action { justify-content: flex-start; }
  .founder-bio-inner { grid-template-columns: 1fr; gap: 40px; }
  .founder-bio-photo { max-width: 280px; }
  .industries-grid { grid-template-columns: 1fr; gap: 40px; }
  .industries-detail { position: static; }
  .principles-grid { grid-template-columns: repeat(2, 1fr); }
  .legal-body-grid { grid-template-columns: 1fr; gap: 40px; }
  .legal-aside { position: static; }
  .legal-contact-card { grid-template-columns: 1fr; gap: 30px; padding: 36px; }
  .not-found-grid { grid-template-columns: 1fr; gap: 32px; }
  .not-found-cards { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .container, .nav-inner, .hero, .pillars, .work, .process, .founder, .contact, .footer { padding-left: 24px; padding-right: 24px; }
  .nav-links { display: none; }
  .nav-toggle { display: inline-flex; }
  .sectors-grid { grid-template-columns: 1fr; }
  .sector { border-right: none !important; border-bottom: 1px solid var(--rule); }
  .subbrand-strip { grid-template-columns: 1fr; row-gap: 12px; }
  .stat-strap { grid-template-columns: 1fr; row-gap: 18px; padding: 24px 28px; }
  .stat { border-right: none; padding-right: 0; padding-bottom: 18px; border-bottom: 1px solid var(--rule); }
  .stat:last-child { border-bottom: none; padding-bottom: 0; }
  .footer-cols { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; }
  .founder-inner { grid-template-columns: 1fr; }
  .founder-portrait { max-width: 160px; }
  .genie-copy { padding: 32px 28px; }
  .genie-facets { flex-direction: column; gap: 18px; }
  .page-hero-watermark { width: 360px; height: 360px; right: -100px; top: 100px; }
  .page-hero-inner { padding-left: 24px; padding-right: 24px; }
  .capabilities, .who-for, .illustrative, .page-cta, .founder-bio, .industries, .principles, .legal-body, .legal-contact { padding-left: 24px; padding-right: 24px; }
  .principles-grid { grid-template-columns: 1fr; }
  .illustrative-card { padding: 32px 24px; }
  .legal-contact-card { padding: 28px; }
  .who-for-card, .industries-detail { padding: 24px 22px; }
  .not-found { padding-left: 0; padding-right: 0; }
  .not-found-inner { padding-left: 24px; padding-right: 24px; }
  .not-found-chart { padding: 16px 18px 8px; }
}
