/* ==========================================================================
   Pitch Site 1.0 — Lightweight Rebuild
   F10 Naval Package: Night Navy + Antique Gold + Playfair Display
   No embedded assets. No data URIs. External paths only.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,700;0,900;1,700;1,900&display=swap');

:root {
  --navy:        #0D1B3E;
  --navy-deep:   #06101f;
  --navy-alt:    #0a1530;
  --gold:        #C9A84C;
  --gold-soft:   #caa64d;
  --black:       #0A0A0A;
  --bg-cream:    #fafaf6;
  --bg-warm:     #f5f5f0;
  --bg-paper:    #f7f5ee;
  --border-lt:   #d0d0c8;
  --text-muted:  #5F5E5A;
  --text-faded:  #888780;
  --link-blue:   #185FA5;
  --success:     #0F6E56;
  --danger:      #A32D2D;

  --serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --mono:  'Playfair Display', Georgia, 'Times New Roman', serif;
  --sans:  system-ui, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;

  --wrap-max: 1440px;
  --radius:   4px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: #ffffff;
  color: var(--black);
  font-family: var(--serif);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

html { scroll-behavior: smooth; }

/* Offset scroll anchors for the sticky header so section titles aren't clipped */
#top, #live-agent, #proof-grid, #live-apps,
#caai, #founder, #contact { scroll-margin-top: 90px; }

a { color: var(--link-blue); text-decoration: none; }
a:hover { text-decoration: underline; }

img { max-width: 100%; height: auto; display: block; }

.wrap {
  max-width: var(--wrap-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* Brand wordmark helpers */
.ai { color: var(--gold); font-style: italic; }
.tm { font-size: 0.55em; vertical-align: super; color: var(--gold); }

.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 14px;
  font-weight: 700;
}

.section-title {
  font-family: var(--serif);
  font-weight: 900;
  font-size: 42px;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--navy);
  margin: 0 0 20px;
}

.section-title em { font-style: italic; color: var(--gold); font-weight: 900; }

.section-lede {
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.65;
  color: var(--navy);
  margin: 0 0 16px;
  max-width: 780px;
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  display: inline-block;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 13px 22px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.15s ease;
  white-space: nowrap;
}
.btn:hover { text-decoration: none; }
.btn-sm { padding: 9px 14px; font-size: 11px; }
.btn-lg { padding: 16px 28px; font-size: 14px; }
.header-cta {
  font-family: var(--display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.08em;
  padding: 10px 16px;
  text-transform: uppercase;
}
@media (max-width: 760px) {
  .header-cta { font-size: 12px; padding: 8px 12px; letter-spacing: 0.06em; }
}

.btn-gold {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-gold:hover { background: var(--navy); color: var(--gold); border-color: var(--gold); }

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover { background: var(--navy); color: var(--gold); }

/* ==========================================================================
   Header
   ========================================================================== */

.site-header {
  background: var(--navy);
  color: #ffffff;
  padding: 8px 0;
  border-bottom: 1px solid var(--gold);
  position: sticky;
  top: 0;
  z-index: 50;
}
.header-wrap {
  display: flex;
  align-items: center;
  gap: 28px;
  position: relative;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #ffffff;
  text-decoration: none;
}
.brand:hover { text-decoration: none; }
.brand-mark {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--serif);
  font-weight: 900;
  font-style: italic;
  font-size: 14px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.brand-mark .ai { color: var(--navy); }
.brand-wordmark {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.01em;
}
.brand-wordmark .ai { color: var(--gold); }
.brand-wordmark .tm { color: var(--gold); }

/* Header actions: Partner Inquiry + hamburger together, right side */
.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: auto;
}

/* Hamburger toggle button — CG3 LE-020 */
.nav-toggle {
  width: 42px;
  height: 42px;
  background: transparent;
  border: 1px solid rgba(201, 168, 76, 0.45);
  border-radius: 3px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 0;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.nav-toggle:hover { border-color: var(--gold); background: rgba(201, 168, 76, 0.06); }
.nav-toggle:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
.nav-toggle-bar {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--gold);
  transition: transform 0.22s ease, opacity 0.22s ease;
  transform-origin: center;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Nav dropdown panel — hidden by default, revealed when toggled open */
.nav {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  min-width: 240px;
  background: var(--navy);
  border: 1px solid rgba(201, 168, 76, 0.35);
  border-top: 2px solid var(--gold);
  border-radius: 3px;
  padding: 10px 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.18s ease, visibility 0s linear 0.18s, transform 0.18s ease;
  z-index: 60;
}
.nav.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity 0.18s ease, visibility 0s, transform 0.18s ease;
}
.nav a {
  color: #ffffff;
  opacity: 0.82;
  padding: 11px 22px;
  border-left: 2px solid transparent;
  transition: background 0.12s ease, color 0.12s ease, border-color 0.12s ease, opacity 0.12s ease;
}
.nav a:hover {
  color: var(--gold);
  opacity: 1;
  text-decoration: none;
  background: rgba(201, 168, 76, 0.08);
  border-left-color: var(--gold);
}
.nav a .ai { color: var(--gold); }
.nav a.nav-external {
  margin-top: 6px;
  padding-top: 14px;
  border-top: 1px solid rgba(201, 168, 76, 0.25);
  color: var(--gold);
  opacity: 0.9;
}
.nav a.nav-external:hover { color: var(--gold); opacity: 1; background: rgba(201, 168, 76, 0.12); }

/* ==========================================================================
   Hero — DELTA D-002 (STEP 3 + STEP 4)
   Grid: row 1 = content (1fr), row 2 = regulatory marquee (112px)
   Above-the-fold fit — authorized deviations documented in XREF
   ========================================================================== */

.hero {
  /* STEP 3 (AIBCODE) — hero grid */
  display: grid;
  grid-template-rows: 1fr 112px;

  /* DEVIATION D-002-DEV-1 — above-the-fold guarantee (authorized) */
  min-height: calc(100vh - 72px);

  background:
    radial-gradient(1200px 400px at 75% 10%, rgba(201,168,76,0.08), transparent 70%),
    linear-gradient(180deg, var(--navy-alt) 0%, var(--navy-deep) 100%);
  color: #ffffff;
  overflow: hidden;
}

.hero-content {
  /* DEVIATION D-002-DEV-2 — wrapper for grid row 1 so hero content stays intact */
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  padding: 24px 0 20px;
  overflow: hidden;
}
.hero-content .wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-svg {
  width: 100%;
  max-width: 1360px;
  /* DEVIATION D-002-DEV-3 — cap SVG height so marquee stays above fold (authorized) */
  max-height: calc(100vh - 220px);
  margin: 0 auto;
  display: block;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 10px 40px rgba(0,0,0,0.25);
}

/* Regulatory Marquee — row 2 of hero grid */
.hero-marquee {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  padding: 14px 0 16px;
  background: rgba(0,0,0,0.18);
  border-top: 1px solid rgba(201,168,76,0.22);
  overflow: hidden;
  min-width: 0;
}
.marquee-label {
  text-align: center;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.9;
}
.marquee-viewport {
  overflow: hidden;
  width: 100%;
  position: relative;
}
.marquee-track {
  /* STEP 4 (AIBCODE) — track animation */
  display: flex;
  width: max-content;
  animation: marquee 48s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}
.marquee-item {
  flex-shrink: 0;
  padding: 2px 36px;
  border-right: 1px solid rgba(201,168,76,0.25);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  min-width: 220px;
}
.marquee-mark {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 22px;
  color: #ffffff;
  line-height: 1.1;
  white-space: nowrap;
}
.marquee-sub {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.85;
  white-space: nowrap;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ==========================================================================
   Thesis (D-004 compact) — Playfair Display F10 Naval Package
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;0,900;1,700;1,900&display=swap');

.thesis-compact {
  padding: 52px 0 44px;
  background: #ffffff;
  text-align: center;
}
.thesis-eyebrow {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 22px;
  line-height: 1.25;
}
.thesis-headline {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-weight: 900;
  font-size: clamp(24px, 4.5vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--navy);
  margin: 0 0 14px;
  white-space: nowrap;
}
.thesis-headline em { font-style: italic; font-weight: 900; color: var(--gold); }
.thesis-tagline {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-weight: 700;
  font-style: italic;
  font-size: clamp(16px, 2.2vw, 20px);
  color: var(--navy);
  margin: 0 0 28px;
  line-height: 1.4;
}
.thesis-tagline .ai { color: var(--gold); font-style: italic; }
.thesis-tagline .pp {
  display: inline-block;
  font-style: normal;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  color: var(--gold);
  margin-left: 10px;
  text-transform: uppercase;
  vertical-align: 3px;
  font-weight: 400;
}
.thesis-ctas {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}
.thesis-cta-primary {
  font-family: var(--display);
  font-size: 30px;
  letter-spacing: 0.01em;
  color: var(--gold);
  text-decoration: none;
  border-bottom: 2px solid var(--gold);
  padding: 8px 4px;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
}
.thesis-cta-primary:hover {
  color: var(--navy);
  border-bottom-color: var(--navy);
  text-decoration: none;
}
.thesis-cta-secondary {
  font-family: var(--display);
  font-size: 16px;
  letter-spacing: 0.01em;
  color: var(--navy);
  text-decoration: none;
  border-bottom: 1px solid rgba(13,27,62,0.28);
  padding: 3px 0;
  font-weight: 400;
  font-style: italic;
  max-width: 780px;
}
@media (max-width: 760px) {
  .thesis-cta-primary { font-size: 20px; white-space: normal; }
}
.thesis-cta-secondary:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
  text-decoration: none;
}

/* ==========================================================================
   Live Agent
   ========================================================================== */

.live-agent {
  padding: 64px 0 72px;
  background: linear-gradient(180deg, #ffffff 0%, var(--bg-cream) 100%);
}
.iframe-wrap {
  margin-top: 28px;
  width: 100%;
  background: var(--navy);
  border: 1px solid var(--navy);
  border-radius: var(--radius);
  box-shadow: 0 12px 48px rgba(13,27,62,0.18);
  overflow: hidden;
  position: relative;
  aspect-ratio: 16 / 10;
}
.iframe-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  background: #ffffff;
}
@media (max-width: 760px) {
  .iframe-wrap { aspect-ratio: 4 / 5; }
}
.iframe-note {
  margin-top: 14px;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

/* ==========================================================================
   Proof grid
   ========================================================================== */

.proof-grid { padding: 72px 0; background: var(--bg-warm); }
.proof-eyebrow {
  font-family: var(--display);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 16px;
  line-height: 1.25;
}
.proof-title {
  font-family: var(--display);
  font-weight: 900;
  font-size: 38px;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--navy);
  margin: 0 0 24px;
  white-space: nowrap;
}
.proof-title em {
  font-style: italic;
  color: var(--gold);
  font-weight: 700;
  font-size: 0.55em;
  letter-spacing: 0.02em;
}
.proof-title .tm { color: var(--gold); font-size: 0.48em; vertical-align: super; }
.proof-lede {
  font-family: var(--display);
  font-size: 19px;
  line-height: 1.6;
  color: var(--navy);
  max-width: 880px;
  margin: 0 0 36px;
}
.proof-lede strong {
  color: var(--navy);
  font-weight: 700;
  font-style: italic;
}
@media (max-width: 1200px) {
  .proof-title { font-size: 32px; }
}
@media (max-width: 760px) {
  .proof-title { font-size: 24px; white-space: normal; }
  .proof-eyebrow { font-size: 18px; }
  .proof-lede { font-size: 17px; }
}

.proof-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}
@media (max-width: 960px) { .proof-row { grid-template-columns: 1fr; } }

.proof-tile {
  background: #ffffff;
  border: 1px solid var(--border-lt);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 24px 22px 20px;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
  display: flex;
  flex-direction: column;
}
.proof-tile:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(13,27,62,0.12);
  border-left-color: var(--navy);
}
.proof-tile-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--gold);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.proof-tile-title {
  font-family: var(--serif);
  font-weight: 900;
  font-size: 22px;
  line-height: 1.2;
  color: var(--navy);
  margin: 0 0 12px;
}
.proof-tile-body {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0 0 8px;
  padding-bottom: 0;
}
.proof-tile-note {
  font-family: var(--display);
  font-size: 13px;
  font-style: italic;
  line-height: 1.5;
  color: var(--gold);
  margin: 0 0 auto;
  padding-bottom: 14px;
}
.proof-tile-cta {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--navy);
  font-weight: 700;
  padding-top: 14px;
  border-top: 1px solid var(--border-lt);
}

/* ==========================================================================
   Live apps cards (background-image via CSS)
   ========================================================================== */

.live-apps { padding: 72px 0; }

.apps-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 32px;
}
@media (max-width: 860px) { .apps-row { grid-template-columns: 1fr; } }

.more-verticals {
  font-family: var(--display);
  font-size: 26px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--navy);
  margin: 36px 0 0;
  text-align: center;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}
.more-verticals em { font-style: italic; color: var(--gold); font-weight: 400; }
.more-verticals strong { font-weight: 700; color: var(--navy); font-style: normal; }
@media (max-width: 760px) { .more-verticals { font-size: 19px; } }

.app-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 320px;
  color: #ffffff;
  display: flex;
  text-decoration: none;
  border: 1px solid var(--navy);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.app-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 48px rgba(13,27,62,0.25);
  text-decoration: none;
}
.app-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.75) contrast(1.02);
}
.app-card-bg-transp { background-image: url('../assets/livebg-transparency.png'); }
.app-card-bg-homeb  { background-image: url('../assets/livebg-homeb.png'); }

.app-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13,27,62,0.35) 0%, rgba(13,27,62,0.55) 50%, rgba(13,27,62,0.80) 100%);
  z-index: 1;
}
.app-card-body {
  position: relative;
  z-index: 2;
  padding: 28px 28px 26px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  flex: 1;
}
.app-card-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 10px;
}
.app-card-title {
  font-family: var(--serif);
  font-weight: 900;
  font-size: 28px;
  line-height: 1.15;
  margin: 0 0 10px;
  color: #ffffff;
}
.app-card-desc {
  font-size: 14px;
  line-height: 1.55;
  margin: 0 0 16px;
  color: rgba(255,255,255,0.88);
  max-width: 420px;
}
.app-card-cta {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--gold);
  font-weight: 700;
  padding-top: 12px;
  border-top: 1px solid rgba(201,168,76,0.4);
  align-self: flex-start;
}

/* live-apps pulse pill — CG2 LE-012 */.live-pill {
  position: absolute;
  bottom: 20px;
  right: 22px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(140, 140, 140, 0.40);
  border: 0.5px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  font-weight: 700;
  color: #ffffff;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  z-index: 3;
}
.live-pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  display: inline-block;
  animation: live-pulse 1.6s ease-in-out infinite;
}
@keyframes live-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.35; transform: scale(1.35); }
}

/* ==========================================================================
   CAAi section
   ========================================================================== */

.caai-section { padding: 72px 0; background: var(--navy); color: #ffffff; }
.caai-section .eyebrow { color: var(--gold); }
.caai-section .section-title { color: #ffffff; }

.caai-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
@media (max-width: 860px) { .caai-grid { grid-template-columns: 1fr; } }

.caai-copy p { font-size: 16px; line-height: 1.7; color: rgba(255,255,255,0.9); margin: 0 0 14px; max-width: 560px; }
.caai-copy strong { color: var(--gold); font-weight: 700; }
.caai-copy em { color: #ffffff; font-weight: 600; }
.caai-lede {
  font-family: var(--serif) !important;
  font-weight: 700 !important;
  font-size: 22px !important;
  line-height: 1.35 !important;
  color: #ffffff !important;
  font-style: italic;
  margin: 0 0 22px !important;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(201,168,76,0.3);
  max-width: 560px;
}
.caai-visual img {
  width: 100%;
  border-radius: var(--radius);
  background: #ffffff;
  padding: 20px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}

/* ==========================================================================
   Founder
   ========================================================================== */

.founder-section { padding: 72px 0; }
.founder-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 760px) { .founder-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; } }

.founder-portrait img {
  width: 100%;
  border-radius: var(--radius);
  border: 3px solid var(--gold);
  box-shadow: 0 10px 30px rgba(13,27,62,0.2);
}
.founder-copy p { font-size: 16px; line-height: 1.7; color: var(--navy); margin: 0 0 14px; max-width: 640px; }
.founder-copy em { font-style: italic; color: var(--navy); font-weight: 600; }
.founder-credential {
  font-family: var(--mono);
  font-size: 13px !important;
  color: var(--text-muted) !important;
  letter-spacing: 0.04em;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border-lt);
  margin-bottom: 18px !important;
}

/* ==========================================================================
   CTA — Fortune 10 editorial (CG2 LE-015)
   ========================================================================== */

.cta-section {
  padding: 96px 0 104px;
  background: linear-gradient(180deg, var(--navy-alt) 0%, var(--navy-deep) 100%);
  color: #ffffff;
}
.cta-eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 24px;
  text-transform: uppercase;
}
.cta-headline {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 42px;
  line-height: 1.22;
  color: #ffffff;
  margin: 0 0 30px;
  max-width: 980px;
  letter-spacing: -0.005em;
}
@media (max-width: 760px) { .cta-headline { font-size: 28px; line-height: 1.25; } }

.cta-body {
  font-size: 17px;
  line-height: 1.8;
  max-width: 760px;
  color: rgba(255, 255, 255, 0.86);
  margin: 0 0 38px;
}

.cta-book-btn {
  display: inline-block;
  background: var(--gold);
  color: var(--navy-deep);
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.16em;
  font-weight: 700;
  text-transform: uppercase;
  padding: 17px 32px;
  border-radius: 3px;
  text-decoration: none;
  margin-bottom: 56px;
  transition: background 0.15s ease;
}
.cta-book-btn:hover { background: #ddb857; text-decoration: none; }

.cta-sig {
  border-top: 1px solid rgba(201, 168, 76, 0.28);
  padding-top: 30px;
  max-width: 760px;
}
.cta-sig p { margin: 0; }
.cta-sig-name {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px !important;
}
.cta-sig-contact {
  font-family: var(--mono);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 10px !important;
  letter-spacing: 0.04em;
}
.cta-sig-contact a { color: var(--gold); text-decoration: none; }
.cta-sig-contact a:hover { text-decoration: underline; }
.cta-sig-disclaimer {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.48);
  text-transform: uppercase;
}

/* ==========================================================================
   Lightbox
   ========================================================================== */

.lightbox {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.lightbox.open { display: flex; }
.lightbox-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,16,32,0.88);
}
.lightbox-panel {
  position: relative;
  background: #ffffff;
  border-radius: var(--radius);
  box-shadow: 0 20px 80px rgba(0,0,0,0.5);
  width: min(1320px, 100%);
  max-height: calc(100vh - 40px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 2px solid var(--gold);
}
.lightbox-bar {
  background: var(--navy);
  color: var(--gold);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid var(--gold);
}
.lightbox-title {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--gold);
  font-weight: 700;
}
.lightbox-close {
  background: var(--gold);
  color: var(--navy);
  border: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  font-weight: 700;
}
.lightbox-close:hover { background: #ffffff; }
.lightbox-body {
  flex: 1;
  background: var(--bg-cream);
  overflow: auto;
}
.lightbox-body iframe {
  width: 100%;
  height: calc(100vh - 100px);
  min-height: 600px;
  border: 0;
  display: block;
  background: #ffffff;
}
.lightbox-body img {
  width: 100%;
  height: auto;
  display: block;
  background: #ffffff;
}
