/* ============================================================
   Falcon Website — Sprint 1 shared styles
   Built on Falcon design-system tokens (colors_and_type.css).
   Nav, footer, buttons, sections, contrast tables, stats, forms.
   ============================================================ */
@import url("../design-system/colors_and_type.css");

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: var(--bg); color: var(--fg); font-family: var(--font-sans); }
img { max-width: 100%; display: block; }

a { color: var(--accent); text-decoration: none; }
a:hover { border-bottom-color: var(--accent); }

/* ---------------- Containers ---------------- */
.container { max-width: var(--container-wide); margin: 0 auto; padding: 0 56px; }
.container-narrow { max-width: 880px; margin: 0 auto; padding: 0 32px; }

/* ============================================================
   STICKY NAV
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: var(--z-sticky);
  background: rgba(11, 28, 42, 0.86);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.10);
}
.site-header.is-on-image { background: transparent; border-bottom: 1px solid rgba(255,255,255,0.14); }
.site-header .row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 0;
}
.brand {
  display: flex; align-items: center; gap: 14px;
  color: #fff; border: 0;
}
.brand img { width: 36px; height: auto; display: block; }
.brand .word { display: flex; flex-direction: column; gap: 2px; line-height: 1; }
.brand .word .name { font-weight: 700; letter-spacing: 0.18em; font-size: 16px; color: #fff; }
.brand .word .tag { font-size: 8.5px; letter-spacing: 0.22em; color: rgba(255,255,255,0.7); font-weight: 600; }

.nav-links { display: flex; gap: 36px; align-items: center; }
.nav-item { position: relative; }
.nav-link {
  font-size: 11.5px; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.82); font-weight: 600; padding: 10px 0;
  cursor: pointer; border: 0; background: none;
  display: inline-flex; align-items: center; gap: 6px;
  transition: color 240ms var(--ease-standard);
}
.nav-link:hover { color: #fff; border-bottom-color: transparent; }
.nav-link.active { color: #fff; }
.nav-link.active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 2px; background: var(--accent);
}
.nav-caret { width: 7px; height: 7px; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; transform: translateY(-2px) rotate(45deg); opacity: 0.7; }

.nav-cta {
  background: var(--accent); color: #fff;
  padding: 11px 22px;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  font-weight: 700;
  border-radius: var(--radius-md);
  border: 0; cursor: pointer;
  transition: background 200ms var(--ease-standard);
  display: inline-block;
}
.nav-cta:hover { background: var(--accent-hover); border-bottom-color: transparent; }

/* Dropdown */
.nav-item .menu {
  position: absolute; top: calc(100% + 6px); left: -16px;
  min-width: 240px; padding: 14px 0;
  background: var(--navy-900);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: var(--shadow-lg);
  opacity: 0; pointer-events: none; transform: translateY(-4px);
  transition: opacity 180ms var(--ease-standard), transform 180ms var(--ease-standard);
}
.nav-item:hover .menu, .nav-item:focus-within .menu { opacity: 1; pointer-events: auto; transform: translateY(0); }
.nav-item .menu .group-label {
  padding: 8px 22px 6px; font-size: 9.5px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--accent); font-weight: 700;
}
.nav-item .menu a {
  display: block; padding: 8px 22px;
  font-size: 13px; color: rgba(255,255,255,0.86); font-weight: 500;
  letter-spacing: 0; text-transform: none; border: 0;
}
.nav-item .menu a:hover { background: rgba(255,255,255,0.05); color: #fff; }
.nav-item .menu hr { border: 0; border-top: 1px solid rgba(255,255,255,0.08); margin: 8px 0; }

/* Mobile menu button */
.nav-toggle { display: none; background: none; border: 0; color: #fff; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 22px; height: 1.5px; background: #fff; margin: 5px 0; transition: 240ms; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-block;
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 700;
  padding: 16px 28px;
  border-radius: var(--radius-md);
  border: 0; cursor: pointer;
  transition: all 200ms var(--ease-standard);
  text-decoration: none;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-hover); color: #fff; border-bottom-color: transparent; }
.btn-outline { background: transparent; color: var(--accent); border: 1px solid var(--accent); }
.btn-outline:hover { background: var(--accent); color: #fff; border-bottom-color: transparent; }
.btn-ghost-light { background: transparent; color: var(--light-fg); border: 1px solid rgba(11,44,59,0.4); }
.btn-ghost-light:hover { background: var(--navy-900); color: #fff; border-color: var(--navy-900); border-bottom-color: var(--navy-900); }

.text-link {
  color: var(--accent);
  font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 700;
  display: inline-flex; align-items: center; gap: 8px;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
}
.text-link:hover { border-bottom-color: var(--accent); }
.text-link .arrow { transition: transform 200ms; }
.text-link:hover .arrow { transform: translateX(4px); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; overflow: hidden;
  background: var(--navy-900);
  isolation: isolate;
}
.hero.hero-image::before {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(11,28,42,0.62) 0%, rgba(6,26,36,0.94) 100%),
    url("../assets/falcon-bg-buildings.png") center/cover no-repeat;
  z-index: -1;
}
.hero-content { padding: 112px 0 120px; max-width: 920px; }
.hero-eyebrow {
  display: inline-block;
  font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--accent); font-weight: 700;
  margin-bottom: 28px;
  border-top: 2px solid var(--accent);
  padding-top: 14px;
}
.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(48px, 6.5vw, 88px);
  line-height: 1.04; letter-spacing: -0.022em;
  font-weight: 400;
  color: #fff;
  margin: 0 0 28px;
  max-width: 960px;
}
.hero h1 .tm { font-size: 0.35em; vertical-align: super; letter-spacing: 0; margin-left: 4px; color: var(--accent); }
.hero-rule { height: 2px; width: 96px; background: var(--accent); margin: 0 0 28px; }
.hero-sub {
  font-size: 18px; line-height: 1.65; color: rgba(255,255,255,0.82);
  max-width: 700px; margin: 0 0 44px;
  font-weight: 400;
}
.hero-cta-row { display: flex; gap: 28px; align-items: center; flex-wrap: wrap; margin-bottom: 22px; }
.hero-fineprint {
  font-size: 12px; color: rgba(255,255,255,0.55);
  letter-spacing: 0.04em; max-width: 560px;
  margin-top: 8px;
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--navy-950);
  border-top: 1px solid var(--accent);
  border-bottom: 1px solid var(--accent);
  padding: 48px 0;
}
.stats-bar .grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 0;
}
.stat-cell { padding: 8px 28px; position: relative; }
.stat-cell + .stat-cell::before {
  content: ""; position: absolute; left: 0; top: 8px; bottom: 8px;
  width: 1px; background: rgba(255,255,255,0.12);
}
.stat-cell .num {
  font-family: var(--font-serif); font-weight: 400;
  font-size: 56px; line-height: 1;
  color: var(--accent); letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.stat-cell .lbl {
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.78); font-weight: 600; line-height: 1.4;
}
.stats-footnote {
  margin-top: 28px;
  font-size: 11px; letter-spacing: 0.04em;
  color: rgba(255,255,255,0.42);
}

/* ============================================================
   GENERIC SECTION SCAFFOLD
   ============================================================ */
section { position: relative; }
.section-dark { background: var(--navy-900); color: #fff; padding: 112px 0; }
.section-light { background: var(--off-white); color: var(--light-fg); padding: 112px 0; }
.section-deep { background: var(--navy-950); color: #fff; padding: 112px 0; }

.section-eyebrow {
  display: inline-block;
  font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--accent); font-weight: 700;
  margin-bottom: 22px;
  border-top: 2px solid var(--accent); padding-top: 14px;
}
.section-title {
  font-family: var(--font-serif); font-weight: 400;
  font-size: clamp(36px, 4.4vw, 60px);
  line-height: 1.1; letter-spacing: -0.018em;
  margin: 0 0 28px; max-width: 920px;
  text-wrap: balance;
}
.section-title.light-bg { color: var(--light-fg); }
.section-sub {
  font-size: 17px; line-height: 1.65;
  max-width: 700px; margin: 0 0 56px;
  color: rgba(255,255,255,0.72);
}
.section-light .section-sub { color: #4a5560; }

/* ============================================================
   PROBLEM SECTION — orange label left, body right
   ============================================================ */
.problem-row {
  display: grid; grid-template-columns: 320px 1fr; gap: 64px;
  padding: 40px 0;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.problem-row:last-of-type { border-bottom: 1px solid rgba(255,255,255,0.12); }
.problem-label {
  font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--accent); font-weight: 700; line-height: 1.4;
}
.problem-body { font-size: 17px; line-height: 1.65; color: rgba(255,255,255,0.82); }
.problem-coda {
  margin-top: 56px; padding-top: 36px;
  font-family: var(--font-serif); font-style: italic;
  font-size: 22px; line-height: 1.55; color: #fff;
  max-width: 720px;
}

/* ============================================================
   STRIKE GRID
   ============================================================ */
.strike-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255,255,255,0.18);
  border-left: 1px solid rgba(255,255,255,0.18);
}
.strike-card {
  padding: 40px 32px 48px;
  border-right: 1px solid rgba(255,255,255,0.18);
  border-bottom: 1px solid rgba(255,255,255,0.18);
  background: var(--navy-900);
  transition: background 240ms var(--ease-standard);
  min-height: 280px; display: flex; flex-direction: column;
}
.strike-card:hover { background: var(--navy-800); }
.strike-letter {
  font-family: var(--font-serif);
  font-size: 72px; line-height: 1;
  color: var(--accent); margin-bottom: 20px;
  font-weight: 400; letter-spacing: -0.02em;
}
.strike-title {
  font-family: var(--font-sans); font-weight: 700;
  font-size: 14px; letter-spacing: 0.14em; text-transform: uppercase;
  color: #fff; margin: 0 0 16px;
  line-height: 1.4;
}
.strike-desc {
  font-size: 14.5px; line-height: 1.65; color: rgba(255,255,255,0.74);
}

/* ============================================================
   THEM VS US CONTRAST TABLE
   ============================================================ */
.versus-section { background: var(--navy-950); padding: 120px 0; }
.versus-header {
  display: grid; grid-template-columns: 1fr 80px 1fr;
  align-items: end; margin-bottom: 4px;
}
.versus-header .col-label {
  font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase;
  font-weight: 700; padding: 14px 0;
}
.versus-header .col-them { color: rgba(255,255,255,0.5); }
.versus-header .col-us { color: var(--accent); text-align: left; }

.versus-row {
  display: grid; grid-template-columns: 1fr 80px 1fr;
  align-items: stretch;
  border-top: 1px solid rgba(255,255,255,0.14);
}
.versus-row:last-child { border-bottom: 1px solid rgba(255,255,255,0.14); }
.versus-them, .versus-us { padding: 36px 36px 36px 0; font-size: 16px; line-height: 1.65; }
.versus-them { color: rgba(255,255,255,0.45); padding-right: 40px; }
.versus-us { color: #fff; padding-left: 40px; border-left: 2px solid var(--accent); }
.versus-divider { position: relative; }
.versus-divider::before {
  content: "/"; position: absolute; left: 50%; top: 36px; transform: translateX(-50%);
  font-family: var(--font-serif); font-style: italic; font-size: 28px;
  color: rgba(255,255,255,0.3);
}

/* ============================================================
   PLATFORM SPLIT
   ============================================================ */
.platform-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
  margin-top: 8px;
}
.platform-card {
  background: var(--navy-800);
  border: 1px solid rgba(255,255,255,0.10);
  padding: 56px 48px;
  position: relative;
  border-radius: var(--radius-lg);
  display: flex; flex-direction: column;
}
.platform-eyebrow {
  font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--accent); font-weight: 700; margin-bottom: 18px;
}
.platform-name {
  font-family: var(--font-serif); font-weight: 400;
  font-size: 44px; line-height: 1.1; letter-spacing: -0.02em;
  color: #fff; margin: 0 0 24px;
}
.platform-desc { font-size: 16px; line-height: 1.7; color: rgba(255,255,255,0.78); margin: 0 0 36px; flex: 1; }
.platform-stats {
  display: flex; gap: 32px; padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.14);
}
.platform-stat .v {
  font-family: var(--font-serif); font-size: 32px; line-height: 1;
  color: var(--accent); margin-bottom: 8px; letter-spacing: -0.02em;
}
.platform-stat .l {
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.68); font-weight: 600; line-height: 1.4;
}

/* ============================================================
   LOGOS
   ============================================================ */
.logos-section { background: var(--off-white); padding: 96px 0; color: var(--light-fg); }
.logos-grid {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 0;
  border-top: 1px solid var(--light-border);
  border-left: 1px solid var(--light-border);
  margin-top: 48px;
}
.logo-cell {
  border-right: 1px solid var(--light-border);
  border-bottom: 1px solid var(--light-border);
  height: 120px;
  display: flex; align-items: center; justify-content: center;
  padding: 24px 32px;
  font-family: var(--font-serif); font-weight: 700;
  font-size: 16px; color: var(--navy-900);
  text-align: center;
  letter-spacing: -0.01em;
  opacity: 0.78;
  transition: opacity 200ms;
}
.logo-cell:hover { opacity: 1; }
.logo-cell .sub { display: block; font-family: var(--font-sans); font-size: 9px; letter-spacing: 0.18em; color: var(--falcon-grey); text-transform: uppercase; font-weight: 600; margin-top: 4px; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4px;
  margin-top: 28px;
}
.testimonial {
  padding: 48px 44px;
  background: var(--navy-800);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex; flex-direction: column;
}
.testimonial .quote-mark {
  font-family: var(--font-serif); font-size: 64px; line-height: 0.6;
  color: var(--accent); margin-bottom: 12px; height: 28px;
}
.testimonial blockquote {
  margin: 0 0 28px;
  font-family: var(--font-serif); font-size: 22px;
  line-height: 1.4; color: #fff;
  letter-spacing: -0.005em;
  flex: 1;
  text-wrap: pretty;
}
.testimonial cite {
  font-style: normal; display: block;
  border-top: 1px solid rgba(255,255,255,0.14);
  padding-top: 18px;
}
.testimonial cite .name { display: block; font-weight: 700; color: var(--accent); font-size: 13px; letter-spacing: 0.06em; }
.testimonial cite .firm { font-size: 12px; letter-spacing: 0.06em; color: rgba(255,255,255,0.65); }

/* ============================================================
   FOOTER CTA + SITE FOOTER
   ============================================================ */
.footer-cta {
  background: var(--navy-950);
  padding: 120px 0 100px;
  border-top: 1px solid rgba(255,255,255,0.12);
  position: relative;
}
.footer-cta::before {
  content: ""; position: absolute; left: 0; right: 0; top: 0;
  height: 2px; background: var(--accent);
}
.footer-cta .container { display: grid; grid-template-columns: 1.2fr 1fr; gap: 80px; align-items: end; }
.footer-cta h2 {
  font-family: var(--font-serif); font-weight: 400;
  font-size: clamp(36px, 4.4vw, 56px);
  line-height: 1.1; letter-spacing: -0.018em;
  color: #fff; margin: 0; text-wrap: balance;
}
.footer-cta p { font-size: 16px; line-height: 1.65; color: rgba(255,255,255,0.74); margin: 0 0 28px; }
.footer-cta-actions { display: flex; gap: 28px; align-items: center; flex-wrap: wrap; }

.site-footer {
  background: var(--navy-950);
  padding: 64px 0 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 56px; }
.footer-brand { display: flex; flex-direction: column; gap: 18px; max-width: 320px; }
.footer-brand .mark { display: flex; align-items: center; gap: 12px; }
.footer-brand .mark img { width: 32px; }
.footer-brand .mark span { font-weight: 700; letter-spacing: 0.18em; color: #fff; font-size: 15px; }
.footer-brand p { font-size: 13px; color: rgba(255,255,255,0.58); line-height: 1.65; margin: 0; }
.footer-col h5 {
  font-family: var(--font-sans);
  font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--accent); font-weight: 700;
  margin: 4px 0 18px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: rgba(255,255,255,0.74); font-size: 13px; border: 0; }
.footer-col a:hover { color: #fff; }
.footer-meta {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.10);
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.38); font-weight: 600;
  gap: 24px; flex-wrap: wrap;
}
.footer-meta .links { display: flex; gap: 24px; }
.footer-meta a { color: rgba(255,255,255,0.5); border: 0; }
.footer-meta a:hover { color: #fff; }

/* ============================================================
   WHY FALCON — difference sections
   ============================================================ */
.difference-section { padding: 120px 0; }
.difference-section.alt { background: var(--off-white); color: var(--light-fg); }
.difference-section.alt .difference-eyebrow { color: var(--accent); }
.difference-section.alt .difference-num { color: rgba(11,44,59,0.32); }
.difference-section.alt .difference-title { color: var(--light-fg); }
.difference-section.alt .col-label { color: rgba(11,44,59,0.55); }
.difference-section.alt .col-body { color: #2c3942; }
.difference-section.alt .col.us .col-body { color: var(--light-fg); }
.difference-section.alt .col.us { border-left-color: var(--accent); }
.difference-section.alt .col.what { background: var(--navy-900); color: #fff; }
.difference-section.alt .col.what .col-label { color: var(--accent); }
.difference-section.alt .col.what .col-body { color: rgba(255,255,255,0.92); }

.difference-head {
  display: grid; grid-template-columns: 160px 1fr; gap: 56px;
  align-items: baseline; margin-bottom: 48px;
}
.difference-num {
  font-family: var(--font-serif); font-weight: 400;
  font-size: 96px; line-height: 0.9; letter-spacing: -0.04em;
  color: rgba(255,255,255,0.18);
}
.difference-eyebrow {
  font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--accent); font-weight: 700; margin-bottom: 14px;
}
.difference-title {
  font-family: var(--font-serif); font-weight: 400;
  font-size: clamp(36px, 4.6vw, 60px); line-height: 1.05;
  letter-spacing: -0.022em; color: #fff; margin: 0;
}

.difference-cols { display: grid; grid-template-columns: 1fr 1fr 1.1fr; gap: 0; }
.col { padding: 40px 36px; min-height: 320px; }
.col-label {
  font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase;
  font-weight: 700; margin-bottom: 18px;
  color: rgba(255,255,255,0.5);
}
.col-body { font-size: 15.5px; line-height: 1.7; color: rgba(255,255,255,0.78); }
.col.them { border-top: 1px solid rgba(255,255,255,0.18); }
.col.us { border-top: 2px solid var(--accent); border-left: 1px solid rgba(255,255,255,0.18); border-right: 1px solid rgba(255,255,255,0.18); }
.col.us .col-label { color: var(--accent); }
.col.us .col-body { color: #fff; }
.col.what { background: var(--navy-800); border-top: 1px solid rgba(255,255,255,0.18); }
.col.what .col-label { color: var(--accent); }
.col.what .col-body { color: #fff; }

/* Honest version pullout */
.honest-pullout {
  background: var(--navy-900); padding: 120px 0;
}
.honest-pullout .container-narrow p {
  font-family: var(--font-serif); font-size: 22px; line-height: 1.55;
  color: rgba(255,255,255,0.92); margin: 0 0 22px;
  text-wrap: pretty;
}
.honest-pullout .container-narrow p.lead { font-style: italic; font-size: 28px; color: #fff; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-layout {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px;
  align-items: start;
  padding: 96px 0 120px;
}
.contact-info h2 {
  font-family: var(--font-serif); font-weight: 400;
  font-size: clamp(36px, 4.2vw, 52px); line-height: 1.1; letter-spacing: -0.02em;
  color: #fff; margin: 0 0 28px;
}
.contact-info .lead-para {
  font-size: 17px; line-height: 1.7; color: rgba(255,255,255,0.84);
  margin-bottom: 36px;
}
.contact-promise {
  border-top: 2px solid var(--accent);
  padding-top: 22px;
  margin-top: 36px;
  max-width: 440px;
}
.contact-promise .label { font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--accent); font-weight: 700; margin-bottom: 8px; }
.contact-promise .body { font-size: 15px; line-height: 1.6; color: rgba(255,255,255,0.78); }
.contact-responders {
  margin-top: 40px; display: flex; gap: 24px; flex-wrap: wrap;
}
.responder { font-size: 13px; color: rgba(255,255,255,0.68); line-height: 1.5; }
.responder .n { color: #fff; font-weight: 600; display: block; }

.form-card {
  background: var(--navy-800);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 48px 44px;
  border-radius: var(--radius-lg);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 18px; }
.form-field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.form-field label {
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.7); font-weight: 700;
}
.form-field input,
.form-field select,
.form-field textarea {
  background: rgba(11,28,42,0.7);
  border: 1px solid rgba(255,255,255,0.14);
  color: #fff;
  font-family: var(--font-sans); font-size: 15px;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  transition: border-color 200ms;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: 0; border-color: var(--accent);
}
.form-field textarea { min-height: 120px; resize: vertical; }
.form-field .hint { font-size: 11px; color: rgba(255,255,255,0.4); letter-spacing: 0.02em; }
.form-field select { appearance: none; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='none' stroke='%23f37231' stroke-width='1.5' d='M1 1.5l5 5 5-5'/></svg>"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 44px; }
.form-actions { margin-top: 12px; display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.form-actions .privacy { font-size: 11px; color: rgba(255,255,255,0.45); line-height: 1.55; max-width: 280px; }

.form-success {
  display: none;
  padding: 56px 44px;
  border: 1px solid var(--accent);
  border-radius: var(--radius-lg);
  background: rgba(243,114,49,0.04);
}
.form-success.active { display: block; }
.form-success .check {
  font-family: var(--font-serif); font-size: 14px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--accent); font-weight: 700; margin-bottom: 18px;
}
.form-success h3 {
  font-family: var(--font-serif); font-weight: 400; font-size: 36px; letter-spacing: -0.02em;
  line-height: 1.15; color: #fff; margin: 0 0 18px;
}
.form-success p { color: rgba(255,255,255,0.72); font-size: 15.5px; line-height: 1.65; margin: 0; }

/* Compact hero for non-home pages */
.subhero {
  background: var(--navy-900);
  padding: 96px 0 72px;
  position: relative;
  overflow: hidden;
}
.subhero h1 {
  font-family: var(--font-serif); font-weight: 400;
  font-size: clamp(42px, 5.4vw, 76px);
  line-height: 1.06; letter-spacing: -0.022em;
  color: #fff; margin: 0 0 28px;
  max-width: 980px;
}
.subhero .sub {
  font-size: 18px; line-height: 1.65;
  color: rgba(255,255,255,0.78);
  max-width: 720px; margin: 0;
}

/* ============================================================
   STRIKE — ALTERNATE LAYOUTS
   Only one .strike-block is visible at a time, picked by
   body[data-strike-layout].
   ============================================================ */
.strike-block { display: none; }
body[data-strike-layout="grid"]     .strike-block[data-variant="grid"]     { display: block; }
body[data-strike-layout="sequence"] .strike-block[data-variant="sequence"] { display: block; }
body[data-strike-layout="marquee"]  .strike-block[data-variant="marquee"]  { display: block; }

/* ---------- SEQUENCE: hairline editorial rows ---------- */
.strike-sequence {
  list-style: none; padding: 0; margin: 12px 0 0;
  counter-reset: strike;
}
.strike-sequence .seq-row {
  display: grid;
  grid-template-columns: 88px 280px 1fr;
  gap: 40px;
  padding: 36px 0;
  border-top: 1px solid rgba(255,255,255,0.14);
  align-items: baseline;
}
.strike-sequence .seq-row:last-child { border-bottom: 1px solid rgba(255,255,255,0.14); }

.strike-sequence .seq-letter {
  font-family: var(--font-serif); font-weight: 400;
  font-size: 72px; line-height: 0.85;
  color: var(--accent);
  letter-spacing: -0.03em;
}
.strike-sequence .seq-name {
  font-family: var(--font-sans); font-weight: 700;
  font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase;
  color: #fff; padding-top: 16px;
  line-height: 1.45;
}
.strike-sequence .seq-desc {
  font-size: 16px; line-height: 1.7;
  color: rgba(255,255,255,0.78);
  padding-top: 12px;
  text-wrap: pretty;
}

/* Sans variant inherits via existing body[data-display="sans"] rules,
   but the sequence letter is custom — apply the override here. */
body[data-display="sans"] .strike-sequence .seq-letter {
  font-family: var(--font-sans); font-weight: 800; letter-spacing: -0.05em;
  font-size: 60px;
}
body[data-accent="restrained"] .strike-sequence .seq-letter { color: #fff; }

/* ---------- MARQUEE: display-type acronym ---------- */
.strike-marquee {
  display: flex;
  align-items: baseline;
  gap: 0;
  font-family: var(--font-serif); font-weight: 400;
  font-size: clamp(64px, 13.5vw, 196px);
  line-height: 0.92;
  letter-spacing: -0.045em;
  color: #fff;
  margin: 24px 0 0;
  white-space: nowrap;
}
.strike-marquee span { display: inline-block; }
.strike-marquee .dot { color: var(--accent); padding: 0 2px; }

body[data-display="sans"] .strike-marquee {
  font-family: var(--font-sans); font-weight: 800; letter-spacing: -0.06em;
}
body[data-accent="restrained"] .strike-marquee .dot { color: var(--accent); }

.strike-marquee-list {
  list-style: none; padding: 0;
  margin: 64px 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 64px;
  border-top: 1px solid rgba(255,255,255,0.14);
}
.strike-marquee-list li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,0.14);
  align-items: baseline;
}
.strike-marquee-list .ml-letter {
  font-family: var(--font-serif);
  font-size: 36px; line-height: 0.9;
  color: var(--accent);
  letter-spacing: -0.03em;
}
.strike-marquee-list .ml-title {
  display: block;
  font-family: var(--font-sans); font-weight: 700;
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  color: #fff; line-height: 1.4;
  margin-bottom: 10px;
}
.strike-marquee-list .ml-desc {
  font-size: 14.5px; line-height: 1.65;
  color: rgba(255,255,255,0.74);
  margin: 0;
  text-wrap: pretty;
}
body[data-display="sans"] .strike-marquee-list .ml-letter {
  font-family: var(--font-sans); font-weight: 800;
}
body[data-accent="restrained"] .strike-marquee-list .ml-letter { color: #fff; }

/* ============================================================
   TESTIMONIALS — ALTERNATE LAYOUTS
   ============================================================ */
.testimonials-block { display: none; }
body[data-testimonials-layout="grid"]    .testimonials-block[data-variant="grid"]    { display: block; }
body[data-testimonials-layout="stack"]   .testimonials-block[data-variant="stack"]   { display: block; }
body[data-testimonials-layout="feature"] .testimonials-block[data-variant="feature"] { display: block; }

/* Architectural backdrop — same photo as the hero, re-cropped, heavier
   overlay so quote type stays the focal point. Applies to every
   testimonial layout. */
.testimonials-block.section-deep {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--navy-950);
  border-top: 1px solid rgba(255,255,255,0.10);
  border-bottom: 1px solid rgba(255,255,255,0.10);
}
.testimonials-block.section-deep::before {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(6,26,36,0.94) 0%, rgba(11,28,42,0.68) 38%, rgba(6,26,36,0.96) 100%),
    url("../assets/falcon-bg-buildings.png") center 72% / cover no-repeat;
  filter: saturate(0.86);
}

/* When the grid variant is on, the testimonial cards should feel like
   lit windows against the architectural backdrop — translucent surface
   + faint frost. */
.testimonials-block[data-variant="grid"] .testimonial {
  background: rgba(19, 58, 77, 0.62);
  border: 1px solid rgba(255,255,255,0.10);
  -webkit-backdrop-filter: blur(8px) saturate(120%);
  backdrop-filter: blur(8px) saturate(120%);
}

/* ---------- STACK: editorial pull-quote column ---------- */
.t-stack {
  margin-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.14);
}
.t-stack-item {
  margin: 0;
  padding: 56px 0;
  border-bottom: 1px solid rgba(255,255,255,0.14);
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 56px;
  align-items: baseline;
}
.t-stack-item blockquote {
  margin: 0;
  font-family: var(--font-serif); font-weight: 400;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.36;
  letter-spacing: -0.012em;
  color: #fff;
  text-wrap: pretty;
}
.t-stack-item blockquote::before {
  content: "\201C";
  color: var(--accent);
  font-family: var(--font-serif);
  margin-right: 4px;
}
.t-stack-item blockquote::after {
  content: "\201D";
  color: var(--accent);
  font-family: var(--font-serif);
  margin-left: 2px;
}
.t-stack-item figcaption {
  font-style: normal;
  border-top: 1px solid rgba(255,255,255,0.14);
  padding-top: 16px;
}
.t-stack-item .t-name {
  display: block;
  font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--accent); font-weight: 700;
  margin-bottom: 6px;
}
.t-stack-item .t-firm {
  display: block;
  font-size: 13px; line-height: 1.5;
  color: rgba(255,255,255,0.65);
}
body[data-display="sans"] .t-stack-item blockquote {
  font-family: var(--font-sans); font-weight: 600;
  line-height: 1.28; letter-spacing: -0.02em;
}
body[data-accent="restrained"] .t-stack-item .t-name { color: #fff; }
body[data-accent="restrained"] .t-stack-item blockquote::before,
body[data-accent="restrained"] .t-stack-item blockquote::after { color: rgba(255,255,255,0.5); }

/* ---------- FEATURE: hero quote + supporting row ---------- */
.t-hero {
  margin: 32px 0 0;
  padding: 0 0 56px;
  border-top: 2px solid var(--accent);
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 36px;
  padding-top: 48px;
}
.t-hero .t-hero-mark {
  font-family: var(--font-serif);
  font-size: 120px; line-height: 0.6;
  color: var(--accent);
  height: 56px;
}
.t-hero blockquote {
  margin: 0;
  font-family: var(--font-serif); font-weight: 400;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.24;
  letter-spacing: -0.02em;
  color: #fff;
  text-wrap: pretty;
}
.t-hero figcaption {
  font-style: normal;
  grid-column: 2;
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.18);
}
.t-hero .t-name {
  display: block;
  font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--accent); font-weight: 700;
  margin-bottom: 6px;
}
.t-hero .t-firm {
  display: block;
  font-size: 13px; line-height: 1.5;
  color: rgba(255,255,255,0.7);
}
.t-feature-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 48px;
  border-top: 1px solid rgba(255,255,255,0.14);
}
.t-feature-item {
  margin: 0;
  padding: 40px 36px 36px 0;
  border-right: 1px solid rgba(255,255,255,0.14);
}
.t-feature-item:nth-child(n+2) { padding-left: 36px; }
.t-feature-item:last-child { border-right: 0; padding-right: 0; }
.t-feature-item blockquote {
  margin: 0 0 28px;
  font-family: var(--font-serif); font-weight: 400;
  font-size: 18px; line-height: 1.5;
  color: rgba(255,255,255,0.92);
  letter-spacing: -0.005em;
  text-wrap: pretty;
}
.t-feature-item figcaption { font-style: normal; padding-top: 14px; border-top: 1px solid rgba(255,255,255,0.14); }
.t-feature-item .t-name {
  display: block;
  font-size: 11.5px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--accent); font-weight: 700;
  margin-bottom: 4px;
}
.t-feature-item .t-firm {
  display: block;
  font-size: 12.5px; line-height: 1.5;
  color: rgba(255,255,255,0.62);
}
body[data-display="sans"] .t-hero blockquote,
body[data-display="sans"] .t-feature-item blockquote {
  font-family: var(--font-sans); font-weight: 600;
  letter-spacing: -0.02em; line-height: 1.28;
}
body[data-accent="restrained"] .t-hero .t-hero-mark { color: rgba(255,255,255,0.6); }
body[data-accent="restrained"] .t-hero .t-name,
body[data-accent="restrained"] .t-feature-item .t-name { color: #fff; }
body[data-accent="restrained"] .t-hero { border-top-color: rgba(255,255,255,0.32); }

/* ============================================================
   TWEAKS — homepage only, scoped to body[data-*] attributes
   ============================================================ */

/* ---------- Hero Atmosphere ---------- */
/* "architectural" is the default — building photo, see .hero.hero-image */

body[data-hero-mood="editorial"] .hero.hero-image::before {
  background:
    linear-gradient(180deg, rgba(11,28,42,0.0) 0%, rgba(6,26,36,0.4) 100%),
    var(--navy-950);
}
body[data-hero-mood="editorial"] .hero-content { padding: 144px 0 160px; }
body[data-hero-mood="editorial"] .hero-rule { height: 3px; width: 144px; }
body[data-hero-mood="editorial"] .hero h1 { letter-spacing: -0.028em; }
body[data-hero-mood="editorial"] .hero-sub { max-width: 620px; }

/* Editorial also gets a faint horizon rule */
body[data-hero-mood="editorial"] .hero::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px; background: rgba(255,255,255,0.10);
}

body[data-hero-mood="spotlight"] .hero.hero-image::before {
  background:
    radial-gradient(ellipse 70% 60% at 22% 55%, rgba(243,114,49,0.28) 0%, rgba(243,114,49,0.06) 36%, rgba(11,28,42,0) 68%),
    radial-gradient(ellipse 90% 70% at 80% 30%, rgba(28,74,95,0.6) 0%, rgba(11,28,42,0) 70%),
    var(--navy-950);
}
body[data-hero-mood="spotlight"] .hero-content { padding: 128px 0 132px; }
body[data-hero-mood="spotlight"] .hero h1 {
  text-shadow: 0 6px 48px rgba(243,114,49,0.18);
}
body[data-hero-mood="spotlight"] .hero-rule {
  height: 2px; width: 64px;
  box-shadow: 0 0 16px rgba(243,114,49,0.6);
}

/* ---------- Display Voice ---------- */
/* "serif" is the default (Libre Baskerville everywhere via tokens). */

body[data-display="sans"] .hero h1,
body[data-display="sans"] .section-title,
body[data-display="sans"] .subhero h1,
body[data-display="sans"] .platform-name,
body[data-display="sans"] .testimonial blockquote,
body[data-display="sans"] .footer-cta h2,
body[data-display="sans"] .problem-coda {
  font-family: var(--font-sans);
  font-weight: 700;
  letter-spacing: -0.028em;
  line-height: 1.06;
}
body[data-display="sans"] .hero h1 { letter-spacing: -0.035em; font-weight: 800; }
body[data-display="sans"] .stat-cell .num,
body[data-display="sans"] .platform-stat .v {
  font-family: var(--font-sans);
  font-weight: 700;
  letter-spacing: -0.04em;
}
body[data-display="sans"] .strike-letter {
  font-family: var(--font-sans);
  font-weight: 800;
  letter-spacing: -0.06em;
  font-size: 64px;
}
body[data-display="sans"] .testimonial blockquote {
  font-weight: 600;
  letter-spacing: -0.018em;
  line-height: 1.32;
}
body[data-display="sans"] .testimonial .quote-mark {
  font-family: var(--font-sans);
  font-weight: 800;
}
body[data-display="sans"] .problem-coda {
  font-style: normal;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.3;
}
body[data-display="sans"] .hero h1 .tm { font-weight: 600; }

/* ---------- Accent Range ---------- */
/* "full" is the default — orange is the connective tissue everywhere. */

body[data-accent="restrained"] .section-eyebrow,
body[data-accent="restrained"] .hero-eyebrow,
body[data-accent="restrained"] .platform-eyebrow,
body[data-accent="restrained"] .footer-col h5,
body[data-accent="restrained"] .problem-label,
body[data-accent="restrained"] .nav-item .menu .group-label {
  color: rgba(255,255,255,0.88);
  border-top-color: rgba(255,255,255,0.32);
}
/* Light-bg eyebrows on restrained — go navy, not orange */
body[data-accent="restrained"] .logos-section .section-eyebrow {
  color: var(--navy-900);
  border-top-color: rgba(11,44,59,0.4);
}

/* Data marks lose orange, become confident white/neutral */
body[data-accent="restrained"] .stat-cell .num,
body[data-accent="restrained"] .platform-stat .v,
body[data-accent="restrained"] .strike-letter {
  color: #fff;
}
body[data-accent="restrained"] .stats-bar {
  border-top-color: rgba(255,255,255,0.22);
  border-bottom-color: rgba(255,255,255,0.22);
}

/* Versus table — keep the left rule on Us as the only orange tell */
body[data-accent="restrained"] .versus-header .col-us { color: rgba(255,255,255,0.88); }

/* Testimonials — name no longer orange, become bright white */
body[data-accent="restrained"] .testimonial cite .name { color: #fff; }
body[data-accent="restrained"] .testimonial .quote-mark { color: rgba(255,255,255,0.55); }

/* Hero atmospheric: restrained dims the photo wash further so the
   orange rule reads as the only spark of color. */
body[data-accent="restrained"] .hero.hero-image::before {
  filter: saturate(0.78);
}

/* Footer-cta top accent line stays — that's the brand handshake */

/* ============================================================
   WEEK 2 — HOW WE WORK / TRACK RECORD / PLACEMENT HISTORY
   ============================================================ */

/* ---------- Process stage rows (S.T.R.I.K.E. expanded) ---------- */
.process-stage {
  display: grid; grid-template-columns: 240px 1fr;
  gap: 64px;
  padding: 72px 0;
  border-top: 1px solid rgba(255,255,255,0.14);
  align-items: start;
}
.process-stage:last-of-type { border-bottom: 1px solid rgba(255,255,255,0.14); }
.process-stage .stage-mark {
  position: sticky; top: 92px;
  border-top: 2px solid var(--accent);
  padding-top: 18px;
}
.process-stage .stage-letter {
  font-family: var(--font-serif); font-weight: 400;
  font-size: 104px; line-height: 0.88; letter-spacing: -0.04em;
  color: var(--accent);
  margin: 0;
}
.process-stage .stage-name {
  margin-top: 18px;
  font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
  color: rgba(255,255,255,0.78); font-weight: 700;
}
.process-stage .stage-body h3 {
  font-family: var(--font-serif); font-weight: 400;
  font-size: clamp(28px, 3vw, 38px); line-height: 1.15;
  letter-spacing: -0.018em; color: #fff;
  margin: 0 0 24px;
}
.process-stage .stage-body p {
  font-size: 17px; line-height: 1.7; color: rgba(255,255,255,0.82);
  margin: 0 0 16px;
}

/* ---------- Two-column editorial (Transparency / PE-CXO / etc.) ---------- */
.editorial-split {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px;
  align-items: start;
}
.editorial-split .lhs {
  position: sticky; top: 92px;
}
.editorial-split .lhs .eyebrow {
  font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--accent); font-weight: 700;
  border-top: 2px solid var(--accent); padding-top: 16px;
  display: inline-block; margin-bottom: 22px;
}
.editorial-split .lhs h2 {
  font-family: var(--font-serif); font-weight: 400;
  font-size: clamp(32px, 3.6vw, 48px); line-height: 1.1;
  letter-spacing: -0.02em; color: #fff;
  margin: 0;
}
.editorial-split.alt .lhs h2 { color: var(--light-fg); }
.editorial-split .rhs p {
  font-size: 17px; line-height: 1.7; color: rgba(255,255,255,0.82);
  margin: 0 0 18px;
}
.editorial-split.alt .rhs p { color: #2c3942; }

/* Bullet list — for Transparency Standard */
.spec-list { list-style: none; margin: 24px 0 0; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.spec-list li {
  position: relative; padding: 14px 0 14px 32px;
  font-size: 15.5px; line-height: 1.65; color: rgba(255,255,255,0.86);
  border-top: 1px solid rgba(255,255,255,0.12);
}
.spec-list li::before {
  content: ""; position: absolute; left: 0; top: 24px;
  width: 14px; height: 1.5px; background: var(--accent);
}
.editorial-split.alt .spec-list li { color: #2c3942; border-top-color: rgba(11,44,59,0.12); }

/* ---------- Big-stat methodology cards ---------- */
.bignum-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 0;
  border-top: 2px solid var(--accent);
  border-bottom: 1px solid rgba(255,255,255,0.14);
}
.bignum {
  padding: 36px 32px 32px;
  border-right: 1px solid rgba(255,255,255,0.14);
}
.bignum:last-child { border-right: 0; }
.bignum .v {
  font-family: var(--font-serif); font-weight: 400;
  font-size: clamp(48px, 5vw, 72px); line-height: 1;
  color: var(--accent); letter-spacing: -0.025em; margin-bottom: 18px;
}
.bignum .l {
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: #fff; font-weight: 700; line-height: 1.4;
  margin-bottom: 18px;
}
.bignum .method {
  font-size: 13px; line-height: 1.6; color: rgba(255,255,255,0.62);
  padding-top: 14px; border-top: 1px solid rgba(255,255,255,0.14);
}
.bignum .method strong { color: rgba(255,255,255,0.88); font-weight: 600; }

/* ---------- Search mix bars ---------- */
.mix-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  margin-top: 24px;
}
.mix-section h3 {
  font-family: var(--font-sans); font-weight: 700;
  font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--accent); margin: 0 0 28px;
}
.mix-row { display: flex; flex-direction: column; gap: 8px; margin-bottom: 22px; }
.mix-label-row { display: flex; justify-content: space-between; align-items: baseline; }
.mix-label {
  font-family: var(--font-serif); font-size: 18px; color: #fff;
  letter-spacing: -0.01em;
}
.mix-val {
  font-family: var(--font-sans); font-weight: 700;
  font-size: 13px; color: var(--accent); letter-spacing: 0.06em;
}
.mix-track {
  height: 4px; background: rgba(255,255,255,0.10); position: relative;
}
.mix-fill {
  position: absolute; left: 0; top: 0; bottom: 0;
  background: var(--accent);
}

.sector-list { display: flex; flex-direction: column; gap: 14px; margin-top: 4px; }
.sector-list .sector-row {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 14px 0;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.sector-list .sector-row:last-child { border-bottom: 1px solid rgba(255,255,255,0.12); }
.sector-list .sector-name { font-family: var(--font-serif); font-size: 18px; color: #fff; letter-spacing: -0.01em; }
.sector-list .sector-note { font-size: 12px; color: rgba(255,255,255,0.55); letter-spacing: 0.04em; }

/* ---------- 86% Methodology callout ---------- */
.methodology-callout {
  background: var(--navy-800);
  border: 1px solid rgba(255,255,255,0.10);
  border-top: 2px solid var(--accent);
  padding: 56px 56px;
  border-radius: var(--radius-lg);
  display: grid; grid-template-columns: 220px 1fr; gap: 56px;
  align-items: start;
}
.methodology-callout .big {
  font-family: var(--font-serif); font-weight: 400;
  font-size: 96px; line-height: 0.95; color: var(--accent);
  letter-spacing: -0.035em;
}
.methodology-callout .big-sub {
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(255,255,255,0.7); margin-top: 12px; font-weight: 700;
}
.methodology-callout h3 {
  font-family: var(--font-serif); font-weight: 400;
  font-size: clamp(26px, 3vw, 36px); line-height: 1.15;
  letter-spacing: -0.018em; color: #fff;
  margin: 0 0 22px;
}
.methodology-callout p {
  font-size: 16px; line-height: 1.7; color: rgba(255,255,255,0.85);
  margin: 0 0 16px;
}
.methodology-callout .rules {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4px 28px;
  margin-top: 24px; padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.14);
}
.methodology-callout .rule {
  display: flex; gap: 14px; align-items: baseline;
  padding: 12px 0;
  font-size: 14px; line-height: 1.5;
  color: rgba(255,255,255,0.82);
}
.methodology-callout .rule .tick {
  flex: 0 0 auto;
  font-family: var(--font-serif); color: var(--accent); font-size: 18px; line-height: 1;
  width: 14px;
}

/* ---------- Discretion note (Placement History) ---------- */
.discretion-note {
  background: var(--navy-800);
  border-left: 2px solid var(--accent);
  padding: 18px 28px;
  font-size: 13px; line-height: 1.6;
  color: rgba(255,255,255,0.75);
  margin-top: 28px;
  max-width: 720px;
}
.discretion-note strong { color: #fff; font-weight: 600; }

/* ---------- Filter bar ---------- */
.filter-section {
  background: var(--navy-950);
  border-top: 1px solid rgba(255,255,255,0.10);
  border-bottom: 1px solid rgba(255,255,255,0.10);
  padding: 32px 0;
  position: sticky; top: 70px;
  z-index: 50;
  backdrop-filter: blur(12px);
}
.filter-bar {
  display: grid; grid-template-columns: repeat(3, 1fr) 1.4fr;
  gap: 16px; align-items: end;
}
.filter-field { display: flex; flex-direction: column; gap: 8px; }
.filter-field label {
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(255,255,255,0.6); font-weight: 700;
}
.filter-field select,
.filter-field input {
  background: var(--navy-900);
  border: 1px solid rgba(255,255,255,0.16);
  color: #fff;
  font-family: var(--font-sans); font-size: 14px;
  padding: 12px 14px;
  border-radius: var(--radius-md);
  transition: border-color 200ms;
  width: 100%;
}
.filter-field select:focus,
.filter-field input:focus { outline: 0; border-color: var(--accent); }
.filter-field select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='none' stroke='%23f37231' stroke-width='1.5' d='M1 1.5l5 5 5-5'/></svg>");
  background-repeat: no-repeat; background-position: right 14px center;
  padding-right: 38px;
}

.filter-meta {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-top: 24px; flex-wrap: wrap; gap: 16px;
}
.filter-meta .count {
  font-size: 13px; letter-spacing: 0.06em; color: rgba(255,255,255,0.78);
}
.filter-meta .count strong { color: #fff; font-weight: 700; }
.filter-meta .reset {
  background: none; border: 0; cursor: pointer;
  color: var(--accent); font-size: 12px; letter-spacing: 0.16em;
  text-transform: uppercase; font-weight: 700; padding: 6px 0;
  border-bottom: 1px solid transparent; transition: border-color 200ms;
}
.filter-meta .reset:hover { border-bottom-color: var(--accent); }

/* Active filter chips */
.active-chips { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 18px; }
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 10px 6px 12px;
  background: rgba(243,114,49,0.08);
  border: 1px solid rgba(243,114,49,0.35);
  color: var(--accent);
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  font-weight: 700; border-radius: var(--radius-pill);
}
.chip button {
  background: none; border: 0; color: var(--accent); cursor: pointer;
  font-size: 14px; line-height: 1; padding: 0; margin-left: 2px;
}

/* ---------- Placement card grid ---------- */
.placements-section { background: var(--navy-900); padding: 64px 0 120px; }
.placement-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.12);
  margin-top: 24px;
}
.placement-card {
  background: var(--navy-900);
  padding: 32px 28px 28px;
  display: flex; flex-direction: column;
  transition: background 200ms;
  min-height: 240px;
}
.placement-card:hover { background: var(--navy-800); }
.placement-card .sponsor {
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--accent); font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.3;
}
.placement-card .portco {
  font-family: var(--font-serif); font-weight: 400;
  font-size: 26px; line-height: 1.18; letter-spacing: -0.018em;
  color: #fff; margin: 0 0 12px;
}
.placement-card .role {
  font-size: 14px; color: var(--accent); font-weight: 600;
  letter-spacing: 0.02em; margin-bottom: 8px;
}
.placement-card .exec {
  font-size: 14px; color: rgba(255,255,255,0.72);
  margin-bottom: 24px;
}
.placement-card .exec.anon { font-style: italic; color: rgba(255,255,255,0.5); }
.placement-card .meta {
  margin-top: auto; display: flex; align-items: center; gap: 12px;
  flex-wrap: wrap;
  padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.10);
}
.placement-card .sector-pill {
  display: inline-block; padding: 4px 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.16);
  font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255,255,255,0.78); font-weight: 600;
  border-radius: var(--radius-pill);
}
.placement-card .year,
.placement-card .revenue {
  font-size: 12px; color: rgba(255,255,255,0.55);
  letter-spacing: 0.04em; font-variant-numeric: tabular-nums;
}
.placement-card .meta .revenue::before {
  content: "·"; margin-right: 8px; opacity: 0.6;
}

.no-results {
  padding: 96px 24px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.65);
}
.no-results h3 { font-family: var(--font-serif); color: #fff; font-size: 28px; margin: 0 0 14px; font-weight: 400; }
.no-results.is-hidden { display: none; }

/* ---------- Page footer CTA — placement history variant ---------- */
.placement-footer-cta {
  background: var(--navy-800);
  border-top: 1px solid rgba(255,255,255,0.10);
  padding: 96px 0;
}
.placement-footer-cta .container {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 64px; align-items: center;
}
.placement-footer-cta h2 {
  font-family: var(--font-serif); font-weight: 400;
  font-size: clamp(28px, 3.2vw, 42px); line-height: 1.15;
  letter-spacing: -0.018em; color: #fff; margin: 0 0 16px;
}
.placement-footer-cta p { color: rgba(255,255,255,0.78); font-size: 16px; line-height: 1.65; margin: 0; }
.placement-footer-cta .actions { display: flex; flex-direction: column; gap: 16px; align-items: stretch; }
.placement-footer-cta .actions .btn { text-align: center; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .container { padding: 0 28px; }
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed; top: 72px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--navy-950);
    padding: 12px 28px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: 240ms;
  }
  .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-item { width: 100%; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .nav-link { padding: 16px 0; width: 100%; }
  .nav-cta { padding: 14px 22px; width: 100%; text-align: center; margin-top: 14px; }
  .nav-item .menu { position: static; opacity: 1; pointer-events: auto; transform: none; box-shadow: none; border: 0; background: transparent; padding: 0 0 12px 16px; min-width: 0; display: none; }
  .nav-item.open .menu { display: block; }

  .hero-content { padding: 80px 0 88px; }
  .hero h1 { font-size: clamp(40px, 9vw, 56px); }

  .stats-bar .grid { grid-template-columns: repeat(2, 1fr); gap: 36px 0; }
  .stat-cell + .stat-cell::before { display: none; }
  .stat-cell { padding: 12px 24px; border-left: 1px solid rgba(255,255,255,0.12); }
  .stat-cell:nth-child(odd) { border-left: 0; }
  .stat-cell .num { font-size: 44px; }

  .section-dark, .section-light, .section-deep, .versus-section, .difference-section { padding: 72px 0; }
  .problem-row { grid-template-columns: 1fr; gap: 16px; padding: 28px 0; }

  .strike-grid { grid-template-columns: 1fr; }
  .strike-card { min-height: 0; }

  .versus-header { display: none; }
  .versus-row { grid-template-columns: 1fr; }
  .versus-them, .versus-us { padding: 24px 0; border: 0; }
  .versus-them::before, .versus-us::before {
    display: block;
    font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase;
    font-weight: 700; margin-bottom: 12px;
  }
  .versus-them::before { content: "Them"; color: rgba(255,255,255,0.5); }
  .versus-us::before { content: "Us"; color: var(--accent); }
  .versus-us { border-left: 2px solid var(--accent); padding-left: 20px; margin-top: 8px; }
  .versus-divider { display: none; }

  .platform-grid { grid-template-columns: 1fr; }
  .platform-card { padding: 40px 28px; }

  .logos-grid { grid-template-columns: repeat(2, 1fr); }
  .logo-cell { height: 96px; }

  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial { padding: 36px 28px; }
  .testimonial blockquote { font-size: 18px; }

  .footer-cta .container { grid-template-columns: 1fr; gap: 36px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }

  .difference-head { grid-template-columns: 1fr; gap: 12px; margin-bottom: 32px; }
  .difference-num { font-size: 64px; }
  .difference-cols { grid-template-columns: 1fr; }
  .col { min-height: 0; padding: 32px 24px; border: 0 !important; border-top: 1px solid rgba(255,255,255,0.18) !important; }
  .col.us { border-left: 2px solid var(--accent) !important; }
  .difference-section.alt .col.what { padding: 32px 24px; }

  .honest-pullout { padding: 72px 0; }
  .honest-pullout .container-narrow p { font-size: 17px; }
  .honest-pullout .container-narrow p.lead { font-size: 22px; }

  .contact-layout { grid-template-columns: 1fr; gap: 48px; padding: 56px 0 96px; }
  .form-card { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }

  /* STRIKE alt layouts — mobile */
  .strike-sequence .seq-row { grid-template-columns: 56px 1fr; gap: 18px 20px; padding: 28px 0; }
  .strike-sequence .seq-letter { font-size: 48px; }
  .strike-sequence .seq-name { padding-top: 8px; }
  .strike-sequence .seq-desc { grid-column: 1 / -1; padding-top: 0; }
  .strike-marquee { font-size: clamp(44px, 16vw, 96px); }
  .strike-marquee-list { grid-template-columns: 1fr; column-gap: 0; }

  /* Testimonials alt layouts — mobile */
  .t-stack-item { grid-template-columns: 1fr; gap: 24px; padding: 40px 0; }
  .t-hero { grid-template-columns: 1fr; gap: 18px; padding-top: 32px; }
  .t-hero .t-hero-mark { font-size: 72px; }
  .t-hero figcaption { grid-column: 1; }
  .t-feature-row { grid-template-columns: 1fr; }
  .t-feature-item { border-right: 0; border-bottom: 1px solid rgba(255,255,255,0.14); padding: 32px 0 !important; }
  .t-feature-item:last-child { border-bottom: 0; }

  /* Week 2 patterns */
  .process-stage { grid-template-columns: 1fr; gap: 24px; padding: 48px 0; }
  .process-stage .stage-mark { position: static; padding-top: 14px; }
  .process-stage .stage-letter { font-size: 72px; }
  .editorial-split { grid-template-columns: 1fr; gap: 36px; }
  .editorial-split .lhs { position: static; }
  .bignum-grid { grid-template-columns: 1fr 1fr; }
  .bignum { border-right: 1px solid rgba(255,255,255,0.14) !important; border-bottom: 1px solid rgba(255,255,255,0.14); }
  .bignum:nth-child(even) { border-right: 0 !important; }
  .mix-grid { grid-template-columns: 1fr; gap: 56px; }
  .methodology-callout { grid-template-columns: 1fr; padding: 36px 28px; gap: 24px; }
  .methodology-callout .big { font-size: 72px; }
  .methodology-callout .rules { grid-template-columns: 1fr; }
  .filter-section { position: static; padding: 24px 0; }
  .filter-bar { grid-template-columns: 1fr 1fr; }
  .filter-field:last-child { grid-column: 1 / -1; }
  .placement-grid { grid-template-columns: 1fr; }
  .placement-footer-cta .container { grid-template-columns: 1fr; gap: 28px; }
}

@media (min-width: 981px) and (max-width: 1180px) {
  .placement-grid { grid-template-columns: repeat(2, 1fr); }
  .filter-bar { grid-template-columns: 1fr 1fr 1fr 1fr; }
}

/* ============================================================
   WEEK 4 — SOLUTIONS (function + sector page templates)
   Built on existing tokens + Week 1/2 patterns. No token changes.
   ============================================================ */

/* ---------- Subhero meta link row (under hero sub) ---------- */
.solution-meta {
  display: flex; flex-wrap: wrap; gap: 14px;
  margin-top: 36px;
}
.solution-meta a {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-pill);
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  font-weight: 700; color: rgba(255,255,255,0.82);
  transition: border-color 200ms var(--ease-standard), color 200ms var(--ease-standard), background 200ms var(--ease-standard);
}
.solution-meta a:hover { border-color: var(--accent); color: #fff; background: rgba(243,114,49,0.06); }
.solution-meta a .dot {
  width: 5px; height: 5px; border-radius: 50%; background: var(--accent); flex: 0 0 auto;
}

/* ---------- Narrative section (main body copy) ---------- */
.narrative .lead-para {
  font-family: var(--font-serif);
  font-size: clamp(24px, 2.6vw, 32px); line-height: 1.4;
  letter-spacing: -0.014em; color: #fff;
  margin: 0 0 36px; max-width: 920px;
  text-wrap: pretty;
}
.section-light .narrative .lead-para { color: var(--light-fg); }
.narrative .body-cols {
  columns: 2; column-gap: 64px; max-width: 1040px;
}
.narrative .body-cols p { break-inside: avoid; font-size: 16.5px; line-height: 1.72; }
.narrative .body-single { max-width: 760px; }
.narrative .body-single p { font-size: 17px; line-height: 1.72; }
.section-light .narrative p { color: #2c3942; }

/* ---------- Principles grid (3–4 key bullets) ---------- */
.principles-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid rgba(255,255,255,0.16);
  border-left: 1px solid rgba(255,255,255,0.16);
  margin-top: 12px;
}
.principles-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.principle {
  padding: 38px 36px 42px;
  border-right: 1px solid rgba(255,255,255,0.16);
  border-bottom: 1px solid rgba(255,255,255,0.16);
  background: var(--navy-900);
  transition: background 240ms var(--ease-standard);
}
.section-deep .principle { background: var(--navy-950); }
.principle:hover { background: var(--navy-800); }
.principle .p-index {
  font-family: var(--font-serif); font-weight: 400;
  font-size: 13px; letter-spacing: 0.2em;
  color: var(--accent); margin-bottom: 20px;
  display: block;
}
.principle h3 {
  font-family: var(--font-sans); font-weight: 700;
  font-size: 14px; letter-spacing: 0.1em; text-transform: uppercase;
  color: #fff; margin: 0 0 14px; line-height: 1.45;
}
.principle p {
  font-size: 15px; line-height: 1.68; color: rgba(255,255,255,0.74);
  margin: 0;
}

/* ---------- Gated Blueprint / Talent Guide CTA ---------- */
.gated-cta {
  background: var(--navy-800);
  border: 1px solid rgba(255,255,255,0.10);
  border-top: 2px solid var(--accent);
  border-radius: var(--radius-lg);
  padding: 56px 56px;
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 56px; align-items: center;
}
.gated-cta .g-eyebrow {
  font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--accent); font-weight: 700; margin-bottom: 18px;
}
.gated-cta h2 {
  font-family: var(--font-serif); font-weight: 400;
  font-size: clamp(26px, 3vw, 38px); line-height: 1.15;
  letter-spacing: -0.018em; color: #fff; margin: 0 0 18px;
}
.gated-cta p { font-size: 15.5px; line-height: 1.68; color: rgba(255,255,255,0.78); margin: 0; }
.gated-cta .g-actions { display: flex; flex-direction: column; gap: 16px; align-items: stretch; }
.gated-cta .g-actions .btn { text-align: center; }
.gated-cta .g-note {
  font-size: 11.5px; letter-spacing: 0.04em; color: rgba(255,255,255,0.5);
  line-height: 1.55; margin: 4px 0 0;
}

/* ---------- FAQ accordion (FAQPage-schema ready) ---------- */
.faq-list {
  border-top: 1px solid rgba(255,255,255,0.14);
  margin-top: 12px; max-width: 900px;
}
.faq-item { border-bottom: 1px solid rgba(255,255,255,0.14); }
.faq-q {
  width: 100%; background: none; border: 0; cursor: pointer;
  display: flex; align-items: baseline; justify-content: space-between; gap: 32px;
  padding: 30px 0; text-align: left;
  font-family: var(--font-serif); font-weight: 400;
  font-size: clamp(20px, 2.1vw, 26px); line-height: 1.3; letter-spacing: -0.012em;
  color: #fff;
  transition: color 200ms var(--ease-standard);
}
.section-light .faq-q { color: var(--light-fg); }
.faq-q:hover { color: var(--accent); }
.faq-q .faq-icon {
  flex: 0 0 auto; position: relative; width: 18px; height: 18px;
  margin-top: 8px;
}
.faq-q .faq-icon::before,
.faq-q .faq-icon::after {
  content: ""; position: absolute; background: var(--accent);
  transition: transform 240ms var(--ease-standard), opacity 240ms var(--ease-standard);
}
.faq-q .faq-icon::before { left: 0; right: 0; top: 8px; height: 2px; }
.faq-q .faq-icon::after { top: 0; bottom: 0; left: 8px; width: 2px; }
.faq-item.open .faq-q .faq-icon::after { transform: scaleY(0); opacity: 0; }
.faq-a {
  overflow: hidden; max-height: 0;
  transition: max-height 360ms var(--ease-emphasized);
}
.faq-a-inner { padding: 0 0 32px; max-width: 760px; }
.faq-a-inner p {
  font-size: 16.5px; line-height: 1.74; color: rgba(255,255,255,0.82); margin: 0;
}
.section-light .faq-a-inner p { color: #2c3942; }
.faq-item.open .faq-a { max-height: 600px; }

/* ---------- Related function-page links (sector pages) ---------- */
.fn-links {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.12);
  margin-top: 12px;
}
.fn-link {
  background: var(--navy-900);
  padding: 32px 30px 30px;
  display: flex; flex-direction: column; gap: 12px;
  transition: background 200ms var(--ease-standard);
  border: 0;
}
.section-deep .fn-link { background: var(--navy-950); }
.fn-link:hover { background: var(--navy-800); }
.fn-link .fl-role {
  font-family: var(--font-serif); font-weight: 400;
  font-size: 26px; line-height: 1.12; letter-spacing: -0.018em; color: #fff;
}
.fn-link .fl-desc { font-size: 14px; line-height: 1.6; color: rgba(255,255,255,0.7); margin: 0; }
.fn-link .fl-go {
  margin-top: auto; padding-top: 16px;
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 700;
  color: var(--accent); display: inline-flex; align-items: center; gap: 8px;
}
.fn-link .fl-go .arrow { transition: transform 200ms; }
.fn-link:hover .fl-go .arrow { transform: translateX(4px); }

/* ---------- Solutions responsive ---------- */
@media (max-width: 980px) {
  .narrative .body-cols { columns: 1; }
  .principles-grid, .principles-grid.cols-3 { grid-template-columns: 1fr; }
  .gated-cta { grid-template-columns: 1fr; padding: 36px 28px; gap: 28px; }
  .fn-links { grid-template-columns: 1fr; }
  .faq-q { font-size: 19px; gap: 20px; padding: 24px 0; }
}
