/* ============================================================
   SAVIONAI WEBSITE — v2
   Color System:
   Philip layer  → Charcoal #2B2F33 / White
   Savionai layer → Blue #243974 / Yellow #F2CD49
   CRAFT layer   → Orange #FF8201 / Ember #E03800
   Connective    → White / Light Grey #EFEFEF
   ============================================================ */

/* RESET & BASE */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Georgia', 'Times New Roman', serif;
  color: #2B2F33;
  background: #fff;
  line-height: 1.7;
}

/* TYPE SCALE */
h1 { font-size: clamp(2rem, 5vw, 3.5rem); line-height: 1.15; font-weight: 700; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); line-height: 1.2; font-weight: 700; letter-spacing: -0.01em; }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); line-height: 1.3; font-weight: 700; }
p  { font-size: clamp(1rem, 1.5vw, 1.1rem); line-height: 1.8; }

/* UTILITIES */
.container { max-width: 900px; margin: 0 auto; padding: 0 24px; }
.container--wide { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

.eyebrow {
  font-family: 'Arial', 'Helvetica Neue', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  display: block;
}

.yellow { color: #F2CD49; }
.orange { color: #FF8201; }
.ember  { color: #E03800; }

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: 'Arial', 'Helvetica Neue', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 3px;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s;
  border: none;
}
.btn:hover { opacity: 0.88; transform: translateY(-1px); }

.btn--yellow { background: #F2CD49; color: #2B2F33; }
.btn--orange { background: #FF8201; color: #fff; }
.btn--white-outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.6); }
.btn--charcoal-outline { background: transparent; color: #2B2F33; border: 2px solid #2B2F33; }

.link-white {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-family: 'Arial', 'Helvetica Neue', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.35);
  padding-bottom: 1px;
  transition: color 0.2s, border-color 0.2s;
}
.link-white:hover { color: #fff; border-color: #fff; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: #243974;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 0 24px;
}
.nav__inner {
  max-width: 1100px;
  margin: 0 auto;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
/* Wordmark image in a white pill badge — handles PNG with white background gracefully */
.nav__logo-badge {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 6px;
  padding: 5px 12px;
  line-height: 0;
}
.nav__wordmark-img {
  height: 28px;
  width: auto;
  display: block;
}
/* Fallback text — only shown if badge/img not present */
.nav__logo-wordmark {
  font-family: 'Arial', 'Helvetica Neue', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.nav__logo-wordmark span { color: #F2CD49; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}
.nav__links a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-family: 'Arial', 'Helvetica Neue', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav__links a:hover { color: #F2CD49; }
.nav__cta {
  background: #F2CD49;
  color: #2B2F33 !important;
  padding: 8px 18px;
  border-radius: 3px;
  font-weight: 700 !important;
}
.nav__cta:hover { opacity: 0.88; color: #2B2F33 !important; }

.nav__hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.nav__mobile {
  display: none;
  background: #243974;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 16px 24px 24px;
}
.nav__mobile.is-open { display: block; }
.nav__mobile a {
  display: block;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-family: 'Arial', 'Helvetica Neue', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav__mobile a:last-child { border-bottom: none; }

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
}

/* ============================================================
   SECTION 1 — HERO
   ============================================================ */
.hero {
  background: #243974;
  padding: 140px 24px 100px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(242,205,73,0.06) 0%, transparent 65%);
  pointer-events: none;
}
.hero__inner {
  max-width: 860px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}
.hero__eyebrow {
  font-family: 'Arial', 'Helvetica Neue', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 36px;
}
.hero__headline {
  font-family: 'Playfair Display', Georgia, serif;
  text-align: center;
  width: 100%;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
}
.headline-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.headline-line {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(42px, 7vw, 80px);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.15;
  letter-spacing: -0.02em;
  display: block;
}
.verb-line {
  display: flex;
  align-items: center;
  justify-content: center;
  /* height locked by JS on load to prevent vertical layout shift */
}
.verb {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(52px, 9vw, 100px);
  font-weight: 700;
  color: #F2CD49;
  letter-spacing: -0.03em;
  line-height: 1.05;
  white-space: nowrap;
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.verb.fade-out {
  opacity: 0;
  transform: translateY(-10px);
}
.verb.fade-in {
  opacity: 1;
  transform: translateY(0);
}
.hero__sub {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(16px, 2.2vw, 20px);
  font-weight: 400;
  line-height: 1.65;
  color: rgba(255,255,255,0.72);
  max-width: 620px;
  margin-top: 32px;
  text-align: center;
}
.hero__ctas {
  margin-top: 44px;
  display: flex;
  justify-content: center;
}
.verb-dots {
  display: flex;
  gap: 8px;
  margin-top: 52px;
  justify-content: center;
}
.verb-dots .dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  transition: background 0.3s ease, transform 0.3s ease;
  cursor: pointer;
  border: none;
  padding: 0;
  display: block;
}
.verb-dots .dot.active {
  background: #F2CD49;
  transform: scale(1.3);
}

@media (max-width: 768px) {
  .hero { padding: 110px 24px 80px; min-height: auto; }
}

/* ============================================================
   SECTION 2 — THE TWO PROBLEMS
   ============================================================ */
.two-problems {
  background: #fff;
  padding: 100px 24px;
}
.two-problems__intro {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 80px;
  font-family: 'Arial', 'Helvetica Neue', sans-serif;
  font-size: 0.9rem;
  color: #555;
  letter-spacing: 0.04em;
  line-height: 1.7;
}
.two-problems__grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.problem {
  padding: 48px 44px 52px;
  border-top: 4px solid #2B2F33;
  background: #EFEFEF;
}
.problem__label {
  font-family: 'Arial', 'Helvetica Neue', sans-serif;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 20px;
}
.problem h3 {
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  margin-bottom: 24px;
  color: #2B2F33;
  line-height: 1.35;
}
.problem p { color: #333; font-size: 1rem; line-height: 1.82; }
.problem p + p { margin-top: 18px; }

.two-problems__bridge {
  max-width: 680px;
  margin: 72px auto 0;
  text-align: center;
  padding: 40px;
  border-left: 4px solid #2B2F33;
  text-align: left;
  background: #EFEFEF;
}
.two-problems__bridge p {
  color: #2B2F33;
  font-style: italic;
  font-size: clamp(1rem, 1.4vw, 1.1rem);
  line-height: 1.8;
}

@media (max-width: 768px) {
  .two-problems__grid { grid-template-columns: 1fr; gap: 32px; }
  .problem { padding: 36px 28px 40px; }
  .two-problems__bridge { margin-top: 48px; }
}

/* ============================================================
   SECTION 3 — THE GAP
   ============================================================ */
.the-gap {
  background: #2B2F33;
  padding: 100px 24px;
}
.the-gap .container { max-width: 800px; }
.the-gap h2 { color: #fff; margin-bottom: 48px; }
.the-gap__body p {
  color: rgba(255,255,255,0.78);
  margin-bottom: 28px;
  font-size: clamp(1rem, 1.4vw, 1.1rem);
  line-height: 1.85;
}
.the-gap__body strong { color: #fff; font-weight: 700; }
.the-gap__closer {
  margin-top: 56px;
  padding: 36px 40px;
  border-left: 4px solid #F2CD49;
  background: rgba(242,205,73,0.06);
}
.the-gap__closer p {
  color: rgba(255,255,255,0.92) !important;
  font-size: clamp(1.05rem, 1.5vw, 1.15rem) !important;
  margin: 0 !important;
  font-style: italic;
}

@media (max-width: 768px) {
  .the-gap__closer { padding: 28px 24px; }
}

/* ============================================================
   SECTION 4 — SAVIONAI
   ============================================================ */
.savionai-section {
  background: #243974;
  padding: 100px 24px;
  position: relative;
  overflow: hidden;
}
.savionai-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 60%, rgba(242,205,73,0.05) 0%, transparent 60%);
  pointer-events: none;
}
.savionai-section .eyebrow { color: #F2CD49; }
.savionai-section h2 { color: #fff; margin-bottom: 40px; max-width: 700px; }
.savionai-section__body p {
  color: rgba(255,255,255,0.8);
  margin-bottom: 26px;
  font-size: clamp(1rem, 1.4vw, 1.1rem);
  line-height: 1.85;
}
.savionai-section__body strong { color: #F2CD49; }

.savionai-outcomes {
  margin: 52px 0;
  padding: 40px 44px;
  background: rgba(242,205,73,0.07);
  border-radius: 0 4px 4px 0;
  border: 1px solid rgba(242,205,73,0.2);
  border-left: 4px solid #F2CD49;
}
.savionai-outcomes h3 {
  color: #F2CD49;
  font-family: 'Arial', 'Helvetica Neue', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 28px;
}
.savionai-outcomes ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.savionai-outcomes li {
  display: flex;
  gap: 16px;
  color: rgba(255,255,255,0.82);
  font-size: clamp(0.95rem, 1.3vw, 1.05rem);
  line-height: 1.7;
}
.savionai-outcomes li::before {
  content: '→';
  color: #F2CD49;
  flex-shrink: 0;
  font-weight: 700;
  margin-top: 1px;
}

/* Brand Pillars */
.brand-pillars {
  margin: 52px 0 44px;
  padding: 40px 44px;
  border-left: 4px solid #F2CD49;
  background: rgba(242,205,73,0.05);
}
.brand-pillars__title {
  font-family: 'Arial', 'Helvetica Neue', sans-serif;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #F2CD49;
  margin-bottom: 16px;
}
.brand-pillars__sub {
  color: rgba(255,255,255,0.78);
  font-size: clamp(0.95rem, 1.3vw, 1.05rem);
  line-height: 1.8;
  margin: 0;
}
@media (max-width: 768px) {
  .brand-pillars { padding: 28px 24px; }
}

.savionai-pullquote {
  margin: 52px 0 44px;
  padding: 36px 44px;
  border-left: 4px solid #F2CD49;
}
.savionai-pullquote p {
  color: rgba(255,255,255,0.9) !important;
  font-size: clamp(1.1rem, 1.6vw, 1.3rem) !important;
  font-style: italic;
  line-height: 1.6 !important;
  margin: 0 !important;
}

@media (max-width: 768px) {
  .savionai-outcomes { padding: 28px 24px; }
  .savionai-pullquote { padding: 28px 24px; }
}

/* ============================================================
   SECTION 5 — CRAFT THINKING™
   ============================================================ */
.craft-section {
  background: #fff;
  padding: 100px 24px;
  border-top: 6px solid #FF8201;
}
.craft-section .eyebrow { color: #E03800; }
.craft-section h2 { color: #2B2F33; margin-bottom: 12px; }
.craft-subhead {
  font-family: 'Arial', 'Helvetica Neue', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #FF8201;
  margin-bottom: 40px;
  text-transform: uppercase;
}
.craft-section__intro {
  display: flex;
  align-items: flex-start;
  gap: 48px;
}
.craft-section__intro-text {
  flex: 1;
}
.craft-section__intro p {
  color: #333;
  font-size: clamp(1rem, 1.4vw, 1.1rem);
  margin-bottom: 22px;
  line-height: 1.82;
}
.craft-section__cover {
  flex-shrink: 0;
  width: 170px;
}
.craft-cover-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
  /* Lift the 3D render off the white background */
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.22)) drop-shadow(0 2px 6px rgba(0,0,0,0.12));
  transition: filter 0.2s, transform 0.2s;
}
.craft-section__cover a:hover .craft-cover-img {
  filter: drop-shadow(0 12px 32px rgba(0,0,0,0.28)) drop-shadow(0 2px 8px rgba(0,0,0,0.14));
  transform: translateY(-3px);
}
@media (max-width: 680px) {
  .craft-section__intro {
    flex-direction: column-reverse; /* cover above intro text on mobile */
    gap: 28px;
  }
  .craft-section__cover {
    width: 130px;  /* smaller on mobile */
  }
}

.craft-levels {
  margin: 56px 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: #eee;
  border: 2px solid #eee;
  border-radius: 4px;
  overflow: hidden;
}
.craft-level {
  background: #fff;
  padding: 36px 32px;
  position: relative;
}
.craft-level__number {
  font-family: 'Arial', 'Helvetica Neue', sans-serif;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #FF8201;
  margin-bottom: 8px;
}
.craft-level h3 {
  font-size: 1.05rem;
  color: #2B2F33;
  margin-bottom: 14px;
}
.craft-level__tag {
  display: inline-block;
  background: #FF8201;
  color: #fff;
  font-family: 'Arial', sans-serif;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 2px;
  margin-bottom: 14px;
}
.craft-level p { color: #444; font-size: 0.95rem; line-height: 1.75; }

.craft-result {
  margin: 48px 0 56px;
  padding: 36px 40px;
  background: #2B2F33;
  border-radius: 4px;
}
.craft-result p {
  color: rgba(255,255,255,0.9);
  font-style: italic;
  font-size: clamp(1.05rem, 1.5vw, 1.15rem);
  line-height: 1.7;
  margin: 0;
}
.craft-result strong { color: #FF8201; }

/* Social proof */
.craft-testimonials {
  margin: 0 0 52px;
}
.craft-testimonials h3 {
  font-family: 'Arial', 'Helvetica Neue', sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 32px;
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial {
  padding: 28px 24px;
  background: #EFEFEF;
  border-radius: 3px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.testimonial::before {
  content: '"';
  font-family: Georgia, serif;
  font-size: 4rem;
  color: #FF8201;
  line-height: 1;
  position: absolute;
  top: 12px;
  left: 18px;
  opacity: 0.3;
}
.testimonial p {
  font-size: 0.92rem;
  color: #333;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 16px;
  padding-top: 16px;
  flex: 1; /* pushes all attributions to the same bottom baseline */
}
.testimonial__attribution {
  font-family: 'Arial', 'Helvetica Neue', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: #2B2F33;
  line-height: 1.5;
}
.testimonial__attribution span {
  display: block;
  font-weight: 400;
  color: #666;
  margin-top: 2px;
}

.craft-badge {
  margin-bottom: 48px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: #EFEFEF;
  border-radius: 3px;
}
.craft-badge__star { color: #FF8201; font-size: 1rem; }
.craft-badge p {
  font-family: 'Arial', 'Helvetica Neue', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  color: #2B2F33;
  margin: 0;
  line-height: 1.4;
}

.craft-ctas { display: flex; gap: 16px; flex-wrap: wrap; }

@media (max-width: 900px) {
  .craft-levels { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .craft-level { padding: 28px 20px; }
}

/* ============================================================
   SECTION 6 — WHO THIS IS FOR
   ============================================================ */
.who-section {
  background: #EFEFEF;
  padding: 100px 24px;
}
.who-section h2 { margin-bottom: 44px; color: #2B2F33; }
.who-section__body p {
  color: #333;
  font-size: clamp(1rem, 1.4vw, 1.1rem);
  margin-bottom: 28px;
  line-height: 1.85;
}
.who-section__close {
  margin: 48px 0 0;
  font-size: clamp(1.05rem, 1.5vw, 1.2rem) !important;
  font-weight: 700;
  color: #2B2F33 !important;
}
.who-section__exclusion {
  margin-top: 48px;
  padding: 28px 32px;
  border: 1px solid #ccc;
  background: #fff;
  border-radius: 3px;
}
.who-section__exclusion p {
  font-size: 0.9rem !important;
  color: #666 !important;
  margin: 0 !important;
  font-style: italic;
  line-height: 1.7;
}

/* ============================================================
   SECTION 7 — ABOUT PHILIP TOPHAM
   ============================================================ */
.about-section {
  background: #fff;
  padding: 100px 24px;
}
.about-section__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 72px;
  align-items: start;
}
.about-section .eyebrow { color: #888; }
.about-section h2 { color: #2B2F33; margin-bottom: 36px; }
.about-section__body p {
  color: #333;
  font-size: clamp(1rem, 1.4vw, 1.1rem);
  margin-bottom: 24px;
  line-height: 1.85;
}

.about-endorsements {
  margin-top: 52px;
}
.about-endorsements h3 {
  font-family: 'Arial', 'Helvetica Neue', sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 28px;
}
.endorsement {
  padding: 24px 0;
  border-top: 1px solid #ddd;
}
.endorsement p {
  font-size: 0.95rem !important;
  color: #444;
  font-style: italic;
  margin-bottom: 10px !important;
  line-height: 1.72 !important;
}
.endorsement__name {
  font-family: 'Arial', 'Helvetica Neue', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  color: #2B2F33;
  line-height: 1.5;
}
.endorsement__name span {
  display: block;
  font-weight: 400;
  color: #666;
  margin-top: 2px;
}

.about-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: 88px;
}
.about-photo-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: #EFEFEF;
  border: 2px dashed #ccc;
  border-radius: 3px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #aaa;
  font-family: 'Arial', sans-serif;
  font-size: 0.78rem;
  text-align: center;
  gap: 8px;
}
.about-photo img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
  border-radius: 3px;
  display: block;
  /* Clip the black background to a tight border so it reads as intentional */
  box-shadow: 0 0 0 1px rgba(0,0,0,0.08);
}
.about-associations {
  padding: 20px;
  background: #EFEFEF;
  border-radius: 3px;
}
.about-associations p {
  font-family: 'Arial', 'Helvetica Neue', sans-serif;
  font-size: 0.78rem !important;
  color: #555 !important;
  line-height: 1.65 !important;
  margin: 0 !important;
}
.about-associations strong { color: #2B2F33; }

@media (max-width: 900px) {
  .about-section__inner { grid-template-columns: 1fr; }
  .about-sidebar { position: static; }
  .about-photo-placeholder { max-width: 300px; }
}

/* ============================================================
   SECTION 8 — WAYS TO ENGAGE
   ============================================================ */
.engage-section {
  background: #243974;
  padding: 100px 24px 80px;
  position: relative;
  overflow: hidden;
}
.engage-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 30%, rgba(242,205,73,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.engage-section h2 { color: #fff; text-align: center; margin-bottom: 64px; }

.engage-cards {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.engage-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 4px;
  padding: 44px 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.engage-card__label {
  font-family: 'Arial', 'Helvetica Neue', sans-serif;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #F2CD49;
}
.engage-card h3 {
  font-size: 1.2rem;
  color: #fff;
  line-height: 1.25;
}
.engage-card p {
  color: rgba(255,255,255,0.72);
  font-size: 0.95rem;
  line-height: 1.75;
  flex: 1;
}
.engage-card .btn,
.engage-card__btn {
  text-align: center;
  align-self: stretch; /* fills the card width */
}

.engage-footer {
  max-width: 1100px;
  margin: 64px auto 0;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.engage-footer__substack p {
  color: rgba(255,255,255,0.65);
  font-family: 'Arial', 'Helvetica Neue', sans-serif;
  font-size: 0.85rem;
  line-height: 1.6;
}
.engage-footer__substack strong { color: rgba(255,255,255,0.9); }
.engage-footer__legal {
  font-family: 'Arial', 'Helvetica Neue', sans-serif;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  text-align: right;
}

@media (max-width: 900px) {
  .engage-cards { grid-template-columns: 1fr; max-width: 560px; }
  .engage-footer { flex-direction: column; align-items: flex-start; }
  .engage-footer__legal { text-align: left; }
}

/* ============================================================
   ASSET PLACEHOLDER HELPER
   ============================================================ */
.asset-placeholder {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  background: rgba(255,193,7,0.12);
  border: 1px dashed rgba(255,193,7,0.5);
  border-radius: 3px;
  font-family: monospace;
  font-size: 0.7rem;
  color: rgba(255,193,7,0.8);
  vertical-align: middle;
}

/* ============================================================
   RESPONSIVE — GLOBAL
   ============================================================ */
@media (max-width: 600px) {
  .hero { padding-top: 96px; }
  .two-problems, .the-gap, .savionai-section,
  .craft-section, .who-section, .about-section,
  .engage-section { padding-top: 72px; padding-bottom: 72px; }
  .craft-ctas { flex-direction: column; }
}

/* ============================================================
   SPEAKING INQUIRY MODAL
   ============================================================ */
.modal {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal[hidden] { display: none; }

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15,22,40,0.72);
  backdrop-filter: blur(3px);
  cursor: pointer;
}

.modal__panel {
  position: relative;
  background: #fff;
  border-radius: 10px;
  width: 100%;
  max-width: 640px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 48px 48px 40px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.35);
  animation: modalIn 0.22s ease;
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(16px) scale(0.98); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border: none;
  background: transparent;
  color: #888;
  cursor: pointer;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, color 0.15s;
}
.modal__close:hover { background: #f0f0f0; color: #2B2F33; }

.modal__header { margin-bottom: 28px; }
.modal__header h3 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #2B2F33;
  margin: 6px 0 10px;
  line-height: 1.2;
}
.modal__intro {
  font-size: 0.93rem;
  color: #555;
  line-height: 1.6;
  margin: 0;
}

/* Form layout */
.speaking-form { display: flex; flex-direction: column; gap: 16px; }
.speaking-form__honeypot { display: none !important; }

.form-row { display: flex; gap: 16px; }
.form-row--2col .form-field { flex: 1; }

.form-field {
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex: 1;
}
.form-field label {
  font-size: 0.8rem;
  font-weight: 600;
  color: #2B2F33;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.form-field label span { color: #E03800; margin-left: 2px; }
.form-field input,
.form-field select,
.form-field textarea {
  border: 1.5px solid #d4d8de;
  border-radius: 5px;
  padding: 10px 14px;
  font-size: 0.95rem;
  color: #2B2F33;
  background: #fff;
  font-family: inherit;
  transition: border-color 0.15s, box-shadow 0.15s;
  width: 100%;
  box-sizing: border-box;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: #243974;
  box-shadow: 0 0 0 3px rgba(36,57,116,0.12);
}
.form-field textarea { resize: vertical; min-height: 100px; }
.form-field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }

.form-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 8px;
}
.btn--blue {
  background: #243974;
  color: #fff;
  border: none;
  padding: 13px 28px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 3px;
  cursor: pointer;
  transition: background 0.18s;
}
.btn--blue:hover { background: #1a2b5e; }
.btn--text-cancel {
  background: none;
  border: none;
  color: #888;
  font-size: 0.88rem;
  cursor: pointer;
  text-decoration: underline;
  padding: 0;
  font-family: inherit;
}
.btn--text-cancel:hover { color: #2B2F33; }

/* Success state */
.speaking-form__success {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  padding: 20px 0;
}
.speaking-form__success[hidden] { display: none; }
.speaking-form__success h3 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.5rem;
  color: #2B2F33;
  margin: 0;
}
.speaking-form__success p { color: #555; margin: 0; }

/* Body scroll lock when modal open */
body.modal-open { overflow: hidden; }

@media (max-width: 600px) {
  .modal__panel { padding: 36px 24px 28px; }
  .form-row--2col { flex-direction: column; }
}

/* ============================================================
   SECTION — RESOURCES (The Shift. Lift. / Three Speeds of AI)
   ============================================================ */
.resources-section {
  background: #fff;
  padding: 96px 0 88px;
  border-top: 1px solid #EFEFEF;
}

.resources-section .eyebrow { color: #243974; }
.resources-section h2 { margin-bottom: 32px; max-width: 700px; }

.resources-intro {
  max-width: 660px;
  margin-bottom: 52px;
}
.resources-intro p {
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  line-height: 1.85;
  color: #2B2F33;
}

/* Article list */
.series-articles {
  margin-bottom: 60px;
}
.series-articles__label {
  font-family: 'Arial', 'Helvetica Neue', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #243974;
  margin-bottom: 20px;
}

.article-list {
  list-style: none;
  counter-reset: article-counter;
  border-top: 1px solid #EFEFEF;
  margin-bottom: 16px;
}
.article-list li {
  counter-increment: article-counter;
  display: grid;
  grid-template-columns: 2.25rem 1fr;
  gap: 0 16px;
  padding: 20px 0;
  border-bottom: 1px solid #EFEFEF;
  align-items: start;
}
.article-list li::before {
  content: counter(article-counter);
  font-family: 'Arial', 'Helvetica Neue', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: #243974;
  opacity: 0.35;
  padding-top: 4px;
  line-height: 1;
}
.article-list__item {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.article-list__title {
  font-size: 1rem;
  font-weight: 700;
  color: #243974;
  text-decoration: none;
  line-height: 1.4;
  font-family: 'Georgia', 'Times New Roman', serif;
  border-bottom: 1px solid transparent;
  transition: border-color 0.15s;
  width: fit-content;
}
.article-list__title:hover {
  border-bottom-color: #243974;
}
.article-list__sub {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.5;
  font-family: 'Georgia', 'Times New Roman', serif;
  font-style: italic;
}
.article-list__note {
  font-family: 'Arial', 'Helvetica Neue', sans-serif;
  font-size: 0.8rem;
  color: #999;
  margin-top: 4px;
}

/* Assessment CTA card */
.assessment-cta {
  margin-top: 8px;
  border-top: 3px solid #F2CD49;
  padding-top: 48px;
}
.assessment-cta__content {
  background: #243974;
  border-radius: 8px;
  padding: 48px 52px;
  max-width: 660px;
}
.assessment-cta__eyebrow {
  font-family: 'Arial', 'Helvetica Neue', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #F2CD49;
  margin-bottom: 14px;
  display: block;
}
.assessment-cta__content h3 {
  color: #fff;
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
  margin-bottom: 14px;
}
.assessment-cta__content p {
  color: rgba(255,255,255,0.78);
  font-size: clamp(0.95rem, 1.4vw, 1.05rem);
  line-height: 1.75;
  margin-bottom: 28px;
}

@media (max-width: 700px) {
  .assessment-cta__content { padding: 36px 28px; }
  .article-list li { grid-template-columns: 1.75rem 1fr; }
}
