/* Flying Geese — Site CSS
 * Layered atop colors_and_type.css. */

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--fg-white);
  color: var(--fg-ink);
  overflow-x: hidden;
}

/* Selection */
::selection { background: var(--fg-amber); color: #fff; }

/* =========================================================
 * LAYOUT PRIMITIVES
 * ========================================================= */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
  position: relative;
}
@media (max-width: 720px) {
  .container { padding: 0 24px; }
}
.reading { max-width: 720px; }
.measure { max-width: 920px; }

section {
  padding: 120px 0;
  position: relative;
}
section.tight { padding: 88px 0; }
section.pad-lg { padding: 144px 0; }

@media (max-width: 720px) {
  section { padding: 72px 0; }
  section.tight { padding: 56px 0; }
  section.pad-lg { padding: 88px 0; }
}

.surface-dark {
  background: var(--fg-navy);
  color: #fff;
}
.surface-dark h1, .surface-dark h2, .surface-dark h3, .surface-dark h4 { color: #fff; }
.surface-dark p { color: rgba(255,255,255,0.78); }
.surface-dark a { color: #BCCBEA; }
.surface-dark a:hover { color: #fff; }
.surface-dark .fg-eyebrow { color: #8FA3D9; }
.surface-dark hr { border-color: rgba(255,255,255,0.14); }

.surface-deep {
  background: #0B1230;
  color: #fff;
}
.surface-deep h1, .surface-deep h2, .surface-deep h3, .surface-deep h4 { color: #fff; }
.surface-deep p { color: rgba(255,255,255,0.72); }

.surface-mist { background: var(--fg-mist); }
.surface-soft { background: #F5F7FB; }

/* =========================================================
 * TYPOGRAPHY OVERRIDES — site scale
 * ========================================================= */
h1 { font-size: clamp(44px, 6.2vw, 76px); line-height: 1.02; letter-spacing: -0.025em; font-weight: 700; }
h2 { font-size: clamp(32px, 3.6vw, 44px); line-height: 1.08; letter-spacing: -0.02em; font-weight: 700; }
h3 { font-size: clamp(22px, 2.2vw, 26px); font-weight: 600; letter-spacing: -0.01em; }
.display-xl { font-family: var(--fg-font-display); font-weight: 800; font-size: clamp(56px, 8.6vw, 112px); line-height: 0.96; letter-spacing: -0.035em; color: var(--fg-navy); }

.eyebrow {
  font-family: var(--fg-font-display);
  font-weight: 700;
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-slate);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 24px;
}
.eyebrow::before {
  content: "";
  width: 28px; height: 1px;
  background: currentColor;
}
.surface-dark .eyebrow, .surface-deep .eyebrow { color: #8FA3D9; }
.eyebrow.no-rule::before { display: none; }

.lede {
  font-family: var(--fg-font-body);
  font-size: clamp(18px, 1.6vw, 20px);
  line-height: 1.55;
  color: var(--fg-ink);
  max-width: 680px;
  font-weight: 400;
}
.surface-dark .lede { color: rgba(255,255,255,0.82); }

/* Amber inline emphasis */
.amber { color: var(--fg-amber); }
em.lift { font-style: normal; color: var(--fg-amber); font-weight: inherit; }

/* =========================================================
 * NAV
 * ========================================================= */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--fg-navy);
  border-bottom: 0;
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  position: relative;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  text-decoration: none;
  position: relative;
  z-index: 2;
}
/* Oversized mark — pushed further down the nav so the top of the image
   clears the viewport edge; large sizes spill into the hero below. */
.nav-brand .mark {
  height: 80px;
  display: flex;
  align-items: flex-start;
  padding-top: 24px;
  margin-left: -6px;
  position: relative;
}
.nav-brand .mark img {
  height: var(--fg-logo-size, 72px);
  width: auto;
  display: block;
  transition: height 180ms var(--fg-ease, cubic-bezier(0.2,0.7,0.2,1));
  position: relative;
}
.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  margin: 0; padding: 0;
}
.nav-links a {
  color: rgba(255,255,255,0.74);
  font-family: var(--fg-font-display);
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color 200ms var(--fg-ease);
  padding: 8px 0;
  position: relative;
}
.nav-links a:hover { color: #fff; }
.nav-links a.active { color: #fff; }
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: 2px;
  height: 1px;
  background: var(--fg-amber);
}
@media (max-width: 720px) {
  .nav-inner { padding: 0 24px; height: 64px; }
  .nav-links { gap: 20px; }
  .nav-links a { font-size: 13px; }
  .nav-brand span.word { display: none; }
}

/* =========================================================
 * MOBILE NAV DRAWER
 * Hamburger button + full-screen overlay panel.
 * Hidden ≥721px; visible at ≤720px replacing .nav-links.
 * ========================================================= */
.nav-toggle {
  display: none;
  position: relative;
  width: 44px; height: 44px;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
  color: #fff;
  z-index: 60;
}
.nav-toggle-bar {
  position: absolute;
  left: 10px; right: 10px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: top 240ms var(--fg-ease), transform 240ms var(--fg-ease), opacity 200ms var(--fg-ease);
}
.nav-toggle-bar:nth-child(1) { top: 14px; }
.nav-toggle-bar:nth-child(2) { top: 21px; }
.nav-toggle-bar:nth-child(3) { top: 28px; }
.nav.is-open .nav-toggle-bar:nth-child(1) { top: 21px; transform: rotate(45deg); }
.nav.is-open .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav.is-open .nav-toggle-bar:nth-child(3) { top: 21px; transform: rotate(-45deg); }

.nav-drawer {
  position: fixed;
  inset: 0;
  background: var(--fg-navy);
  z-index: 55;
  padding: 96px 32px 48px;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  visibility: hidden;
  transition: transform 320ms var(--fg-ease), visibility 0s linear 320ms;
}
.nav.is-open .nav-drawer {
  transform: translateX(0);
  visibility: visible;
  transition: transform 320ms var(--fg-ease), visibility 0s linear 0s;
}
.nav-drawer-links {
  list-style: none;
  padding: 0;
  margin: 0 0 auto;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.nav-drawer-links a {
  display: block;
  font-family: var(--fg-font-display);
  font-weight: 600;
  font-size: 30px;
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: #fff;
  text-decoration: none;
  padding: 14px 0;
}
.nav-drawer-links a.active { color: var(--fg-amber); }
.nav-drawer-foot {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.nav-drawer-foot a {
  color: rgba(255,255,255,0.72);
  text-decoration: none;
  font-family: var(--fg-font-body);
  font-size: 15px;
}
.nav-drawer-foot a:hover { color: #fff; }

@media (max-width: 720px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
}
@media (prefers-reduced-motion: reduce) {
  .nav-drawer { transition: none; }
  .nav-toggle-bar { transition: none; }
}

/* =========================================================
 * BUTTONS
 * ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--fg-font-display);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.005em;
  padding: 15px 26px;
  border-radius: 6px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: all 200ms var(--fg-ease);
  line-height: 1;
}
.btn:hover { text-decoration: none; }
.btn:active { transform: scale(0.98); }

.btn-amber {
  background: var(--fg-amber);
  color: #fff;
}
.btn-amber:hover {
  background: #B8731C;
  color: #fff;
}
.btn-ghost-dark {
  background: transparent;
  border-color: rgba(255,255,255,0.22);
  color: #fff;
}
.btn-ghost-dark:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.36);
  color: #fff;
}
.btn-ghost-light {
  background: transparent;
  border-color: var(--fg-border-strong);
  color: var(--fg-navy);
}
.btn-ghost-light:hover {
  background: var(--fg-mist);
  color: var(--fg-navy);
}

/* Text links with arrow */
.tlink {
  font-family: var(--fg-font-display);
  font-weight: 600;
  font-size: 15px;
  color: var(--fg-velocity);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  letter-spacing: -0.005em;
  position: relative;
  padding-bottom: 2px;
  border-bottom: 1px solid currentColor;
  transition: color 200ms var(--fg-ease);
}
.tlink .arrow { transition: transform 200ms var(--fg-ease); }
.tlink:hover { color: var(--fg-navy); }
.tlink:hover .arrow { transform: translateX(4px); }
.surface-dark .tlink, .surface-deep .tlink { color: #BCCBEA; }
.surface-dark .tlink:hover, .surface-deep .tlink:hover { color: var(--fg-amber); }

/* =========================================================
 * WING / FORMATION MOTIFS
 * ========================================================= */
.wing-bars {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
}
.wing-bars > span {
  display: block;
  height: 5px;
  border-radius: 1px;
}
.wing-bars.sm > span { height: 3px; gap: 2px; }
.wing-bars > span:nth-child(1) { background: var(--fg-navy);     width: 64px; }
.wing-bars > span:nth-child(2) { background: var(--fg-velocity); width: 48px; }
.wing-bars > span:nth-child(3) { background: var(--fg-slate);    width: 32px; }
.wing-bars.light > span:nth-child(1) { background: #fff; }
.wing-bars.light > span:nth-child(2) { background: #8FA3D9; }
.wing-bars.light > span:nth-child(3) { background: #4B5785; }
.wing-bars.amber > span:nth-child(1) { background: var(--fg-amber); }

/* Ascending strokes — used as callout beside headlines */
.ascend {
  display: inline-flex;
  align-items: flex-end;
  gap: 5px;
  height: 36px;
}
.ascend > span {
  display: block;
  width: 4px;
  background: var(--fg-amber);
  border-radius: 1px;
}
.ascend > span:nth-child(1) { height: 40%; opacity: 0.35; background: var(--fg-slate); }
.ascend > span:nth-child(2) { height: 60%; opacity: 0.6; background: var(--fg-velocity); }
.ascend > span:nth-child(3) { height: 80%; background: var(--fg-navy); }
.ascend > span:nth-child(4) { height: 100%; background: var(--fg-amber); }

/* =========================================================
 * BACKGROUND FORMATION — line art goose V
 * ========================================================= */
.bg-formation {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.bg-formation svg { position: absolute; }
.content { position: relative; z-index: 1; }

/* =========================================================
 * STAT STRIP
 * ========================================================= */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  color: var(--fg-slate);
}
.stat-strip.on-dark { color: rgba(255,255,255,0.18); }
.stat-strip .stat {
  padding: 36px 24px;
  border-right: 1px solid currentColor;
  display: flex; flex-direction: column;
  gap: 10px;
}
.stat-strip .stat:last-child { border-right: 0; }
.stat-strip .n {
  font-family: var(--fg-font-display);
  font-weight: 700;
  font-size: clamp(28px, 3vw, 40px);
  letter-spacing: -0.025em;
  line-height: 1;
  color: var(--fg-navy);
}
.on-dark .n { color: #fff; }
.on-dark .n em { font-style: normal; color: var(--fg-amber); }
.stat-strip .l {
  font-family: var(--fg-font-body);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-slate);
}
.on-dark .l { color: rgba(255,255,255,0.56); }

@media (max-width: 860px) {
  .stat-strip { grid-template-columns: 1fr 1fr; }
  .stat-strip .stat:nth-child(2n) { border-right: 0; }
  .stat-strip .stat:nth-child(-n+2) { border-bottom: 1px solid currentColor; }
}

/* =========================================================
 * SYMPTOM CARDS
 * ========================================================= */
.symptom-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 56px;
  border-top: 1px solid rgba(255,255,255,0.14);
  border-left: 1px solid rgba(255,255,255,0.14);
}
.symptom {
  padding: 40px 36px 44px;
  border-right: 1px solid rgba(255,255,255,0.14);
  border-bottom: 1px solid rgba(255,255,255,0.14);
  position: relative;
  transition: background 240ms var(--fg-ease);
}
.symptom:hover { background: rgba(255,255,255,0.03); }
.symptom .sym-icon {
  width: 64px; height: 48px;
  margin-bottom: 24px;
  color: var(--fg-amber);
}
.symptom .sym-icon svg { width: 100%; height: 100%; }
.symptom .sym-num {
  font-family: var(--fg-font-display);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.14em;
  color: #8FA3D9;
  margin-bottom: 14px;
}
.symptom h3 {
  font-family: var(--fg-font-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.01em;
  color: #fff;
  margin: 0 0 12px;
}
.symptom p {
  font-family: var(--fg-font-body);
  font-size: 15.5px;
  line-height: 1.6;
  color: rgba(255,255,255,0.68);
  margin: 0;
}
@media (max-width: 960px) {
  .symptom-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .symptom-grid { grid-template-columns: 1fr; }
}

/* =========================================================
 * TWO WAYS WE WORK — side-by-side blocks
 * ========================================================= */
.two-ways {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 56px;
  border-top: 1px solid var(--fg-border);
}
.way {
  padding: 56px 48px 56px 0;
  border-right: 1px solid var(--fg-border);
  position: relative;
  display: flex;
  flex-direction: column;
}
.way > .tlink { margin-top: auto; padding-top: 24px; align-self: flex-start; }
.way:last-child { padding-left: 48px; padding-right: 0; border-right: 0; }
.way .wmotif { margin-bottom: 32px; }
.way h3 {
  font-family: var(--fg-font-display);
  font-weight: 700;
  font-size: 32px;
  letter-spacing: -0.015em;
  color: var(--fg-navy);
  margin: 0 0 6px;
}
.way .tag {
  font-family: var(--fg-font-display);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
  color: var(--fg-velocity);
  margin-bottom: 24px;
}
.way p {
  font-family: var(--fg-font-body);
  font-size: 16.5px;
  line-height: 1.6;
  color: var(--fg-ink);
  max-width: 480px;
  margin: 0 0 14px;
}
.way .pill {
  display: inline-flex;
  gap: 8px;
  margin: 20px 0 28px;
  flex-wrap: wrap;
}
.way .pill span {
  font-family: var(--fg-font-body);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fg-slate);
  padding: 6px 12px;
  border: 1px solid var(--fg-border-strong);
  border-radius: 999px;
}
@media (max-width: 860px) {
  .two-ways { grid-template-columns: 1fr; }
  .way { padding: 48px 0 40px; border-right: 0; border-bottom: 1px solid var(--fg-border); }
  .way:last-child { padding-left: 0; border-bottom: 0; }
}

/* =========================================================
 * QUOTE
 * ========================================================= */
.pullquote {
  max-width: 880px;
  position: relative;
}
.pullquote .glyph {
  font-family: var(--fg-font-display);
  font-weight: 800;
  font-size: 96px;
  line-height: 0.5;
  color: var(--fg-amber);
  display: block;
  margin-bottom: 16px;
}
.pullquote q {
  display: block;
  quotes: none;
  font-family: var(--fg-font-display);
  font-weight: 500;
  font-style: italic;
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.32;
  color: var(--fg-navy);
  letter-spacing: -0.01em;
  text-wrap: balance;
  margin-bottom: 28px;
}
.surface-dark .pullquote q, .surface-deep .pullquote q { color: #fff; }
.pullquote cite {
  font-style: normal;
  font-family: var(--fg-font-body);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.04em;
  color: var(--fg-slate);
}
.pullquote cite strong { color: var(--fg-navy); font-weight: 600; }
.surface-dark .pullquote cite strong, .surface-deep .pullquote cite strong { color: #fff; }

/* =========================================================
 * FOOTER
 * ========================================================= */
footer.site-footer {
  background: #080E24;
  color: rgba(255,255,255,0.64);
  padding: 80px 0 32px;
  position: relative;
  overflow: hidden;
}
footer.site-footer .formation-bg {
  position: absolute;
  right: -80px; top: -40px;
  width: 560px; height: 360px;
  opacity: 0.12;
  pointer-events: none;
}
footer .foot-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 48px;
  position: relative;
}
footer .foot-brand {
  display: flex;
  align-items: flex-start;
}
footer .foot-lockup {
  display: flex;
  align-items: center;
  gap: 16px;
}
footer .foot-lockup-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  line-height: 1.15;
}
footer .foot-wordmark {
  font-family: var(--fg-font-display);
  font-weight: 700;
  font-size: 26px;
  letter-spacing: -0.01em;
  color: #fff;
  line-height: 1.1;
}
footer .foot-tag {
  font-family: var(--fg-font-display);
  font-weight: 400;
  font-size: 17px;
  letter-spacing: 0;
  color: rgba(255,255,255,0.72);
  line-height: 1.15;
}
footer .foot-brand .tag {
  color: rgba(255,255,255,0.78);
  font-family: var(--fg-font-display);
  font-weight: 400;
  font-size: 18px;
  letter-spacing: -0.01em;
  max-width: 260px;
  line-height: 1.3;
}
footer .foot-col h5 {
  font-family: var(--fg-font-body);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #8FA3D9;
  margin: 0 0 6px;
}
footer .foot-col ul { list-style: none; padding: 0; margin: 0; }
footer .foot-col li { margin-bottom: 2px; }
footer .foot-col a {
  color: rgba(255,255,255,0.72);
  text-decoration: none;
  font-family: var(--fg-font-body);
  font-size: 14px;
  transition: color 200ms var(--fg-ease);
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  line-height: 1.3;
}
footer .foot-col a:hover { color: #fff; }
footer .foot-col .li-ico {
  width: 0.85em !important;
  height: 0.85em !important;
  display: inline-block;
  flex-shrink: 0;
  opacity: 0.7;
}
footer .foot-meta {
  max-width: 1280px;
  margin: 56px auto 0;
  padding: 28px 48px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: flex-end;
  align-items: center;
  font-family: var(--fg-font-body);
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.02em;
  position: relative;
  text-align: right;
}
footer .foot-meta > div { margin-left: auto; }
@media (max-width: 860px) {
  footer .foot-inner { grid-template-columns: 1fr 1fr; padding: 0 24px; }
  footer .foot-brand { grid-column: 1 / -1; }
  footer .foot-meta { flex-direction: column; gap: 14px; padding: 24px 24px 0; text-align: center; }
}

/* =========================================================
 * HERO (universal)
 * ========================================================= */
.hero {
  position: relative;
  padding: 48px 0 80px;
  overflow: hidden;
}
/* Geese formation pushed to top-right so it overlaps the eyebrow/H1 area
 * rather than sitting centered below the content. */
.hero .bg-formation img {
  object-position: right top !important;
}
.hero.hero-dark {
  background: var(--fg-navy);
  color: #fff;
}
.hero.hero-dark .bg-formation svg { opacity: 0.85; }

/* Per-section geese tint. Home and Contact use the default (no filter).
 * Each modifier shifts only the geese layer — backplate stays Navy. */
.hero-tint-velocity .bg-formation img {
  filter: sepia(0.6) saturate(2.5) hue-rotate(180deg) brightness(1.05);
}
.hero-tint-amber .bg-formation img {
  filter: sepia(0.9) saturate(2.4) hue-rotate(-18deg) brightness(0.95);
}
.hero-tint-slate .bg-formation img {
  filter: saturate(0.25) brightness(1.05);
}
.hero h1 {
  font-family: var(--fg-font-display);
  font-weight: 700;
  margin: 0 0 28px;
  max-width: 16ch;
  text-wrap: balance;
}
.hero-dark h1 { color: #fff; }
.hero .hero-sub {
  font-family: var(--fg-font-body);
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.5;
  max-width: 640px;
  margin: 0 0 40px;
  color: rgba(255,255,255,0.75);
  font-weight: 400;
}
.hero:not(.hero-dark) .hero-sub { color: var(--fg-slate); }

.hero-meta {
  position: absolute;
  right: 48px;
  bottom: 48px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--fg-font-body);
  font-weight: 400;
  font-style: italic;
  font-size: 13px;
  color: #8FA3D9;
  letter-spacing: 0.02em;
}
.hero-meta::before {
  content: "";
  width: 36px; height: 1px;
  background: rgba(143,163,217,0.4);
}

@media (max-width: 720px) {
  .hero { padding: 88px 0 72px; }
  .hero-meta { display: none; }
}

/* =========================================================
 * TRACK (consulting — three tracks + embedded partnership)
 * ========================================================= */
.track-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.track {
  background: #fff;
  border: 1px solid var(--fg-border);
  border-radius: 10px;
  padding: 32px 28px 36px;
  position: relative;
  transition: border-color 200ms var(--fg-ease), transform 200ms var(--fg-ease);
}
.track:hover { border-color: var(--fg-border-strong); transform: translateY(-2px); }
.track .wing-bars { margin-bottom: 24px; }
.track-art { color: var(--fg-navy); margin-bottom: 20px; width: 72px; height: 52px; }
.track-art svg { width: 100%; height: 100%; display: block; }
.track-art.amber { color: var(--fg-amber); }
.track-art.light { color: #fff; }
.embedded .track-art { width: 88px; height: 60px; margin-bottom: 0; }
.track .track-label {
  font-family: var(--fg-font-display);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-velocity);
  margin-bottom: 10px;
}
.track h3 {
  font-family: var(--fg-font-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--fg-navy);
  margin: 0 0 14px;
}
.track p {
  font-family: var(--fg-font-body);
  font-size: 15px;
  line-height: 1.6;
  color: var(--fg-ink);
  margin: 0;
}
.embedded {
  margin-top: 24px;
  background: var(--fg-navy);
  color: #fff;
  border-radius: 10px;
  padding: 36px 40px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 32px;
  align-items: center;
}
.embedded .wing-bars { margin-bottom: 16px; }
.embedded h3 { color: #fff; font-family: var(--fg-font-display); font-weight: 700; font-size: 22px; margin: 0; }
.embedded p { color: rgba(255,255,255,0.78); font-size: 15.5px; line-height: 1.6; margin: 0; }
@media (max-width: 860px) {
  .track-grid { grid-template-columns: 1fr; }
  .embedded { grid-template-columns: 1fr; gap: 16px; padding: 28px 24px; }
}

/* =========================================================
 * V METHOD — two-force card grid on dark
 * ========================================================= */
.vmethod-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
}
.vmethod-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 6px;
  padding: 32px 32px 36px;
}
.vmethod-card h3 {
  font-family: var(--fg-font-display);
  font-weight: 700;
  font-size: 26px;
  color: var(--fg-amber);
  margin: 0 0 14px;
  letter-spacing: -0.01em;
}
.vmethod-card p {
  font-family: var(--fg-font-body);
  font-size: 16.5px;
  line-height: 1.55;
  color: rgba(255,255,255,0.82);
  margin: 0;
}
.vmethod-foot {
  font-family: var(--fg-font-body);
  font-size: 15.5px;
  line-height: 1.65;
  color: rgba(255,255,255,0.62);
  margin: 32px 0 0;
  max-width: 880px;
}
@media (max-width: 860px) {
  .vmethod-grid { grid-template-columns: 1fr; }
  .vmethod-card { padding: 28px 24px; }
}

/* =========================================================
 * RIGHT-FIT LIST
 * ========================================================= */
.fitlist { list-style: none; padding: 0; margin: 32px 0 0; max-width: 820px; }
.fitlist li {
  font-family: var(--fg-font-body);
  font-size: clamp(18px, 1.6vw, 21px);
  line-height: 1.45;
  color: var(--fg-ink);
  padding: 22px 0;
  border-bottom: 1px solid var(--fg-border);
  display: flex;
  align-items: center;
  gap: 40px;
}
.fitlist li:last-child { border-bottom: 0; }
.fitlist li .dot {
  color: var(--fg-amber);
  font-family: var(--fg-font-display);
  font-weight: 700;
  font-size: clamp(44px, 4.6vw, 64px);
  line-height: 1;
  letter-spacing: 0;
  min-width: clamp(64px, 5.5vw, 88px);
  font-variant-numeric: tabular-nums;
  padding-top: 0;
}

/* =========================================================
 * FORM
 * ========================================================= */
.form { max-width: 560px; }
.field { margin-bottom: 24px; }
.field label {
  display: block;
  font-family: var(--fg-font-body);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--fg-navy);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.field label .opt {
  text-transform: none;
  color: var(--fg-slate);
  font-weight: 400;
  letter-spacing: 0.02em;
  margin-left: 4px;
}
.field input, .field select, .field textarea {
  width: 100%;
  background: #fff;
  border: 1px solid var(--fg-border-strong);
  border-radius: 6px;
  padding: 14px 16px;
  font-family: var(--fg-font-body);
  font-size: 16px;
  color: var(--fg-ink);
  transition: border-color 200ms var(--fg-ease), box-shadow 200ms var(--fg-ease);
  outline: none;
}
.field input::placeholder, .field textarea::placeholder { color: var(--fg-slate); }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--fg-velocity);
  box-shadow: var(--fg-shadow-focus);
}
.field textarea { min-height: 140px; resize: vertical; }
.field select { appearance: none; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14' fill='none' stroke='%23707C91' stroke-width='2'><path d='M3 5l4 4 4-4'/></svg>"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; }

.form .row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 640px) { .form .row2 { grid-template-columns: 1fr; } }

.form-note {
  font-family: var(--fg-font-body);
  font-size: 13px;
  color: var(--fg-slate);
  margin: 20px 0 0;
  line-height: 1.5;
}

/* =========================================================
 * ABOUT — PORTRAIT BLOCK
 * ========================================================= */
.about-head {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 64px;
  align-items: center;
}
.about-head .portrait {
  background: var(--fg-mist);
  border-radius: 10px;
  aspect-ratio: 4/5;
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  color: var(--fg-navy);
}
.about-head .portrait .pmark {
  font-family: var(--fg-font-display);
  font-weight: 700;
  font-size: 96px;
  letter-spacing: -0.04em;
  color: var(--fg-navy);
  opacity: 0.2;
}
@media (max-width: 860px) {
  .about-head { grid-template-columns: 1fr; gap: 32px; }
  .about-head .portrait { max-width: 360px; }
}

.career-item {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 32px;
  padding: 32px 0;
  border-top: 1px solid var(--fg-border);
}
.career-item:last-child { border-bottom: 1px solid var(--fg-border); }
.career-item .year {
  font-family: var(--fg-font-display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-slate);
  padding-top: 6px;
}
.career-item h4 {
  font-family: var(--fg-font-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--fg-navy);
  margin: 0 0 10px;
}
.career-item p {
  font-family: var(--fg-font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--fg-ink);
  margin: 0;
  max-width: 640px;
}
@media (max-width: 640px) {
  .career-item { grid-template-columns: 1fr; gap: 10px; }
}

/* =========================================================
 * PARTNERSHIP SNIPPET (home partners section)
 * ========================================================= */
.partners-band {
  background: var(--fg-navy);
  color: #fff;
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.partners-band .inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: center;
}
.partners-band h2 { color: #fff; margin: 0 0 20px; }
.partners-band p { color: rgba(255,255,255,0.78); font-size: 17px; line-height: 1.6; max-width: 520px; margin: 0 0 24px; }
@media (max-width: 860px) {
  .partners-band .inner { grid-template-columns: 1fr; }
}

/* =========================================================
 * MISC
 * ========================================================= */
hr.divider {
  border: 0;
  border-top: 1px solid var(--fg-border);
  margin: 80px 0;
}
.surface-dark hr.divider { border-color: rgba(255,255,255,0.12); }

.inline-link {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: var(--fg-amber);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
  transition: text-decoration-color 200ms var(--fg-ease);
}
.inline-link:hover { text-decoration-color: var(--fg-amber); color: var(--fg-amber); }

/* CTA band */
.cta-band {
  padding: 144px 0;
  position: relative;
  overflow: hidden;
}
.cta-band .cta-inner {
  max-width: 880px;
}
.cta-band h2 {
  font-size: clamp(36px, 4.4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 28px;
}
.cta-band p {
  font-family: var(--fg-font-body);
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.55;
  color: rgba(255,255,255,0.78);
  max-width: 620px;
  margin: 0 0 40px;
}

/* Reveal on scroll (simple) */
.reveal { opacity: 0; transform: translateY(12px); transition: opacity 600ms var(--fg-ease), transform 600ms var(--fg-ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* =========================================================
 * FIT ROW — partnership "who should reach out" list
 * ========================================================= */
.fit-row {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 28px;
  align-items: start;
  padding: 28px 0;
  border-bottom: 1px solid var(--fg-border);
}
.fit-row:last-child { border-bottom: 0; }
.fit-row:first-child { padding-top: 0; }
.fit-num {
  font-family: var(--fg-font-display);
  font-weight: 700;
  font-size: 28px;
  color: var(--fg-amber);
  letter-spacing: -0.01em;
  line-height: 1;
  padding-top: 4px;
}
.fit-row p {
  font-family: var(--fg-font-body);
  font-size: 16.5px;
  line-height: 1.6;
  color: var(--fg-ink);
}
@media (max-width: 700px) {
  .fit-row { grid-template-columns: 1fr; gap: 12px; }
}

/* =========================================================
 * CONVO GRID — two-column "conversations we always take"
 * ========================================================= */
.convo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.convo {
  background: #fff;
  border: 1px solid var(--fg-border);
  border-radius: 4px;
  padding: 36px 36px 36px;
  display: flex;
  flex-direction: column;
}
.convo .fit-num { padding: 0 0 16px; color: var(--fg-amber); }
.convo h4 {
  font-family: var(--fg-font-display);
  font-weight: 700;
  font-size: 22px;
  color: var(--fg-ink);
  margin: 0 0 10px;
  letter-spacing: -0.005em;
}
.convo p {
  font-family: var(--fg-font-body);
  font-size: 16.5px;
  line-height: 1.6;
  color: var(--fg-ink);
  margin: 0;
}
@media (max-width: 860px) {
  .convo-grid { grid-template-columns: 1fr; gap: 20px; }
}
