/* ==========================================================================
    Neuro Self Mastery - Central Stylesheet
    Brand: Neuro Self Mastery | Dr. Terry-Leigh Oliphant
    Palette: Deep Navy (#06041a), Royal Violet (#7c3aed), Electric Cyan (#38bdf8), Luminous Pink (#e879f9)
    UK English, Zero Em-Dashes
   ========================================================================== */

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

:root {
  --deep: #06041a;
  --navy: #0b0828;
  --navy-card: rgba(11, 8, 40, 0.7);
  --violet: #7c3aed;
  --violet-glow: #9d5ff5;
  --violet-light: #c4b5fd;
  --violet-subtle: rgba(124, 58, 237, 0.12);
  --electric: #38bdf8;
  --electric-dim: #0ea5e9;
  --pink: #e879f9;
  --white: #f8f6ff;
  --muted: rgba(196, 181, 253, 0.65);
  --card-bg: rgba(124, 58, 237, 0.06);
  --card-border: rgba(124, 58, 237, 0.22);
  --card-border-hover: rgba(124, 58, 237, 0.5);
  --radius-sm: 0.5rem;
  --radius-md: 1rem;
  --radius-lg: 1.25rem;
  --radius-pill: 2rem;
  --transition: all 0.25s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Outfit', sans-serif;
  background-color: var(--deep);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ── STARFIELD BACKGROUND ── */
#stars {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.star {
  position: absolute;
  border-radius: 50%;
  background: white;
  animation: twinkle var(--d) ease-in-out infinite alternate;
}

@keyframes twinkle {
  from { opacity: var(--min); }
  to { opacity: var(--max); }
}

/* ── NAVIGATION ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.2rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(180deg, rgba(6, 4, 26, 0.95) 0%, transparent 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(124, 58, 237, 0.15);
  transition: background 0.3s ease, padding 0.3s ease, border-color 0.3s ease;
}

nav.scrolled {
  background: rgba(6, 4, 26, 0.96);
  padding: 0.9rem 4rem;
  border-bottom-color: rgba(124, 58, 237, 0.3);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--white);
}

.brand-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.brand-icon svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 10px rgba(56, 189, 248, 0.45));
}

.brand-name {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.12rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  white-space: nowrap;
}

.brand-name span {
  color: var(--electric);
  font-weight: 400;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  list-style: none;
}

.nav-links a {
  color: rgba(248, 246, 255, 0.75);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
  padding: 0.3rem 0;
  transition: var(--transition);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--violet-glow), var(--electric));
  transition: width 0.25s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  padding: 0.55rem 1.4rem;
  border: 1px solid var(--violet);
  border-radius: var(--radius-pill);
  color: var(--violet-light) !important;
  background: rgba(124, 58, 237, 0.1);
  transition: var(--transition) !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover,
.nav-cta.active {
  background: var(--violet) !important;
  color: #ffffff !important;
  box-shadow: 0 0 20px rgba(124, 58, 237, 0.4);
}

/* Hamburger toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1100;
}

.hamburger {
  width: 24px;
  height: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--violet-light);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-toggle.open .hamburger span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle.open .hamburger span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open .hamburger span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile navigation drawer */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: rgba(6, 4, 26, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-left: 1px solid rgba(124, 58, 237, 0.3);
  z-index: 1050;
  padding: 6rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: right 0.35s ease;
}

.mobile-nav.open {
  right: 0;
}

.mobile-nav a {
  color: rgba(248, 246, 255, 0.8);
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(124, 58, 237, 0.15);
  transition: var(--transition);
}

.mobile-nav a:hover,
.mobile-nav a.active {
  color: var(--electric);
  padding-left: 0.5rem;
}

.mobile-nav-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 1040;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-nav-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

/* ── LAYOUT & WRAPPERS ── */
main {
  flex: 1;
  position: relative;
  z-index: 1;
}

section {
  position: relative;
  z-index: 1;
}

.section-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 6rem 2rem;
}

.section-inner-narrow {
  max-width: 800px;
  margin: 0 auto;
  padding: 6rem 2rem;
}

/* ── PAGE HEADER (FOR INNER PAGES) ── */
.page-header {
  padding: 9.5rem 2rem 4rem;
  text-align: center;
  position: relative;
  background: radial-gradient(circle at 50% 30%, rgba(124, 58, 237, 0.18) 0%, transparent 70%);
}

.page-header .section-label {
  margin-bottom: 1rem;
}

.page-header .page-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.page-header .page-title strong {
  font-weight: 600;
  background: linear-gradient(135deg, var(--violet-glow), var(--pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-header .page-desc {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(248, 246, 255, 0.75);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ── TYPOGRAPHY ── */
.section-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--electric);
  margin-bottom: 0.75rem;
  display: inline-block;
}

.section-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.section-heading em {
  font-style: italic;
  color: var(--violet-light);
}

.section-heading strong {
  font-weight: 600;
  background: linear-gradient(135deg, var(--violet-glow), var(--pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-sub {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(248, 246, 255, 0.72);
  line-height: 1.8;
  max-width: 620px;
}

.divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(124, 58, 237, 0.4), rgba(56, 189, 248, 0.3), transparent);
  margin: 0;
}

/* ── BUTTONS ── */
.btn-primary {
  padding: 0.85rem 2rem;
  background: linear-gradient(135deg, var(--violet), #9333ea);
  border: none;
  border-radius: var(--radius-pill);
  color: white;
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-shadow: 0 4px 18px rgba(124, 58, 237, 0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(124, 58, 237, 0.45);
}

.btn-ghost {
  padding: 0.85rem 2rem;
  background: transparent;
  border: 1px solid rgba(124, 58, 237, 0.5);
  border-radius: var(--radius-pill);
  color: var(--violet-light);
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-ghost:hover {
  border-color: var(--violet-glow);
  color: white;
  background: rgba(124, 58, 237, 0.15);
}

/* ── HERO (HOME PAGE) ── */
#hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  padding: 8.5rem 4rem 5rem;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-text {
  position: relative;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--electric);
  margin-bottom: 1.5rem;
  padding: 0.4rem 1.1rem;
  border: 1px solid rgba(56, 189, 248, 0.3);
  border-radius: var(--radius-pill);
  background: rgba(56, 189, 248, 0.06);
}

.hero-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 4.8vw, 5.2rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.hero-name strong {
  font-weight: 600;
  background: linear-gradient(135deg, var(--violet-glow), var(--pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-title {
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.75rem;
}

.hero-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.2rem, 2.2vw, 1.5rem);
  font-weight: 300;
  font-style: italic;
  color: var(--violet-light);
  border-left: 2px solid var(--violet);
  padding-left: 1.25rem;
  margin-bottom: 2rem;
  line-height: 1.5;
}

.hero-desc {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(248, 246, 255, 0.75);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 520px;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-visual-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-orb {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.28) 0%, rgba(124, 58, 237, 0.05) 60%, transparent 80%);
  filter: blur(40px);
}

/* ── EXECUTIVE FRAMEWORK CARD (HOME HERO) ── */
.framework-card {
  position: relative;
  background: linear-gradient(145deg, rgba(11, 8, 40, 0.85), rgba(124, 58, 237, 0.08));
  border: 1px solid rgba(124, 58, 237, 0.35);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  width: 100%;
  max-width: 460px;
}

.framework-card-header {
  border-bottom: 1px solid rgba(124, 58, 237, 0.2);
  padding-bottom: 1rem;
}

.framework-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--electric);
  margin-bottom: 0.35rem;
}

.framework-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--electric);
  box-shadow: 0 0 8px var(--electric);
}

.framework-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  color: var(--white);
  font-weight: 400;
}

.framework-item {
  background: rgba(124, 58, 237, 0.06);
  border: 1px solid rgba(124, 58, 237, 0.18);
  border-radius: var(--radius-sm);
  padding: 0.9rem 1.1rem;
  transition: var(--transition);
}

.framework-item:hover {
  border-color: rgba(124, 58, 237, 0.45);
  background: rgba(124, 58, 237, 0.12);
  transform: translateX(3px);
}

.framework-item-num {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--violet-light);
  margin-bottom: 0.2rem;
  display: block;
}

.framework-item-title {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.framework-item-desc {
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.55;
}

.framework-card-footer {
  border-top: 1px solid rgba(124, 58, 237, 0.2);
  padding-top: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
  color: rgba(196, 181, 253, 0.65);
}

/* ── CARDS & GRIDS ── */
.cards-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.cards-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.cards-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.feature-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
  position: relative;
}

.feature-card:hover {
  border-color: var(--card-border-hover);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(124, 58, 237, 0.15);
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.25), rgba(56, 189, 248, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.4rem;
}

.feature-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.feature-card p {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
}

/* ── FOUNDER PROFILE & CONNECT SECTION ── */
.founder-profile-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 4.5rem;
}

.founder-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.hero-photo-frame {
  position: relative;
  width: 290px;
  height: 360px;
  border-radius: 50% 50% 48% 52% / 55% 55% 45% 45%;
  border: 2px solid rgba(124, 58, 237, 0.4);
  overflow: hidden;
  background: linear-gradient(160deg, rgba(124, 58, 237, 0.15), rgba(56, 189, 248, 0.08));
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.hero-badge {
  position: absolute;
  bottom: -10px;
  right: 10px;
  background: linear-gradient(135deg, var(--navy), #160d40);
  border: 1px solid rgba(124, 58, 237, 0.45);
  border-radius: 1rem;
  padding: 0.75rem 1.25rem;
  font-size: 0.72rem;
  color: var(--violet-light);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.hero-badge strong {
  display: block;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0;
}

.founder-bio h2 {
  margin-bottom: 1.25rem;
}

.founder-bio p {
  font-size: 0.98rem;
  font-weight: 300;
  color: rgba(248, 246, 255, 0.78);
  line-height: 1.85;
  margin-bottom: 1.25rem;
}

.about-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin-bottom: 1rem;
}

.about-card-label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--electric);
  margin-bottom: 0.4rem;
}

.about-card-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  color: var(--white);
  font-weight: 400;
}

.about-quote {
  border-left: 2px solid var(--violet);
  padding: 1.25rem 1.5rem;
  background: rgba(124, 58, 237, 0.06);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-style: italic;
  color: var(--violet-light);
  line-height: 1.7;
  margin-top: 1.5rem;
}

/* ── SOLUTION BAND ── */
.solution-band {
  margin-top: 4rem;
  padding: 2.5rem 3rem;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.12), rgba(56, 189, 248, 0.06));
  border: 1px solid rgba(124, 58, 237, 0.25);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.solution-band-text {
  flex: 1;
  min-width: 280px;
}

.solution-band-text h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.solution-band-text p {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.75;
  font-weight: 300;
}

.solution-pillars {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
  min-width: 240px;
}

.pillar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: rgba(248, 246, 255, 0.85);
}

.pillar::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--violet-glow);
  flex-shrink: 0;
  box-shadow: 0 0 6px var(--violet-glow);
}

/* ── AUDIENCE CARDS ── */
.audience-card {
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  background: var(--card-bg);
  transition: var(--transition);
}

.audience-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
}

.audience-card.orgs::before {
  background: linear-gradient(90deg, var(--violet), var(--electric));
}

.audience-card.individuals::before {
  background: linear-gradient(90deg, var(--pink), var(--violet));
}

.audience-card:hover {
  border-color: var(--card-border-hover);
  transform: translateY(-4px);
}

.audience-icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  display: block;
}

.audience-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.audience-card p {
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.audience-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.audience-list li {
  font-size: 0.88rem;
  color: rgba(248, 246, 255, 0.8);
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
}

.audience-list li::before {
  content: '→';
  color: var(--violet-glow);
  font-size: 0.85rem;
  margin-top: 1px;
  flex-shrink: 0;
}

/* ── PROGRAMMES ── */
.prog-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  transition: var(--transition);
  position: relative;
}

.prog-card:hover {
  border-color: var(--card-border-hover);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(124, 58, 237, 0.18);
}

.prog-card.featured {
  border-color: rgba(124, 58, 237, 0.6);
  background: rgba(124, 58, 237, 0.12);
}

.prog-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--violet), #9333ea);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: white;
  padding: 0.35rem 1rem;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}

.prog-number {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--electric);
  font-weight: 600;
}

.prog-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1.25;
}

.prog-format {
  font-size: 0.8rem;
  color: rgba(196, 181, 253, 0.6);
  font-weight: 300;
  padding-top: 0.4rem;
  border-top: 1px solid rgba(124, 58, 237, 0.15);
}

.prog-for {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.65;
  flex: 1;
}

.prog-cta {
  display: inline-block;
  text-align: center;
  padding: 0.65rem 1.25rem;
  border: 1px solid rgba(124, 58, 237, 0.45);
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  color: var(--violet-light);
  text-decoration: none;
  transition: var(--transition);
}

.prog-cta:hover {
  background: rgba(124, 58, 237, 0.25);
  color: white;
  border-color: var(--violet-glow);
}

/* ── IMPACT METRICS ── */
.impact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.impact-item {
  padding: 2rem 1.75rem;
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  background: var(--card-bg);
  text-align: center;
  transition: var(--transition);
}

.impact-item:hover {
  border-color: var(--card-border-hover);
  transform: translateY(-3px);
}

.impact-icon {
  font-size: 2rem;
  margin-bottom: 0.85rem;
  display: block;
}

.impact-item h4 {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.impact-item p {
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.65;
}

/* ── QUOTE BAND ── */
.quote-band {
  padding: 5.5rem 2rem;
  text-align: center;
  position: relative;
  background: radial-gradient(circle at 50% 50%, rgba(124, 58, 237, 0.1) 0%, transparent 70%);
}

.quote-band::before,
.quote-band::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(124, 58, 237, 0.4), transparent);
}

.quote-band::before { top: 0; }
.quote-band::after { bottom: 0; }

.big-quote {
  max-width: 820px;
  margin: 0 auto;
}

.quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 5.5rem;
  line-height: 0.5;
  color: rgba(124, 58, 237, 0.35);
  margin-bottom: 1rem;
  display: block;
}

.big-quote blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.35rem, 2.6vw, 2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.big-quote cite {
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--electric);
  font-style: normal;
  font-weight: 500;
}

/* ── CALL TO ACTION BANNER ── */
.cta-banner {
  padding: 5rem 2rem;
  text-align: center;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.12), rgba(56, 189, 248, 0.08));
  border-top: 1px solid rgba(124, 58, 237, 0.2);
  border-bottom: 1px solid rgba(124, 58, 237, 0.2);
}

.cta-banner-inner {
  max-width: 700px;
  margin: 0 auto;
}

.cta-banner h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 300;
  margin-bottom: 1rem;
}

.cta-banner p {
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 2rem;
  font-weight: 300;
}

/* ── CONNECT & CONTACT ACTION HUB (NO FORM) ── */
.contact-hub {
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem 2rem 6rem;
}

.contact-action-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}

.contact-action-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2.2rem 1.5rem;
  border-radius: var(--radius-lg);
  text-decoration: none;
  border: 1px solid var(--card-border);
  transition: var(--transition);
  color: white;
}

.contact-action-card:hover {
  transform: translateY(-5px);
}

.contact-action-card.whatsapp {
  background: linear-gradient(145deg, rgba(18, 140, 126, 0.25), rgba(37, 211, 102, 0.15));
  border-color: rgba(37, 211, 102, 0.4);
}

.contact-action-card.whatsapp:hover {
  border-color: #25d366;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.contact-action-card.email {
  background: linear-gradient(145deg, rgba(124, 58, 237, 0.25), rgba(147, 51, 234, 0.15));
  border-color: rgba(124, 58, 237, 0.4);
}

.contact-action-card.email:hover {
  border-color: var(--violet-glow);
  box-shadow: 0 10px 30px rgba(124, 58, 237, 0.35);
}

.contact-action-card.phone {
  background: linear-gradient(145deg, rgba(14, 165, 233, 0.25), rgba(56, 189, 248, 0.15));
  border-color: rgba(56, 189, 248, 0.4);
}

.contact-action-card.phone:hover {
  border-color: var(--electric);
  box-shadow: 0 10px 30px rgba(56, 189, 248, 0.3);
}

.contact-action-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.contact-action-card.whatsapp .contact-action-icon {
  background: rgba(37, 211, 102, 0.2);
  color: #25d366;
}

.contact-action-card.email .contact-action-icon {
  background: rgba(124, 58, 237, 0.2);
  color: var(--violet-light);
}

.contact-action-card.phone .contact-action-icon {
  background: rgba(56, 189, 248, 0.2);
  color: var(--electric);
}

.contact-action-icon svg {
  width: 28px;
  height: 28px;
}

.contact-action-title {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.contact-action-sub {
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 300;
}

.contact-info-panel {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  text-align: left;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.contact-info-block h4 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--electric);
  margin-bottom: 0.5rem;
}

.contact-info-block p {
  font-size: 0.95rem;
  color: rgba(248, 246, 255, 0.85);
  font-weight: 300;
  line-height: 1.7;
}

.contact-info-block a {
  color: var(--violet-light);
  text-decoration: none;
  transition: var(--transition);
}

.contact-info-block a:hover {
  color: var(--electric);
}

/* ── FOOTER ── */
footer {
  border-top: 1px solid rgba(124, 58, 237, 0.15);
  padding: 2.5rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
  background: rgba(6, 4, 26, 0.9);
}

.footer-brand-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.footer-brand {
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
}

.footer-brand span {
  color: var(--electric);
}

.footer-tag {
  font-size: 0.75rem;
  color: rgba(196, 181, 253, 0.45);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  gap: 1.8rem;
  list-style: none;
}

.footer-links a {
  font-size: 0.82rem;
  color: rgba(196, 181, 253, 0.55);
  text-decoration: none;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--violet-light);
}

.footer-copy {
  font-size: 0.75rem;
  color: rgba(196, 181, 253, 0.35);
}

/* ── RESPONSIVE MEDIA QUERIES ── */
@media (max-width: 1024px) {
  nav { padding: 1.2rem 2.5rem; }
  nav.scrolled { padding: 0.9rem 2.5rem; }
  .cards-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .cards-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .impact-grid { grid-template-columns: repeat(2, 1fr); }
  .founder-profile-grid { grid-template-columns: 1fr; gap: 3rem; text-align: center; }
}

@media (max-width: 860px) {
  nav { padding: 1rem 1.5rem; }
  nav.scrolled { padding: 0.8rem 1.5rem; }
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  
  #hero {
    grid-template-columns: 1fr;
    padding: 7.5rem 1.5rem 4rem;
    gap: 3rem;
    text-align: center;
  }
  .hero-eyebrow { margin-left: auto; margin-right: auto; }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .hero-tagline { border-left: none; border-top: 1px solid var(--violet); border-bottom: 1px solid var(--violet); padding: 0.75rem 0; }
  .hero-btns { justify-content: center; }
  .hero-visual-wrap { order: -1; }
  .framework-card { margin: 0 auto; }
  
  .cards-grid-2 { grid-template-columns: 1fr; }
  .cards-grid-3 { grid-template-columns: 1fr; }
  .cards-grid-4 { grid-template-columns: 1fr; }
  .impact-grid { grid-template-columns: 1fr; }
  
  .solution-band { flex-direction: column; gap: 1.5rem; padding: 2rem 1.5rem; }
  .contact-action-grid { grid-template-columns: 1fr; }
  .contact-info-panel { grid-template-columns: 1fr; padding: 1.5rem; }
  
  footer { padding: 2rem 1.5rem; flex-direction: column; text-align: center; gap: 1.25rem; }
  .footer-links { justify-content: center; flex-wrap: wrap; }
}

@media (max-width: 480px) {
  .framework-card { padding: 1.5rem 1.2rem; }
  .hero-photo-frame { width: 230px; height: 280px; }
  .page-header { padding: 8rem 1.25rem 3rem; }
  .section-inner { padding: 4rem 1.25rem; }
}
