/* ============================================================
   Mindful Business Alliance — Site Stylesheet v2
   Built to MBA Brand Colour Guide v1.0
   Headlines: Georgia Pro / Georgia (bold) · Body: Public Sans
   ============================================================ */

:root {
  /* Atmospheric ramp */
  --frost: #EEF2FA;
  --lavender: #C4B8E8;
  --dusk: #9B91E0;
  --clarity: #7F77DD;
  --violet: #5E56B8;
  --nightfall: #3B3696;
  --eclipse: #2A2878;
  --deep-sky: #16398F;
  --abyss: #0E245A;
  --aurora: #762A9B;
  /* Material ramp */
  --chalk: #FAF9F7;
  --parchment: #F0ECE3;
  --linen: #DDD6C8;
  --sand: #BFB8A8;
  --stone: #9A9080;
  --flint: #6E6658;
  --slate: #4A4438;
  --charcoal: #2E2820;
  --ink: #1A1410;

  --serif: "Georgia Pro", Georgia, "Times New Roman", serif;
  --sans: "Public Sans", -apple-system, "Helvetica Neue", Arial, sans-serif;
  --maxw: 1200px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--chalk);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--lavender); color: var(--abyss); }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 700;
  line-height: 1.08;
  color: var(--ink);
  letter-spacing: -0.015em;
}

h1 { font-size: clamp(2.2rem, 4.3vw, 3.4rem); line-height: 1.14; }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); margin-bottom: 28px; }
h3 { font-size: 1.4rem; margin-bottom: 12px; line-height: 1.25; }

p { margin-bottom: 1.25em; }
p:last-child { margin-bottom: 0; }

a { color: var(--clarity); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--violet); }

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

/* Headline emphasis — bold italic, coloured (deck house style) */
h1 em, h2 em, h3 em, .display em { font-style: italic; font-weight: 700; }
.em-aurora { color: var(--aurora); }
.em-clarity { color: var(--clarity); }
.em-lavender { color: var(--lavender); }

/* ---------- Layout primitives ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 32px; }
.wrap-narrow { max-width: 880px; margin: 0 auto; padding: 0 32px; }
.section { padding: 130px 0; position: relative; }
.section.tight { padding: 88px 0; }
.bg-parchment { background: var(--parchment); }
.bg-frost { background: var(--frost); }
.bg-deep-sky { background: var(--deep-sky); color: #fff; }
.bg-deep-sky h1, .bg-deep-sky h2, .bg-deep-sky h3 { color: #fff; }
.bg-deep-sky p { color: var(--lavender); }
.bg-nightfall { background: var(--nightfall); color: #fff; }
.bg-nightfall h2, .bg-nightfall h3 { color: #fff; }
.bg-nightfall p { color: var(--lavender); }

.label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--clarity);
  margin-bottom: 22px;
}
.label::before {
  content: "";
  width: 34px; height: 2px;
  background: var(--clarity);
  display: inline-block;
}
.bg-deep-sky .label, .bg-nightfall .label, .on-dark .label { color: var(--lavender); }
.bg-deep-sky .label::before, .bg-nightfall .label::before, .on-dark .label::before { background: var(--lavender); }

.lede { font-size: clamp(1.15rem, 1.8vw, 1.35rem); line-height: 1.6; max-width: 44em; font-weight: 400; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal.d1 { transition-delay: .12s; }
.reveal.d2 { transition-delay: .24s; }
.reveal.d3 { transition-delay: .36s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- Nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(250, 249, 247, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--linen);
}
.nav-inner {
  max-width: var(--maxw); margin: 0 auto; padding: 0 32px;
  display: flex; align-items: center; justify-content: space-between;
  height: 84px;
  transition: height .35s var(--ease);
}
.nav.scrolled .nav-inner { height: 68px; }
.nav-logo { display: flex; align-items: center; }
.nav-logo img { height: 42px; width: auto; display: block; }
.nav-logo .logo-dark { display: none; }
.nav.scrolled .logo-light, .nav.on-light .logo-light { display: none; }
.nav.scrolled .logo-dark, .nav.on-light .logo-dark { display: block; }
.nav-links { display: flex; align-items: center; gap: 30px; list-style: none; }
.nav-links a {
  font-size: 0.9rem; font-weight: 500; color: rgba(255,255,255,0.85);
  transition: color .35s var(--ease);
  position: relative;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -6px;
  width: 0; height: 2px; background: currentColor;
  transition: width .25s var(--ease);
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a:hover { color: #fff; }
.nav-links a.active { color: #fff; font-weight: 700; }
.nav.scrolled .nav-links a, .nav.on-light .nav-links a { color: var(--slate); }
.nav.scrolled .nav-links a:hover, .nav.scrolled .nav-links a.active,
.nav.on-light .nav-links a:hover, .nav.on-light .nav-links a.active { color: var(--deep-sky); }
.nav-cta {
  border: 1.5px solid rgba(255,255,255,0.5); border-radius: 100px;
  padding: 9px 24px; color: #fff !important; font-weight: 700 !important;
  transition: all .25s var(--ease) !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: #fff; color: var(--deep-sky) !important; border-color: #fff; }
.nav.scrolled .nav-cta, .nav.on-light .nav-cta {
  border-color: var(--deep-sky); color: var(--deep-sky) !important;
}
.nav.scrolled .nav-cta:hover, .nav.on-light .nav-cta:hover {
  background: var(--deep-sky); color: #fff !important;
}
.nav-toggle {
  display: none; background: none; border: 0; cursor: pointer;
  width: 44px; height: 44px; position: relative; z-index: 110;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; display: block; width: 24px; height: 2px;
  background: #fff; position: absolute; left: 10px;
  transition: all .3s var(--ease);
}
.nav.scrolled .nav-toggle span, .nav.scrolled .nav-toggle span::before, .nav.scrolled .nav-toggle span::after,
.nav.on-light .nav-toggle span, .nav.on-light .nav-toggle span::before, .nav.on-light .nav-toggle span::after { background: var(--deep-sky); }
.nav-toggle span { top: 21px; }
.nav-toggle span::before { top: -8px; left: 0; }
.nav-toggle span::after { top: 8px; left: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--sans); font-weight: 700;
  font-size: 1rem; padding: 17px 38px; border-radius: 100px;
  cursor: pointer; border: 0; transition: all .28s var(--ease);
  position: relative;
}
.btn .arrow { transition: transform .28s var(--ease); }
.btn:hover .arrow { transform: translateX(5px); }
.btn-primary { background: var(--aurora); color: #fff; box-shadow: 0 12px 32px rgba(118, 42, 155, 0.35); }
.btn-primary:hover { background: #611f80; color: #fff; transform: translateY(-2px); box-shadow: 0 18px 44px rgba(118, 42, 155, 0.42); }
.btn-secondary { background: var(--clarity); color: #fff; box-shadow: 0 12px 32px rgba(127, 119, 221, 0.3); }
.btn-secondary:hover { background: var(--violet); color: #fff; transform: translateY(-2px); }
.btn-outline-light { border: 1.5px solid rgba(255,255,255,0.45); color: #fff; background: transparent; }
.btn-outline-light:hover { background: rgba(255,255,255,0.1); border-color: #fff; color: #fff; }
.btn-outline { border: 1.5px solid var(--deep-sky); color: var(--deep-sky); background: transparent; }
.btn-outline:hover { background: var(--deep-sky); color: #fff; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background:
    radial-gradient(ellipse 60% 55% at 78% 18%, rgba(118, 42, 155, 0.5) 0%, rgba(118, 42, 155, 0) 62%),
    radial-gradient(ellipse 55% 65% at 12% 88%, rgba(59, 54, 150, 0.65) 0%, rgba(59, 54, 150, 0) 60%),
    linear-gradient(155deg, var(--abyss) 0%, var(--deep-sky) 48%, var(--eclipse) 100%);
  color: #fff;
  overflow: hidden;
}
.hero-inner {
  max-width: var(--maxw); margin: 0 auto; padding: 130px 32px 96px;
  display: grid; grid-template-columns: 11fr 9fr; gap: 72px; align-items: center;
  position: relative; z-index: 2;
  width: 100%;
}
/* Interior page hero — shorter, editorial */
.hero.short { min-height: 0; }
.hero.short .hero-inner { padding: 150px 32px 88px; align-items: center; }
.hero.short .hero-visual .frame { aspect-ratio: 4 / 4.2; }
.hero h1 { color: #fff; margin-bottom: 30px; }
.hero .lede { color: var(--lavender); }
.hero-kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.76rem; font-weight: 700; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--lavender);
  border: 1px solid rgba(196, 184, 232, 0.35);
  border-radius: 100px;
  padding: 9px 20px;
  margin-bottom: 34px;
}
.hero-kicker::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: var(--clarity);
  box-shadow: 0 0 12px var(--clarity);
}
.hero-actions { margin-top: 44px; display: flex; gap: 18px; flex-wrap: wrap; align-items: center; }
.hero-scroll {
  position: absolute; bottom: 34px; left: 50%; transform: translateX(-50%);
  font-size: 0.72rem; letter-spacing: 0.26em; text-transform: uppercase;
  color: rgba(196, 184, 232, 0.7); z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.hero-scroll::after {
  content: ""; width: 1.5px; height: 44px;
  background: linear-gradient(to bottom, var(--lavender), transparent);
  animation: scrollPulse 2.2s var(--ease) infinite;
}
@keyframes scrollPulse {
  0% { transform: scaleY(0); transform-origin: top; opacity: 1; }
  60% { transform: scaleY(1); transform-origin: top; opacity: 1; }
  100% { transform: scaleY(1); transform-origin: top; opacity: 0; }
}

/* Hero portrait composition */
.hero-visual { position: relative; }
.hero-visual .frame {
  border-radius: 200px 200px 20px 20px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(4, 12, 38, 0.6);
  position: relative;
  aspect-ratio: 4 / 4.7;
}
.hero-visual .frame::after {
  content: "";
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(200deg, rgba(22, 57, 143, 0.0) 55%, rgba(14, 36, 90, 0.55) 100%);
}
.hero-visual .frame img { width: 100%; height: 100%; object-fit: cover; }
.hero-visual .frame video { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Hero slideshow — slow crossfade, 6 slides x 4.4s */
.frame img.slide {
  position: absolute; inset: 0; opacity: 0;
  animation: heroFade 26.4s infinite;
}
.frame img.slide:nth-child(1) { animation-delay: -1s; }
.frame img.slide:nth-child(2) { animation-delay: 3.4s; }
.frame img.slide:nth-child(3) { animation-delay: 7.8s; }
.frame img.slide:nth-child(4) { animation-delay: 12.2s; }
.frame img.slide:nth-child(5) { animation-delay: 16.6s; }
.frame img.slide:nth-child(6) { animation-delay: 21s; }
@keyframes heroFade {
  0% { opacity: 0; }
  3.5% { opacity: 1; }
  16.7% { opacity: 1; }
  21.5% { opacity: 0; }
  100% { opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .frame img.slide { animation: none; }
  .frame img.slide:first-child { opacity: 1; }
}
.hero-visual .ring {
  position: absolute; inset: -22px -22px auto -22px; height: calc(100% + 22px);
  border: 1.5px solid rgba(196, 184, 232, 0.32);
  border-radius: 220px 220px 24px 24px;
  pointer-events: none;
}
.float-chip {
  position: absolute;
  background: rgba(250, 249, 247, 0.97);
  border-radius: 14px;
  padding: 18px 24px;
  box-shadow: 0 22px 54px rgba(4, 12, 38, 0.45);
  animation: floaty 6s ease-in-out infinite;
}
.float-chip .n { font-family: var(--serif); font-weight: 700; font-size: 1.7rem; color: var(--deep-sky); line-height: 1.1; }
.float-chip .t { font-size: 0.76rem; color: var(--flint); font-weight: 500; letter-spacing: 0.02em; }
.chip-1 { bottom: 52px; left: -56px; }
.chip-2 { top: 84px; right: -34px; animation-delay: 1.6s; }
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@media (prefers-reduced-motion: reduce) { .float-chip { animation: none; } }

/* Confluence motif — two streams meeting */
.confluence {
  position: absolute; inset: 0; z-index: 1; pointer-events: none; opacity: 0.5;
}

/* ---------- Trusted-by band ---------- */
.trust-band {
  background: var(--abyss);
  padding: 34px 0;
  overflow: hidden;
}
.trust-band .caption {
  text-align: center; font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.28em; text-transform: uppercase; color: var(--dusk);
  margin-bottom: 18px;
}
.marquee { display: flex; overflow: hidden; user-select: none; }
.marquee-track {
  display: flex; align-items: center; gap: 40px; padding-right: 40px;
  flex-shrink: 0;
  animation: marquee 48s linear infinite;
}
.marquee-track span {
  font-family: var(--serif); font-weight: 700; font-size: 1.35rem;
  color: rgba(196, 184, 232, 0.75); white-space: nowrap;
}
/* Equal-width slots so the rhythm reads evenly despite different logo proportions */
.marquee-track img {
  flex: 0 0 auto; width: 180px; height: 38px; object-fit: contain;
  filter: brightness(0) invert(1); opacity: 0.62;
}
/* Already white artwork — the flatten-to-white filter would fill the star cut-outs */
.marquee-track img.logo-eu { filter: none; height: 30px; opacity: 0.33; }
/* Google is a raster mask with no baked-in ink opacity like the others, so match it here */
.marquee-track img.logo-google { opacity: 0.42; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-100%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; flex-wrap: wrap; } }

/* ---------- Manifesto / display statement ---------- */
.display {
  font-family: var(--serif); font-weight: 700;
  font-size: clamp(1.7rem, 3.4vw, 2.7rem);
  line-height: 1.32; letter-spacing: -0.01em;
  color: var(--ink);
}
.display .quiet { color: var(--clarity); }

/* ---------- Stat blocks ---------- */
.stat-card {
  background: var(--frost); border-radius: 18px; padding: 38px 32px;
  position: relative; overflow: hidden;
}
.stat-card .num {
  font-family: var(--serif); font-weight: 700; font-size: clamp(2.4rem, 3.6vw, 3.4rem);
  color: var(--nightfall); line-height: 1; margin-bottom: 12px;
  font-variant-numeric: tabular-nums;
}
.stat-card .desc { font-size: 0.95rem; color: var(--slate); line-height: 1.5; }
.stat-card .src { font-size: 0.76rem; color: var(--stone); margin-top: 14px; display: block; letter-spacing: 0.02em; }

.stat-card.proof { background: var(--lavender); }
.stat-card.proof .num { color: var(--eclipse); }
.stat-card.proof .desc { color: var(--eclipse); }

.stat-card.dark {
  background: rgba(238, 242, 250, 0.06);
  border: 1px solid rgba(196, 184, 232, 0.22);
  backdrop-filter: blur(4px);
}
.stat-card.dark .num { color: var(--lavender); }
.stat-card.dark .desc { color: rgba(238, 242, 250, 0.85); }
.stat-card.dark .src { color: var(--dusk); }

/* ---------- Cards ---------- */
.card {
  background: #fff; border: 1px solid var(--linen); border-radius: 18px;
  padding: 42px 36px;
  transition: box-shadow .35s var(--ease), transform .35s var(--ease), border-color .35s var(--ease);
  position: relative;
}
.card:hover {
  box-shadow: 0 28px 64px rgba(26, 20, 16, 0.1);
  transform: translateY(-6px);
  border-color: var(--lavender);
}
.card h3 { color: var(--deep-sky); }
.card .card-label {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--clarity); display: block; margin-bottom: 14px;
}
.card p { font-size: 0.96rem; color: var(--slate); }
.card ul { margin: 16px 0 0 18px; }
.card li { margin-bottom: 8px; font-size: 0.95rem; color: var(--slate); }
.card-link { font-weight: 700; display: inline-flex; align-items: center; gap: 8px; margin-top: 20px; }
.card-link .arrow { transition: transform .25s var(--ease); }
.card:hover .card-link .arrow, .card-link:hover .arrow { transform: translateX(5px); }

/* Pathway cards (dark) */
.path-card {
  display: block;
  background: rgba(238, 242, 250, 0.05);
  border: 1px solid rgba(196, 184, 232, 0.2);
  border-radius: 18px;
  padding: 44px 38px;
  transition: all .35s var(--ease);
}
.path-card:hover {
  background: rgba(238, 242, 250, 0.1);
  border-color: var(--clarity);
  transform: translateY(-6px);
}
.path-card .card-label {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--dusk); display: block; margin-bottom: 14px;
}
.path-card h3 { color: #fff; font-size: 1.6rem; }
.path-card p { color: rgba(196, 184, 232, 0.85); font-size: 0.95rem; }
.path-card .card-link { color: var(--lavender); }
.path-card:hover .card-link { color: #fff; }

/* ---------- Quotes ---------- */
.quote {
  border-left: 3px solid var(--clarity);
  padding: 10px 0 10px 38px; margin: 52px 0 0;
}
.quote p {
  font-family: var(--serif); font-style: italic; font-size: clamp(1.25rem, 2vw, 1.55rem);
  line-height: 1.5; color: var(--charcoal); margin-bottom: 18px;
}
.quote cite { font-style: normal; font-size: 0.92rem; color: var(--flint); }
.quote cite strong { color: var(--ink); }
.quote .who { display: flex; align-items: center; gap: 16px; margin-top: 4px; }
.quote .who img {
  width: 58px; height: 58px; border-radius: 50%;
  object-fit: cover; object-position: center 20%; flex-shrink: 0;
}

.quote-feature {
  display: grid; grid-template-columns: 230px 1fr; gap: 56px; align-items: center;
  position: relative;
}
.quote-feature .portrait { position: relative; width: 230px; }
.quote-feature .portrait img {
  width: 230px; height: 230px; object-fit: cover; object-position: center 18%; border-radius: 50%;
  position: relative; z-index: 1;
}
.quote-feature .portrait::after {
  content: ""; position: absolute; inset: -14px;
  border: 1.5px solid var(--lavender); border-radius: 50%;
}
.quote-feature .qmark {
  font-family: var(--serif); font-size: 7rem; line-height: 0.6;
  color: var(--lavender); display: block; margin-bottom: 28px; height: 0.45em;
}
.quote-feature p {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(1.4rem, 2.4vw, 1.85rem); line-height: 1.45;
  color: var(--charcoal); margin-bottom: 24px;
}
.quote-feature cite { font-style: normal; font-size: 0.95rem; color: var(--flint); }
.quote-feature cite strong { color: var(--ink); font-size: 1.05rem; display: block; }

.quote-small {
  background: #fff; border: 1px solid var(--linen); border-radius: 16px; padding: 34px;
}
.quote-small p { font-family: var(--serif); font-style: italic; color: var(--charcoal); font-size: 1.05rem; margin-bottom: 16px; line-height: 1.55; }
.quote-small cite { font-style: normal; font-size: 0.85rem; color: var(--flint); }
.quote-small cite strong { color: var(--ink); }

/* ---------- Image treatments ---------- */
.img-rounded { border-radius: 20px; }
.img-editorial {
  position: relative;
}
.img-editorial img {
  border-radius: 20px;
  box-shadow: 0 30px 70px rgba(26, 20, 16, 0.16);
  position: relative; z-index: 1;
  width: 100%;
}
.img-editorial::before {
  content: "";
  position: absolute; top: 26px; left: 26px; right: -26px; bottom: -26px;
  border: 1.5px solid var(--lavender);
  border-radius: 20px;
}
.img-editorial.flip::before { left: -26px; right: 26px; }

/* ---------- Framework pillars ---------- */
.pillar {
  background: #fff; border: 1px solid var(--linen); border-top: 4px solid var(--clarity);
  border-radius: 0 0 16px 16px;
  padding: 36px 30px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.pillar:hover { transform: translateY(-5px); box-shadow: 0 20px 48px rgba(26,20,16,0.09); }
.pillar .num {
  font-family: var(--serif); font-size: 0.95rem; font-weight: 700; color: var(--clarity);
  display: block; margin-bottom: 12px; letter-spacing: 0.1em;
}
.pillar h3 { font-size: 1.55rem; }
.pillar p { font-size: 0.94rem; color: var(--slate); }

/* ---------- Programme levels ---------- */
.level {
  display: grid; grid-template-columns: 230px 1fr; gap: 56px;
  padding: 64px 0; border-bottom: 1px solid var(--linen);
}
.level:last-of-type { border-bottom: 0; }
.level-marker .stage {
  font-size: 0.74rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--clarity); display: block; margin-bottom: 10px;
}
.level-marker h3 { font-size: 2.2rem; color: var(--deep-sky); }
.level-body .intro { font-size: 1.1rem; color: var(--charcoal); margin-bottom: 26px; }
.topic-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.topic { background: #fff; border: 1px solid var(--linen); border-radius: 12px; padding: 22px 24px; }
.topic h4 { font-family: var(--sans); font-size: 0.98rem; font-weight: 700; color: var(--deep-sky); margin-bottom: 6px; }
.topic p { font-size: 0.9rem; color: var(--slate); margin: 0; }

/* ---------- Team ---------- */
.founder {
  display: grid; grid-template-columns: 320px 1fr; gap: 64px; align-items: start;
  margin-bottom: 80px;
}
.founder img { border-radius: 18px; width: 100%; }
.founder .creds { font-size: 0.88rem; font-weight: 700; color: var(--clarity); letter-spacing: 0.08em; margin-bottom: 22px; display: block; }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.member {
  background: #fff; border: 1px solid var(--linen); border-radius: 16px; padding: 32px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.member:hover { transform: translateY(-4px); box-shadow: 0 18px 44px rgba(26,20,16,0.08); }
.member .avatar {
  width: 76px; height: 76px; border-radius: 50%;
  background: var(--frost); color: var(--nightfall);
  font-family: var(--serif); font-weight: 700; font-size: 1.5rem;
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
}
.member h3 { font-size: 1.15rem; margin-bottom: 2px; }
.member .creds { font-size: 0.78rem; font-weight: 700; color: var(--clarity); display: block; margin-bottom: 12px; letter-spacing: 0.04em; }
.member p { font-size: 0.9rem; color: var(--slate); }

/* ---------- Forms ---------- */
.form-panel {
  background: #fff; border: 1px solid var(--linen); border-radius: 20px; padding: 52px;
  max-width: 660px;
}
.form-row { margin-bottom: 22px; }
.form-row label { display: block; font-size: 0.86rem; font-weight: 700; margin-bottom: 8px; color: var(--charcoal); }
.form-row input, .form-row textarea, .form-row select {
  width: 100%; padding: 14px 18px; font-family: var(--sans); font-size: 1rem;
  border: 1.5px solid var(--linen); border-radius: 10px; background: var(--chalk); color: var(--ink);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.form-row input:focus, .form-row textarea:focus, .form-row select:focus {
  outline: none; border-color: var(--clarity); box-shadow: 0 0 0 4px rgba(127, 119, 221, 0.14);
}
.form-note { font-size: 0.85rem; color: var(--flint); margin-top: 16px; }

/* ---------- Badges / misc ---------- */
.badge {
  display: inline-block; background: var(--lavender); color: var(--eclipse);
  font-size: 0.76rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  border-radius: 100px; padding: 7px 18px; margin-bottom: 22px;
}
.placeholder-note {
  background: var(--frost); border: 1px dashed var(--dusk); border-radius: 10px;
  padding: 10px 18px; font-size: 0.82rem; color: var(--violet); display: inline-block;
}
.divider { border: 0; border-top: 1px solid var(--linen); margin: 72px 0; }

.price-card {
  background: #fff; border: 1.5px solid var(--linen); border-radius: 20px; padding: 48px 40px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.price-card:hover { transform: translateY(-5px); }
.price-card.featured { border-color: var(--clarity); box-shadow: 0 22px 60px rgba(127, 119, 221, 0.18); }
.price-card .price {
  font-family: var(--serif); font-weight: 700; font-size: 2.6rem; color: var(--deep-sky);
  margin: 18px 0 2px;
}
.price-card .price-note { font-size: 0.85rem; color: var(--flint); margin-bottom: 22px; }

/* ---------- CTA band ---------- */
.cta-band { text-align: center; position: relative; overflow: hidden; }
.cta-band h2 { max-width: 21em; margin: 0 auto 22px; }
.cta-band p { max-width: 40em; margin: 0 auto 40px; }
.cta-glow {
  background:
    radial-gradient(ellipse 55% 70% at 50% 115%, rgba(118, 42, 155, 0.55) 0%, rgba(118, 42, 155, 0) 65%),
    linear-gradient(160deg, var(--abyss) 0%, var(--deep-sky) 70%, var(--eclipse) 100%);
  color: #fff;
}
.cta-glow h2 { color: #fff; }
.cta-glow p { color: var(--lavender); }

/* ---------- Footer ---------- */
.footer { background: var(--abyss); color: var(--lavender); padding: 84px 0 44px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 56px; margin-bottom: 64px; }
.footer h4 { color: #fff; font-family: var(--sans); font-size: 0.8rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 20px; }
.footer ul { list-style: none; }
.footer li { margin-bottom: 11px; }
.footer a { color: var(--lavender); font-size: 0.95rem; }
.footer a:hover { color: #fff; }
.footer .footer-logo { font-family: var(--serif); font-weight: 700; font-size: 1.5rem; color: #fff; margin-bottom: 16px; display: block; }
.footer .footer-logo em { font-style: italic; color: var(--lavender); }
.footer .tagline { font-size: 0.95rem; max-width: 26em; color: var(--dusk); }
.footer-bottom {
  border-top: 1px solid rgba(196, 184, 232, 0.18); padding-top: 30px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 0.8rem; color: var(--dusk);
}

/* ---------- Series proof stat ---------- */
.series-proof {
  display: flex; align-items: baseline; gap: 18px; flex-wrap: wrap;
  background: var(--frost); border-radius: 16px; padding: 22px 28px;
}
.series-proof .num { font-family: var(--serif); font-weight: 700; font-size: 2.4rem; color: var(--nightfall); line-height: 1; }
.series-proof .desc { color: var(--flint); font-size: 1rem; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 7fr 4fr; gap: 72px; align-items: start; }
.contact-form .hp { position: absolute; left: -9999px; }
.contact-form .field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.contact-form .field { margin-bottom: 22px; }
.contact-form label {
  display: block; font-family: var(--sans); font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--eclipse); margin-bottom: 8px;
}
.contact-form input, .contact-form textarea {
  width: 100%; font-family: var(--sans); font-size: 1rem; color: var(--ink);
  background: #fff; border: 1.5px solid var(--linen); border-radius: 12px;
  padding: 14px 16px; transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.contact-form input:focus, .contact-form textarea:focus {
  outline: none; border-color: var(--clarity); box-shadow: 0 0 0 4px rgba(127, 119, 221, 0.16);
}
.contact-form textarea { resize: vertical; }
.contact-form .btn { margin-top: 6px; }
.contact-aside {
  background: var(--frost); border-radius: 20px; padding: 36px;
}
.contact-aside h4 {
  font-family: var(--sans); font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--eclipse); margin-bottom: 10px;
}
.contact-aside h4 + p, .contact-aside ul { margin-bottom: 30px; }
.contact-aside ul:last-child, .contact-aside p:last-child { margin-bottom: 0; }
.contact-aside a { color: var(--nightfall); }
.contact-aside a:hover { color: var(--aurora); }
.contact-social { list-style: none; }
.contact-social li { margin-bottom: 10px; }
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 600px) {
  .contact-form .field-row { grid-template-columns: 1fr; gap: 0; }
}


/* ============================================================
   Who We Are + Podcast
   ============================================================ */

/* ---------- Generous interior hero photo ---------- */
.hero-inner.hero-wide { grid-template-columns: 8fr 13fr; gap: 56px; }
.hero-photo { position: relative; }
.hero-photo img {
  width: 100%; aspect-ratio: 3 / 2; object-fit: cover; object-position: 50% 42%;
  border-radius: 24px;
  box-shadow: 0 40px 100px rgba(4, 12, 38, 0.55);
}
.hero-photo::before {
  content: ""; position: absolute; inset: 20px -20px -20px 20px;
  border: 1.5px solid rgba(196, 184, 232, 0.34); border-radius: 24px;
}
@media (max-width: 980px) {
  .hero-inner.hero-wide { grid-template-columns: 1fr; }
  .hero-photo::before { display: none; }
  .hero-photo img { aspect-ratio: 4 / 3; }
}

/* ---------- Founder blocks ---------- */
.founder-block { display: grid; grid-template-columns: 4fr 8fr; gap: 64px; align-items: start; }
/* Andrew's row runs text-then-photo, so the ratios flip with it */
.founder-block.spaced { grid-template-columns: 8fr 4fr; margin-top: 110px; }
.founder-photo { position: relative; max-width: 380px; width: 100%; justify-self: start; }
.founder-photo.flip { justify-self: end; }
.founder-photo img {
  width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: 50% 30%;
  border-radius: 200px 200px 20px 20px;
  box-shadow: 0 30px 70px rgba(26, 20, 16, 0.18);
  background: var(--frost);
}
.founder-photo::before {
  content: ""; position: absolute; inset: 22px -22px -22px 22px;
  border: 1.5px solid var(--lavender); border-radius: 200px 200px 20px 20px;
}
.founder-photo.flip::before { inset: 22px 22px -22px -22px; }
.founder-name { margin-bottom: 6px; }
.founder-cred {
  font-family: var(--sans); font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--clarity);
  margin-bottom: 26px;
}

/* ---------- Team cards (expandable bios) ---------- */
.team-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 24px; align-items: start; }
.team-card {
  background: #fff; border-radius: 16px;
  box-shadow: 0 12px 34px rgba(26, 20, 16, 0.07);
  overflow: hidden;
}
.team-card summary {
  list-style: none; cursor: pointer;
  display: grid; grid-template-columns: 52px 1fr 16px; gap: 18px; align-items: center;
  padding: 20px 24px; transition: background .25s var(--ease);
}
.team-card summary::-webkit-details-marker { display: none; }
.team-card summary:hover { background: var(--frost); }
.team-card summary:focus-visible { outline: 2px solid var(--clarity); outline-offset: -2px; }
.team-card img.avatar { object-fit: cover; background: var(--frost); }
.team-card .avatar {
  width: 52px; height: 52px; border-radius: 50%;
  background: linear-gradient(150deg, var(--nightfall), var(--aurora));
  color: #fff; font-family: var(--serif); font-weight: 700; font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center; letter-spacing: 0.02em;
}
.team-card .who-name { display: flex; flex-direction: column; gap: 3px; }
.team-card .who-name strong { font-family: var(--serif); font-size: 1.2rem; color: var(--deep-sky); line-height: 1.2; }
.team-card .who-name .cred {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--stone);
}
.team-card .chev {
  width: 10px; height: 10px;
  border-right: 2px solid var(--clarity); border-bottom: 2px solid var(--clarity);
  transform: rotate(45deg); transition: transform .3s var(--ease);
}
.team-card details[open] .chev { transform: rotate(-135deg); }
.team-bio {
  padding: 4px 24px 26px 94px; color: var(--flint); font-size: 0.97rem;
  animation: skillOpen .34s var(--ease);
}
.team-bio p { margin-bottom: 1em; }
.team-bio p:last-child { margin-bottom: 0; }

/* ---------- Podcast ---------- */
.pod-cover img {
  width: 100%; max-width: 420px; border-radius: 24px;
  box-shadow: 0 40px 90px rgba(4, 12, 38, 0.55);
}
.pod-player iframe { display: block; width: 100%; }
.ep-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.ep-card {
  display: block; background: #fff; border-radius: 18px; padding: 30px 32px;
  box-shadow: 0 14px 40px rgba(26, 20, 16, 0.07);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.ep-card:hover { transform: translateY(-4px); box-shadow: 0 24px 56px rgba(26, 20, 16, 0.12); }
.ep-card .ep-meta {
  font-size: 0.74rem; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--stone); margin-bottom: 14px;
}
.ep-card h3 { color: var(--deep-sky); font-size: 1.22rem; margin-bottom: 18px; }
.ep-card .card-link { font-size: 0.9rem; font-weight: 700; color: var(--aurora); }
.pod-links { display: flex; gap: 34px; justify-content: center; flex-wrap: wrap; margin-top: 12px; }
.pod-links a { font-weight: 700; font-size: 1.05rem; }

@media (max-width: 900px) {
  .founder-block, .founder-block.spaced { grid-template-columns: 1fr; gap: 40px; }
  .founder-block.spaced { margin-top: 72px; }
  .founder-photo, .founder-photo.flip { justify-self: start; }
  /* Single column: photo leads in both blocks, so Andrew's reversed row flips back */
  .founder-block.spaced .founder-photo { order: -1; }
  .founder-photo { max-width: 340px; }
  .founder-photo::before { display: none; }
  .team-cards, .ep-grid { grid-template-columns: 1fr; }
  .team-bio { padding-left: 24px; }
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; padding: 120px 32px 96px; gap: 64px; }
  .hero { min-height: 0; }
  .hero-visual { width: 100%; max-width: 400px; margin: 0 auto; }
  .chip-1 { left: 14px; bottom: 20px; }
  .chip-2 { top: auto; bottom: 96px; right: 10px; }
  .hero-scroll { display: none; }
  .grid-2 { grid-template-columns: 1fr; gap: 56px; }
  .grid-3, .grid-4, .team-grid { grid-template-columns: 1fr 1fr; }
  .level { grid-template-columns: 1fr; gap: 22px; }
  .founder { grid-template-columns: 1fr; }
  .founder img { max-width: 320px; }
  .quote-feature { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links {
    display: none; position: fixed; inset: 0;
    background: var(--abyss);
    flex-direction: column; align-items: flex-start; justify-content: center;
    padding: 100px 40px; gap: 26px;
  }
  .nav-links a { color: #fff !important; font-size: 1.4rem; font-family: var(--serif); }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .section { padding: 96px 0; }
}
@media (max-width: 600px) {
  .grid-2, .grid-3, .grid-4, .team-grid, .topic-grid { grid-template-columns: 1fr; }
  .section { padding: 72px 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .float-chip { padding: 12px 16px; }
  .float-chip .n { font-size: 1.25rem; }
  .img-editorial::before { display: none; }
  .nav-logo img { height: 34px; }
  .chip-2 { right: 18px; }
  .chip-1 { left: 18px; }
}

/* ============================================================
   v2.1 components
   ============================================================ */

/* ---------- Manifesto (What we believe) ---------- */
.manifesto-grid {
  display: grid; grid-template-columns: 7fr 5fr; gap: 80px; align-items: stretch;
}
.manifesto-grid h2 { margin-bottom: 40px; }
.manifesto-img { position: relative; min-height: 100%; }
.manifesto-img img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  border-radius: 200px 200px 20px 20px;
  box-shadow: 0 24px 60px rgba(26, 20, 16, 0.14);
}
.belief { display: flex; gap: 28px; padding: 38px 0; border-bottom: 1px solid var(--linen); }
.belief:first-child { padding-top: 8px; }
.belief:last-child { border-bottom: 0; }
.belief .belief-num {
  font-family: var(--serif); font-style: italic; font-weight: 700;
  font-size: 1.1rem; color: var(--clarity); flex-shrink: 0;
  width: 44px; height: 44px; border: 1.5px solid var(--lavender); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.belief h3 { font-size: 1.45rem; margin-bottom: 10px; }
.belief p { font-size: 1rem; color: var(--slate); }
@media (max-width: 900px) {
  .manifesto-grid { grid-template-columns: 1fr; gap: 40px; }
  .manifesto-img { min-height: 0; }
  .manifesto-img img { position: static; aspect-ratio: 4 / 4.6; max-width: 380px; }
}

/* ---------- Full-bleed image band ---------- */
.band {
  position: relative; min-height: 480px;
  background-size: cover; background-position: center;
  display: flex; align-items: flex-end;
}
.band::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(14, 36, 90, 0.82) 0%, rgba(14, 36, 90, 0.12) 55%, rgba(14, 36, 90, 0) 100%);
}
.band .band-caption {
  position: relative; z-index: 1;
  max-width: var(--maxw); margin: 0 auto; padding: 0 32px 56px; width: 100%;
}
.band .band-caption .line {
  font-family: var(--serif); font-weight: 700; font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2.3rem); color: #fff; line-height: 1.3;
  max-width: 24em;
}
.band .band-caption .sub { color: var(--lavender); font-size: 0.95rem; margin-top: 10px; }
.band.overlay-full::after {
  background: linear-gradient(120deg, rgba(14, 36, 90, 0.92) 0%, rgba(22, 57, 143, 0.82) 55%, rgba(59, 54, 150, 0.78) 100%);
}

/* ---------- Video band with caption (bottom-left, like .band) ---------- */
.band-video {
  position: relative; min-height: 560px; overflow: hidden;
  display: flex; align-items: flex-end;
}
.band-video video {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.band-video::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(14, 36, 90, 0.88) 0%, rgba(14, 36, 90, 0.25) 45%, rgba(14, 36, 90, 0) 70%);
}
.band-video .band-caption {
  position: relative; z-index: 1;
  max-width: var(--maxw); margin: 0 auto; padding: 0 32px 56px; width: 100%;
}
.band-video .band-caption .line {
  font-family: var(--serif); font-weight: 700; font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2.3rem); color: #fff; line-height: 1.3;
  max-width: 24em;
}
.band-video .band-caption .sub { color: var(--lavender); font-size: 0.95rem; margin-top: 10px; }

/* ---------- Testimonial avatar bubbles ---------- */
.quote-small .who { display: flex; align-items: center; gap: 14px; margin-top: 18px; }
.quote-small .who img,
.quote-small .who .initials {
  width: 54px; height: 54px; border-radius: 50%; object-fit: cover; object-position: center 20%;
  flex-shrink: 0;
}
.quote-small .who .initials {
  background: var(--frost); color: var(--nightfall);
  font-family: var(--serif); font-weight: 700; font-size: 1.15rem;
  display: flex; align-items: center; justify-content: center;
}
.quote-small .who cite { line-height: 1.4; }

/* ---------- App phone interaction animation ---------- */
.phone-screen { position: relative; padding: 0; }
.app-view {
  position: absolute; inset: 0;
  padding: 58px 20px 24px;
  display: flex; flex-direction: column; gap: 13px;
  background: linear-gradient(170deg, var(--frost) 0%, #fff 40%);
}
/* home view scrolls gently, then detail view slides over it */
.view-home .app-feed { display: flex; flex-direction: column; gap: 13px; animation: appFeed 18s var(--ease) infinite; }
@keyframes appFeed {
  0%, 55% { transform: translateY(0); }
  66%, 88% { transform: translateY(-120px); }
  96%, 100% { transform: translateY(0); }
}
.view-detail {
  transform: translateX(105%);
  animation: viewDetail 18s var(--ease) infinite;
  z-index: 2;
}
@keyframes viewDetail {
  0%, 13% { transform: translateX(105%); }
  17%, 50% { transform: translateX(0); }
  55%, 100% { transform: translateX(105%); }
}
/* tap ripples */
.tap {
  position: absolute; width: 36px; height: 36px; border-radius: 50%;
  border: 2.5px solid var(--clarity); background: rgba(127, 119, 221, 0.35);
  opacity: 0; pointer-events: none; z-index: 3;
}
.tap-1 { top: 218px; right: 44px; animation: tapPing 18s infinite; }
.tap-2 { bottom: 92px; right: 60px; animation: tapPing 18s infinite; animation-delay: 7.2s; }
@keyframes tapPing {
  0%, 9% { opacity: 0; transform: scale(0.4); }
  11% { opacity: 1; transform: scale(1); }
  14% { opacity: 0; transform: scale(1.6); }
  100% { opacity: 0; }
}
/* detail view elements */
.detail-back { display: flex; align-items: center; gap: 8px; font-size: 0.78rem; font-weight: 700; color: var(--clarity); letter-spacing: 0.08em; text-transform: uppercase; }
.detail-hero {
  width: 64px; height: 64px; border-radius: 18px;
  background: var(--deep-sky); color: var(--lavender);
  display: flex; align-items: center; justify-content: center;
}
.detail-hero svg { width: 30px; height: 30px; }
.detail-title { font-family: var(--serif); font-weight: 700; font-size: 1.15rem; color: var(--ink); line-height: 1.3; }
.detail-meta { font-size: 0.74rem; color: var(--flint); }
.detail-bar { height: 6px; border-radius: 4px; background: var(--linen); overflow: hidden; margin-top: 8px; }
.detail-bar i { display: block; height: 100%; border-radius: 4px; background: var(--clarity); animation: fillBar 18s var(--ease) infinite; }
@keyframes fillBar {
  0%, 17% { width: 6%; }
  46% { width: 86%; }
  55%, 100% { width: 6%; }
}
.detail-done {
  margin-top: auto;
  background: var(--deep-sky); color: #fff; border-radius: 100px;
  text-align: center; font-weight: 700; font-size: 0.9rem; padding: 13px;
  animation: doneFlash 18s infinite;
}
@keyframes doneFlash {
  0%, 39% { background: var(--deep-sky); }
  42%, 50% { background: var(--aurora); }
  55%, 100% { background: var(--deep-sky); }
}
/* small icon chips in feed cards */
.app-ico {
  width: 34px; height: 34px; border-radius: 10px; flex-shrink: 0;
  background: var(--frost); color: var(--nightfall);
  display: flex; align-items: center; justify-content: center;
}
.app-card.featured .app-ico { background: rgba(196, 184, 232, 0.25); color: var(--lavender); }
.app-ico svg { width: 17px; height: 17px; }
.app-card .card-row { display: flex; gap: 12px; align-items: flex-start; }
@media (prefers-reduced-motion: reduce) {
  .view-home .app-feed, .view-detail, .tap, .detail-bar i, .detail-done { animation: none; }
  .view-detail { display: none; }
}

/* ---------- App store badges ---------- */
.store-badges { display: flex; gap: 14px; justify-content: center; margin-top: 30px; flex-wrap: wrap; }
.badge-btn {
  display: inline-flex; align-items: center; gap: 11px;
  background: #000; color: #fff !important; border: 1px solid rgba(255,255,255,0.35);
  border-radius: 10px; padding: 9px 18px 9px 14px;
  transition: transform .2s var(--ease), background .2s var(--ease);
}
.badge-btn:hover { transform: translateY(-2px); background: #111; }
.badge-btn svg { width: 26px; height: 26px; flex-shrink: 0; }
.badge-btn .bt { line-height: 1.15; text-align: left; }
.badge-btn .bt .small { display: block; font-size: 0.62rem; letter-spacing: 0.04em; opacity: 0.85; }
.badge-btn .bt .big { display: block; font-size: 1.05rem; font-weight: 600; }

/* ---------- Video band ---------- */
.video-band {
  position: relative; overflow: hidden;
  padding: 150px 0;
}
.video-band video {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.video-band::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(14, 36, 90, 0.94) 0%, rgba(22, 57, 143, 0.86) 55%, rgba(84, 34, 116, 0.78) 100%);
}
.video-band .wrap { position: relative; z-index: 2; }
.video-band h2 { color: #fff; }
.video-band p { color: var(--lavender); }
.video-band .label { color: var(--lavender); }
.video-band .label::before { background: var(--lavender); }

/* ---------- Programme level cards (What We Offer) ---------- */
.level-card {
  background: #fff; border: 1px solid var(--linen); border-radius: 22px;
  overflow: hidden; margin-bottom: 40px;
  box-shadow: 0 6px 28px rgba(26, 20, 16, 0.05);
}
.level-head {
  display: grid; grid-template-columns: 84px 1fr auto; gap: 26px; align-items: center;
  padding: 38px 44px;
  background: var(--frost);
  border-bottom: 1px solid var(--linen);
}
.level-head .level-icon {
  width: 84px; height: 84px; border-radius: 22px;
  background: var(--deep-sky);
  display: flex; align-items: center; justify-content: center;
  color: var(--lavender);
}
.level-head .level-icon svg { width: 42px; height: 42px; }
.level-head .stage {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--clarity); display: block; margin-bottom: 6px;
}
.level-head h3 { font-size: 1.9rem; margin: 0; color: var(--deep-sky); }
.level-head .sub { font-size: 0.98rem; color: var(--flint); margin-top: 4px; }
.level-head .level-no {
  font-family: var(--serif); font-style: italic; font-weight: 700;
  font-size: 3.4rem; color: var(--lavender); line-height: 1;
}
.level-body-2 { padding: 40px 44px 46px; }
.level-body-2 .intro { font-size: 1.06rem; color: var(--charcoal); margin-bottom: 28px; max-width: 56em; }
.skill-list { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 24px; list-style: none; margin: 0; align-items: start; }
.skill-list li {
  display: flex; gap: 14px; align-items: flex-start;
  font-size: 0.94rem; color: var(--slate);
  padding: 14px 16px; border-radius: 12px;
  background: var(--chalk); border: 1px solid var(--linen);
}
.skill-list li strong { color: var(--ink); display: block; font-size: 0.97rem; }

/* Expandable curriculum items — click a skill to reveal its detail */
.skill-list li.skill { display: block; padding: 0; }
.skill-list li.skill details { border-radius: 14px; }
.skill-list li.skill summary {
  list-style: none; cursor: pointer;
  display: grid; grid-template-columns: 22px 1fr 16px; gap: 12px; align-items: start;
  padding: 16px 18px;
  transition: background .25s var(--ease);
}
.skill-list li.skill summary::-webkit-details-marker { display: none; }
.skill-list li.skill summary:hover { background: rgba(127, 119, 221, 0.07); }
.skill-list li.skill summary:focus-visible { outline: 2px solid var(--clarity); outline-offset: 2px; }
.skill-lead { color: var(--ink); font-weight: 700; font-size: 0.97rem; line-height: 1.45; }
.skill-list li.skill .chev {
  width: 10px; height: 10px; margin-top: 6px;
  border-right: 2px solid var(--clarity); border-bottom: 2px solid var(--clarity);
  transform: rotate(45deg); transform-origin: 60% 60%;
  transition: transform .3s var(--ease);
}
.skill-list li.skill details[open] .chev { transform: rotate(-135deg); }
.skill-body {
  padding: 0 18px 18px 52px;
  color: var(--flint); font-size: 0.95rem; line-height: 1.65;
  animation: skillOpen .34s var(--ease);
}
@keyframes skillOpen {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .skill-body { animation: none; }
  .skill-list li.skill .chev { transition: none; }
}
.skill-list .tick {
  flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%;
  background: var(--lavender); color: var(--eclipse);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.72rem; font-weight: 700; margin-top: 2px;
}
@media (max-width: 700px) {
  .level-head { grid-template-columns: 64px 1fr; padding: 28px; }
  .level-head .level-icon { width: 64px; height: 64px; border-radius: 16px; }
  .level-head .level-no { display: none; }
  .level-body-2 { padding: 28px; }
  .skill-list { grid-template-columns: 1fr; }
}

/* ---------- Glow testimonial ---------- */
.glow-quote {
  position: relative; overflow: hidden; text-align: center;
  background:
    radial-gradient(ellipse 70% 90% at 50% 120%, rgba(118, 42, 155, 0.5) 0%, rgba(118, 42, 155, 0) 60%),
    linear-gradient(160deg, var(--abyss) 0%, var(--deep-sky) 60%, var(--eclipse) 100%);
  color: #fff;
}
.glow-quote .qmark {
  font-family: var(--serif); font-size: 8rem; line-height: 0.5;
  color: var(--clarity); display: block; height: 0.4em; margin-bottom: 30px;
}
.glow-quote blockquote p {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2.2rem); line-height: 1.45;
  color: #fff; max-width: 26em; margin: 0 auto 30px;
}
.glow-quote cite { font-style: normal; font-size: 0.95rem; color: var(--lavender); }
.glow-quote cite strong { color: #fff; display: block; font-size: 1.05rem; }

/* ---------- App phone mockup ---------- */
.phone {
  width: 292px; margin: 0 auto;
  background: var(--abyss);
  border-radius: 44px; padding: 14px;
  box-shadow: 0 40px 90px rgba(14, 36, 90, 0.4);
  position: relative;
}
.phone::before {
  content: ""; position: absolute; top: 26px; left: 50%; transform: translateX(-50%);
  width: 96px; height: 26px; background: var(--abyss); border-radius: 100px; z-index: 3;
}
.phone-screen {
  background: linear-gradient(170deg, var(--frost) 0%, #fff 40%);
  border-radius: 32px; overflow: hidden;
  padding: 58px 20px 24px; height: 560px;
  display: flex; flex-direction: column; gap: 14px;
}
.phone-screen .app-date { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--stone); }
.phone-screen .app-greet { font-family: var(--serif); font-weight: 700; font-size: 1.3rem; color: var(--ink); line-height: 1.25; }
.app-card {
  background: #fff; border: 1px solid var(--linen); border-radius: 16px; padding: 16px;
  box-shadow: 0 6px 18px rgba(26, 20, 16, 0.05);
}
.app-card .app-tag { font-size: 0.62rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--clarity); display: block; margin-bottom: 6px; }
.app-card .app-title { font-size: 0.88rem; font-weight: 700; color: var(--ink); line-height: 1.35; }
.app-card .app-sub { font-size: 0.76rem; color: var(--flint); margin-top: 4px; }
.app-card.featured { background: var(--deep-sky); border-color: var(--deep-sky); }
.app-card.featured .app-tag { color: var(--lavender); }
.app-card.featured .app-title { color: #fff; }
.app-card.featured .app-sub { color: var(--lavender); }
.app-progress { display: flex; gap: 6px; margin-top: 10px; }
.app-progress i { height: 5px; border-radius: 4px; flex: 1; background: var(--linen); }
.app-progress i.done { background: var(--clarity); }

/* ---------- Hero inline proof points ---------- */
.hero-stats {
  display: flex; gap: 48px; flex-wrap: wrap;
  margin-top: 38px; padding-top: 30px;
  border-top: 1px solid rgba(196, 184, 232, 0.28);
}
.hero-stats .hs .n {
  font-family: var(--serif); font-weight: 700; font-size: 2.1rem;
  color: #fff; line-height: 1.1; font-variant-numeric: tabular-nums;
}
.hero-stats .hs .t { font-size: 0.85rem; color: var(--lavender); margin-top: 2px; }

/* ---------- Photo tile (equal-height grid image) ---------- */
.photo-tile { position: relative; border-radius: 18px; overflow: hidden; min-height: 260px; }
.photo-tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* ---------- Full-width figure band (no crop, caption folded into image) ---------- */
.band-figure { position: relative; }
.band-figure img { width: 100%; height: auto; display: block; }
.band-figure .fig-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: rgba(14, 36, 90, 0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid rgba(196, 184, 232, 0.25);
}
.band-figure .fig-caption .fig-panel {
  max-width: var(--maxw); margin: 0 auto; padding: 0 32px;
}
.band-figure .fig-caption .fig-panel-inner {
  padding: 28px 0 32px;
  max-width: 720px;
}
.band-figure .fig-caption .line {
  font-family: var(--serif); font-weight: 700; font-style: italic;
  font-size: clamp(1.2rem, 2.2vw, 1.7rem); color: #fff; line-height: 1.35;
}
.band-figure .fig-caption .sub { color: var(--lavender); font-size: 0.9rem; margin-top: 10px; }
@media (max-width: 700px) {
  .band-figure .fig-caption { position: static; background: var(--abyss); padding: 24px 0; }
  .band-figure .fig-caption .fig-panel-inner { background: none; border: 0; backdrop-filter: none; padding: 0; }
}

/* ---------- Impact ledger (Lavender results surface) ---------- */
.impact-section { background: var(--lavender); }
.impact-section .label { color: var(--eclipse); }
.impact-section .label::before { background: var(--eclipse); }
.impact-section h2 { color: var(--eclipse); }
.impact-section h2 em { color: #fff; }
.impact-section .sub-lede { color: var(--eclipse); max-width: 44em; font-size: 1.15rem; }
.impact-row {
  display: grid; grid-template-columns: 5fr 7fr; gap: 40px; align-items: center;
  padding: 30px 0; border-bottom: 1px solid rgba(42, 40, 120, 0.25);
  transition: padding-left .3s var(--ease);
  cursor: default;
}
.impact-row:hover { padding-left: 14px; }
.impact-row:last-of-type { border-bottom: 0; }
.impact-row .kw {
  font-family: var(--serif); font-weight: 700; font-style: italic;
  font-size: clamp(1.8rem, 3.4vw, 2.7rem); line-height: 1.05;
  opacity: 0.85;
  transition: opacity .35s var(--ease);
}
/* Gradation down the Atmospheric ramp, darkest to warmest */
.impact-row:nth-of-type(1) .kw { color: var(--abyss); }
.impact-row:nth-of-type(2) .kw { color: var(--deep-sky); }
.impact-row:nth-of-type(3) .kw { color: var(--eclipse); }
.impact-row:nth-of-type(4) .kw { color: var(--nightfall); }
.impact-row:nth-of-type(5) .kw { color: var(--violet); }
.impact-row:nth-of-type(6) .kw { color: var(--aurora); }
.impact-row:hover .kw { opacity: 1; }
.impact-row .kd {
  font-size: 1.05rem; color: var(--eclipse);
  opacity: 0; transform: translateX(-14px);
  transition: opacity .45s var(--ease), transform .45s var(--ease);
}
.impact-row:hover .kd { opacity: 1; transform: translateX(0); }
@media (max-width: 700px), (hover: none) {
  .impact-row { grid-template-columns: 1fr; gap: 8px; padding: 26px 0; }
  .impact-row .kd { opacity: 1; transform: none; }
  .impact-row .kw { opacity: 1; }
  .impact-section .sub-lede { display: none; }
}

/* ---------- Deviation / review note ---------- */
.review-note {
  background: var(--frost); border: 1.5px dashed var(--dusk); border-radius: 12px;
  padding: 14px 20px; font-size: 0.84rem; color: var(--violet);
  margin-top: 28px; max-width: 46em;
}
.review-note strong { color: var(--eclipse); }
