/* ============================================================
   DIANE KALU — Unified Stylesheet
   Regal Warmth · African Feminine Authority
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,600&family=Jost:wght@300;400;500;600;700&display=swap');

/* ── Design Tokens ── */
:root {
  --primary:       #4A1A7A;
  --primary-light: #6B2FA0;
  --primary-deep:  #2E0F4E;
  --accent:        #C9900A;
  --accent-light:  #E8B84B;
  --accent-glow:   rgba(201,144,10,0.25);
  --cognac:        #5C3317;
  --cognac-light:  #7A4520;
  --bg-1:          #0E0812;
  --bg-2:          #160C20;
  --bg-3:          #1E1030;
  --bg-card:       #1A0D28;
  --bg-card-hover: #22103A;
  --ivory:         #F5F0E8;
  --ivory-dim:     #E8E0D0;
  --text-1:        #F5F0E8;
  --text-2:        #C8BDB0;
  --text-3:        #8B7E72;
  --bdr:           rgba(201,144,10,0.15);
  --bdr-light:     rgba(245,240,232,0.08);

  --font-display:  'Cormorant Garamond', Georgia, serif;
  --font-body:     'Jost', sans-serif;

  --max-w:    1240px;
  --gutter:   1.5rem;
  --ease:     cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out: cubic-bezier(0.0, 0.0, 0.2, 1);

  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-xl: 40px;

  --shadow-gold: 0 0 40px rgba(201,144,10,0.18);
  --shadow-card: 0 8px 40px rgba(0,0,0,0.4);
  --shadow-deep: 0 20px 80px rgba(0,0,0,0.6);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--bg-1);
  color: var(--text-1);
  line-height: 1.7;
  overflow-x: hidden;
  font-size: 16px;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: var(--font-body); border: none; background: none; }
ul, ol { list-style: none; }
::selection { background: var(--accent); color: #000; }

/* ── Grain Overlay ── */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.35;
}

/* ── Typography Scale ── */
.display-xl {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 7vw, 6.5rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.display-lg {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.display-md {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 500;
  line-height: 1.2;
}
.display-sm {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 500;
  line-height: 1.3;
}
.label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}
.body-lg { font-size: 1.1rem; line-height: 1.75; color: var(--text-2); }
.body-md { font-size: 1rem;   line-height: 1.7;  color: var(--text-2); }
.body-sm { font-size: 0.875rem; line-height: 1.65; color: var(--text-3); }

/* ── Layout Utilities ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--gutter); }
.section   { padding: 7rem 0; }
.section-sm { padding: 4rem 0; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.text-center { text-align: center; }
.text-right  { text-align: right; }
.mt-sm { margin-top: 1rem; }
.mt-md { margin-top: 2rem; }
.mt-lg { margin-top: 3rem; }
.mb-sm { margin-bottom: 1rem; }
.mb-md { margin-bottom: 2rem; }
.mb-lg { margin-bottom: 3rem; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: all 0.3s var(--ease);
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: #0E0812;
}
.btn-primary:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--accent-glow);
}
.btn-outline {
  border: 1.5px solid rgba(245,240,232,0.3);
  color: var(--text-1);
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}
.btn-ghost {
  color: var(--accent);
  padding: 0.85rem 0;
  position: relative;
}
.btn-ghost::after {
  content: '';
  position: absolute;
  bottom: 0.5rem;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.3s var(--ease);
}
.btn-ghost:hover::after { width: 100%; }
.btn-loading { opacity: 0.7; pointer-events: none; }
.btn svg { width: 16px; height: 16px; }

/* ── Gold Divider ── */
.gold-line {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
  margin-bottom: 1.5rem;
}
.gold-line-center {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  margin: 0 auto 1.5rem;
}

/* ── Section Header ── */
.section-header { margin-bottom: 4rem; }
.section-header.center { text-align: center; }
.section-header.center .gold-line { margin: 0 auto 1.5rem; }
.section-header h2 { margin-bottom: 1rem; }
.section-header p { max-width: 600px; }
.section-header.center p { margin: 0 auto; }

/* ── Cards ── */
.card {
  background: var(--bg-card);
  border: 1px solid var(--bdr);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: all 0.35s var(--ease);
}
.card:hover {
  background: var(--bg-card-hover);
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}
.card-accent-top {
  border-top: 2px solid transparent;
  transition: border-color 0.35s var(--ease);
}
.card-accent-top:hover { border-top-color: var(--accent); }

/* ── Tags / Badges ── */
.tag {
  display: inline-block;
  padding: 0.25rem 0.85rem;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.tag-gold   { background: rgba(201,144,10,0.15); color: var(--accent-light); border: 1px solid rgba(201,144,10,0.3); }
.tag-purple { background: rgba(74,26,122,0.3);   color: #BF80FF; border: 1px solid rgba(107,47,160,0.4); }

/* ── Decorative Crown ── */
.crown-deco {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  color: var(--accent);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.crown-deco::before,
.crown-deco::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent));
}
.crown-deco::after {
  background: linear-gradient(90deg, var(--accent), transparent);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: all 0.4s var(--ease);
}
.nav.scrolled {
  background: rgba(14,8,18,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--bdr);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav-logo-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-1);
  letter-spacing: 0.02em;
}
.nav-logo-title {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 2px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--text-2);
  transition: color 0.25s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width 0.3s var(--ease);
}
.nav-links a:hover,
.nav-links a.active { color: var(--text-1); }
.nav-links a:hover::after { width: 100%; }
.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.nav-cta { padding: 0.6rem 1.4rem; font-size: 0.82rem; }
.nav-parent {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-3);
  border: 1px solid var(--bdr-light);
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
  transition: color 0.25s, border-color 0.25s;
}
.nav-parent:hover { color: var(--accent); border-color: var(--bdr); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  cursor: pointer;
  padding: 4px;
  z-index: 1010;
}
.hamburger span {
  display: block;
  height: 2px;
  background: var(--text-1);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav Overlay */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--bg-1);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}
.nav-overlay.open { opacity: 1; }
.nav-overlay a {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 500;
  color: var(--text-2);
  transition: color 0.2s;
}
.nav-overlay a:hover { color: var(--accent); }
.nav-overlay .btn { margin-top: 1rem; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: 100px;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 70% 50%, rgba(74,26,122,0.35) 0%, transparent 65%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(92,51,23,0.25) 0%, transparent 60%),
    var(--bg-1);
}
.hero-bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201,144,10,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,144,10,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at 70% 50%, black 30%, transparent 70%);
}
.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 4rem;
  align-items: center;
  padding: 4rem 0;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.hero-eyebrow-line {
  width: 40px; height: 1px;
  background: var(--accent);
}
.hero-headline {
  margin-bottom: 1.5rem;
  color: var(--text-1);
}
.hero-headline em {
  font-style: italic;
  color: var(--accent-light);
}
.hero-sub {
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--text-2);
  max-width: 520px;
  margin-bottom: 2.5rem;
}
.hero-ctas {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.hero-stats {
  display: flex;
  gap: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--bdr);
}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--accent-light);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.75rem;
  color: var(--text-3);
  letter-spacing: 0.08em;
  margin-top: 4px;
}

/* Hero Card */
.hero-card {
  background: linear-gradient(145deg, var(--bg-card), var(--bg-2));
  border: 1px solid var(--bdr);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  transition: transform 0.1s;
  box-shadow: var(--shadow-deep);
}
.hero-card-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top center;
}
.hero-card-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(14,8,18,0.95));
  padding: 2rem 1.5rem 1.5rem;
}
.hero-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent);
  color: #0E0812;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  margin-bottom: 0.75rem;
}
.hero-card-name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--text-1);
}
.hero-card-role {
  font-size: 0.78rem;
  color: var(--text-3);
  letter-spacing: 0.08em;
  margin-top: 2px;
}

/* Floating Orb */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}
.hero-orb-1 {
  width: 300px; height: 300px;
  background: rgba(74,26,122,0.4);
  top: -100px; right: -50px;
  animation: orbFloat 8s ease-in-out infinite;
}
.hero-orb-2 {
  width: 200px; height: 200px;
  background: rgba(201,144,10,0.2);
  bottom: 100px; right: 150px;
  animation: orbFloat 6s ease-in-out infinite reverse;
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee-strip {
  background: var(--accent);
  padding: 0.85rem 0;
  overflow: hidden;
  position: relative;
}
.marquee-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: marqueeScroll 30s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #0E0812;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  white-space: nowrap;
}
.marquee-item::after {
  content: '✦';
  font-size: 0.6rem;
}

/* ============================================================
   IMPACT NUMBERS
   ============================================================ */
.impact-section {
  background: var(--bg-2);
  border-top: 1px solid var(--bdr);
  border-bottom: 1px solid var(--bdr);
}
.impact-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 0;
}
.impact-item {
  padding: 3rem 2rem;
  text-align: center;
  border-right: 1px solid var(--bdr);
  position: relative;
}
.impact-item:last-child { border-right: none; }
.impact-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 600;
  color: var(--accent-light);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.impact-label {
  font-size: 0.8rem;
  color: var(--text-3);
  letter-spacing: 0.08em;
  line-height: 1.5;
}

/* ============================================================
   WHO IS DIANE
   ============================================================ */
.about-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-img-wrap::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, var(--accent), transparent 60%);
  border-radius: var(--radius-md);
  z-index: 0;
}
.about-img-wrap img {
  position: relative;
  z-index: 1;
  border-radius: var(--radius-md);
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top center;
}
.about-forbes-badge {
  position: absolute;
  bottom: 1.5rem;
  right: -1.5rem;
  z-index: 2;
  background: var(--bg-1);
  border: 1px solid var(--bdr);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  box-shadow: var(--shadow-card);
}
.about-forbes-pub {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent-light);
  text-transform: uppercase;
}
.about-forbes-text {
  font-size: 0.72rem;
  color: var(--text-3);
}
.about-quote {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--text-2);
  line-height: 1.6;
  border-left: 2px solid var(--accent);
  padding-left: 1.5rem;
  margin: 2rem 0;
}

/* ============================================================
   WHY DIANE — DIFFERENTIATORS
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1.5rem;
}
.why-card {
  background: var(--bg-card);
  border: 1px solid var(--bdr);
  border-top: 2px solid transparent;
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: all 0.35s var(--ease);
}
.why-card:hover {
  border-top-color: var(--accent);
  background: var(--bg-card-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}
.why-icon {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}
.why-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-1);
  margin-bottom: 0.75rem;
}
.why-desc { font-size: 0.9rem; color: var(--text-2); line-height: 1.7; }

/* ============================================================
   SERVICE PILLARS
   ============================================================ */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 1.5rem;
}
.pillar-card {
  background: var(--bg-card);
  border: 1px solid var(--bdr);
  border-radius: var(--radius-md);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 0.35s var(--ease);
  position: relative;
  overflow: hidden;
}
.pillar-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.pillar-card:hover::before { transform: scaleX(1); }
.pillar-card:hover {
  background: var(--bg-card-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}
.pillar-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 300;
  color: rgba(201,144,10,0.15);
  line-height: 1;
  position: absolute;
  top: 1.5rem; right: 2rem;
}
.pillar-icon { font-size: 2.2rem; }
.pillar-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-1);
}
.pillar-sub {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
}
.pillar-desc { font-size: 0.9rem; color: var(--text-2); line-height: 1.7; }
.pillar-list { margin-top: 0.5rem; }
.pillar-list li {
  font-size: 0.85rem;
  color: var(--text-3);
  padding: 0.3rem 0;
  border-bottom: 1px solid var(--bdr-light);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.pillar-list li::before {
  content: '→';
  color: var(--accent);
  font-size: 0.75rem;
}

/* ============================================================
   COACHING TIERS
   ============================================================ */
.tiers-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1.5rem;
  align-items: end;
}
.tier-card {
  background: var(--bg-card);
  border: 1px solid var(--bdr);
  border-radius: var(--radius-md);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.35s var(--ease);
}
.tier-card.featured {
  background: linear-gradient(145deg, var(--primary-deep), var(--bg-card));
  border-color: var(--accent);
  transform: scale(1.04);
  box-shadow: var(--shadow-gold);
  position: relative;
}
.tier-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #0E0812;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: 50px;
}
.tier-card:hover:not(.featured) {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}
.tier-name {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.tier-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--text-1);
  margin-bottom: 0.5rem;
}
.tier-price {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-light);
  line-height: 1;
  margin: 1.5rem 0;
}
.tier-price span {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-3);
}
.tier-features {
  text-align: left;
  margin: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.tier-features li {
  font-size: 0.85rem;
  color: var(--text-2);
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}
.tier-features li::before {
  content: '✦';
  color: var(--accent);
  font-size: 0.6rem;
  margin-top: 4px;
  flex-shrink: 0;
}

/* ============================================================
   FOUNDER SECTION
   ============================================================ */
.founder-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.founder-img-wrap {
  position: relative;
}
.founder-img-wrap img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--radius-md);
}
.founder-img-label {
  position: absolute;
  bottom: 1.5rem;
  left: 0;
  background: linear-gradient(90deg, var(--bg-1) 80%, transparent);
  padding: 1rem 1.5rem 1rem 1.5rem;
}
.founder-img-name {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--text-1);
  line-height: 1;
}
.founder-img-role {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 4px;
}
.founder-accent-bar {
  width: 4px;
  height: 80px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  position: absolute;
  left: 0; bottom: 2rem;
}
.founder-quote-pull {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-style: italic;
  line-height: 1.55;
  color: var(--text-1);
  position: relative;
  padding-left: 1.5rem;
  border-left: 2px solid var(--accent);
  margin: 2rem 0;
}

/* ============================================================
   MISSION PULL QUOTE
   ============================================================ */
.mission-pull {
  background: linear-gradient(135deg, var(--primary-deep), var(--bg-2));
  border-top: 1px solid var(--bdr);
  border-bottom: 1px solid var(--bdr);
  text-align: center;
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}
.mission-pull::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 20rem;
  color: rgba(201,144,10,0.05);
  position: absolute;
  top: -4rem;
  left: 50%;
  transform: translateX(-50%);
  line-height: 1;
  pointer-events: none;
}
.mission-pull-text {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2.8rem);
  font-style: italic;
  font-weight: 500;
  line-height: 1.4;
  color: var(--text-1);
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.mission-pull-attr {
  margin-top: 1.5rem;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
}

/* ============================================================
   VERTICALS / INITIATIVES
   ============================================================ */
.verticals-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 1.5rem;
}
.vertical-card {
  background: var(--bg-card);
  border: 1px solid var(--bdr);
  border-radius: var(--radius-md);
  padding: 2rem 2.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  transition: all 0.35s var(--ease);
}
.vertical-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}
.vertical-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201,144,10,0.08);
  border-radius: var(--radius-sm);
}
.vertical-info { flex: 1; }
.vertical-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-1);
  margin-bottom: 0.25rem;
}
.vertical-type {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}
.vertical-desc { font-size: 0.85rem; color: var(--text-2); line-height: 1.6; }
.vertical-arrow {
  color: var(--accent);
  font-size: 1.2rem;
  align-self: center;
  transition: transform 0.25s;
}
.vertical-card:hover .vertical-arrow { transform: translateX(4px); }

/* ============================================================
   FINAL CTA BANNER
   ============================================================ */
.cta-banner {
  background: var(--bg-2);
  border-top: 1px solid var(--bdr);
  text-align: center;
  padding: 7rem 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(74,26,122,0.3) 0%, transparent 65%);
  pointer-events: none;
}
.cta-banner-eyebrow { margin-bottom: 1rem; }
.cta-banner h2 { margin-bottom: 1rem; }
.cta-banner p { max-width: 560px; margin: 0 auto 2.5rem; }
.cta-banner-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--bg-1);
  border-top: 1px solid var(--bdr);
  padding: 5rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}
.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--text-1);
  margin-bottom: 0.25rem;
}
.footer-brand-title {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.footer-tagline { font-size: 0.875rem; color: var(--text-3); line-height: 1.65; margin-bottom: 1.5rem; }
.footer-socials { display: flex; gap: 0.75rem; }
.footer-social-link {
  width: 36px; height: 36px;
  border: 1px solid var(--bdr);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem;
  color: var(--text-3);
  transition: all 0.25s;
}
.footer-social-link:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(201,144,10,0.08);
}
.footer-col-title {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-1);
  margin-bottom: 1.25rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a {
  font-size: 0.875rem;
  color: var(--text-3);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--accent); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.875rem;
  color: var(--text-3);
  margin-bottom: 0.6rem;
}
.footer-contact-item svg { width: 14px; height: 14px; flex-shrink: 0; margin-top: 3px; color: var(--accent); }
.footer-bottom {
  border-top: 1px solid var(--bdr);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-copy { font-size: 0.78rem; color: var(--text-3); }
.footer-parent {
  font-size: 0.72rem;
  color: var(--text-3);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.footer-parent a { color: var(--accent); }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: 0.72rem; color: var(--text-3); transition: color 0.2s; }
.footer-legal a:hover { color: var(--accent); }

/* ============================================================
   WHATSAPP WIDGET
   ============================================================ */
.wa-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1rem;
}
.wa-btn {
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
  animation: waPulse 3s ease-in-out infinite;
  transition: transform 0.25s;
}
.wa-btn:hover { transform: scale(1.08); }
.wa-btn svg { width: 30px; height: 30px; fill: white; }
.wa-tooltip {
  position: absolute;
  right: 70px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--bg-card);
  color: var(--text-1);
  font-size: 0.78rem;
  font-weight: 500;
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  border: 1px solid var(--bdr);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}
.wa-tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-right: none;
  border-left-color: var(--bg-card);
}
.wa-btn:hover .wa-tooltip { opacity: 1; }
.wa-chat-panel {
  width: 320px;
  background: white;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
  display: none;
  flex-direction: column;
}
.wa-chat-panel.open {
  display: flex;
  animation: waFadeIn 0.3s var(--ease);
}
.wa-panel-head {
  background: #075E54;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.wa-avatar {
  width: 42px; height: 42px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}
.wa-panel-info { flex: 1; }
.wa-panel-name { font-size: 0.95rem; font-weight: 600; color: white; }
.wa-panel-status { font-size: 0.72rem; color: rgba(255,255,255,0.7); margin-top: 1px; }
.wa-close {
  background: none; border: none;
  color: rgba(255,255,255,0.7);
  font-size: 1.2rem;
  cursor: pointer;
  padding: 0.25rem;
  line-height: 1;
  transition: color 0.2s;
}
.wa-close:hover { color: white; }
.wa-panel-body {
  background: #ECE5DD;
  padding: 1.25rem;
  flex: 1;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100'%3E%3Crect fill='%23ECE5DD' width='100' height='100'/%3E%3C/svg%3E");
}
.wa-bubble {
  background: white;
  border-radius: 0 12px 12px 12px;
  padding: 0.75rem 1rem;
  max-width: 90%;
  font-size: 0.875rem;
  color: #111;
  line-height: 1.5;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  position: relative;
}
.wa-bubble::before {
  content: '';
  position: absolute;
  top: 0; left: -8px;
  border: 8px solid transparent;
  border-right-color: white;
  border-top: none;
}
.wa-time { font-size: 0.65rem; color: #999; text-align: right; margin-top: 4px; }
.wa-panel-footer {
  background: #F0F0F0;
  padding: 0.75rem;
  display: flex;
  gap: 0.5rem;
  align-items: flex-end;
}
.wa-textarea {
  flex: 1;
  border: none;
  background: white;
  border-radius: 20px;
  padding: 0.6rem 1rem;
  font-size: 0.875rem;
  font-family: var(--font-body);
  resize: none;
  outline: none;
  max-height: 100px;
  overflow-y: auto;
  line-height: 1.5;
}
.wa-send {
  width: 40px; height: 40px;
  background: #25D366;
  border: none;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s;
}
.wa-send:hover { background: #128C7E; }
.wa-send svg { width: 18px; height: 18px; fill: white; }
.wa-privacy {
  font-size: 0.65rem;
  color: #999;
  text-align: center;
  padding: 0.4rem;
  background: #F0F0F0;
  border-top: 1px solid #e0e0e0;
}

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
}
.contact-info-icon {
  width: 44px; height: 44px;
  background: rgba(201,144,10,0.1);
  border: 1px solid var(--bdr);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.contact-info-label { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); margin-bottom: 0.25rem; }
.contact-info-value { font-size: 0.9rem; color: var(--text-2); }
.form-group { margin-bottom: 1.25rem; }
.form-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 0.5rem;
}
.form-control {
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--bdr);
  border-radius: var(--radius-sm);
  padding: 0.9rem 1.1rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-1);
  outline: none;
  transition: border-color 0.25s;
  -webkit-appearance: none;
}
.form-control:focus { border-color: var(--accent); }
.form-control::placeholder { color: var(--text-3); }
select.form-control { cursor: pointer; }
textarea.form-control { resize: vertical; min-height: 130px; }
.form-honeypot { display: none; }
.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin: 1.25rem 0;
}
.form-consent input { margin-top: 3px; accent-color: var(--accent); flex-shrink: 0; }
.form-consent label { font-size: 0.82rem; color: var(--text-3); line-height: 1.55; }
#contact-msg {
  margin-top: 1rem;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  display: none;
}
#contact-msg.success {
  display: block;
  background: rgba(37,211,102,0.1);
  border: 1px solid rgba(37,211,102,0.3);
  color: #4ade80;
}
#contact-msg.error {
  display: block;
  background: rgba(239,68,68,0.1);
  border: 1px solid rgba(239,68,68,0.3);
  color: #f87171;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.page-hero {
  padding: 160px 0 7rem;
  position: relative;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 30% 50%, rgba(74,26,122,0.3) 0%, transparent 65%), var(--bg-1);
}
.page-hero-content { position: relative; z-index: 2; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 1rem;
}
.value-card {
  background: var(--bg-card);
  border: 1px solid var(--bdr);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.5rem;
  transition: all 0.35s var(--ease);
}
.value-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
}
.value-icon { font-size: 1.5rem; margin-bottom: 0.75rem; }
.value-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-1);
  margin-bottom: 0.5rem;
}
.value-desc { font-size: 0.82rem; color: var(--text-3); line-height: 1.6; }

/* ============================================================
   BLOG PAGE
   ============================================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 2rem;
}
.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--bdr);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.35s var(--ease);
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
  border-color: var(--accent);
}
.blog-card-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.blog-card-img-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--primary-deep), var(--bg-2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}
.blog-card-body { padding: 1.75rem; }
.blog-card-cat { margin-bottom: 0.75rem; }
.blog-card-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-1);
  line-height: 1.35;
  margin-bottom: 0.75rem;
  transition: color 0.2s;
}
.blog-card:hover .blog-card-title { color: var(--accent-light); }
.blog-card-excerpt { font-size: 0.85rem; color: var(--text-3); line-height: 1.65; margin-bottom: 1rem; }
.blog-card-meta { font-size: 0.72rem; color: var(--text-3); display: flex; gap: 1rem; }

/* ============================================================
   SPEAKING PAGE
   ============================================================ */
.topics-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1.5rem;
}
.topic-card {
  background: var(--bg-card);
  border: 1px solid var(--bdr);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: all 0.35s var(--ease);
}
.topic-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}
.topic-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  color: rgba(201,144,10,0.2);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.topic-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-1);
  margin-bottom: 0.75rem;
}
.topic-desc { font-size: 0.875rem; color: var(--text-2); line-height: 1.65; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes orbFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-20px) scale(1.05); }
}
@keyframes marqueeScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50%       { box-shadow: 0 4px 30px rgba(37,211,102,0.7), 0 0 0 12px rgba(37,211,102,0.08); }
}
@keyframes waFadeIn {
  from { opacity: 0; transform: translateY(10px) scale(0.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.fade-up   { animation: fadeUp  0.7s var(--ease) both; }
.fade-up-2 { animation: fadeUp  0.7s var(--ease) 0.15s both; }
.fade-up-3 { animation: fadeUp  0.7s var(--ease) 0.3s  both; }
.fade-in   { animation: fadeIn  0.6s ease both; }

/* Scroll Reveal */
[data-reveal] {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
[data-reveal].revealed {
  opacity: 1;
  transform: none;
}
[data-reveal="delay-1"] { transition-delay: 0.1s; }
[data-reveal="delay-2"] { transition-delay: 0.2s; }
[data-reveal="delay-3"] { transition-delay: 0.3s; }
[data-reveal="delay-4"] { transition-delay: 0.4s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-content       { grid-template-columns: 1fr; }
  .hero-card          { max-width: 420px; margin: 0 auto; }
  .hero-orb-1, .hero-orb-2 { display: none; }
  .about-strip        { grid-template-columns: 1fr; gap: 3rem; }
  .about-forbes-badge { right: 0; }
  .founder-grid       { grid-template-columns: 1fr; gap: 3rem; }
  .why-grid           { grid-template-columns: repeat(2,1fr); }
  .tiers-grid         { grid-template-columns: 1fr; }
  .tier-card.featured { transform: none; }
  .impact-grid        { grid-template-columns: repeat(2,1fr); }
  .impact-item        { border-right: none; border-bottom: 1px solid var(--bdr); }
  .footer-grid        { grid-template-columns: 1fr 1fr; }
  .values-grid        { grid-template-columns: repeat(2,1fr); }
  .contact-grid       { grid-template-columns: 1fr; gap: 3rem; }
  .pillars-grid       { grid-template-columns: 1fr; }
  .verticals-grid     { grid-template-columns: 1fr; }
  .blog-grid          { grid-template-columns: repeat(2,1fr); }
  .topics-grid        { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  :root { --gutter: 1rem; }
  .section { padding: 5rem 0; }
  .nav-links, .nav-parent { display: none; }
  .hamburger { display: flex; }
  .hero-stats { gap: 1.5rem; }
  .hero-stat-num { font-size: 1.8rem; }
  .why-grid       { grid-template-columns: 1fr; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .footer-grid    { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom  { flex-direction: column; text-align: center; }
  .blog-grid      { grid-template-columns: 1fr; }
  .topics-grid    { grid-template-columns: 1fr; }
  .values-grid    { grid-template-columns: repeat(2,1fr); }
  .impact-grid    { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { text-align: center; justify-content: center; }
  .hero-stats { flex-wrap: wrap; }
  .wa-chat-panel { width: calc(100vw - 2rem); }
  .wa-float { right: 1rem; bottom: 1rem; }
  .values-grid { grid-template-columns: 1fr; }
  .cta-banner-btns { flex-direction: column; align-items: center; }
}
