/* SHIFT · Velia — aligned with shift_investor deck */
@font-face {
  font-family: "Lastica";
  src: url("../assets/fonts/Lastica.woff2") format("woff2"),
       url("../assets/fonts/Lastica.woff") format("woff"),
       url("../assets/fonts/Lastica.otf") format("opentype"),
       url("../assets/fonts/Lastica.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --hermes: #f37021;
  --hermes-hot: #ff8a3d;
  --oxford: #002147;
  --navy: #003366;
  --cobalt: #0047ab;
  --ink: #0a1628;
  --paper: #f4f1ec;
  --paper-muted: rgba(10, 22, 40, 0.62);
  --muted: #3d4f66;
  --soft: #6b7c90;
  --line: rgba(10, 22, 40, 0.10);
  --line-strong: rgba(10, 22, 40, 0.16);
  --line-orange: rgba(243, 112, 33, 0.35);
  --ground: #f4f1ec;
  --surface: #fffdf9;
  --charcoal: #0a1628;
  --gutter: clamp(20px, 5vw, 64px);
  --display: "Lastica", Outfit, "IBM Plex Sans", sans-serif;
  --body: "IBM Plex Sans", Helvetica, Arial, sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, monospace;
  --deck-bg:
    radial-gradient(1200px 600px at 110% -10%, rgba(243, 112, 33, 0.12), transparent 55%),
    radial-gradient(900px 500px at -10% 110%, rgba(0, 71, 171, 0.35), transparent 50%),
    linear-gradient(165deg, #00152c 0%, var(--oxford) 42%, #001a33 100%);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ground);
  color: var(--ink);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--hermes); text-decoration: none; }
a:hover { color: var(--hermes-hot); }
h1, h2, h3 {
  font-family: var(--display);
  font-weight: 300;
  letter-spacing: -0.02em;
  margin: 0;
}
p { margin: 0; }

.site { min-height: 100vh; display: flex; flex-direction: column; }
.site > main { flex: 1 0 auto; }

/* —— Nav —— */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--ink);
  border-top: 3px solid var(--hermes);
  border-bottom: 1px solid rgba(244, 241, 236, 0.08);
}
.nav-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  padding: 12px var(--gutter);
  min-height: 72px;
}
.brand {
  display: flex;
  align-items: center;
  justify-self: start;
  flex: 0 0 auto;
}
.brand:hover { opacity: 0.92; }
.brand-logo {
  height: 52px;
  width: auto;
  display: block;
}
.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px 22px;
  font-family: var(--mono);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  justify-self: center;
  grid-column: 2;
}
.nav-links a { color: rgba(244, 241, 236, 0.62); padding: 8px 0; }
.nav-links a:hover,
.nav-links a[aria-current="page"] { color: var(--hermes); }
.made-ch--nav {
  justify-self: end;
  grid-column: 3;
  padding: 5px 10px;
  border-color: rgba(244, 241, 236, 0.18);
}
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px; height: 44px;
  cursor: pointer;
  border: 1px solid rgba(244, 241, 236, 0.25);
  border-radius: 4px;
  background: transparent;
  padding: 0;
  justify-self: end;
}
.nav-burger span {
  width: 20px; height: 2px;
  background: var(--paper);
  display: block;
}
.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 6px var(--gutter) 24px;
  border-top: 1px solid rgba(244, 241, 236, 0.08);
}
.nav-mobile a {
  color: rgba(244, 241, 236, 0.85);
  font-family: var(--mono);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 14px 0;
  border-bottom: 1px solid rgba(244, 241, 236, 0.08);
}
.nav-mobile a:last-of-type { border-bottom: none; }
.nav-mobile a[aria-current="page"] { color: var(--hermes); }
.nav-mobile .nav-cta {
  align-self: flex-start;
  margin-top: 16px;
  border-bottom: none !important;
}
.nav-mobile .nav-note {
  font: 400 13px var(--body);
  color: rgba(244, 241, 236, 0.5);
  margin-top: 10px;
}
.nav.is-open .nav-mobile { display: flex; }

@media (max-width: 1100px) {
  .nav-inner {
    grid-template-columns: 1fr auto auto;
  }
  .nav-links { display: none; }
  .made-ch--nav { grid-column: auto; }
  .nav-burger { display: flex; }
}

/* —— Hero —— */
.hero {
  position: relative;
  background: var(--deck-bg);
  color: var(--paper);
  padding: clamp(48px, 7vw, 80px) var(--gutter) clamp(64px, 9vw, 96px);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 40px), 0 100%);
  overflow: hidden;
}
.hero--tall {
  padding: clamp(56px, 9vw, 100px) var(--gutter) clamp(80px, 11vw, 120px);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 48px), 0 100%);
}
.hero-orb {
  position: absolute;
  right: -2%;
  top: 50%;
  transform: translateY(-48%);
  width: clamp(240px, 36vw, 480px);
  opacity: 0.22;
  pointer-events: none;
  filter: drop-shadow(0 12px 40px rgba(243, 112, 33, 0.25));
}
.hero-orb img {
  width: 100%;
  height: auto;
}
.hero-inner { position: relative; max-width: 880px; }
.kicker {
  font-family: var(--mono);
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--hermes);
  text-transform: uppercase;
  margin-bottom: 28px;
}
.hero .kicker {
  margin-top: -8px;
}
.hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  line-height: 1.12;
  margin: 0 0 20px;
  letter-spacing: -0.02em;
  max-width: none;
}
.hero--tall h1 {
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  margin-bottom: 28px;
}
.hero-headline {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.06em;
}
.hero-headline span {
  display: block;
}
.hero-lead {
  font: 400 clamp(1.05rem, 2vw, 1.25rem) / 1.6 var(--body);
  color: rgba(244, 241, 236, 0.72);
  max-width: min(52rem, 100%);
  margin: 0;
}
.hero-lead-stack {
  display: flex;
  flex-direction: column;
  gap: 0.35em;
}
.hero-lead-stack span {
  display: block;
}
.hero-lead-stack .hero-lead-gap {
  margin-top: 0.85em;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 40px;
}

/* —— Buttons —— */
.btn {
  display: inline-block;
  padding: 16px 34px;
  border-radius: 2px;
  font: 600 16px var(--body);
  white-space: nowrap;
  border: none;
  cursor: pointer;
  text-align: center;
}
.btn-primary { background: var(--hermes); color: #fff; }
.btn-primary:hover { background: var(--hermes-hot); color: #fff; }
.btn-ghost {
  border: 1px solid rgba(244, 241, 236, 0.4);
  color: var(--paper);
  background: transparent;
}
.btn-ghost:hover { color: var(--paper); border-color: var(--paper); }

/* —— Sections —— */
.section { padding: clamp(48px, 7vw, 80px) var(--gutter); }
.section-narrow { max-width: 1100px; margin: 0 auto; }
.section-title {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
}
.section-title--lg {
  font-size: clamp(1.9rem, 4vw, 2.75rem);
  text-align: center;
  margin-bottom: 40px;
}
.eyebrow {
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--hermes);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.lead {
  font: 400 clamp(1.05rem, 2vw, 1.2rem) / 1.7 var(--body);
  color: var(--muted);
  max-width: 820px;
}
.lead + .lead { margin-top: 16px; }
.lead-strong { color: var(--ink); font-weight: 500; }

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.grid-steps {
  max-width: 1400px;
  margin: 0 auto;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}
.grid-steps .step-card {
  padding: 22px 16px 24px;
  min-width: 0;
}
.grid-steps .step-label {
  flex-wrap: wrap;
  align-items: flex-start;
}
.grid-steps .step-label .t {
  font-size: clamp(1.05rem, 1.3vw, 1.2rem);
  line-height: 1.25;
}
.grid-steps .card-body {
  font-size: 14px;
  line-height: 1.55;
}
@media (max-width: 1100px) {
  .grid-steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 720px) {
  .grid-steps {
    grid-template-columns: 1fr;
  }
}
.grid-280 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-300 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }

.card {
  background: var(--surface);
  border: 1px solid var(--line-orange);
  padding: 26px;
}
.card-paper {
  background: var(--surface);
  border: 1px solid var(--line);
  border-top: 3px solid var(--hermes);
  padding: 26px;
}
.card h3, .card-title {
  font-family: var(--display);
  font-weight: 300;
  font-size: 1.25rem;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}
.card p, .card-body {
  font: 400 15px / 1.6 var(--body);
  color: var(--muted);
  margin: 0;
}
.step-num {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--hermes);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font: 500 15px var(--mono);
  margin-bottom: 16px;
  flex: 0 0 auto;
}

.chip-stack { display: flex; flex-direction: column; gap: 8px; }
.chip-row { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  font: 500 13px var(--mono);
  letter-spacing: 0.04em;
  color: var(--ink);
  background: rgba(0, 33, 71, 0.04);
  border: 1px solid var(--line);
  padding: 6px 14px;
}

/* —— CTA band —— */
.cta-band {
  background: var(--deck-bg);
  color: var(--paper);
  padding: clamp(56px, 8vw, 80px) var(--gutter);
  clip-path: polygon(0 40px, 100% 0, 100% 100%, 0 100%);
}
.cta-band--center { text-align: center; }
.cta-band h2,
.dark-band > .section-narrow > div > h2 {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(1.75rem, 3.8vw, 2.6rem);
  margin: 20px 0 16px;
  letter-spacing: -0.02em;
}
.cta-band p,
.dark-band > .section-narrow > div > p {
  font: 400 1.05rem / 1.6 var(--body);
  color: rgba(244, 241, 236, 0.72);
  max-width: 600px;
}
.cta-band--center p { margin: 0 auto; }
.founder-line {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
}
.founder-line img {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--hermes);
  flex: 0 0 auto;
}
.founder-line span {
  font: 400 15px var(--body);
  color: rgba(244, 241, 236, 0.72);
}

/* —— Footer —— */
.footer {
  background: var(--ink);
  color: var(--paper);
  padding: 40px var(--gutter);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line-orange);
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}
.footer-logo {
  height: 48px;
  width: auto;
}
.footer-copy {
  font: 400 13px / 1.5 var(--body);
  color: rgba(244, 241, 236, 0.5);
}
.footer-copy a {
  color: rgba(244, 241, 236, 0.65);
}
.footer-copy a:hover {
  color: var(--hermes);
}
.footer-copy sup {
  font-size: 0.65em;
  line-height: 0;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 28px;
  font-family: var(--mono);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.footer-links a { color: rgba(244, 241, 236, 0.55); }
.footer-links a:hover { color: var(--hermes); }
.footer-consent-btn {
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  border: 0;
  padding: 0;
  margin: 0;
  cursor: pointer;
  font: inherit;
  font-family: var(--mono);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(244, 241, 236, 0.55);
  box-shadow: none;
  border-radius: 0;
}
.footer-consent-btn:hover,
.footer-consent-btn:focus-visible {
  color: var(--hermes);
  outline: none;
}
.footer-end {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
}
.footer-ver {
  font: 400 11px / 1 var(--mono);
  letter-spacing: 0.08em;
  color: rgba(244, 241, 236, 0.28);
  user-select: none;
}
@media (max-width: 720px) {
  .footer-end { align-items: flex-start; }
}

.made-ch {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border: 1px solid rgba(244, 241, 236, 0.28);
  border-radius: 2px;
  flex: 0 0 auto;
}
.made-ch-flag {
  width: 22px;
  height: 22px;
  background: #d52b1e;
  position: relative;
  flex: 0 0 auto;
}
.made-ch-flag::before,
.made-ch-flag::after {
  content: "";
  position: absolute;
  background: #fff;
}
.made-ch-flag::before {
  width: 12px;
  height: 3.5px;
  left: 5px;
  top: 9.25px;
}
.made-ch-flag::after {
  width: 3.5px;
  height: 12px;
  left: 9.25px;
  top: 5px;
}
.made-ch-text {
  font: 500 11px var(--mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(244, 241, 236, 0.85);
  white-space: nowrap;
}
.made-ch--nav .made-ch-flag {
  width: 16px;
  height: 16px;
}
.made-ch--nav .made-ch-flag::before {
  width: 9px;
  height: 2.5px;
  left: 3.5px;
  top: 6.75px;
}
.made-ch--nav .made-ch-flag::after {
  width: 2.5px;
  height: 9px;
  left: 6.75px;
  top: 3.5px;
}
.made-ch--nav .made-ch-text {
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  color: rgba(244, 241, 236, 0.7);
}
@media (max-width: 720px) {
  .made-ch--nav .made-ch-text { display: none; }
  .made-ch--nav { padding: 5px; }
}

/* —— Home four steps —— */
.step-card {
  background: var(--surface);
  border: 1px solid var(--line-orange);
  padding: 28px 26px 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.step-visual {
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.power-badge {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 3px solid var(--hermes);
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}
.power-badge svg,
.cycle-badge svg {
  display: block;
  margin: 0;
}
.cycle-badge {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 3px solid var(--hermes);
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}
.step-label {
  display: flex;
  align-items: center;
  gap: 10px;
}
.step-label .n {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--hermes);
  color: #fff;
  font: 500 13px var(--mono);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}
.step-label .t {
  font-family: var(--display);
  font-weight: 300;
  font-size: 1.3rem;
  color: var(--ink);
  letter-spacing: -0.01em;
}

/* —— Use cases: list left, detail right —— */
.paths {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(260px, 380px) minmax(0, 1fr);
  gap: 24px 0;
  align-items: start;
}
.paths-nav {
  display: grid;
  gap: 10px;
  padding-right: 28px;
  border-right: 2px solid var(--hermes);
}
.paths-panel {
  position: sticky;
  top: 24px;
  padding-left: 28px;
}
.path-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 18px;
  border: 1px solid var(--line);
  border-radius: 4px;
  cursor: pointer;
  background: var(--surface);
  min-height: 44px;
  width: 100%;
  text-align: left;
  font: inherit;
  color: inherit;
}
.path-btn:hover { border-color: var(--hermes); }
.path-btn.is-active {
  background: var(--deck-bg);
  border-color: transparent;
}
.path-btn .badge {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font: 500 13px var(--mono);
  flex: 0 0 auto;
  background: rgba(0, 33, 71, 0.06);
  color: var(--oxford);
}
.path-btn.is-active .badge { background: var(--hermes); color: #fff; }
.path-btn .title {
  font-family: var(--display);
  font-weight: 300;
  font-size: 1.15rem;
  color: var(--ink);
}
.path-btn.is-active .title { color: var(--paper); }
.path-btn .hook {
  font: 400 13px var(--body);
  color: var(--soft);
}
.path-btn.is-active .hook { color: rgba(244, 241, 236, 0.62); }
.path-detail {
  display: none;
  background: var(--surface);
  border: 1px solid var(--line);
  border-top: 3px solid var(--hermes);
  padding: 22px 20px 24px;
}
.path-detail.is-open { display: block; }
.path-detail .label {
  font: 500 11px var(--mono);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: var(--soft);
}
.path-detail .label-accent { color: var(--hermes); margin-bottom: 10px; }
.path-detail .issue {
  font-family: var(--display);
  font-weight: 300;
  font-size: 1.2rem;
  line-height: 1.35;
  color: var(--ink);
  margin-bottom: 20px;
}
.path-steps { display: grid; gap: 10px; margin-bottom: 20px; }
.path-steps div {
  display: flex;
  gap: 10px;
  align-items: baseline;
  font: 400 15px / 1.5 var(--body);
  color: var(--muted);
}
.path-steps span.arrow {
  color: var(--hermes);
  font: 700 15px var(--body);
  flex: 0 0 auto;
}
.path-outcome {
  background: rgba(0, 33, 71, 0.04);
  border-left: 3px solid var(--hermes);
  padding: 12px 16px;
  font: 500 15px / 1.5 var(--body);
  color: var(--ink);
  margin-bottom: 20px;
}
.path-flow {
  display: grid;
  grid-template-columns: minmax(0,1fr) auto minmax(0,1fr);
  align-items: stretch;
}
.path-flow .from {
  background: var(--ink);
  padding: 16px 18px;
  text-align: center;
  color: var(--paper);
}
.path-flow .mid {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 clamp(10px, 2vw, 18px);
  gap: 1px;
  color: var(--hermes);
}
.path-flow .mid .shift-mark {
  font: 500 11px var(--mono);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.shift-mark {
  font: 500 11px var(--mono);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--hermes);
}
.path-flow .to {
  background: var(--surface);
  border: 2px solid var(--hermes);
  padding: 16px 18px;
  text-align: center;
}

/* —— Why SHIFT —— */
.why-row {
  display: grid;
  grid-template-columns: minmax(150px, 240px) 1fr;
  gap: 16px clamp(24px, 5vw, 64px);
  align-items: baseline;
  padding: clamp(28px, 4vw, 44px) 0;
  border-top: 1px solid var(--line-strong);
}
.why-word {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  line-height: 1;
  color: var(--hermes);
  letter-spacing: -0.02em;
}
.role-card {
  border: 1px solid rgba(244, 241, 236, 0.2);
  padding: 26px 28px;
  background: rgba(244, 241, 236, 0.03);
}
.role-card .who {
  font: 500 12px var(--mono);
  letter-spacing: 0.16em;
  color: var(--hermes);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.role-card .claim {
  font-family: var(--display);
  font-weight: 300;
  font-size: 1.25rem;
  line-height: 1.4;
  color: var(--paper);
}
.dark-band {
  background: var(--deck-bg);
  color: var(--paper);
  clip-path: polygon(0 0, 100% 40px, 100% 100%, 0 100%);
  padding: clamp(72px, 9vw, 104px) var(--gutter) clamp(56px, 8vw, 88px);
}

/* —— Market table —— */
.stat-tile { border-top: 1px solid var(--line-orange); padding-top: 18px; }
.stat-tile .num {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(2rem, 3.4vw, 3.2rem);
  line-height: 1.05;
  color: var(--hermes);
  white-space: nowrap;
}
.stat-tile .txt {
  font: 400 15px / 1.55 var(--body);
  color: var(--muted);
  margin-top: 10px;
}
.grid-stats {
  gap: 32px clamp(28px, 4vw, 56px);
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
@media (max-width: 960px) {
  .grid-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 520px) {
  .grid-stats { grid-template-columns: 1fr; }
}
.table-wrap { overflow-x: auto; }
table.data {
  border-collapse: collapse;
  width: 100%;
  min-width: 800px;
  font: 400 15px var(--body);
}
table.data th {
  text-align: left;
  padding: 14px 18px;
  border-bottom: 2px solid var(--ink);
  font: 500 12px var(--mono);
  color: var(--soft);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
table.data td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}
table.data td:first-child { font-weight: 600; color: var(--ink); }
table.data td.cost { font-weight: 600; color: var(--hermes); white-space: nowrap; }
table.data td.src { color: var(--soft); font-size: 13px; }

/* —— Team —— */
.person {
  background: var(--surface);
  border: 1px solid var(--line-orange);
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}
.person img {
  width: 110px; height: 110px;
  border-radius: 50%;
  object-fit: cover;
  filter: grayscale(1);
}

/* —— Partners —— */
.partner-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.partner-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-top: 3px solid var(--hermes);
  padding: 28px 28px 32px;
}
.partner-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}
.partner-card-head h3 {
  font-family: var(--display);
  font-weight: 300;
  font-size: 1.6rem;
  margin: 0;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.partner-logo {
  height: 2.1rem;
  width: auto;
  display: block;
  flex: 0 0 auto;
}
.partner-logo--gft {
  background: #fff;
  padding: 0.35rem 0.5rem;
  border-radius: 4px;
  border: 1px solid var(--line);
}
.partner-kind {
  font: 500 11px var(--mono);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--hermes);
  margin: 0 0 12px;
}
@media (max-width: 720px) {
  .partner-grid { grid-template-columns: 1fr; }
}
.person .ph {
  width: 110px; height: 110px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e8e4dc, #d4d0c8);
  display: flex;
  align-items: center;
  justify-content: center;
  font: 500 12px var(--mono);
  color: var(--soft);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.person .name {
  font-family: var(--display);
  font-weight: 300;
  font-size: 1.35rem;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.person .role {
  font: 500 12px var(--mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--soft);
  margin-top: 6px;
}
.person .bio {
  font: 400 14px / 1.5 var(--body);
  color: #9aa6b5;
  margin-top: 6px;
}

/* —— Contact form —— */
.form-wrap {
  max-width: 640px;
  margin: 0 auto;
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}
.scan-step {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.scan-step + .scan-step { margin-top: 20px; }
.scan-step .n {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--deck-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font: 500 15px var(--mono);
  color: var(--hermes);
  flex: 0 0 auto;
}
.scan-step .t {
  font-family: var(--display);
  font-weight: 300;
  font-size: 1.25rem;
  margin-bottom: 4px;
}
.form-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-top: 3px solid var(--hermes);
  padding: clamp(24px, 4vw, 40px);
}
.form-card h2 {
  font-family: var(--display);
  font-weight: 300;
  font-size: 1.5rem;
  margin: 0 0 24px;
  line-height: 1.35;
}
.form-card h2 a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.form-card h2 a:hover { color: var(--hermes); }
.form-card h2 .form-alt {
  display: inline-block;
  margin: 8px 0 2px;
  font-size: 0.85em;
  color: var(--muted);
}
.form-grid { display: grid; gap: 16px; }
.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}
label.field {
  display: grid;
  gap: 6px;
  font: 500 12px var(--mono);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}
label.field input,
label.field textarea {
  border: 1px solid var(--oxford);
  border-radius: 2px;
  padding: 12px 14px;
  font: 400 15px var(--body);
  min-height: 44px;
  width: 100%;
  color: var(--ink);
  background: #fff;
  text-transform: none;
  letter-spacing: normal;
}
label.field input:focus,
label.field textarea:focus {
  outline: none;
  border-color: var(--oxford);
  box-shadow: 0 0 0 2px rgba(0, 33, 71, 0.18);
}
label.field input::placeholder {
  color: rgba(10, 22, 40, 0.35);
}
label.field textarea { resize: vertical; min-height: 110px; }
.form-ok,
.form-err {
  display: none;
  border-radius: 2px;
  padding: 14px 18px;
  font: 500 15px var(--body);
}
.form-ok {
  background: #EAF7F0;
  border: 1px solid #B7E2CB;
  color: #1E7A46;
}
.form-err {
  background: #FDECEC;
  border: 1px solid #F0B4B4;
  color: #9B1C1C;
}
.form-ok.is-show,
.form-err.is-show { display: block; }
.hp {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

@media (max-width: 900px) {
  .paths {
    grid-template-columns: 1fr;
  }
  .paths-nav {
    padding-right: 0;
    border-right: none;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--hermes);
  }
  .paths-panel {
    position: static;
    padding-left: 0;
  }
}

@media (max-width: 640px) {
  .why-row { grid-template-columns: 1fr; }
  .path-flow { grid-template-columns: 1fr; gap: 8px; }
  .hero h1, .hero--tall h1 { max-width: none; }
}

/* Privacy */
.privacy-prose .section-title { margin-top: 2.2rem; margin-bottom: 0.75rem; }
.privacy-prose .section-title:first-child { margin-top: 0; }
.privacy-list {
  margin: 0 0 1.25rem;
  padding-left: 1.2rem;
  color: var(--muted);
  font: 400 16px / 1.65 var(--body);
}
.privacy-list li { margin: 0.35rem 0; }
.privacy-prose code {
  font-family: var(--mono);
  font-size: 0.9em;
  background: rgba(0, 33, 71, 0.06);
  padding: 0.1em 0.35em;
  border-radius: 2px;
}

/* Consent banner */
.consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  padding: 16px var(--gutter) 20px;
  background: rgba(14, 34, 64, 0.96);
  color: #F4F1EC;
  border-top: 3px solid var(--hermes);
  box-shadow: 0 -12px 40px rgba(0, 0, 0, 0.25);
}
.consent-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 28px;
}
.consent-copy { flex: 1 1 320px; }
.consent-title {
  font-family: var(--display);
  font-weight: 500;
  font-size: 1.15rem;
  margin: 0 0 6px;
}
.consent-copy p {
  margin: 0;
  font: 400 14px / 1.5 var(--body);
  color: rgba(244, 241, 236, 0.78);
}
.consent-copy a { color: #fff; text-decoration: underline; text-underline-offset: 2px; }
.consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  flex: 0 0 auto;
}
.consent-banner .btn-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.35);
}
.consent-banner .btn-ghost:hover {
  border-color: #fff;
  color: #fff;
}
