/* ═══════════════════════════════════════════════
   FOB SYSTEMS - Design System v1
   Graphite / Champagne / Line Language
   ═══════════════════════════════════════════════ */
:root {
  --ink: #14171B;
  --ink-warm: #171A1E;
  --panel: #1B2026;
  --panel-2: #20262D;
  --gold: #D3BE98;
  --gold-dim: #A8946F;
  --gold-line: rgba(211,190,152,0.28);
  --gold-line-soft: rgba(211,190,152,0.14);
  --text: #EFEAE0;
  --muted: #9BA1A8;
  --display: 'Space Grotesk', sans-serif;
  --body: 'Inter', sans-serif;
  /* spacing system: consistent, responsive, clamp-driven */
  --section-space-lg: clamp(48px, 8vw, 88px);
  --section-space-md: clamp(36px, 6vw, 64px);
  --section-space-sm: clamp(28px, 4.5vw, 48px);
  --content-gap-lg: clamp(24px, 4vw, 40px);
  --content-gap-md: clamp(16px, 2.6vw, 26px);
  --content-gap-sm: clamp(10px, 1.8vw, 16px);
  /* section tone palette (logo-derived, restrained) */
  --gold-bright: #E9C98F;   /* sampled from the wordmark asset */
  --cream: #EEE7D8;
  --nav-h: 74px;
  --tone-black: #111318;
  --tone-graphite: #14171B;
  --tone-warm: #171A1E;
  --tone-khaki: #1C1D15;
  --tone-lift: #1D2128;
  --tone-deep: #0C0E11;
  --tone-gold: #1A1611;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--ink);
  color: var(--text);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }


/* ── NAV ── */
.fob-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: rgba(17,19,24,0.86);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(211,190,152,0.14);
}
.fob-nav-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; gap: clamp(14px, 2.4vw, 28px);
  padding: 0 24px; height: var(--nav-h);
}
.fob-brand {
  font-family: var(--display); font-weight: 500;
  letter-spacing: 0.34em; font-size: 14px; color: var(--gold);
  display: flex; align-items: center; gap: 12px;
}
/* logo + classification lockup in the nav */
.fob-brand-lockup { gap: 14px; }
.fob-brand-lockup img { flex: none; }
.fob-brand-class {
  font-family: var(--display); font-weight: 500;
  font-size: 9.5px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold-dim); line-height: 1.5;
  padding-left: 14px; border-left: 1px solid var(--gold-line);
  max-width: 210px;
}
@media (max-width: 900px) { .fob-brand-class { display: none; } }
.fob-brand img { height: 36px; width: auto; }
@media (max-width: 600px) { .fob-brand img { height: 32px; } }
.fob-nav-links { display: flex; gap: 34px; align-items: center; }
.fob-nav-links a {
  font-family: var(--display); font-size: 12px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--muted);
  position: relative; padding: 4px 0;
  transition: color 0.25s;
}
.fob-nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  width: 0; height: 1px; background: var(--gold);
  transition: width 0.3s cubic-bezier(0.6,0,0.2,1);
}
.fob-nav-links a:hover { color: var(--text); }
.fob-nav-links a:hover::after { width: 100%; }
.fob-nav-links a.fob-nav-cta {
  color: var(--ink); background: var(--gold);
  padding: 10px 22px; letter-spacing: 0.18em; font-weight: 600;
}
.fob-nav-links a.fob-nav-cta::after { display: none; }
.fob-nav-links a.fob-nav-cta:hover { background: var(--text); color: var(--ink); }
.fob-menu-btn {
  display: none; flex-direction: column; gap: 5px;
  background: rgba(211,190,152,0.06); border: 1px solid rgba(211,190,152,0.22);
  border-radius: 10px; padding: 12px 12px; cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.fob-menu-btn:hover { border-color: rgba(211,190,152,0.5); }
.fob-menu-btn:active { background: rgba(211,190,152,0.12); }
.fob-menu-btn:focus-visible { outline: 2px solid var(--gold-bright); outline-offset: 2px; }
.fob-menu-btn span { display: block; width: 24px; height: 1.5px; background: var(--gold); margin: 6px 0; transition: 0.3s; }
@media (max-width: 860px) {
  .fob-nav-links {
    display: none; position: absolute; top: 64px; left: 0; right: 0;
    background: var(--ink); flex-direction: column; gap: 0;
    border-bottom: 1px solid var(--gold-line);
    padding: 10px 0 20px;
  }
  .fob-nav-links.open { display: flex; }
  .fob-nav-links a { padding: 14px 24px; width: 100%; text-align: left; border-bottom: 1px solid var(--gold-line-soft); }
  .fob-nav-links a.fob-nav-cta { margin: 14px 24px 0; width: calc(100% - 48px); text-align: center; }
  .fob-menu-btn { display: block; }
}

/* ── STRUCTURE ── */
.fob-section { padding: var(--section-space-lg) 24px; }
.fob-section.tight { padding: var(--section-space-md) 24px; }
.fob-wrap { max-width: 1080px; margin: 0 auto; }
.fob-wrap-narrow { max-width: 760px; margin: 0 auto; }

/* Eyebrow-on-rule: the line language signature */
.fob-rulehead {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: var(--content-gap-lg);
}
.fob-rulehead::before {
  content: ''; height: 1px; width: 30px; background: var(--gold); flex: none;
}
.fob-rulehead::after { content: none; }
.fob-rulehead span {
  font-family: var(--display); font-size: 12px; font-weight: 500;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); white-space: nowrap;
}
.fob-rulehead.left::before { flex: 0 0 32px; }

.fob-h1 {
  font-family: var(--display); font-weight: 500;
  font-size: clamp(38px, 7vw, 68px); line-height: 1.06;
  letter-spacing: -0.015em; color: var(--text);
}
.fob-h2 {
  font-family: var(--display); font-weight: 500;
  font-size: clamp(30px, 5vw, 48px); line-height: 1.1;
  letter-spacing: -0.01em; color: var(--text);
  margin-bottom: 20px;
}
.fob-h3 {
  font-family: var(--display); font-weight: 500;
  font-size: clamp(19px, 2.6vw, 24px); color: var(--gold);
  margin-bottom: 10px;
}
.fob-lede {
  font-size: clamp(16px, 1.9vw, 19px); line-height: 1.62;
  color: #C4C8CD; max-width: 46ch; margin: 0 auto 6px;
}
.fob-body-txt { font-size: 16px; color: var(--muted); line-height: 1.8; }
.fob-body-txt strong { color: var(--text); font-weight: 600; }

/* ── BUTTONS: line-growth, crisp corners ── */
.fob-btn {
  display: inline-block; position: relative;
  font-family: var(--display); font-size: 13px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: 16px 34px; min-height: 50px; cursor: pointer;
  border-radius: 14px; border: 1px solid transparent;
  transition: color 0.25s, background 0.25s, border-color 0.25s,
              transform 0.18s ease, box-shadow 0.25s;
}
.fob-btn:focus-visible { outline: 2px solid var(--gold-bright); outline-offset: 3px; }
.fob-btn:active { transform: translateY(1px); }

/* primary: warm aged-gold fill, graphite text, restrained glow on hover */
.fob-btn-solid {
  background: linear-gradient(180deg, var(--gold-bright), var(--gold));
  color: #15130D;
  box-shadow: 0 6px 22px rgba(0,0,0,0.35);
}
.fob-btn-solid:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(211,190,152,0.28);
  background: linear-gradient(180deg, #F2D8A4, var(--gold-bright));
}

/* secondary: translucent warm graphite surface, thin gold border */
.fob-btn-ghost {
  color: var(--cream);
  background: linear-gradient(180deg, rgba(211,190,152,0.10), rgba(23,26,30,0.55));
  border-color: rgba(211,190,152,0.42);
  backdrop-filter: blur(4px);
}
.fob-btn-ghost:hover {
  transform: translateY(-2px);
  color: var(--gold-bright);
  border-color: var(--gold-bright);
  background: linear-gradient(180deg, rgba(211,190,152,0.16), rgba(23,26,30,0.65));
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}
.fob-btn-ghost:hover::after { width: 100%; }
.fob-btn-row { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 30px; }

/* ── HERO ── */
.fob-hero {
  min-height: 92svh;
  display: flex; align-items: flex-start; justify-content: center;
  position: relative;
  padding: calc(76px + var(--section-space-sm)) 24px var(--section-space-sm);
  overflow: hidden;
  background-size: cover; background-position: center 30%;
}
.fob-hero-art {
  position: absolute; top: 0; right: 0; bottom: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 24%;
  opacity: 0.35;
  z-index: 0;
}
/* portrait illustration: on wide screens it holds its true shape at full
   hero height on the right, headline to the left, no squeeze */
@media (min-width: 900px) {
  .fob-hero-art {
    left: auto; width: 46%;
    object-fit: contain; object-position: bottom right;
  }
}
.fob-hero::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  /* text sits top-center now: dark band up top, open middle for the
     athlete, soft fade into the next section at the bottom */
  background:
    linear-gradient(180deg, rgba(17,19,24,0.88) 0%, rgba(17,19,24,0.5) 26%, rgba(20,23,27,0.08) 48%, rgba(20,23,27,0.12) 74%, var(--ink) 100%);
}
@media (max-width: 760px) {
  .fob-hero::before {
    background:
      linear-gradient(180deg, rgba(17,19,24,0.92) 0%, rgba(17,19,24,0.6) 30%, rgba(20,23,27,0.16) 52%, rgba(17,19,24,0.6) 82%, var(--ink) 100%);
  }
}
.fob-hero-inner {
  position: relative; z-index: 2;
  width: 100%; max-width: 1080px;
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
}
.fob-hero .fob-lede { margin-top: 24px; }

/* ── PILLARS ── */
.fob-pillars { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--gold-line-soft); border: 1px solid var(--gold-line-soft); }
.fob-pillar { background: var(--ink-warm); padding: 34px 26px; }
.fob-pillar-num {
  font-family: var(--display); font-size: 11px; letter-spacing: 0.3em;
  color: var(--gold-dim); display: block; margin-bottom: 16px;
}
.fob-pillar h3 { font-family: var(--display); font-size: 18px; font-weight: 500; color: var(--gold); margin-bottom: 10px; }
.fob-pillar p { font-size: 14px; color: var(--muted); line-height: 1.7; }
@media (max-width: 900px) { .fob-pillars { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .fob-pillars { grid-template-columns: 1fr; } }

/* ── FORMAT CARDS ── */
.fob-formats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.fob-format {
  background: var(--panel); border: 1px solid var(--gold-line-soft);
  padding: 36px 30px; display: flex; flex-direction: column;
  transition: border-color 0.3s, transform 0.3s;
  position: relative;
}
.fob-format::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 0; height: 1px; background: var(--gold);
  transition: width 0.4s cubic-bezier(0.6,0,0.2,1);
}
.fob-format:hover { border-color: var(--gold-line); }
.fob-format:hover::before { width: 100%; }
.fob-format-tag {
  font-family: var(--display); font-size: 10px; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--gold-dim); margin-bottom: 16px;
}
.fob-format p { font-size: 14.5px; color: var(--muted); line-height: 1.75; flex: 1; }
.fob-format-link {
  margin-top: 26px; font-family: var(--display); font-size: 12px;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold);
  display: inline-flex; align-items: center; gap: 10px;
}
.fob-format-link::after { content: '→'; transition: transform 0.25s; }
.fob-format:hover .fob-format-link::after { transform: translateX(5px); }
@media (max-width: 860px) { .fob-formats { grid-template-columns: 1fr; } }

/* ── ECOSYSTEM ── */
.fob-eco { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--gold-line-soft); border: 1px solid var(--gold-line-soft); }
.fob-eco-item { background: var(--ink-warm); padding: 44px 36px; position: relative; }
.fob-eco-item.full { grid-column: 1 / -1; background: var(--panel); }
.fob-eco-name {
  font-family: var(--display); font-size: clamp(22px, 3.4vw, 30px);
  font-weight: 500; color: var(--gold); letter-spacing: 0.04em;
  margin-bottom: 6px;
}
.fob-eco-role {
  font-family: var(--display); font-size: 11px; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 18px;
}
.fob-eco-item p { font-size: 15px; color: var(--muted); line-height: 1.75; max-width: 560px; }
@media (max-width: 720px) { .fob-eco { grid-template-columns: 1fr; } }

/* ── SPLIT (photo + text) ── */
.fob-split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.fob-split-img { position: relative; border: 1px solid var(--gold-line-soft); }
.fob-split-img img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.85) contrast(1.04); }
.fob-split-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(20,23,27,0.55));
}
@media (max-width: 820px) { .fob-split { grid-template-columns: 1fr; gap: 36px; } }

/* ── AUDIENCE ROWS ── */
.fob-paths { border-top: 1px solid var(--gold-line-soft); }
.fob-path {
  display: grid; grid-template-columns: 200px 1fr auto;
  gap: 24px; align-items: center;
  padding: 30px 0; border-bottom: 1px solid var(--gold-line-soft);
  transition: padding-left 0.3s;
}
.fob-path:hover { padding-left: 10px; }
.fob-path-who { font-family: var(--display); font-size: 16px; font-weight: 500; color: var(--gold); }
.fob-path p { font-size: 14.5px; color: var(--muted); }
@media (max-width: 720px) {
  .fob-path { grid-template-columns: 1fr; gap: 8px; }
}

/* ── FOOTER ── */
.fob-footer { border-top: 1px solid var(--gold-line-soft); padding: 56px 24px 40px; }
.fob-footer-inner { max-width: 1080px; margin: 0 auto; }
.fob-footer-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 30px; flex-wrap: wrap; margin-bottom: 40px; }
.fob-footer-links { display: flex; gap: 28px; flex-wrap: wrap; }
.fob-footer-links a { font-family: var(--display); font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--muted); transition: color 0.25s; }
.fob-footer-links a:hover { color: var(--gold); }
.fob-footer-note { font-size: 12px; color: var(--muted); opacity: 0.7; }

/* ── SCROLL REVEAL ── */
.fob-reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s cubic-bezier(0.2,0,0.2,1), transform 0.7s cubic-bezier(0.2,0,0.2,1); }
.fob-reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .fob-reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ── FORM (Start page) ── */
.fob-field { margin-bottom: 26px; }
.fob-field label {
  display: block; font-family: var(--display); font-size: 11px;
  letter-spacing: 0.26em; text-transform: uppercase; color: var(--gold-dim);
  margin-bottom: 10px;
}
.fob-field input, .fob-field select, .fob-field textarea {
  width: 100%; background: var(--panel); border: 1px solid var(--gold-line-soft);
  color: var(--text); font-family: var(--body); font-size: 15px;
  padding: 14px 16px; outline: none; transition: border-color 0.25s;
  border-radius: 0; appearance: none; -webkit-appearance: none;
}
.fob-field select {
  background-image: linear-gradient(45deg, transparent 50%, var(--gold) 50%), linear-gradient(135deg, var(--gold) 50%, transparent 50%);
  background-position: calc(100% - 20px) 50%, calc(100% - 15px) 50%;
  background-size: 5px 5px; background-repeat: no-repeat;
}
.fob-field input:focus, .fob-field select:focus, .fob-field textarea:focus { border-color: var(--gold); }
.fob-field textarea { min-height: 120px; resize: vertical; }

/* ── UTILITY ── */
.fob-rule { height: 1px; background: var(--gold-line-soft); border: none; margin: 0; }
.fob-note-tag {
  display: inline-block; font-family: var(--display); font-size: 10px;
  letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--gold-dim); border: 1px solid var(--gold-line);
  padding: 5px 12px; margin-bottom: 18px;
}

/* ═══════════════════════════════════════════════
   FOBIBLE VISUAL LANGUAGE - recurring pencil-plate
   design system for interior pages and dividers.
   ═══════════════════════════════════════════════ */

/* Environmental illustration layer: a page from the FOBible,
   knocked back so text stays perfectly readable, gently
   breathing and shifting so the plate never feels static. */
.fob-plate {
  position: absolute; inset: 0; overflow: hidden;
  z-index: 0; pointer-events: none;
}
.fob-plate::before {
  content: ''; position: absolute; inset: -4%;
  background-image: var(--plate, url('images/sketch-plate-right.jpg'));
  background-size: cover;
  background-position: var(--plate-pos, center right);
  opacity: var(--plate-opacity, 0.16);
  filter: contrast(1.05);
  transform-origin: center;
  animation: plateBreathe 22s ease-in-out infinite;
}
/* animated graphite tooth: a second faint layer drifting on its
   own timing gives the "redraw / re-shading" hand-drawn shimmer. */
.fob-plate::after {
  content: ''; position: absolute; inset: -4%;
  background-image: var(--plate, url('images/sketch-plate-right.jpg'));
  background-size: cover;
  background-position: var(--plate-pos, center right);
  opacity: calc(var(--plate-opacity, 0.16) * 0.5);
  mix-blend-mode: screen;
  animation: plateRedraw 9s steps(1) infinite, plateDrift 30s ease-in-out infinite alternate;
}
@keyframes plateBreathe {
  0%,100% { transform: scale(1) translate(0,0); opacity: var(--plate-opacity, 0.16); }
  50%     { transform: scale(1.035) translate(-0.6%, 0.4%); opacity: calc(var(--plate-opacity, 0.16) * 1.25); }
}
@keyframes plateDrift {
  from { transform: translate(0,0) scale(1.01); }
  to   { transform: translate(1.2%, -0.8%) scale(1.04); }
}
/* discrete opacity ticks read like strokes being re-laid each beat */
@keyframes plateRedraw {
  0%   { opacity: calc(var(--plate-opacity, 0.16) * 0.35); }
  33%  { opacity: calc(var(--plate-opacity, 0.16) * 0.60); }
  66%  { opacity: calc(var(--plate-opacity, 0.16) * 0.45); }
  100% { opacity: calc(var(--plate-opacity, 0.16) * 0.55); }
}
/* top+bottom fade so the plate dissolves into the graphite page */
.fob-plate-fade::after,
.fob-plate-fade-el {
  content: ''; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(180deg, var(--ink) 0%, rgba(20,23,27,0) 22%, rgba(20,23,27,0) 70%, var(--ink) 100%);
}
.fob-plate-host { position: relative; }
.fob-plate-host > .fob-wrap,
.fob-plate-host > .fob-wrap-narrow,
.fob-plate-host > .fob-hero-inner { position: relative; z-index: 2; }

@media (prefers-reduced-motion: reduce) {
  .fob-plate::before, .fob-plate::after { animation: none !important; }
}

/* Pencil section divider: a thin champagne stroke that tapers at
   both ends like a drawn line, with a faint diamond node (logo motif). */
.fob-pencil-div {
  position: relative; height: 1px; margin: 0 auto; max-width: 1200px;
  background: linear-gradient(90deg, transparent, var(--gold-line) 12%, var(--gold-line) 88%, transparent);
}
.fob-pencil-div::after {
  content: ''; position: absolute; left: 50%; top: 50%;
  width: 7px; height: 7px; transform: translate(-50%,-50%) rotate(45deg);
  background: var(--gold-dim);
}

/* Eyebrow classification chip usable outside the hero */
.fob-classification {
  font-family: var(--display); font-size: 12px; font-weight: 500;
  letter-spacing: 0.42em; color: var(--gold);
  display: inline-flex; align-items: center; gap: 16px;
  text-transform: uppercase;
}
.fob-classification::before,
.fob-classification::after { content: ''; width: 34px; height: 1px; background: var(--gold-line); }

/* Journal category taxonomy grid */
.fob-cats {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 1px; background: var(--gold-line-soft);
  border: 1px solid var(--gold-line-soft); margin-top: 8px;
}
.fob-cat {
  background: var(--ink-warm); padding: 22px 20px;
  display: flex; flex-direction: column; gap: 8px;
  position: relative; transition: background 0.25s;
}
.fob-cat:hover { background: var(--panel); }
.fob-cat-name {
  font-family: var(--display); font-size: 14px; font-weight: 500;
  color: var(--gold); letter-spacing: 0.02em;
}
.fob-cat-count {
  font-family: var(--display); font-size: 10px; letter-spacing: 0.24em;
  color: var(--gold-dim); text-transform: uppercase;
}
.fob-cat p { font-size: 12.5px; color: var(--muted); line-height: 1.6; }
@media (max-width: 1000px){ .fob-cats { grid-template-columns: repeat(3,1fr); } }
@media (max-width: 640px){ .fob-cats { grid-template-columns: repeat(2,1fr); } }

/* Journal entry rows (knowledge-base list) */
.fob-entries { border-top: 1px solid var(--gold-line-soft); }
.fob-entry {
  display: grid; grid-template-columns: 160px 1fr auto; gap: 24px;
  align-items: baseline; padding: 26px 4px;
  border-bottom: 1px solid var(--gold-line-soft);
  transition: background 0.2s;
}
.fob-entry:hover { background: rgba(211,190,152,0.03); }
.fob-entry-cat {
  font-family: var(--display); font-size: 10px; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--gold-dim); padding-top: 3px;
}
.fob-entry-title { font-family: var(--display); font-size: 17px; color: var(--text); font-weight: 500; }
.fob-entry-title span { display:block; font-family: var(--body); font-size: 13.5px; color: var(--muted); font-weight: 400; margin-top: 6px; line-height: 1.6; }
.fob-entry-link { font-family: var(--display); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); white-space: nowrap; }
@media (max-width: 720px){
  .fob-entry { grid-template-columns: 1fr; gap: 8px; }
  .fob-entry-link { justify-self: start; }
}

/* ═══════════════════════════════════════════════
   THE FOBIBLE - free blueprint download block.
   Compact, classified-document feel. No lead-gen.
   ═══════════════════════════════════════════════ */
.fob-fobible {
  position: relative;
  padding: 74px 24px;
  border-top: 1px solid var(--gold-line-soft);
  border-bottom: 1px solid var(--gold-line-soft);
  background: var(--ink-warm);
}
.fob-fobible-grid {
  display: grid; grid-template-columns: 300px 1fr; gap: 54px;
  align-items: center; max-width: 1080px; margin: 0 auto;
}
.fob-fobible-cover {
  position: relative;
  border: 1px solid var(--gold-line);
  padding: 14px; background: var(--ink);
}
.fob-fobible-cover::before,
.fob-fobible-cover::after {
  content: ''; position: absolute; width: 12px; height: 12px;
  border: 1px solid var(--gold-dim);
}
.fob-fobible-cover::before { top: -1px; left: -1px; border-right: none; border-bottom: none; }
.fob-fobible-cover::after { bottom: -1px; right: -1px; border-left: none; border-top: none; }
.fob-fobible-cover img { width: 100%; display: block; filter: saturate(0.95); }

.fob-fobible-title {
  font-family: var(--display); font-weight: 600;
  font-size: clamp(30px, 4.6vw, 44px); line-height: 1.02;
  color: var(--text); letter-spacing: -0.01em; margin: 16px 0 14px;
}
.fob-fobible-sub {
  font-size: clamp(16px, 2vw, 19px); color: var(--gold);
  line-height: 1.55; margin-bottom: 22px; max-width: 60ch;
}
.fob-fobible-body {
  font-size: 15px; color: var(--muted); line-height: 1.75;
  margin-bottom: 30px; max-width: 64ch;
}
.fob-fobible-cta { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }
.fob-btn-lg { padding: 18px 40px; font-size: 13px; letter-spacing: 0.24em; }
.fob-fobible-note {
  font-size: 12px; color: var(--gold-dim); letter-spacing: 0.02em;
}
.fob-fobible-meta {
  list-style: none; display: flex; flex-wrap: wrap; gap: 0;
  margin: 30px 0 0; padding: 18px 0 0;
  border-top: 1px solid var(--gold-line-soft);
}
.fob-fobible-meta li {
  font-family: var(--display); font-size: 10.5px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold-dim);
  padding: 0 16px; position: relative; line-height: 1;
}
.fob-fobible-meta li:first-child { padding-left: 0; color: var(--gold); }
.fob-fobible-meta li + li::before {
  content: ''; position: absolute; left: 0; top: 50%;
  width: 1px; height: 11px; background: var(--gold-line);
  transform: translateY(-50%);
}
.fob-fobible-skip {
  display: inline-block; margin-top: 26px;
  font-family: var(--display); font-size: 12px; letter-spacing: 0.06em;
  color: var(--muted); border-bottom: 1px solid var(--gold-line-soft);
  padding-bottom: 3px; transition: color 0.25s, border-color 0.25s;
}
.fob-fobible-skip:hover { color: var(--gold); border-color: var(--gold); }

@media (max-width: 820px) {
  .fob-fobible { padding: 56px 22px; }
  .fob-fobible-grid { grid-template-columns: 1fr; gap: 34px; }
  .fob-fobible-cover { max-width: 240px; }
}


/* ── FOBIBLE MODAL ── */
.fob-modal {
  position: fixed; inset: 0; z-index: 300;
  display: none; align-items: center; justify-content: center;
  padding: 24px;
}
.fob-modal.open { display: flex; }
.fob-modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(8,10,12,0.82); backdrop-filter: blur(6px);
  animation: fobFadeIn 0.3s ease;
}
.fob-modal-panel {
  position: relative; z-index: 1;
  width: min(940px, 100%); max-height: 92svh; overflow-y: auto;
  background: var(--ink-warm);
  border: 1px solid var(--gold-line);
  padding: 48px 46px;
  box-shadow: 0 40px 120px rgba(0,0,0,0.6);
  animation: fobModalIn 0.4s cubic-bezier(0.2,0,0.2,1);
}
/* engineered corner brackets on the panel */
.fob-modal-panel::before,
.fob-modal-panel::after {
  content: ''; position: absolute; width: 18px; height: 18px;
  border: 1px solid var(--gold-dim); pointer-events: none;
}
.fob-modal-panel::before { top: 10px; left: 10px; border-right: none; border-bottom: none; }
.fob-modal-panel::after { bottom: 10px; right: 10px; border-left: none; border-top: none; }
.fob-modal-close {
  position: absolute; top: 16px; right: 20px; z-index: 2;
  background: none; border: none; cursor: pointer;
  color: var(--muted); font-size: 30px; line-height: 1;
  transition: color 0.2s;
}
.fob-modal-close:hover { color: var(--gold); }
@keyframes fobFadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes fobModalIn { from { opacity: 0; transform: translateY(16px) scale(0.98); } to { opacity: 1; transform: none; } }

/* modal reuses the fobible grid; tighten cover for the panel */
.fob-modal .fob-fobible-grid { grid-template-columns: 260px 1fr; gap: 44px; }
.fob-modal .fob-fobible-title { margin-top: 14px; }
@media (max-width: 760px) {
  .fob-modal-panel { padding: 40px 24px; }
  .fob-modal .fob-fobible-grid { grid-template-columns: 1fr; gap: 26px; }
  .fob-modal .fob-fobible-cover { max-width: 200px; margin: 0 auto; }
}
@media (prefers-reduced-motion: reduce) {
  .fob-modal-backdrop, .fob-modal-panel { animation: none; }
}
body.fob-modal-open { overflow: hidden; }

/* ── HERO TOP BAR (classification designation) ── */
.fob-hero-bar {
  position: absolute; top: 64px; left: 0; right: 0; z-index: 3;
  border-bottom: 1px solid var(--gold-line-soft);
  background: linear-gradient(180deg, rgba(20,23,27,0.55), rgba(20,23,27,0));
  pointer-events: none;
}
.fob-hero-bar-inner {
  max-width: 1200px; margin: 0 auto; padding: 15px 24px;
  font-family: var(--display); font-size: 12px; font-weight: 500;
  letter-spacing: 0.42em; text-transform: uppercase; color: var(--gold);
  display: flex; align-items: center; gap: 16px;
}
.fob-hero-bar-inner::before {
  content: ''; width: 34px; height: 1px; background: var(--gold); flex: none;
}
@media (max-width: 560px) {
  .fob-hero-bar { top: 56px; }
  .fob-hero-bar-inner { font-size: 10px; letter-spacing: 0.28em; padding: 12px 20px; gap: 12px; }
  .fob-hero-bar-inner::before { width: 20px; }
}

/* ═══════════════════════════════════════════════
   TRAIN WITH FOB - adaptive inquiry section.
   Sits directly beneath the hero; six flows, one form.
   ═══════════════════════════════════════════════ */
.fob-inquiry {
  position: relative; overflow: hidden;
  padding: var(--section-space-sm) 24px var(--section-space-md);
  border-bottom: 1px solid var(--gold-line-soft);
  background: var(--ink);
}
/* graphite illustration backdrop: landscape plate on desktop,
   dedicated 9:16 portrait asset on mobile. Gradients keep the
   form side readable while the athlete stays visible. */
.fob-inquiry-bg {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(180deg, var(--ink) 0%, rgba(20,23,27,0.35) 18%, rgba(20,23,27,0.35) 78%, var(--ink) 100%),
    linear-gradient(90deg, rgba(20,23,27,0.92) 0%, rgba(20,23,27,0.78) 46%, rgba(20,23,27,0.30) 100%),
    url('images/sketch-plate-wide.jpg');
  background-size: auto, auto, cover;
  background-position: center, center, center right;
  opacity: 1;
}
@media (max-width: 760px) {
  .fob-inquiry-bg {
    background-image:
      linear-gradient(180deg, var(--ink) 0%, rgba(20,23,27,0.55) 14%, rgba(20,23,27,0.72) 55%, var(--ink) 100%),
      url('images/hero-poster.jpg');
    background-size: auto, cover;
    background-position: center, center 30%;
  }
}
.fob-inquiry-wrap { position: relative; z-index: 1; }
.fob-iq-lead { font-size: 16px; color: var(--muted); margin: 14px 0 34px; }

/* type selector */
.fob-iq-typewrap { margin-bottom: 10px; }
.fob-iq-types { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 12px; }
.fob-iq-type {
  font-family: var(--display); font-size: 12px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: #C9CDD2;
  background: linear-gradient(180deg, rgba(211,190,152,0.05), rgba(0,0,0,0)) , #1C2026;
  border: 1px solid rgba(211,190,152,0.20);
  padding: 14px 22px; min-height: 44px; cursor: pointer;
  transition: color 0.2s, border-color 0.2s, background 0.2s, transform 0.15s;
}
.fob-iq-type:hover { color: var(--gold); border-color: rgba(211,190,152,0.45); transform: translateY(-1px); }
.fob-iq-type:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
.fob-iq-type.sel {
  color: var(--text); border-color: var(--gold);
  background: linear-gradient(180deg, rgba(211,190,152,0.16), rgba(211,190,152,0.06)), #1C2026;
  box-shadow: inset 0 1px 0 rgba(211,190,152,0.25);
}
.fob-iq-type.sel::before { content: '\25C6'; font-size: 8px; margin-right: 8px; vertical-align: 2px; }
@media (max-width: 640px) { .fob-iq-types { display: grid; grid-template-columns: 1fr 1fr; } .fob-iq-type { padding: 14px 10px; } }

/* form container + reveal */
.fob-iq-root { margin-top: 22px; max-width: 640px; opacity: 0; transform: translateY(10px); transition: opacity 0.3s ease, transform 0.3s ease; }
.fob-iq-root.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .fob-iq-root { transition: none; transform: none; } }

.fob-iq-form { display: flex; flex-direction: column; gap: 26px; }
.fob-iq-intro { font-size: 15px; color: var(--muted); line-height: 1.7; }
.fob-iq-excerpt {
  font-size: 15px; color: var(--text); line-height: 1.75; margin: 0;
  border-left: 2px solid var(--gold); padding: 4px 0 4px 18px;
}
.fob-iq-field { display: flex; flex-direction: column; gap: 8px; }
.fob-iq-label {
  font-family: var(--display); font-size: 11px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold);
}
.fob-iq-opt { color: var(--gold-dim); letter-spacing: 0.1em; font-size: 10px; text-transform: none; }
.fob-iq-hint { font-size: 12.5px; color: var(--muted); line-height: 1.6; }
.fob-iq-error { font-size: 12.5px; color: #d99a8a; min-height: 0; }
.fob-iq-field.err .fob-iq-input, .fob-iq-field.err .fob-iq-select { border-color: #b5766a; }

.fob-iq-input, .fob-iq-select {
  background: rgba(23,26,30,0.82); color: var(--text);
  border: 1px solid var(--gold-line-soft);
  font-family: var(--body); font-size: 15px;
  padding: 13px 14px; min-height: 44px; width: 100%;
  transition: border-color 0.2s;
  border-radius: 0; appearance: none; -webkit-appearance: none;
}
.fob-iq-select {
  background-image: linear-gradient(45deg, transparent 50%, var(--gold-dim) 50%), linear-gradient(135deg, var(--gold-dim) 50%, transparent 50%);
  background-position: calc(100% - 18px) 50%, calc(100% - 13px) 50%;
  background-size: 5px 5px; background-repeat: no-repeat;
  padding-right: 38px;
}
.fob-iq-input:hover, .fob-iq-select:hover { border-color: var(--gold-line); }
.fob-iq-input:focus-visible, .fob-iq-select:focus-visible { outline: none; border-color: var(--gold); }
.fob-iq-textarea { min-height: 84px; resize: vertical; }

/* radio cards */
.fob-iq-cards { border: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.fob-iq-cards legend { margin-bottom: 10px; }
.fob-iq-cardgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
@media (max-width: 520px) { .fob-iq-cardgrid { grid-template-columns: 1fr; } }
.fob-iq-card {
  display: flex; flex-direction: column; gap: 4px; cursor: pointer;
  background: linear-gradient(180deg, rgba(211,190,152,0.04), rgba(0,0,0,0)), #1B1F25;
  border: 1px solid rgba(211,190,152,0.18);
  padding: 14px 16px; min-height: 44px; position: relative;
  transition: border-color 0.2s, background 0.2s;
}
.fob-iq-card:hover { border-color: rgba(211,190,152,0.45); }
.fob-iq-card input { position: absolute; opacity: 0; pointer-events: none; }
.fob-iq-card-txt { font-size: 14px; color: var(--text); }
.fob-iq-card-note { font-size: 11.5px; color: var(--muted); line-height: 1.5; }
.fob-iq-card:has(input:checked) {
  border-color: var(--gold);
  background: linear-gradient(180deg, rgba(211,190,152,0.15), rgba(211,190,152,0.05)), #1B1F25;
  box-shadow: inset 0 1px 0 rgba(211,190,152,0.22);
}
.fob-iq-card:has(input:checked) .fob-iq-card-txt { color: var(--text); }
.fob-iq-card:has(input:checked) .fob-iq-card-txt::before { content: '\25C6'; color: var(--gold); font-size: 8px; margin-right: 8px; vertical-align: 2px; }
.fob-iq-card:has(input:focus-visible) { outline: 2px solid var(--gold); outline-offset: 2px; }
.fob-iq-cards.err .fob-iq-card { border-color: #b5766a; }

/* competitive scale */
.fob-iq-scale { display: flex; align-items: center; gap: 18px; }
.fob-iq-scale input[type=range] {
  flex: 1; height: 44px; background: transparent; appearance: none; -webkit-appearance: none; cursor: pointer;
}
.fob-iq-scale input[type=range]::-webkit-slider-runnable-track { height: 2px; background: var(--gold-line); }
.fob-iq-scale input[type=range]::-moz-range-track { height: 2px; background: var(--gold-line); }
.fob-iq-scale input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none; width: 18px; height: 18px; margin-top: -8px;
  background: var(--gold); transform: rotate(45deg); border: none;
}
.fob-iq-scale input[type=range]::-moz-range-thumb {
  width: 18px; height: 18px; background: var(--gold); transform: rotate(45deg); border: none; border-radius: 0;
}
.fob-iq-scale input[type=range]:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; }
.fob-iq-scale-num {
  font-family: var(--display); font-size: 22px; font-weight: 600; color: var(--gold);
  min-width: 40px; text-align: center; border: 1px solid var(--gold-line-soft); padding: 6px 0;
}

/* checkboxes */
.fob-iq-check { display: flex; align-items: flex-start; gap: 12px; cursor: pointer; font-size: 14px; color: var(--text); line-height: 1.6; }
.fob-iq-check input { width: 18px; height: 18px; margin-top: 2px; accent-color: #D3BE98; flex: none; }
.fob-iq-consent { border-top: 1px solid var(--gold-line-soft); padding-top: 22px; }

/* two-column day/time */
.fob-iq-twocol { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; transition: opacity 0.25s; }
@media (max-width: 520px) { .fob-iq-twocol { grid-template-columns: 1fr; } }
.fob-iq-twocol.fob-iq-dim { opacity: 0.45; }
.fob-iq-twocol .fob-iq-field { margin: 0; }

/* progressive reveal */
.fob-iq-reveal { animation: iqReveal 0.28s ease; }
@keyframes iqReveal { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .fob-iq-reveal { animation: none; } }

/* actions + status + success */
.fob-iq-actions { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.fob-iq-submit { min-height: 48px; }
.fob-iq-submit.busy { opacity: 0.6; cursor: default; }
.fob-iq-status { font-size: 13px; color: var(--muted); }
.fob-iq-success { padding: 34px 0 10px; }
.fob-iq-success-h {
  font-family: var(--display); font-size: clamp(24px, 4vw, 34px);
  font-weight: 500; color: var(--text); margin: 14px 0 12px;
}

/* ═══════════════════════════════════════════════
   SECTION HEADING SYSTEM - eyebrow / major title /
   support / short gold rule. Reusable site-wide.
   ═══════════════════════════════════════════════ */
.fob-sec-head { margin-bottom: var(--content-gap-lg); }
.fob-sec-eyebrow {
  font-family: var(--display); font-size: 12px; font-weight: 500;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); display: flex; align-items: center; gap: 14px;
  margin-bottom: 14px;
}
.fob-sec-eyebrow::before { content: ''; width: 30px; height: 1px; background: var(--gold); flex: none; }
.fob-sec-title {
  font-family: var(--display); font-weight: 600;
  font-size: clamp(34px, 6vw, 54px); line-height: 1.04;
  letter-spacing: 0.01em; color: var(--text);
  text-transform: uppercase;
}
.fob-sec-rule { width: 64px; height: 2px; background: var(--gold); margin: 18px 0 0; }
.fob-sec-title--xl {
  font-size: clamp(38px, 7.2vw, 64px);
  color: var(--cream);
  text-shadow: 0 0 26px rgba(233,201,143,0.18);
}
.fob-sec-support {
  font-size: clamp(16px, 2vw, 18px); color: var(--muted);
  line-height: 1.65; margin-top: 16px; max-width: 56ch;
}

/* section tone utilities (subtle scroll variation) */
.tone-black { background: var(--tone-black); }
.tone-graphite { background: var(--tone-graphite); }
.tone-warm { background: var(--tone-warm); }
.tone-khaki { background: var(--tone-khaki); }
.tone-lift { background: linear-gradient(180deg, rgba(211,190,152,0.03), rgba(0,0,0,0)), var(--tone-lift); }
.tone-deep { background: var(--tone-deep); }
.tone-gold {
  position: relative;
  background:
    linear-gradient(180deg, rgba(233,201,143,0.14), rgba(233,201,143,0.06) 48%, rgba(233,201,143,0.02) 100%),
    radial-gradient(ellipse 85% 65% at 50% 0%, rgba(211,190,152,0.10), transparent 72%),
    var(--tone-gold);
  border-top: 1px solid rgba(211,190,152,0.24);
  border-bottom: 1px solid rgba(211,190,152,0.24);
}
.tone-glow { background: radial-gradient(ellipse 90% 70% at 50% 0%, rgba(211,190,152,0.05), transparent 60%), var(--tone-graphite); }


/* ── HERO IDENTITY CUE ── */
.fob-hero-cue {
  margin-top: 22px; font-size: 13px; letter-spacing: 0.04em; color: var(--muted);
}
.fob-hero-cue a { color: var(--gold-dim); border-bottom: 1px solid rgba(211,190,152,0.3); padding-bottom: 1px; transition: color 0.2s, border-color 0.2s; }
.fob-hero-cue a:hover { color: var(--gold-bright); border-color: var(--gold-bright); }

/* ═══════════════════════════════════════════════
   PANEL LANGUAGE - reusable layered surfaces
   ═══════════════════════════════════════════════ */
.fob-panel {
  background: linear-gradient(145deg, rgba(218,185,130,0.07), rgba(18,22,26,0.9));
  border: 1px solid rgba(218,185,130,0.2);
  border-radius: 16px;
  padding: clamp(20px, 3.5vw, 34px);
}
.fob-panel--elevated { box-shadow: 0 18px 50px rgba(0,0,0,0.28); }
.fob-panel--interactive { transition: border-color 0.25s, transform 0.2s, box-shadow 0.25s; }
.fob-panel--interactive:hover { border-color: rgba(218,185,130,0.42); transform: translateY(-2px); }
.fob-panel--selected {
  border-color: var(--gold);
  background: linear-gradient(145deg, rgba(218,185,130,0.15), rgba(18,22,26,0.92));
  box-shadow: inset 0 1px 0 rgba(218,185,130,0.25), 0 14px 40px rgba(0,0,0,0.3);
}

/* inquiry interactive shell */
.fob-iq-shell {
  background: linear-gradient(150deg, rgba(218,185,130,0.06), rgba(16,19,23,0.82));
  border: 1px solid rgba(218,185,130,0.18);
  border-radius: 18px;
  box-shadow: 0 18px 50px rgba(0,0,0,0.26);
  padding: clamp(18px, 3.5vw, 34px);
  max-width: 720px;
}

/* ═══════════════════════════════════════════════
   FOUNDER SECTION + CREDENTIAL RAIL
   ═══════════════════════════════════════════════ */

.fob-cred-rail {
  position: relative; margin-top: var(--content-gap-md);
  width: 100%; max-width: 100%; min-width: 0;
  background: linear-gradient(150deg, rgba(218,185,130,0.06), rgba(14,16,20,0.9));
  border: 1px solid rgba(218,185,130,0.24);
  border-radius: 10px;
  overflow: hidden;
}
/* edge fade: affordance that the rail scrolls */
.fob-cred-rail::after {
  content: ''; position: absolute; top: 0; right: 0; bottom: 0; width: 44px;
  background: linear-gradient(90deg, rgba(16,18,22,0), rgba(16,18,22,0.85));
  pointer-events: none;
}
.fob-cred-scroll {
  display: flex; flex-wrap: nowrap; overflow-x: auto;
  width: 100%; max-width: 100%;
  -webkit-overflow-scrolling: touch; scrollbar-width: none;
  scroll-snap-type: x proximity;
  padding: 16px 12px;
}
.fob-cred-scroll::-webkit-scrollbar { display: none; }
.fob-cred-scroll:focus-visible { outline: 2px solid var(--gold-bright); outline-offset: -2px; }
.fob-cred {
  display: flex; flex-direction: column; align-items: center; gap: 7px;
  flex: none; width: clamp(104px, 12vw, 132px);
  padding: 4px 12px; scroll-snap-align: start;
  border-right: 1px solid rgba(218,185,130,0.16);
  text-align: center;
}
.fob-cred:last-child { border-right: none; }
.fob-cred img { width: 42px; height: 42px; object-fit: contain; }
.fob-cred-title {
  font-family: var(--display); font-size: 12px; font-weight: 600;
  letter-spacing: 0.06em; color: var(--cream); line-height: 1.25;
}
.fob-cred-sub {
  font-size: 10.5px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--gold-dim); line-height: 1.3;
}



/* ═══════════════════════════════════════════════
   SCROLL DIVIDERS - small animated waypoints
   between sections; draw in as you reach them.
   ═══════════════════════════════════════════════ */
.fob-scroll-div {
  position: relative; height: 1px;
  max-width: min(520px, 72vw);
  margin: 0 auto;
  background: var(--gold-line);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.fob-scroll-div.in { transform: scaleX(1); }
.fob-scroll-div-node {
  position: absolute; left: 50%; top: 50%;
  width: 7px; height: 7px;
  transform: translate(-50%, -50%) rotate(45deg) scale(0);
  background: var(--gold);
  transition: transform 0.5s 0.55s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.fob-scroll-div.in .fob-scroll-div-node {
  transform: translate(-50%, -50%) rotate(45deg) scale(1);
}
@media (prefers-reduced-motion: reduce) {
  .fob-scroll-div { transform: none; transition: none; }
  .fob-scroll-div-node { transform: translate(-50%, -50%) rotate(45deg) scale(1); transition: none; }
}


/* headline artwork: the supplied brand-font wordmark, centered at the top.
   Constant slight gold glow; slow, barely-there scale breathe. */
.fob-h1-art { margin: 0 0 clamp(9px, 1.5vw, 14px); }
.fob-h1-art img {
  width: min(92vw, 960px); height: auto; display: block;
  filter: drop-shadow(0 6px 24px rgba(0,0,0,0.55))
          drop-shadow(0 0 1px rgba(233,201,143,0.4))
          drop-shadow(0 6px 3px rgba(233,201,143,0.26))
          drop-shadow(0 12px 9px rgba(233,201,143,0.1));
  animation: fobHeadlineBreathe 4.2s ease-in-out infinite;
  transform-origin: center;
  will-change: transform;
}
@keyframes fobHeadlineBreathe {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.035); }
}
@media (prefers-reduced-motion: reduce) {
  .fob-h1-art img { animation: none; }
}


/* ═══════════════════════════════════════════════
   CENTERED TEXT SYSTEM - headings, eyebrows, and
   copy align to the page centerline site-wide.
   Interactive form internals stay left for usability.
   ═══════════════════════════════════════════════ */
.fob-rulehead { justify-content: center; }
.fob-rulehead::after { content: ''; height: 1px; width: 30px; background: var(--gold); flex: none; }
.fob-sec-head { text-align: center; }
.fob-sec-eyebrow { justify-content: center; }
.fob-sec-eyebrow::after { content: ''; width: 30px; height: 1px; background: var(--gold); flex: none; }
.fob-sec-rule { margin-left: auto; margin-right: auto; }
.fob-sec-support { margin-left: auto; margin-right: auto; }
.fob-section .fob-h2,
.fob-section .fob-lede,
.fob-section .fob-body-txt,
.fob-section .fob-classification { text-align: center; }
.fob-section .fob-lede,
.fob-section .fob-body-txt { margin-left: auto; margin-right: auto; }
.fob-split { grid-template-columns: 1fr !important; text-align: center; gap: var(--content-gap-md); }
.fob-split > div { display: block !important; }
.fob-btn-row { justify-content: center; }
.fob-pillars { text-align: center; }
.fob-pillar h3, .fob-pillar p, .fob-pillar-num { text-align: center; }
.fob-iq-typewrap { text-align: center; }
.fob-iq-types { justify-content: center; }
.fob-iq-shell { margin-left: auto; margin-right: auto; }
/* form internals remain readable: left-aligned inside the shell */
.fob-iq-form, .fob-iq-form .fob-iq-label, .fob-iq-form legend { text-align: left; }
.fob-iq-root .fob-iq-success { text-align: center; }
.fob-hero-cue { text-align: center; }

/* ═══════════════════════════════════════════════
   CONVERSION LADDER COMPONENTS (v27)
   ═══════════════════════════════════════════════ */
/* cinematic 16:9 video slot: swaps for real film later */
.fob-video-slot {
  position: relative; aspect-ratio: 16 / 9;
  max-width: 880px; margin: 0 auto;
  border: 1px solid rgba(218,185,130,0.26); border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(17,19,24,0.55), rgba(17,19,24,0.85)),
    url('images/sketch-plate-wide.jpg') center/cover;
  box-shadow: 0 18px 50px rgba(0,0,0,0.32);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px;
  overflow: hidden;
}
.fob-video-play {
  width: 64px; height: 64px; border-radius: 50%;
  border: 1px solid var(--gold); position: relative;
  background: rgba(17,19,24,0.6); backdrop-filter: blur(3px);
  transition: transform 0.25s, box-shadow 0.25s;
}
.fob-video-play::after {
  content: ''; position: absolute; left: 50%; top: 50%;
  width: 14px; height: 14px; background: var(--gold);
  transform: translate(-42%, -50%) rotate(45deg);
}
.fob-video-slot:hover .fob-video-play { transform: scale(1.06); box-shadow: 0 0 24px rgba(233,201,143,0.25); }
.fob-video-note {
  font-family: var(--display); font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold-dim); text-align: center; padding: 0 20px;
}

/* three outcomes: the defining moment */
.fob-outcomes {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: var(--content-gap-md); margin-top: var(--content-gap-lg);
}
.fob-outcome { text-align: center; }
.fob-outcome-num {
  font-family: var(--display); font-size: 13px; font-weight: 600;
  letter-spacing: 0.3em; color: var(--gold);
  display: inline-block; margin-bottom: 12px;
}
.fob-outcome h3, .fob-step h3 {
  font-family: var(--display); font-weight: 600;
  font-size: clamp(18px, 2.2vw, 22px); text-transform: uppercase;
  letter-spacing: 0.05em; color: var(--cream); margin-bottom: 10px;
}
.fob-outcome p, .fob-step p { font-size: 14.5px; line-height: 1.65; color: var(--muted); }
@media (max-width: 820px) { .fob-outcomes { grid-template-columns: 1fr; } }

/* first-session steps */
.fob-steps {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: var(--content-gap-md); margin-top: var(--content-gap-lg);
  text-align: center;
}
@media (max-width: 820px) { .fob-steps { grid-template-columns: 1fr; gap: var(--content-gap-lg); } }

/* pull quote: the sentence people say */
.fob-pullquote {
  font-family: var(--display); font-weight: 600;
  font-size: clamp(22px, 3.6vw, 34px); line-height: 1.25;
  color: var(--gold-bright); text-align: center;
  margin: var(--content-gap-lg) auto var(--content-gap-md);
  max-width: 20ch;
}

/* gold text link (FOBible curiosity path) */
.fob-link-gold {
  background: none; border: none; cursor: pointer;
  font-family: var(--display); font-size: 13px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--gold);
  border-bottom: 1px solid rgba(211,190,152,0.4); padding-bottom: 3px;
  transition: color 0.2s, border-color 0.2s;
}
.fob-link-gold:hover { color: var(--gold-bright); border-color: var(--gold-bright); }

/* FAQ: native details, styled */
.fob-faq details {
  border: 1px solid rgba(218,185,130,0.2); border-radius: 12px;
  background: linear-gradient(150deg, rgba(218,185,130,0.05), rgba(16,19,23,0.8));
  margin-bottom: 12px; overflow: hidden;
}
.fob-faq summary {
  cursor: pointer; list-style: none;
  padding: 16px 20px; position: relative;
  font-family: var(--display); font-size: 14px; font-weight: 500;
  color: var(--cream); letter-spacing: 0.03em; text-align: left;
}
.fob-faq summary::-webkit-details-marker { display: none; }
.fob-faq summary::after {
  content: ''; position: absolute; right: 20px; top: 50%;
  width: 8px; height: 8px; border-right: 1px solid var(--gold); border-bottom: 1px solid var(--gold);
  transform: translateY(-70%) rotate(45deg); transition: transform 0.25s;
}
.fob-faq details[open] summary::after { transform: translateY(-30%) rotate(225deg); }
.fob-faq details p {
  padding: 0 20px 16px; font-size: 14.5px; line-height: 1.65;
  color: var(--muted); text-align: left;
}
.fob-faq summary:focus-visible { outline: 2px solid var(--gold-bright); outline-offset: -2px; }

/* ═══════════════════════════════════════════════
   V1 LAUNCH - announcement, hero, film, pricing
   ═══════════════════════════════════════════════ */

/* HERO */
.fob-hero-v2 {
  position: relative;
  padding: calc(var(--nav-h) + clamp(26px, 4vw, 44px)) 24px 0;
  background: var(--tone-graphite);
  text-align: center;
}
/* Subtle warm aura easing inward from the upper-left and upper-right,
   fading out around the headline. Bounded to the top so it never touches
   the nav or continues down the page. Not animated. */
.fob-hero-v2::before {
  content: ''; position: absolute; left: 0; right: 0;
  top: var(--nav-h); height: clamp(340px, 46vh, 520px);
  pointer-events: none; z-index: 0;
  background:
    radial-gradient(ellipse 44% 62% at 12% 6%, rgba(220,190,140,0.13), transparent 60%),
    radial-gradient(ellipse 44% 62% at 88% 6%, rgba(220,190,140,0.13), transparent 60%);
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 42%, transparent 100%);
          mask-image: linear-gradient(180deg, #000 0%, #000 42%, transparent 100%);
}
.fob-hero-v2 > * { position: relative; z-index: 1; }
@media (prefers-reduced-motion: no-preference) {}
.fob-hero-v2-inner {
  max-width: 720px; margin: 0 auto;
  display: flex; flex-direction: column; align-items: center;
}
.fob-emblem {
  width: clamp(122px, 17vw, 168px); height: auto; display: block;
  filter: drop-shadow(0 8px 30px rgba(0,0,0,0.6));
}
.fob-hero-utility {
  margin-top: 16px;
  font-family: var(--display); font-size: 11px; font-weight: 500;
  letter-spacing: 0.26em; text-transform: uppercase; color: var(--gold-dim);
}
.fob-hero-h1 {
  margin: clamp(20px, 3.4vw, 30px) 0 0;
  font-family: var(--display); font-weight: 600;
  font-size: clamp(34px, 6.4vw, 66px); line-height: 1.04;
  letter-spacing: -0.015em; color: var(--cream);
}
.fob-hero-sub {
  margin: clamp(14px, 2vw, 20px) auto 0;
  max-width: 46ch; font-size: clamp(15.5px, 1.8vw, 18px);
  line-height: 1.6; color: #C4C8CD;
}
.fob-hero-v2 .fob-btn-row { margin-top: clamp(18px, 2.4vw, 26px); }
.fob-hero-micro {
  margin-top: 12px; font-size: 12px; letter-spacing: 0.04em; color: var(--muted);
}

/* hero film */
.fob-hero-film {
  position: relative; margin: clamp(20px, 3vw, 34px) auto 0;
  max-width: 1180px; aspect-ratio: 16 / 9;
  border: 1px solid rgba(211,190,152,0.24); border-radius: 16px;
  overflow: hidden; background: #0b0d10;
  box-shadow: 0 26px 70px rgba(0,0,0,0.5);
}
.fob-hero-film-vid { width: 100%; height: 100%; object-fit: cover; display: block; }
.fob-hero-film-edge {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(12,14,17,0.28) 0%, rgba(12,14,17,0) 26%, rgba(12,14,17,0) 72%, rgba(12,14,17,0.55) 100%);
}
@media (max-width: 700px) { .fob-hero-film { border-radius: 12px; } }


/* outcome clip slots */
.fob-outcome-media {
  aspect-ratio: 16 / 9; margin-bottom: 16px; border-radius: 10px;
  background: linear-gradient(140deg, rgba(211,190,152,0.09), rgba(10,12,15,0.9));
  border: 1px solid rgba(211,190,152,0.16);
  display: flex; align-items: center; justify-content: center;
}
.fob-outcome-media span {
  font-family: var(--display); font-size: 10px; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--gold-dim);
}



/* full film frame */
.fob-filmframe {
  margin: 0 auto clamp(30px, 4vw, 44px); max-width: 980px;
  border: 1px solid rgba(211,190,152,0.24); border-radius: 14px;
  overflow: hidden; background: #0b0d10; box-shadow: 0 20px 60px rgba(0,0,0,0.45);
}
.fob-filmframe-vid { width: 100%; aspect-ratio: 16 / 9; display: block; background: #0b0d10; }
.fob-filmframe figcaption {
  padding: 12px 16px; font-family: var(--display); font-size: 10.5px;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-dim);
  border-top: 1px solid rgba(211,190,152,0.16); text-align: center;
}

/* pricing */
.fob-pricing {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 16px;
  margin: 0 auto clamp(24px, 3.4vw, 34px); max-width: 620px;
}
.fob-price-card {
  flex: 1 1 200px; padding: 22px 20px; border-radius: 14px;
  border: 1px solid rgba(211,190,152,0.18);
  background: linear-gradient(160deg, rgba(211,190,152,0.05), rgba(12,14,17,0.9));
}
.fob-price-card--hero {
  border-color: var(--gold);
  background: linear-gradient(160deg, rgba(211,190,152,0.16), rgba(12,14,17,0.92));
  box-shadow: inset 0 1px 0 rgba(211,190,152,0.25), 0 14px 40px rgba(0,0,0,0.35);
}
.fob-price-label {
  font-family: var(--display); font-size: 10.5px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold-dim); margin-bottom: 10px;
}
.fob-price-num {
  font-family: var(--display); font-weight: 600;
  font-size: clamp(30px, 4.6vw, 44px); line-height: 1; color: var(--cream);
}
.fob-price-num s { color: var(--muted); text-decoration-thickness: 2px; }
.fob-price-card--hero .fob-price-num { color: var(--gold-bright); }
.fob-price-note { margin-top: 10px; font-size: 12px; color: var(--muted); }

.fob-inquiry-alt { margin-top: 22px; text-align: center; font-size: 13.5px; color: var(--muted); }
.fob-inquiry-alt a { color: var(--gold); border-bottom: 1px solid rgba(211,190,152,0.35); }
.fob-inquiry-alt a:hover { color: var(--gold-bright); }


/* ═══════════════════════════════════════════════
   NAV RATE CARD - merged banner. Logo left, the
   founder's rate fills the bar to its right.
   ═══════════════════════════════════════════════ */
.fob-brand { flex: none; }
.fob-rate {
  flex: 1 1 auto; min-width: 0;
  display: flex; align-items: center; gap: clamp(10px, 1.6vw, 20px);
  padding: 9px clamp(14px, 2vw, 20px);
  border: 1px solid rgba(211,190,152,0.3);
  border-radius: 10px;
  background: linear-gradient(100deg, rgba(233,201,143,0.16), rgba(211,190,152,0.05) 55%, rgba(18,22,26,0.6));
  box-shadow: inset 0 1px 0 rgba(233,201,143,0.18);
  text-decoration: none; overflow: hidden;
  transition: border-color 0.25s, background 0.25s;
  animation: fobRateIn 0.85s 0.2s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.fob-rate:hover { border-color: var(--gold-bright); background: linear-gradient(100deg, rgba(233,201,143,0.24), rgba(211,190,152,0.08) 55%, rgba(18,22,26,0.6)); }
.fob-rate:focus-visible { outline: 2px solid var(--gold-bright); outline-offset: 2px; }
.fob-rate-tag {
  flex: none;
  font-family: var(--display); font-size: 10px; font-weight: 600;
  letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold-bright);
  padding-right: clamp(10px, 1.6vw, 20px);
  border-right: 1px solid rgba(211,190,152,0.28);
}
.fob-rate-main {
  font-family: var(--display); font-size: clamp(11px, 1.25vw, 13px); font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--cream);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.fob-rate-main b { color: var(--gold-bright); font-weight: 600; margin-left: 8px; }
.fob-rate-sub {
  flex: none; margin-left: auto;
  font-family: var(--display); font-size: 10px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold-dim); white-space: nowrap;
}
/* one-time reveal: the bar draws in from the left */
@keyframes fobRateIn {
  from { clip-path: inset(0 100% 0 0); opacity: 0; }
  to   { clip-path: inset(0 0 0 0); opacity: 1; }
}
@media (max-width: 900px) { .fob-rate-sub { display: none; } }
@media (max-width: 640px) {
  .fob-rate { padding: 8px 12px; gap: 10px; border-radius: 8px; }
  .fob-rate-tag { font-size: 8.5px; letter-spacing: 0.16em; padding-right: 10px; }
  .fob-rate-main { font-size: 10px; letter-spacing: 0.05em; }
  .fob-rate-main b { margin-left: 6px; }
}
@media (max-width: 380px) { .fob-rate-tag { display: none; } }
@media (prefers-reduced-motion: reduce) {
  .fob-rate { animation: none; clip-path: none; opacity: 1; }
}

/* film slot placeholder */
.fob-hero-film[data-film-slot] {
  display: flex; align-items: center; justify-content: center;
  background:
    repeating-linear-gradient(115deg, rgba(211,190,152,0.035) 0 2px, transparent 2px 9px),
    linear-gradient(150deg, rgba(211,190,152,0.07), rgba(10,12,15,0.94));
}
.fob-filmslot-inner { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.fob-filmslot-mark {
  width: 46px; height: 46px; transform: rotate(45deg);
  border: 1px solid rgba(211,190,152,0.5);
}
.fob-filmslot-label {
  font-family: var(--display); font-size: 11px; letter-spacing: 0.26em;
  text-transform: uppercase; color: var(--gold-dim); text-align: center;
}

/* secondary section head inside a merged section */
.fob-sec-head--sub { margin-top: clamp(36px, 6vw, 64px); }
.fob-sec-head--sub .fob-sec-title { font-size: clamp(28px, 4.4vw, 44px); }


/* hero close: film -> book -> price, kept tight */
.fob-hero-close {
  max-width: 720px; margin: 0 auto;
  padding-bottom: clamp(6px, 1.4vw, 14px);
  display: flex; flex-direction: column; align-items: center;
}
.fob-hero-close .fob-btn-row { margin-top: clamp(18px, 2.6vw, 28px); }

/* sound affordance on the launch film */
.fob-film-sound {
  position: absolute; right: 14px; top: 14px; z-index: 3;
  display: inline-flex; align-items: center; gap: 9px;
  padding: 9px 15px; cursor: pointer;
  border: 1px solid rgba(211,190,152,0.42); border-radius: 999px;
  background: rgba(12,14,17,0.72);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  font-family: var(--display); font-size: 10.5px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--cream);
  transition: border-color 0.2s, background 0.2s, opacity 0.3s;
}
.fob-film-sound:hover { border-color: var(--gold-bright); background: rgba(12,14,17,0.88); }
.fob-film-sound:focus-visible { outline: 2px solid var(--gold-bright); outline-offset: 2px; }
.fob-film-sound.is-hidden { opacity: 0; pointer-events: none; }
.fob-film-sound-ico {
  width: 9px; height: 9px; flex: none; transform: rotate(45deg);
  background: var(--gold-bright);
}
@media (max-width: 560px) {
  .fob-film-sound { right: 10px; top: 10px; padding: 8px 12px; font-size: 9px; letter-spacing: 0.14em; }
}


/* ═══════════════════════════════════════════════
   NAV LOGO - barely-there idle lift with a tight
   gold glow that brightens at the top of the rise.
   ═══════════════════════════════════════════════ */
.fob-brand img {
  animation: fobLogoIdle 6s ease-in-out infinite;
  will-change: transform, filter;
}
@keyframes fobLogoIdle {
  0%, 100% {
    transform: translateY(0);
    filter: drop-shadow(0 0 1px rgba(233,201,143,0.28));
  }
  50% {
    transform: translateY(-3px);
    filter: drop-shadow(0 0 1px rgba(233,201,143,0.6))
            drop-shadow(0 1px 4px rgba(233,201,143,0.3));
  }
}
@media (prefers-reduced-motion: reduce) {
  .fob-brand img {
    animation: none;
    transform: none;
    filter: drop-shadow(0 0 1px rgba(233,201,143,0.28));
  }
}

/* secondary brand statement under a section explanation */
.fob-sec-aside {
  margin: clamp(18px, 2.6vw, 26px) auto 0;
  max-width: 46ch; text-align: center;
  font-family: var(--display); font-size: clamp(12.5px, 1.5vw, 14px);
  font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold-dim); line-height: 1.6;
}

/* quiet private entry link at the very bottom of the footer */
.fob-footer-private { margin-top: 18px; text-align: center; }
.fob-footer-private a {
  font-family: var(--display); font-size: 10px; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(155,161,168,0.42); text-decoration: none;
  padding: 6px 10px; border-radius: 6px;
  transition: color 0.25s, background 0.25s;
}
.fob-footer-private a:hover { color: var(--gold-dim); background: rgba(211,190,152,0.06); }
.fob-footer-private a:focus-visible { outline: 2px solid var(--gold-bright); outline-offset: 2px; color: var(--gold); }

/* Enforce the hidden attribute. The Netlify Forms schema form sits between
   the FAQ and the footer; without this it can still occupy layout space
   and leave a large empty gap at the bottom of the page. */
[hidden] { display: none !important; }

/* optional expandable view (field test under the FOBible link) */
.fob-optional { margin-top: 22px; }
.fob-optional > summary {
  list-style: none; cursor: pointer; display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--display); font-size: 11.5px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-dim);
  padding: 9px 14px; border: 1px solid rgba(211,190,152,0.24); border-radius: 9px;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.fob-optional > summary::-webkit-details-marker { display: none; }
.fob-optional > summary::after {
  content: ''; width: 6px; height: 6px; flex: none;
  border-right: 1px solid currentColor; border-bottom: 1px solid currentColor;
  transform: rotate(45deg) translate(-1px, -1px); transition: transform 0.25s;
}
.fob-optional[open] > summary::after { transform: rotate(225deg) translate(-2px, -2px); }
.fob-optional > summary:hover { color: var(--gold-bright); border-color: rgba(211,190,152,0.5); background: rgba(211,190,152,0.05); }
.fob-optional > summary:focus-visible { outline: 2px solid var(--gold-bright); outline-offset: 2px; }
.fob-optional .fob-filmframe { margin-top: 18px; }

/* FOB Education: quiet secondary mark beside the hero emblem.
   Visible at every width, deliberately subordinate to the headline. */
.fob-hero-mark {
  position: relative; width: 100%;
  display: flex; align-items: center; justify-content: center;
}
.fob-edu {
  position: absolute;
  /* right edge lines up with the nav rate card: same 1200px container, same 24px gutter */
  right: max(24px, calc((100% - 1200px) / 2 + 24px));
  top: calc(var(--nav-h) + 16px);
  display: flex; flex-direction: column; gap: 3px;
  max-width: 38%;
  padding: 9px 13px; text-decoration: none; text-align: left;
  border: 1px solid rgba(211,190,152,0.2); border-radius: 10px;
  background: linear-gradient(180deg, rgba(211,190,152,0.06), rgba(18,22,26,0.55));
  transition: border-color 0.25s, background 0.25s, transform 0.2s;
  z-index: 3;
}
.fob-edu:hover {
  border-color: rgba(211,190,152,0.45);
  background: linear-gradient(180deg, rgba(211,190,152,0.12), rgba(18,22,26,0.65));
  transform: translateX(-2px);
}
.fob-edu:focus-visible { outline: 2px solid var(--gold-bright); outline-offset: 3px; }
.fob-edu-tag {
  font-family: var(--display); font-size: 8.5px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-dim);
  line-height: 1.2;
}
.fob-edu-main {
  font-family: var(--display); font-size: 11px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase; color: #C4C8CD;
  line-height: 1.2;
}
.fob-edu:hover .fob-edu-main { color: var(--cream); }
@media (max-width: 520px) {
  .fob-edu { padding: 7px 10px; border-radius: 8px; max-width: 42%; }
  .fob-edu-tag { font-size: 7.5px; letter-spacing: 0.16em; }
  .fob-edu-main { font-size: 9.5px; letter-spacing: 0.06em; }
}


/* FOB Education page mark */
.fob-edu-emoji {
  font-size: clamp(58px, 9vw, 82px); line-height: 1; display: block;
  filter: drop-shadow(0 6px 22px rgba(0,0,0,0.5))
          drop-shadow(0 0 14px rgba(233,201,143,0.22));
}


/* hero eyebrow above the headline */
.fob-hero-eyebrow {
  margin: 18px 0 0;
  font-family: var(--display); font-size: clamp(10px, 1.2vw, 11.5px); font-weight: 600;
  letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold);
}
.fob-hero-v2 .fob-hero-h1 { margin-top: clamp(12px, 1.8vw, 18px); }
.fob-hero-utility { margin-top: 16px; }

/* what a first session actually involves */
.fob-facts {
  list-style: none; margin: 0 auto clamp(24px, 3.4vw, 34px); padding: 0;
  max-width: 640px; display: grid; gap: 1px;
  border: 1px solid rgba(211,190,152,0.16); border-radius: 12px;
  background: rgba(211,190,152,0.16); overflow: hidden;
}
.fob-facts li {
  display: grid; grid-template-columns: 148px 1fr; gap: 16px; align-items: start;
  padding: 14px 18px; background: rgba(16,19,23,0.92);
  font-size: 14.5px; line-height: 1.6; color: #C4C8CD; text-align: left;
}
.fob-facts li span {
  font-family: var(--display); font-size: 10px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-dim);
  padding-top: 3px;
}
@media (max-width: 560px) {
  .fob-facts li { grid-template-columns: 1fr; gap: 5px; padding: 13px 15px; font-size: 14px; }
}

/* stable scroll target that clears the fixed nav (works on refresh + reduced-motion) */
.fob-anchor {
  display: block; position: relative;
  top: calc(-1 * (var(--nav-h) + 18px)); visibility: hidden;
}
#first-session-form { scroll-margin-top: calc(var(--nav-h) + 18px); }
