/* ─────────────────────────────────────────────
   TechFuelAI — shared stylesheet
   Adapts the Indevtech parent-brand visual system
   for the TechFuelAI sub-brand: terracotta accent
   replaces gold, italic-pivot in terracotta carries
   the editorial signature, parent-brand gold
   survives as the top stripe and footer thread.
   ───────────────────────────────────────────── */

:root {
  --navy: #0B1D3A;
  --navy-deep: #061325;
  --navy-mid: #132B4F;
  --navy-soft: #1A2E50;
  --gold: #C4973B;
  --gold-light: #D4AA52;
  --gold-deep: #A37D2C;
  --terracotta: #A55538;
  --terracotta-light: #C26F4A;
  --terracotta-deep: #7A3E29;
  --cream: #F5F0E8;
  --cream-dark: #E8E0D0;
  --white: #FFFFFF;
  --text-light: #A0ABBE;
  --text-body: #394B5F;
  --text-muted: #6B7A8F;
  --hairline: rgba(255, 255, 255, 0.08);
  --hairline-dark: rgba(11, 29, 58, 0.10);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Source Sans 3', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 400;
  color: var(--text-body);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 500;
  line-height: 1.15;
  color: var(--navy);
  letter-spacing: -0.01em;
}

/* Italic-pivot — the brand's signature emphasis treatment.
   Same technique inherited from indevtech.com (gold) but in terracotta. */
h1 em, h2 em, h3 em {
  font-style: italic;
  font-weight: 400;
  color: var(--terracotta);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}

.section-pad {
  padding: 112px 0;
}
@media (max-width: 760px) {
  .section-pad { padding: 72px 0; }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ─────────────────────────────────────────────
   NAVIGATION
   ───────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}
.nav {
  position: relative;
  padding: 22px 0;
  transition: padding 0.35s ease, background 0.35s ease;
  background: transparent;
}
.nav.scrolled {
  padding: 14px 0;
  background: rgba(11, 29, 58, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav-logo img {
  height: 32px;
  width: auto;
  transition: opacity 0.2s;
}
.nav-logo:hover img { opacity: 0.85; }

.nav-links {
  display: flex;
  gap: 22px;
  list-style: none;
}
.nav-links a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
  transition: color 0.2s;
  padding: 4px 0;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--terracotta-light); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 22px;
}
.nav-phone {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.nav-phone:hover { color: var(--white); }

.btn-primary {
  display: inline-block;
  background: var(--terracotta);
  color: var(--white);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 12px 22px;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.btn-primary:hover {
  background: var(--terracotta-light);
}
.btn-primary.btn-large {
  padding: 18px 32px;
  font-size: 12px;
}

.btn-ghost {
  display: inline-block;
  color: var(--white);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 12px 22px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.btn-ghost:hover {
  border-color: var(--terracotta-light);
  color: var(--terracotta-light);
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  width: 30px;
  height: 30px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(11, 29, 58, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 28px 32px;
  border-top: 1px solid var(--hairline);
}
.mobile-menu.open { display: block; }
.mobile-menu ul {
  list-style: none;
  display: grid;
  gap: 18px;
}
.mobile-menu a {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 920px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-right .btn-primary { display: none; }
}

/* ─────────────────────────────────────────────
   HERO
   ───────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  border-top: 4px solid var(--gold);    /* parent brand thread */
  color: var(--white);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 90% at 80% 30%, rgba(165, 85, 56, 0.18) 0%, transparent 60%),
    radial-gradient(ellipse 50% 80% at 20% 70%, rgba(11, 29, 58, 0.4) 0%, transparent 60%),
    linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%);
  z-index: 0;
}
.hero-skyline {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 200px;
  z-index: 1;
  opacity: 0.18;
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  text-align: center;
  padding: 160px 32px 100px;
  max-width: 920px;
  margin: 0 auto;
}
.hero-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--terracotta-light);
  margin-bottom: 28px;
}
.hero-headline {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  font-size: clamp(40px, 6vw, 76px);
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}
.hero-headline em {
  font-style: italic;
  font-weight: 400;
  color: var(--terracotta-light);
}
.hero-sub {
  font-size: clamp(18px, 2vw, 22px);
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 44px;
  line-height: 1.5;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}
.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  align-items: center;
}
.hero-link {
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  padding: 4px 0;
  transition: color 0.2s, border-color 0.2s;
}
.hero-link:hover {
  color: var(--terracotta-light);
  border-color: var(--terracotta-light);
}
.hero-trust {
  position: absolute;
  bottom: 32px;
  left: 0;
  right: 0;
  z-index: 3;
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}
.hero-trust-divider {
  margin: 0 12px;
  color: rgba(255, 255, 255, 0.25);
}

/* ─────────────────────────────────────────────
   Generic section eyebrow + headline pattern
   ───────────────────────────────────────────── */
.section-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--terracotta-deep);
  margin-bottom: 16px;
}
.section-headline {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  font-size: clamp(34px, 4.4vw, 54px);
  line-height: 1.1;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  max-width: 800px;
}
.section-lead {
  font-size: clamp(17px, 1.6vw, 19px);
  color: var(--text-body);
  line-height: 1.65;
  max-width: 720px;
}
.section-header { margin-bottom: 64px; }

/* ─────────────────────────────────────────────
   What It Is (Foundation tier breakdown)
   ───────────────────────────────────────────── */
.foundation { background: var(--white); }
.foundation-grid {
  display: grid;
  gap: 28px;
}
@media (min-width: 760px) {
  .foundation-grid { grid-template-columns: repeat(3, 1fr); }
}
.foundation-card {
  background: var(--cream);
  padding: 36px 28px;
  border-top: 3px solid var(--terracotta);
}
.foundation-num {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--terracotta-deep);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.foundation-title {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.2;
}
.foundation-body {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.65;
}
.foundation-body strong { color: var(--navy); font-weight: 600; }

/* ─────────────────────────────────────────────
   Who Runs It (Marc preview)
   ───────────────────────────────────────────── */
.runner { background: var(--cream); }
.runner-grid {
  display: grid;
  gap: 56px;
  align-items: center;
}
@media (min-width: 880px) {
  .runner-grid {
    grid-template-columns: 340px 1fr;
    gap: 72px;
  }
}
.runner-photo {
  position: relative;
  background: var(--navy);
  overflow: hidden;
}
.runner-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.runner-photo::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--terracotta);
}
.runner-content h2 em {
  color: var(--terracotta);
}
.runner-credentials {
  margin: 28px 0 28px;
  padding-left: 18px;
  border-left: 3px solid var(--terracotta);
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.7;
}
.runner-credentials strong { color: var(--navy); font-weight: 600; }
.runner-cta {
  margin-top: 32px;
}
.runner-link {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terracotta);
  border-bottom: 1px solid var(--terracotta);
  padding-bottom: 3px;
  transition: color 0.2s, border-color 0.2s;
}
.runner-link:hover {
  color: var(--terracotta-deep);
  border-color: var(--terracotta-deep);
}

/* ─────────────────────────────────────────────
   Why Now (Hawaii context — terracotta callout)
   ───────────────────────────────────────────── */
.why-now { background: var(--white); }
.why-now-callout {
  background: var(--cream);
  border-left: 4px solid var(--terracotta);
  padding: 40px 44px;
  margin: 40px 0;
}
@media (max-width: 760px) {
  .why-now-callout { padding: 32px 28px; }
}
.why-now-callout-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 16px;
}
.why-now-callout p {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 17px;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 16px;
}
.why-now-callout p:last-child { margin-bottom: 0; }
.why-now-callout strong { color: var(--navy); font-weight: 600; }

.why-now-stat-row {
  display: grid;
  gap: 28px;
  margin-top: 48px;
}
@media (min-width: 760px) {
  .why-now-stat-row { grid-template-columns: repeat(3, 1fr); }
}
.why-now-stat {
  padding: 24px 0;
  border-top: 2px solid var(--terracotta);
}
.why-now-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 500;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -0.02em;
}
.why-now-stat-num em {
  color: var(--terracotta);
  font-style: italic;
  font-weight: 400;
}
.why-now-stat-label {
  margin-top: 8px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ─────────────────────────────────────────────
   Indevtech Parentage section
   ───────────────────────────────────────────── */
.parent { background: var(--cream); }
.parent-inner {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}
.parent-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 16px;
}
.parent-headline em { color: var(--gold-deep); }
.parent-body {
  font-size: 17px;
  color: var(--text-body);
  line-height: 1.75;
  margin: 28px 0;
  max-width: 740px;
  margin-left: auto;
  margin-right: auto;
}
.parent-quote {
  margin: 48px auto 0;
  max-width: 700px;
  padding: 0 32px;
  border-left: 3px solid var(--gold);
}
.parent-quote-text {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 500;
  font-style: italic;
  color: var(--navy);
  line-height: 1.3;
  text-align: left;
}
.parent-quote-text em {
  color: var(--gold-deep);
}
.parent-quote-cite {
  margin-top: 18px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  text-transform: uppercase;
  text-align: left;
}
.parent-link {
  display: inline-block;
  margin-top: 36px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-deep);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 3px;
}
.parent-link:hover { color: var(--gold); }

/* ─────────────────────────────────────────────
   CTA / Form section
   ───────────────────────────────────────────── */
.cta {
  background: var(--navy);
  color: var(--white);
  border-top: 4px solid var(--terracotta);
}
.cta-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.cta h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  font-size: clamp(36px, 4.6vw, 56px);
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}
.cta h2 em {
  font-style: italic;
  font-weight: 400;
  color: var(--terracotta-light);
}
.cta-lead {
  font-size: 19px;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 48px;
  line-height: 1.5;
}
.cta-form-wrap { text-align: left; }

.cta-form-row {
  display: grid;
  gap: 18px;
}
@media (min-width: 560px) {
  .cta-form-row { grid-template-columns: 1fr 1fr; }
}
.cta-form-row + .cta-form-row,
.cta-form-row + .cta-field,
.cta-field + .cta-form-row,
.cta-field + .cta-field { margin-top: 18px; }

.cta-field { display: grid; gap: 6px; }
.cta-field label {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}
.cta-field label .opt {
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0;
  text-transform: none;
  color: rgba(255, 255, 255, 0.45);
  margin-left: 6px;
}
.cta-field input,
.cta-field textarea {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: var(--navy);
  background: var(--cream);
  border: 1px solid var(--cream);
  padding: 13px 14px;
  width: 100%;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
}
.cta-field input:focus,
.cta-field textarea:focus {
  outline: none;
  border-color: var(--terracotta);
  box-shadow: 0 0 0 3px rgba(165, 85, 56, 0.35);
}
.cta-field textarea {
  min-height: 110px;
  resize: vertical;
}

/* Honeypot — invisible to humans, bots fill it */
.cta-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.cta-turnstile {
  margin-top: 22px;
  display: flex;
  justify-content: center;
}

.cta-submit {
  margin-top: 22px;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--terracotta);
  border: 1px solid var(--terracotta);
  padding: 18px 28px;
  cursor: pointer;
  transition: background 0.18s ease, border-color 0.18s ease;
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
}
.cta-submit:hover {
  background: var(--terracotta-light);
  border-color: var(--terracotta-light);
}
.cta-submit:disabled { opacity: 0.6; cursor: not-allowed; }

.cta-form.hidden { display: none; }
.cta-form-error {
  margin-top: 12px;
  padding: 12px 16px;
  background: rgba(180, 58, 42, 0.18);
  border-left: 3px solid #FF8A75;
  font-size: 14px;
  color: #FFD9CF;
  display: none;
  text-align: left;
}
.cta-form-error.show { display: block; }

.cta-confirm { display: none; text-align: center; }
.cta-confirm.show { display: block; }
.cta-confirm-h {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  font-size: clamp(34px, 4.4vw, 50px);
  line-height: 1.1;
  color: var(--white);
  margin: 0 0 20px 0;
  letter-spacing: -0.015em;
}
.cta-confirm-h em {
  font-style: italic;
  color: var(--terracotta-light);
  font-weight: 400;
}
.cta-confirm-body {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.6;
  margin-bottom: 8px;
}
.cta-confirm-sig {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.55);
  font-style: italic;
  margin-top: 16px;
}

.cta-urgent {
  margin-top: 32px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
}
.cta-urgent a {
  color: var(--terracotta-light);
  border-bottom: 1px dotted rgba(194, 111, 74, 0.5);
}
.cta-urgent a:hover { color: var(--white); border-color: var(--white); }

/* ─────────────────────────────────────────────
   FOOTER
   ───────────────────────────────────────────── */
footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.65);
  padding: 72px 0 32px;
  border-top: 1px solid var(--gold);  /* parent brand thread */
}
.footer-grid {
  display: grid;
  gap: 48px;
  margin-bottom: 56px;
}
@media (min-width: 880px) {
  .footer-grid {
    grid-template-columns: 1.8fr 1fr 1fr;
  }
}
.footer-brand img {
  height: 36px;
  width: auto;
  margin-bottom: 20px;
}
.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 18px;
  max-width: 420px;
}
.footer-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--terracotta-light);
}
.footer-col h4 {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 18px;
}
.footer-col ul {
  list-style: none;
  display: grid;
  gap: 10px;
}
.footer-col a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--terracotta-light); }
.footer-col p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.55);
}

.footer-bottom {
  border-top: 1px solid var(--hairline);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom-links {
  display: flex;
  gap: 20px;
}
.footer-bottom a:hover { color: rgba(255, 255, 255, 0.85); }

/* ─────────────────────────────────────────────
   ABOUT PAGE specific
   ───────────────────────────────────────────── */
.page-banner {
  background: var(--navy);
  color: var(--white);
  border-top: 4px solid var(--gold);
  padding: 160px 0 80px;
  text-align: center;
}
.page-banner-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--terracotta-light);
  margin-bottom: 20px;
}
.page-banner h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  font-size: clamp(40px, 5.4vw, 64px);
  line-height: 1.1;
  color: var(--white);
  letter-spacing: -0.02em;
}
.page-banner h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--terracotta-light);
}

.bio-section { background: var(--white); }
.bio-section.alt { background: var(--cream); }
.bio-grid {
  display: grid;
  gap: 64px;
  align-items: start;
}
@media (min-width: 880px) {
  .bio-grid {
    grid-template-columns: 380px 1fr;
    gap: 80px;
  }
}
.bio-grid.reverse {
  /* Same grid; explicit class for clarity in markup */
}
@media (min-width: 880px) {
  .bio-grid.reverse { grid-template-columns: 1fr 380px; }
  .bio-grid.reverse .bio-photo { order: 2; }
  .bio-grid.reverse .bio-content { order: 1; }
}
.bio-photo {
  background: var(--navy);
  overflow: hidden;
  position: relative;
}
.bio-photo img {
  width: 100%;
  height: auto;
  display: block;
}
.bio-photo::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--terracotta);
}
.bio-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--terracotta-deep);
  margin-bottom: 14px;
}
.bio-name {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  font-size: clamp(36px, 4vw, 48px);
  line-height: 1.1;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.bio-name em {
  font-style: italic;
  font-weight: 400;
  color: var(--terracotta);
}
.bio-role {
  font-size: 16px;
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: 28px;
}
.bio-body p {
  font-size: 17px;
  color: var(--text-body);
  line-height: 1.75;
  margin-bottom: 18px;
}
.bio-body p strong { color: var(--navy); font-weight: 600; }
.bio-pullquote {
  margin: 36px 0;
  padding-left: 22px;
  border-left: 3px solid var(--terracotta);
}
.bio-pullquote p {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 2.4vw, 26px);
  font-weight: 500;
  font-style: italic;
  color: var(--navy);
  line-height: 1.3;
}
.bio-pullquote p em {
  color: var(--terracotta);
}
.bio-pullquote-cite {
  margin-top: 14px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-style: normal;
}

/* ─────────────────────────────────────────────
   Small utilities
   ───────────────────────────────────────────── */
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0 !important; }
/* ═════════════════════════════════════════════════════════════
   APPEND THESE RULES TO assets/styles.css
   Adds styling for two new pieces:
     1. "Beyond the Foundation" panel section (homepage)
     2. Partner/prospect radio toggle (homepage form)
   ═════════════════════════════════════════════════════════════ */


/* ─────────────────────────────────────────────
   BEYOND THE FOUNDATION (engagement teaser)
   White section background, dark navy panel
   inside — high-contrast featured treatment
   between Foundation and Runner sections.
   ───────────────────────────────────────────── */
.beyond { background: var(--white); }
.beyond-panel {
  background: var(--navy);
  color: var(--white);
  padding: 64px 48px;
  border-top: 4px solid var(--terracotta);
}
@media (max-width: 760px) {
  .beyond-panel { padding: 48px 28px; }
}
.beyond-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--terracotta-light);
  margin-bottom: 16px;
}
.beyond-headline {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  font-size: clamp(30px, 3.6vw, 44px);
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 22px;
  letter-spacing: -0.02em;
  max-width: 760px;
}
.beyond-headline em {
  font-style: italic;
  font-weight: 400;
  color: var(--terracotta-light);
}
.beyond-body {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.65;
  margin-bottom: 18px;
  max-width: 760px;
}
.beyond-body strong {
  color: var(--white);
  font-weight: 600;
}
.beyond-meta {
  font-size: 14px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 28px;
  margin-bottom: 28px;
}
.beyond-meta code {
  font-family: 'Source Sans 3', sans-serif;
  font-style: normal;
  font-size: 13px;
  background: rgba(255, 255, 255, 0.08);
  padding: 2px 8px;
}
.beyond-cta { margin-top: 8px; }


/* ─────────────────────────────────────────────
   FORM — Partner / Prospect radio toggle
   Lives inside the .cta-form-wrap on dark navy
   background. Card-style radio rows so the
   choice feels like a deliberate selection,
   not a hidden form field.
   ───────────────────────────────────────────── */

/* CRITICAL — these rules override the generic
   .cta-field input and .cta-field label styling
   (which would otherwise paint radios as cream
   rectangles and uppercase the option text).
   Specificity matters here: .cta-field label is 0,1,1
   so our overrides need to be at least that specific. */
.cta-field input[type="radio"] {
  background: transparent;
  border: none;
  padding: 0;
  width: auto;
  box-shadow: none;
  -webkit-appearance: radio;
  appearance: radio;
  margin: 0;
}
.cta-field input[type="radio"]:focus {
  outline: 2px solid var(--terracotta-light);
  outline-offset: 2px;
  box-shadow: none;
  border-color: transparent;
}
.cta-field label.cta-radio {
  /* Reset inherited .cta-field label styling — specificity 0,2,1 */
  text-transform: none;
  letter-spacing: normal;
  font-weight: 400;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.88);
}
.cta-field label.cta-radio span {
  text-transform: none;
  letter-spacing: normal;
  font-weight: 400;
}

.cta-radio-group {
  display: grid;
  gap: 10px;
  margin-top: 4px;
}
.cta-radio {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  background: rgba(245, 240, 232, 0.06);
  border: 1px solid rgba(245, 240, 232, 0.15);
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}
.cta-radio:hover {
  border-color: rgba(194, 111, 74, 0.5);
  background: rgba(245, 240, 232, 0.10);
}
.cta-radio input[type="radio"] {
  margin-top: 3px;
  accent-color: var(--terracotta-light);
  flex-shrink: 0;
}
.cta-radio span {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.45;
}
.cta-radio input[type="radio"]:checked + span {
  color: var(--white);
}
/* ═════════════════════════════════════════════════════════════
   APPEND THESE RULES TO assets/styles.css
   Adds the cream sub-nav bar below the main nav.
   Pattern mirrors indevtech.com's BSL promotion strip.
   ═════════════════════════════════════════════════════════════ */


/* ─────────────────────────────────────────────
   SUB-NAV — parent credit + BSL plug
   Cream bar that sits directly below the main
   nav. Not sticky — scrolls away naturally so
   it doesn't compete with the sticky nav for
   vertical real estate during scroll.
   ───────────────────────────────────────────── */
.sub-nav {
  background: var(--cream);
  border-bottom: 1px solid rgba(11, 29, 58, 0.06);
  font-family: 'Source Sans 3', sans-serif;
  /* No margin-top needed — .site-header is position:fixed and
     contains both .nav and .sub-nav, so they stack naturally. */
}

.sub-nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  gap: 24px;
  flex-wrap: wrap;
}

/* Left side — "A Practice by Indevtech ↗" */
.sub-nav-credit {
  color: var(--terracotta);
  text-decoration: none;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color 0.15s;
  white-space: nowrap;
  flex-shrink: 0;
}
.sub-nav-credit:hover {
  color: var(--terracotta-deep);
}
.sub-nav-arrow {
  font-size: 13px;
  position: relative;
  top: -1px;
}

/* Right side — BSL plug, eyebrow + tagline */
.sub-nav-bsl {
  color: var(--navy);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: color 0.15s;
  font-size: 13px;
  line-height: 1.4;
  min-width: 0;
}
.sub-nav-bsl:hover .sub-nav-bsl-tagline {
  border-bottom-color: var(--terracotta);
}
.sub-nav-bsl-label {
  color: var(--terracotta);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
}
.sub-nav-bsl-divider {
  color: rgba(11, 29, 58, 0.3);
  font-weight: 400;
  flex-shrink: 0;
}
.sub-nav-bsl-tagline {
  font-style: italic;
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  color: var(--navy);
  font-size: 14px;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 1px;
  transition: border-bottom-color 0.15s;
}

/* Mobile — stack the two pieces vertically, hide BSL tagline */
@media (max-width: 880px) {
  .sub-nav-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding: 10px 0;
  }
}
@media (max-width: 580px) {
  .sub-nav-bsl-tagline {
    display: none;
  }
  .sub-nav-bsl::after {
    content: '→';
    color: var(--navy);
    font-size: 14px;
    margin-left: 4px;
  }
}
