/* ===================================================
   AllRise — Shared Stylesheet
   =================================================== */

* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --navy: #0F1C2E;
  --navy-deep: #080e18;
  --navy-soft: #1a2b44;
  --gold: #C9A84C;
  --gold-deep: #a88b36;
  --gold-light: #d4b968;
  --gold-dim: rgba(201,168,76,0.15);
  --gold-border: rgba(201,168,76,0.3);
  --steel: #7BA7CC;
  --crimson: #C8102E;
  --cream: #EDE5D2;
  --cream-deep: #E4DAC2;
  --cream-paper: #F2EADA;
  --text-dark: #1a1508;
  --text-mid: #4a4030;
  --text-light: #8a7a60;
  --font-serif: 'EB Garamond', Georgia, serif;
  --font-sans: 'DM Sans', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 18px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(237, 229, 210, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(15, 28, 46, 0.08);
}

.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-wordmark { font-family: var(--font-serif); font-size: 22px; letter-spacing: 1px; color: var(--navy); }
.nav-wordmark .rise { color: var(--gold-deep); font-weight: 700; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-modes-group {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-right: 28px;
  border-right: 1px solid rgba(15, 28, 46, 0.15);
}

.nav-modes-label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-right: 4px;
}

.nav-link {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.3px;
  color: var(--navy);
  text-decoration: none;
  transition: color 0.2s ease;
  padding: 6px 0;
  position: relative;
}

.nav-link:hover { color: var(--gold-deep); }

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold-deep);
}

.nav-cta {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.4px;
  padding: 11px 22px;
  border-radius: 2px;
  background: var(--navy);
  color: #fff;
  text-decoration: none;
  transition: background 0.2s ease;
}
.nav-cta:hover { background: var(--navy-soft); }

.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--navy);
}

/* ===== LOGO ANIMATIONS ===== */
@keyframes logoRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes pulseCircle {
  0%, 100% {
    transform: scale(1);
    fill-opacity: var(--base-fill);
    stroke-opacity: 0.65;
  }
  50% {
    transform: scale(1.18);
    fill-opacity: var(--peak-fill);
    stroke-opacity: 1;
  }
}

.hero-logo-group {
  transform-origin: 68px 68px;
  transform-box: fill-box;
  animation: logoRotate 72s linear infinite;
}

.hero-logo-group circle {
  transform-origin: center;
  transform-box: fill-box;
}

.hero-logo-group .c-judge { --base-fill: 0.12; --peak-fill: 0.42; animation: pulseCircle 6.5s ease-in-out infinite; animation-delay: 0s; }
.hero-logo-group .c-juror { --base-fill: 0.1; --peak-fill: 0.38; animation: pulseCircle 6.5s ease-in-out infinite; animation-delay: 1.625s; }
.hero-logo-group .c-defense { --base-fill: 0.08; --peak-fill: 0.34; animation: pulseCircle 6.5s ease-in-out infinite; animation-delay: 3.25s; }
.hero-logo-group .c-prosecution { --base-fill: 0.06; --peak-fill: 0.28; animation: pulseCircle 6.5s ease-in-out infinite; animation-delay: 4.875s; }

.mini-logo-group {
  transform-origin: 68px 68px;
  transform-box: fill-box;
  transition: transform 0.3s ease;
}

.mini-logo-group circle {
  transform-origin: center;
  transform-box: fill-box;
}

.nav-logo:hover .mini-logo-group,
.footer-left:hover .mini-logo-group {
  animation: logoRotate 24s linear infinite;
}

.nav-logo:hover .mini-logo-group .c-judge,
.footer-left:hover .mini-logo-group .c-judge { --base-fill: 0.1; --peak-fill: 0.4; animation: pulseCircle 3.2s ease-in-out infinite; animation-delay: 0s; }
.nav-logo:hover .mini-logo-group .c-juror,
.footer-left:hover .mini-logo-group .c-juror { --base-fill: 0.08; --peak-fill: 0.36; animation: pulseCircle 3.2s ease-in-out infinite; animation-delay: 0.8s; }
.nav-logo:hover .mini-logo-group .c-defense,
.footer-left:hover .mini-logo-group .c-defense { --base-fill: 0.06; --peak-fill: 0.32; animation: pulseCircle 3.2s ease-in-out infinite; animation-delay: 1.6s; }
.nav-logo:hover .mini-logo-group .c-prosecution,
.footer-left:hover .mini-logo-group .c-prosecution { --base-fill: 0.05; --peak-fill: 0.26; animation: pulseCircle 3.2s ease-in-out infinite; animation-delay: 2.4s; }

.footer-left { cursor: default; }

@media (prefers-reduced-motion: reduce) {
  .hero-logo-group, .hero-logo-group circle,
  .nav-logo:hover .mini-logo-group, .nav-logo:hover .mini-logo-group circle,
  .footer-left:hover .mini-logo-group, .footer-left:hover .mini-logo-group circle {
    animation: none !important;
  }
}

/* ===== SECTIONS ===== */
section { padding: 140px 40px; position: relative; }
.section-inner { max-width: 1180px; margin: 0 auto; }

.block-cream {
  background: var(--cream);
  background-image:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220' viewBox='0 0 220 220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.1 0 0 0 0 0.08 0 0 0 0 0.03 0 0 0 0.18 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-size: 220px 220px;
  color: var(--text-dark);
}

.block-cream-paper {
  background: var(--cream-paper);
  background-image:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220' viewBox='0 0 220 220'><filter id='n2'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.12 0 0 0 0 0.09 0 0 0 0 0.04 0 0 0 0.14 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n2)'/></svg>");
  background-size: 220px 220px;
  color: var(--text-dark);
}

.block-navy { background: var(--navy); color: #fff; }
.block-gold { background: var(--gold); color: var(--navy); }
.block-navy-deep { background: var(--navy-deep); color: #fff; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  padding: 160px 40px 100px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 15%; right: -15%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(168, 139, 54, 0.08) 0%, transparent 65%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -20%; left: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(15, 28, 46, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

/* Top vignette - subtle darker corner blend so it doesn't feel like a bright white page */
.hero-vignette {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at center top, transparent 0%, transparent 45%, rgba(74, 64, 48, 0.08) 100%);
  z-index: 1;
}

.hero-inner { max-width: 1180px; margin: 0 auto; width: 100%; position: relative; z-index: 2; }
.hero-grid { display: grid; grid-template-columns: 1fr auto; gap: 80px; align-items: center; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 36px;
}
.hero-eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--gold-deep); }

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(52px, 7.5vw, 104px);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -1.5px;
  color: var(--navy);
  margin-bottom: 32px;
}
.hero-headline .accent { font-style: italic; color: var(--gold-deep); font-weight: 600; }

.hero-sub {
  font-family: var(--font-serif);
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 400;
  font-style: italic;
  color: var(--text-mid);
  max-width: 640px;
  line-height: 1.5;
  margin-bottom: 52px;
}

.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

.btn-primary {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  padding: 16px 32px;
  border-radius: 2px;
  background: var(--navy);
  color: #fff;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.btn-primary:hover { background: var(--navy-soft); }

.btn-secondary {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  padding: 16px 28px;
  color: var(--navy);
  text-decoration: none;
  border-bottom: 1px solid var(--navy);
  transition: color 0.2s;
}
.btn-secondary:hover { color: var(--gold-deep); border-color: var(--gold-deep); }

.hero-mark { flex-shrink: 0; }

/* ===== SECTION HEADERS ===== */
.section-label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 5px;
  text-transform: uppercase;
  margin-bottom: 28px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.section-label::before { content: ''; width: 32px; height: 1px; background: currentColor; }

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(40px, 5.5vw, 68px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.5px;
  margin-bottom: 24px;
}
.section-title em { font-style: italic; font-weight: 600; }

.block-cream .section-label, .block-cream-paper .section-label { color: var(--gold-deep); }
.block-cream .section-title, .block-cream-paper .section-title { color: var(--navy); }
.block-cream .section-title em, .block-cream-paper .section-title em { color: var(--gold-deep); }

.block-navy .section-label { color: var(--gold); }
.block-navy .section-title { color: #fff; }
.block-navy .section-title em { color: var(--gold); }

.block-gold .section-label { color: var(--navy); }
.block-gold .section-title { color: var(--navy); }
.block-gold .section-title em { color: var(--navy); font-weight: 700; }

/* ===== WHAT IT IS (navy) ===== */
.what-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-top: 64px;
}

.what-prose { font-family: var(--font-serif); font-size: 24px; line-height: 1.55; color: rgba(255, 255, 255, 0.88); }
.what-prose p { margin-bottom: 22px; }
.what-prose p:last-child { margin-bottom: 0; }
.what-prose .highlight { color: var(--gold); font-style: italic; font-weight: 500; }

.principle-card {
  padding: 44px;
  background: rgba(255, 255, 255, 0.03);
  border-left: 3px solid var(--gold);
  position: relative;
}

.principle-mark {
  position: absolute;
  top: 28px; right: 32px;
  font-family: var(--font-serif);
  font-size: 56px;
  color: var(--gold);
  opacity: 0.25;
  font-weight: 700;
  line-height: 1;
}

.principle-label { font-size: 11px; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; font-weight: 500; }
.principle-title { font-family: var(--font-serif); font-size: 32px; font-weight: 600; color: #fff; margin-bottom: 20px; line-height: 1.2; }
.principle-text { font-family: var(--font-sans); font-size: 15px; line-height: 1.7; color: rgba(255, 255, 255, 0.72); }

/* ===== HOW IT WORKS ===== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 72px;
  border-top: 1px solid rgba(15, 28, 46, 0.12);
  border-bottom: 1px solid rgba(15, 28, 46, 0.12);
}

.step { padding: 48px 32px 48px 0; position: relative; }
.step:not(:last-child) { border-right: 1px solid rgba(15, 28, 46, 0.12); padding-right: 32px; }
.step:not(:first-child) { padding-left: 32px; }

.step-num { font-family: var(--font-serif); font-style: italic; font-size: 72px; font-weight: 500; line-height: 1; color: var(--gold-deep); margin-bottom: 24px; opacity: 0.9; }
.step-title { font-family: var(--font-serif); font-size: 26px; font-weight: 600; color: var(--navy); margin-bottom: 16px; line-height: 1.25; }
.step-body { font-family: var(--font-sans); font-size: 14px; line-height: 1.65; color: var(--text-mid); }

/* ===== TAGLINE CALLOUT ===== */
.tagline-callout { margin-top: 96px; text-align: center; padding: 0 20px; }
.tagline-rule { width: 60px; height: 1px; background: var(--gold-deep); margin: 0 auto 40px; opacity: 0.5; }
.tagline-line { font-family: var(--font-serif); font-size: clamp(34px, 4.5vw, 54px); font-weight: 500; color: var(--navy); line-height: 1.1; letter-spacing: -0.5px; margin-bottom: 24px; }
.tagline-line em { font-style: italic; font-weight: 600; color: var(--gold-deep); }
.tagline-sub { font-family: var(--font-serif); font-style: italic; font-size: 19px; line-height: 1.55; color: var(--text-mid); max-width: 620px; margin: 0 auto; }

/* ===== MODES GRID (home page) ===== */
.modes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  margin-top: 64px;
  background: rgba(15, 28, 46, 0.08);
  border: 1px solid rgba(15, 28, 46, 0.08);
}

.mode-card {
  padding: 48px 44px;
  background: var(--cream);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: background 0.3s ease;
  position: relative;
}

.mode-card:hover { background: var(--cream-paper); }
.mode-card.disabled {
  opacity: 0.6;
  pointer-events: none;
}

.mode-marker {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-deep);
}

.mode-marker::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold-deep);
}

.mode-card.disabled .mode-marker::before { background: var(--text-light); }
.mode-card.disabled .mode-marker { color: var(--text-light); }

.mode-title {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: -0.3px;
}

.mode-title em { font-style: italic; color: var(--gold-deep); }

.mode-body {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-mid);
}

.mode-cta {
  margin-top: auto;
  padding-top: 20px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.2s ease;
}

.mode-card:hover .mode-cta { gap: 14px; color: var(--gold-deep); }

.mode-card.disabled .mode-cta { color: var(--text-light); }

/* ===== BFM SECTION ===== */
.bfm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-top: 56px;
  align-items: start;
}

.bfm-prose { font-family: var(--font-serif); font-size: 22px; line-height: 1.55; color: rgba(255, 255, 255, 0.88); }
.bfm-prose p { margin-bottom: 20px; }
.bfm-prose p:last-child { margin-bottom: 0; }

.bfm-stats {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(201, 168, 76, 0.3);
  border-bottom: 1px solid rgba(201, 168, 76, 0.3);
}

.bfm-stat {
  padding: 24px 0;
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}
.bfm-stat:last-child { border-bottom: none; }

.bfm-stat-label { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; font-weight: 500; }
.bfm-stat-value { font-family: var(--font-serif); font-size: 22px; color: #fff; font-weight: 500; line-height: 1.3; }
.bfm-stat-value em { font-style: italic; color: var(--gold); font-weight: 600; }

/* ===== TEAM GRID (About page) ===== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 64px;
  border-top: 1px solid rgba(15, 28, 46, 0.12);
  border-bottom: 1px solid rgba(15, 28, 46, 0.12);
}

.team-member {
  padding: 48px 32px 48px 0;
  position: relative;
}

.team-member:not(:last-child) {
  border-right: 1px solid rgba(15, 28, 46, 0.12);
  padding-right: 32px;
}

.team-member:not(:first-child) {
  padding-left: 32px;
}

.team-role {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 16px;
}

.team-name {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 20px;
  line-height: 1.2;
}

.team-bio {
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-mid);
  margin-bottom: 16px;
}

.team-location {
  font-family: var(--font-sans);
  font-size: 13px;
  font-style: italic;
  color: var(--text-light);
}

@media (max-width: 980px) {
  .team-grid { grid-template-columns: 1fr; }
  .team-member { border-right: none !important; padding: 36px 0 !important; border-bottom: 1px solid rgba(15, 28, 46, 0.12); }
  .team-member:last-child { border-bottom: none; }
}

/* ===== FOOTER ===== */
footer { padding: 60px 40px 40px; background: var(--navy-deep); }
.footer-inner { max-width: 1180px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; }
.footer-left { display: flex; align-items: center; gap: 14px; }
.footer-wordmark { font-family: var(--font-serif); font-size: 18px; color: #fff; }
.footer-wordmark .rise { color: var(--gold); font-weight: 700; }
.footer-contact { font-size: 13px; color: rgba(255, 255, 255, 0.55); }
.footer-contact a { color: var(--gold); text-decoration: none; }
.footer-contact a:hover { opacity: 0.8; }
.footer-copy {
  font-size: 11px;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.3);
  margin-top: 28px;
  text-align: center;
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* ===== CASE / EDUCATION-SPECIFIC ===== */
.case-grid {
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 72px;
  align-items: start;
  margin-top: 56px;
}

.case-brief { font-family: var(--font-serif); font-size: 20px; line-height: 1.6; color: var(--text-mid); }
.case-brief p { margin-bottom: 20px; }
.case-brief p:first-child::first-letter { font-family: var(--font-serif); font-size: 72px; font-weight: 600; float: left; line-height: 0.85; margin: 6px 10px 0 0; color: var(--gold-deep); }
.case-brief strong { color: var(--navy); font-weight: 600; }

.case-meta { background: var(--navy); color: #fff; padding: 40px; border-radius: 2px; position: sticky; top: 100px; }
.case-meta-title { font-family: var(--font-serif); font-size: 22px; font-weight: 600; color: var(--gold); padding-bottom: 20px; margin-bottom: 8px; border-bottom: 1px solid rgba(201, 168, 76, 0.25); }
.meta-label { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); font-weight: 500; margin-bottom: 6px; margin-top: 20px; }
.meta-value { font-family: var(--font-serif); font-size: 17px; font-weight: 500; color: #fff; line-height: 1.4; }
.meta-value.small { font-size: 15px; color: rgba(255, 255, 255, 0.88); }

.case-objectives { margin-top: 56px; }
.case-objectives h4 { font-family: var(--font-serif); font-size: 24px; font-weight: 600; color: var(--navy); margin-bottom: 24px; }

.obj-list { list-style: none; max-width: 720px; counter-reset: obj; }
.obj-list li {
  font-family: var(--font-sans); font-size: 15px; line-height: 1.65; color: var(--text-mid);
  padding-left: 40px; position: relative; margin-bottom: 16px;
}
.obj-list li::before {
  content: counter(obj, upper-roman); counter-increment: obj;
  position: absolute; left: 0; top: 0;
  font-family: var(--font-serif); font-style: italic; font-size: 16px;
  color: var(--gold-deep); font-weight: 600; min-width: 32px;
}

/* ===== PILOT / OFFER SECTIONS ===== */
.pilot-inner { max-width: 1040px; margin: 0 auto; text-align: center; }
.pilot-section .section-label { justify-content: center; }
.pilot-section .section-label::after { content: ''; width: 32px; height: 1px; background: currentColor; }

.pilot-title {
  font-family: var(--font-serif);
  font-size: clamp(44px, 6.5vw, 80px);
  font-weight: 500;
  line-height: 1.02;
  color: var(--navy);
  margin-bottom: 28px;
  letter-spacing: -0.8px;
}
.pilot-title em { font-style: italic; font-weight: 700; }

.pilot-lead {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 24px;
  line-height: 1.5;
  color: var(--navy);
  max-width: 760px;
  margin: 0 auto 64px;
  opacity: 0.88;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 0 auto 64px;
  text-align: left;
  border-top: 1px solid rgba(15, 28, 46, 0.25);
  border-bottom: 1px solid rgba(15, 28, 46, 0.25);
}

.offer-item { padding: 36px 24px; position: relative; }
.offer-item:not(:last-child) { border-right: 1px solid rgba(15, 28, 46, 0.15); }

.offer-num { font-family: var(--font-serif); font-style: italic; font-size: 15px; font-weight: 600; color: var(--navy); opacity: 0.55; margin-bottom: 14px; }
.offer-item h4 { font-family: var(--font-serif); font-size: 22px; font-weight: 600; color: var(--navy); margin-bottom: 12px; line-height: 1.25; }
.offer-item p { font-family: var(--font-sans); font-size: 13.5px; line-height: 1.6; color: var(--navy); opacity: 0.8; }

.pilot-cta-btn {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.5px;
  padding: 20px 44px;
  border-radius: 2px;
  background: var(--navy);
  color: #fff;
  text-decoration: none;
  transition: background 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.pilot-cta-btn:hover { background: var(--navy-soft); }

.pilot-note { font-size: 12px; letter-spacing: 3px; text-transform: uppercase; color: var(--navy); opacity: 0.65; margin-top: 32px; font-weight: 500; }

/* ===== STUB / WAITLIST PAGE ===== */
.stub-hero {
  min-height: 100vh;
  padding: 160px 40px 100px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.stub-hero::before {
  content: '';
  position: absolute;
  top: 15%; right: -15%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(168, 139, 54, 0.08) 0%, transparent 65%);
  pointer-events: none;
}
.stub-hero::after {
  content: '';
  position: absolute;
  bottom: -20%; left: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(15, 28, 46, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.stub-inner {
  max-width: 1180px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 2;
}

.stub-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 80px;
  align-items: center;
}

.coming-soon-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--navy);
  padding: 10px 20px;
  background: var(--gold);
  border-radius: 2px;
  margin-bottom: 36px;
  box-shadow: 0 2px 8px rgba(201, 168, 76, 0.25);
}

.coming-soon-badge::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--navy);
  animation: pulseDot 2s ease-in-out infinite;
}

@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.stub-sublabel {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 28px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.stub-sublabel::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold-deep);
}

.stub-headline {
  font-family: var(--font-serif);
  font-size: clamp(52px, 7.5vw, 104px);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -1.5px;
  color: var(--navy);
  margin-bottom: 32px;
}
.stub-headline em { font-style: italic; color: var(--gold-deep); font-weight: 600; }

.stub-lead {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 400;
  color: var(--text-mid);
  max-width: 640px;
  line-height: 1.5;
  margin-bottom: 36px;
}

.stub-body {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-mid);
  max-width: 620px;
  margin-bottom: 52px;
}
.stub-body p { margin-bottom: 16px; }
.stub-body p:last-child { margin-bottom: 0; }

/* ===== FOUNDER QUOTE (navy-deep) ===== */
.founder-inner { max-width: 820px; margin: 0 auto; text-align: center; padding: 40px 20px; }

.founder-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 44px;
  position: relative;
  padding: 0 32px;
}
.founder-quote::before {
  content: '“';
  font-family: var(--font-serif);
  font-size: 120px;
  color: var(--gold);
  opacity: 0.3;
  position: absolute;
  font-style: normal;
  line-height: 1;
  top: -50px;
  left: -20px;
}
.founder-name { font-family: var(--font-serif); font-size: 19px; font-weight: 600; color: #fff; letter-spacing: 0.5px; margin-bottom: 6px; }
.founder-title { font-family: var(--font-sans); font-size: 12px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); }

/* ===== RESPONSIVE ===== */
@media (max-width: 980px) {
  .nav { padding: 14px 20px; }
  section { padding: 90px 24px; }
  .hero { padding: 130px 24px 70px; }
  .stub-hero { padding: 130px 24px 70px; }
  .stub-grid { grid-template-columns: 1fr; gap: 40px; }
  .stub-grid .hero-mark { display: none; }

  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-mark { display: none; }

  .what-grid, .case-grid, .bfm-grid { grid-template-columns: 1fr; gap: 48px; }
  .case-meta { position: static; }

  .steps-grid { grid-template-columns: 1fr 1fr; }
  .step:nth-child(odd) { border-right: 1px solid rgba(15, 28, 46, 0.12); padding-right: 24px; padding-left: 0; }
  .step:nth-child(even) { border-right: none; padding-left: 24px; padding-right: 0; }
  .step:nth-child(-n+2) { border-bottom: 1px solid rgba(15, 28, 46, 0.12); }

  .offer-grid { grid-template-columns: 1fr 1fr; }
  .offer-item:nth-child(odd) { border-right: 1px solid rgba(15, 28, 46, 0.15); }
  .offer-item:nth-child(even) { border-right: none; }
  .offer-item:nth-child(-n+2) { border-bottom: 1px solid rgba(15, 28, 46, 0.15); }

  .modes-grid { grid-template-columns: 1fr; }
  .mode-card { padding: 36px 28px; }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    background: rgba(245, 240, 232, 0.98);
    padding: 20px;
    gap: 18px;
    border-bottom: 1px solid rgba(15, 28, 46, 0.1);
  }
  .nav-links.open { display: flex; }
  .nav-modes-group {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    padding-right: 0;
    padding-bottom: 14px;
    border-right: none;
    border-bottom: 1px solid rgba(15, 28, 46, 0.1);
  }
  .nav-cta { text-align: center; }
  .nav-toggle { display: block; }

  .footer-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 560px) {
  .steps-grid { grid-template-columns: 1fr; }
  .step { border-right: none !important; padding: 36px 0 !important; border-bottom: 1px solid rgba(15, 28, 46, 0.12); }
  .step:last-child { border-bottom: none; }

  .offer-grid { grid-template-columns: 1fr; }
  .offer-item { border-right: none !important; border-bottom: 1px solid rgba(15, 28, 46, 0.15); }
  .offer-item:last-child { border-bottom: none; }

  .hero-ctas { flex-direction: column; width: 100%; align-items: stretch; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; text-align: center; border-bottom: none; }
  .btn-secondary { padding: 16px 28px; border: 1px solid var(--navy); }

  .case-brief p:first-child::first-letter { font-size: 56px; }
}
