
/* ═══════════════════════════════════════════
   ANTI-SPAM: HONEYPOT FIELD (hidden from humans)
═══════════════════════════════════════════ */
.form-hp { position: absolute; left: -9999px; top: -9999px; opacity: 0; height: 0; width: 0; z-index: -1; }

/* ═══════════════════════════════════════════
   TOKENS — BOLD & AUTHORITATIVE
═══════════════════════════════════════════ */
:root {
  /* Backgrounds */
  --cream:        #0A0E1A;
  --cream2:       #111827;
  --cream3:       #0F1525;
  --cream-dark:   #1E293B;
  --navy:         #F8FAFC;
  --navy2:        #E2E8F0;
  --navy-light:   #CBD5E1;

  /* Type */
  --text-primary:   #F8FAFC;
  --text-secondary: #94A3B8;
  --text-muted:     #64748B;
  --text-light:     #FFFFFF;

  /* Accent (was Gold, now Command Blue) */
  --gold:        #3B82F6;
  --gold2:       #1D4ED8;
  --gold3:       #60A5FA;
  --gold-light:  #60A5FA;

  /* Borders */
  --border:      rgba(255,255,255,0.08);
  --border2:     rgba(255,255,255,0.06);
  --border-navy: rgba(255,255,255,0.10);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Outfit', system-ui, sans-serif;
  --font-mono:    'DM Mono', monospace;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.6;
}

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: #1E293B; border-radius: 2px; }

/* ═══════════════════════════════════════════
   NAV
═══════════════════════════════════════════ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
  height: 72px;
  background: rgba(10,14,26,0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s var(--ease);
}

.nav-logo { display: flex; flex-direction: column; gap: 1px; }
.nav-logo-main {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.3px;
}
.nav-logo-sub {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
}

.nav-links { display: flex; align-items: center; gap: 36px; list-style: none; }
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}
.nav-links a:hover { color: var(--navy); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: transparent !important;
  border: 1px solid var(--gold) !important;
  color: var(--gold) !important;
  padding: 8px 20px;
  border-radius: 3px;
  transition: all 0.3s var(--ease) !important;
}
.nav-cta:hover {
  background: #3B82F6 !important;
  border-color: #3B82F6 !important;
  color: #FFFFFF !important;
}
.nav-cta::after { display: none !important; }

/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 60px 80px;
  background: var(--cream2);
}

/* Subtle paper texture grid */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(59,130,246,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59,130,246,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

/* Ambient glow */
.hero-glow {
  position: absolute;
  top: -80px; right: -80px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(59,130,246,0.08) 0%, transparent 65%);
  pointer-events: none;
}
.hero-glow2 {
  position: absolute;
  bottom: -100px; left: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(29,78,216,0.06) 0%, transparent 65%);
  pointer-events: none;
}

/* Left rule accent */
.hero::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, transparent, var(--gold), var(--gold2), transparent);
  opacity: 0.6;
}

.hero-content {
  position: relative;
  max-width: 760px;
  z-index: 2;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  animation: fadeUp 0.8s var(--ease) both;
}
.hero-eyebrow-line { width: 40px; height: 1px; background: var(--gold); }
.hero-eyebrow-text {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(52px, 7vw, 92px);
  font-weight: 700;
  line-height: 1.03;
  color: var(--navy);
  margin-bottom: 10px;
  animation: fadeUp 0.8s 0.1s var(--ease) both;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(17px, 2.2vw, 24px);
  font-weight: 400;
  font-style: italic;
  color: var(--text-secondary);
  margin-bottom: 32px;
  letter-spacing: 0.3px;
  animation: fadeUp 0.8s 0.2s var(--ease) both;
}

.hero-desc {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 580px;
  line-height: 1.8;
  margin-bottom: 48px;
  font-weight: 300;
  animation: fadeUp 0.8s 0.3s var(--ease) both;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  animation: fadeUp 0.8s 0.4s var(--ease) both;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #3B82F6;
  color: #FFFFFF;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.3px;
  padding: 14px 28px;
  border-radius: 3px;
  text-decoration: none;
  transition: all 0.3s var(--ease);
}
.btn-primary:hover {
  background: #1D4ED8;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(59,130,246,0.35);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: color 0.2s;
  border-bottom: 1px solid rgba(59,130,246,0.3);
  padding-bottom: 2px;
}
.btn-secondary:hover { color: var(--navy); border-color: var(--navy); }

/* Hero stats strip */
.hero-stats {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  display: flex;
  border-top: 1px solid var(--border);
  background: rgba(17,24,39,0.9);
  backdrop-filter: blur(8px);
  animation: fadeUp 0.8s 0.6s var(--ease) both;
}
.hero-stat {
  flex: 1;
  padding: 22px 36px;
  border-right: 1px solid var(--border);
}
.hero-stat:last-child { border-right: none; }
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.hero-stat-label {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
  line-height: 1.4;
}

/* ═══════════════════════════════════════════
   SECTION SHARED
═══════════════════════════════════════════ */
section { position: relative; padding: 100px 60px; }

.section-inner { max-width: 1200px; margin: 0 auto; }

.section-eyebrow { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.section-eyebrow-line { width: 32px; height: 1px; background: var(--gold); }
.section-eyebrow-text {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--navy);
  margin-bottom: 16px;
}
.section-title em { font-style: italic; color: var(--gold); }

.section-subtitle {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 560px;
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 60px;
}

/* ═══════════════════════════════════════════
   ABOUT
═══════════════════════════════════════════ */
.about { background: var(--cream3); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}

.about-photo-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 3/4;
  max-width: 340px;
}
.about-photo-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--cream-dark), var(--cream2));
  border: 1px solid var(--border);
}
.about-photo-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.about-photo-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: rgba(59,130,246,0.1);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}
.about-photo-note {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
}
.about-photo-corner { position: absolute; width: 20px; height: 20px; }
.about-photo-corner.tl { top: -1px; left: -1px; border-top: 2px solid var(--gold); border-left: 2px solid var(--gold); }
.about-photo-corner.tr { top: -1px; right: -1px; border-top: 2px solid var(--gold); border-right: 2px solid var(--gold); }
.about-photo-corner.bl { bottom: -1px; left: -1px; border-bottom: 2px solid var(--gold); border-left: 2px solid var(--gold); }
.about-photo-corner.br { bottom: -1px; right: -1px; border-bottom: 2px solid var(--gold); border-right: 2px solid var(--gold); }

.about-certs { margin-top: 20px; display: flex; flex-wrap: wrap; gap: 8px; }
.cert-badge {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-navy);
  border-radius: 2px;
  padding: 5px 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-secondary);
  letter-spacing: 0.8px;
}
.cert-badge.gold {
  background: rgba(59,130,246,0.08);
  border-color: var(--border);
  color: var(--gold);
}

.about-name {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 6px;
}
.about-role {
  font-family: var(--font-display);
  font-size: 20px;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 32px;
}

.about-bio {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.85;
  font-weight: 300;
  margin-bottom: 18px;
}
.about-bio strong { color: var(--navy); font-weight: 600; }

.about-highlights {
  margin-top: 36px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.about-highlight {
  background: var(--cream2);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  padding: 14px 18px;
  border-radius: 0 3px 3px 0;
}
.about-highlight-label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.about-highlight-value {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--gold);
}
.about-highlight-desc {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
  line-height: 1.4;
}

/* ═══════════════════════════════════════════
   SERVICES
═══════════════════════════════════════════ */
.services { background: var(--cream); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 60px;
  border: 1px solid var(--border);
}

.service-card {
  background: var(--cream3);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--ease);
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform 0.4s var(--ease);
}
.service-card:hover { background: var(--cream2); }
.service-card:hover::before { transform: scaleX(1); }

.service-number {
  font-family: var(--font-display);
  font-size: 60px;
  font-weight: 700;
  color: rgba(59,130,246,0.05);
  line-height: 1;
  position: absolute;
  top: 12px; right: 20px;
  transition: color 0.4s;
}
.service-card:hover .service-number { color: rgba(59,130,246,0.12); }

.service-icon {
  width: 44px; height: 44px;
  background: rgba(59,130,246,0.08);
  border: 1px solid var(--border);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 18px;
  transition: all 0.3s;
}
.service-card:hover .service-icon { background: rgba(59,130,246,0.14); transform: scale(1.05); }

.service-title {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.2;
}
.service-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  font-weight: 300;
}

.service-tags { margin-top: 18px; display: flex; flex-wrap: wrap; gap: 6px; }
.service-tag {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-navy);
  padding: 3px 10px;
  border-radius: 2px;
}
.service-tag.new {
  background: rgba(59,130,246,0.08);
  border-color: var(--border);
  color: var(--gold);
}

/* ═══════════════════════════════════════════
   WHY
═══════════════════════════════════════════ */
.why { background: var(--cream3); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-list { margin-top: 40px; display: flex; flex-direction: column; }
.why-item {
  display: flex;
  gap: 24px;
  padding: 26px 0;
  border-bottom: 1px solid var(--border);
  transition: padding-left 0.3s;
}
.why-item:first-child { border-top: 1px solid var(--border); }
.why-item:hover { padding-left: 8px; }
.why-item-num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--gold);
  min-width: 28px;
  padding-top: 4px;
}
.why-item-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}
.why-item-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
  font-weight: 300;
}

.why-quote-block {
  background: #0C1A3D;
  border-radius: 3px;
  padding: 48px;
  position: relative;
  overflow: hidden;
}
.why-quote-block::before {
  content: '\201C';
  position: absolute;
  top: -20px; left: 32px;
  font-family: var(--font-display);
  font-size: 120px;
  color: var(--gold-light);
  line-height: 1;
  opacity: 0.15;
}
.why-quote-text {
  font-family: var(--font-display);
  font-size: 23px;
  font-style: italic;
  color: rgba(248,250,252,0.9);
  line-height: 1.55;
  margin-bottom: 28px;
}
.why-quote-attr {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-light);
}
.why-companies {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.why-companies-label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 14px;
}
.why-companies-list { display: flex; flex-wrap: wrap; gap: 8px; }
.company-chip {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 5px 14px;
  border-radius: 2px;
}

/* ═══════════════════════════════════════════
   THOUGHT LEADERSHIP
═══════════════════════════════════════════ */
.thought { background: var(--cream); }

.thought-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.thought-card {
  background: var(--cream3);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: all 0.4s var(--ease);
}
.thought-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.2);
}

.thought-card-header {
  padding: 24px 26px 18px;
  border-bottom: 1px solid var(--border);
  background: var(--cream2);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.thought-card-type {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(59,130,246,0.08);
  border: 1px solid var(--border);
  padding: 4px 10px;
  border-radius: 2px;
}
.thought-card-year {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
}
.thought-card-body { padding: 22px 26px 26px; flex: 1; display: flex; flex-direction: column; }
.thought-card-pub {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.thought-card-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 12px;
  flex: 1;
}
.thought-card-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.65;
  font-weight: 300;
}

/* ═══════════════════════════════════════════
   SPEAKING
═══════════════════════════════════════════ */
.speaking {
  background: #0C1A3D;
}

/* Override section text for featured section */
.speaking .section-eyebrow-line { background: var(--gold-light); }
.speaking .section-eyebrow-text { color: var(--gold-light); }
.speaking .section-title { color: #FFFFFF; }
.speaking .section-title em { color: var(--gold-light); }

.speaking-feature {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 3px;
  padding: 56px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  overflow: hidden;
  margin-top: 60px;
}
.speaking-feature::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-light), transparent);
}

.speaking-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(59,130,246,0.12);
  border: 1px solid rgba(59,130,246,0.25);
  padding: 6px 14px;
  border-radius: 3px;
  margin-bottom: 20px;
}
.speaking-badge-dot {
  width: 6px; height: 6px;
  background: var(--gold-light);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
.speaking-badge-text {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-light);
}

.speaking-event-title {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.15;
  margin-bottom: 16px;
}
.speaking-event-title em { color: var(--gold-light); font-style: italic; }
.speaking-event-desc {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 28px;
}
.speaking-meta { display: flex; flex-direction: column; gap: 10px; }
.speaking-meta-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: rgba(255,255,255,0.8);
}
.speaking-meta-icon {
  width: 32px; height: 32px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

.speaking-panel {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 3px;
  padding: 30px;
}
.speaking-panel-title {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 18px;
}
.panelist-list { display: flex; flex-direction: column; gap: 10px; }
.panelist-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 2px;
  transition: border-color 0.2s;
}
.panelist-item:hover { border-color: rgba(59,130,246,0.25); }
.panelist-avatar {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
}
.panelist-name { font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.85); line-height: 1.2; }
.panelist-org { font-size: 11px; color: rgba(255,255,255,0.35); }
.panelist-item.moderator .panelist-name { color: var(--gold-light); }

/* ═══════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════ */
.contact { background: var(--cream3); border-top: 1px solid var(--border); padding-bottom: 120px; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-top: 60px;
}

.contact-intro {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 32px;
}
.contact-intro strong { color: var(--navy); font-weight: 500; }

.contact-methods { display: flex; flex-direction: column; gap: 14px; }
.contact-method {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  background: var(--cream2);
  border: 1px solid var(--border);
  border-radius: 3px;
  text-decoration: none;
  transition: all 0.3s var(--ease);
}
.contact-method:hover {
  border-color: rgba(59,130,246,0.3);
  background: var(--cream);
  transform: translateX(4px);
  box-shadow: 0 4px 16px rgba(255,255,255,0.04);
}
.contact-method-icon {
  width: 40px; height: 40px;
  background: rgba(59,130,246,0.08);
  border: 1px solid var(--border);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.contact-method-label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 3px;
}
.contact-method-value { font-size: 15px; font-weight: 500; color: var(--navy); }

.contact-form {
  background: var(--cream2);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 40px;
}
.contact-form-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 28px;
}

.form-group { margin-bottom: 18px; }
.form-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 7px;
}
.form-input, .form-textarea, .form-select {
  width: 100%;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 11px 14px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--navy);
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}
.form-input:focus, .form-textarea:focus, .form-select:focus { border-color: var(--gold); }
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-muted); }
.form-textarea { height: 110px; resize: vertical; }
.form-select { cursor: pointer; }
.form-select option { background: var(--cream3); }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.form-submit {
  width: 100%;
  background: #3B82F6;
  color: #FFFFFF;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;
  padding: 13px;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  margin-top: 6px;
}
.form-submit:hover {
  background: #1D4ED8;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(59,130,246,0.3);
}

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
footer {
  background: #060911;
  padding: 40px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: #FFFFFF;
}
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.35); margin-top: 4px; }
.footer-center { display: flex; gap: 28px; }
.footer-link {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-link:hover { color: var(--gold-light); }
.footer-email {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--gold-light);
  text-decoration: none;
}

/* ═══════════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  nav { padding: 0 32px; }
  section { padding: 80px 32px; }
  .hero { padding: 120px 32px 80px; }
  .about-grid, .why-grid, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .services-grid, .thought-grid { grid-template-columns: 1fr 1fr; }
  .speaking-feature { grid-template-columns: 1fr; gap: 40px; }
  footer { padding: 32px; flex-direction: column; gap: 20px; text-align: center; }
  .footer-center { flex-wrap: wrap; justify-content: center; }
}
@media (max-width: 640px) {
  nav .nav-links { display: none; }
  .hero h1 { font-size: 42px; }
  .hero-stats { flex-direction: column; }
  .hero-stat { border-right: none; border-bottom: 1px solid var(--border); }
  .services-grid, .thought-grid { grid-template-columns: 1fr; }
  .about-highlights { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  section { padding: 60px 24px; }
  .hero { padding: 100px 24px 80px; }
  .speaking-feature { padding: 32px 24px; }
  .contact-form { padding: 28px 24px; }
}

/* ═══ FRAMEWORKS SECTION ═══ */
.frameworks { background: var(--cream3); }
.frameworks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  margin-top: 48px;
}
.frameworks-group { }
.frameworks-group-title {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.frameworks-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.fw-tag {
  display: inline-block;
  padding: 6px 13px;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-secondary);
  background: var(--cream);
  font-family: var(--font-body);
}
.fw-tag.accent {
  background: var(--cream2);
  border-color: rgba(59,130,246,0.2);
  color: var(--gold3);
}
.fw-tag.gold {
  background: #3B82F6;
  border-color: #3B82F6;
  color: #FFFFFF;
  font-weight: 600;
}

/* ═══ ABOUT QUOTE ═══ */
.about-quote {
  margin: 28px 0 32px;
  padding: 20px 24px;
  border-left: 3px solid var(--gold);
  background: var(--cream2);
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text-secondary);
  line-height: 1.6;
  border-radius: 0 6px 6px 0;
}
.about-quote cite {
  display: block;
  margin-top: 10px;
  font-size: 0.78rem;
  font-style: normal;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--gold3);
}


/* Multi-page additions */
.nav-logo { text-decoration: none; }
.nav-links a.active { color: var(--gold); }
.nav-links a.active::after { width: 100%; }
.nav-cta.active { background: #3B82F6 !important; color: #FFFFFF !important; }

.page-header {
  padding: 140px 60px 80px;
  background: var(--cream2);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, transparent, var(--gold), var(--gold2), transparent);
  opacity: 0.6;
}
.page-header-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(59,130,246,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59,130,246,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.page-header-inner { max-width: 1200px; margin: 0 auto; position: relative; z-index: 2; }
.page-header-eyebrow { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.page-header-eyebrow-line { width: 40px; height: 1px; background: var(--gold); }
.page-header-eyebrow-text { font-family: var(--font-mono); font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); }
.page-header h1 { font-family: var(--font-display); font-size: clamp(44px,6vw,80px); font-weight: 700; line-height: 1.05; color: var(--navy); }
.page-header h1 em { font-style: italic; color: var(--gold); }
.page-header-sub { font-size: 18px; color: var(--text-secondary); font-weight: 300; margin-top: 16px; max-width: 580px; line-height: 1.7; }

/* Form status message */
.form-status-success { background: rgba(34,197,94,0.1); border: 1px solid rgba(34,197,94,0.25); color: #4ADE80; }
.form-status-error { background: rgba(220,38,38,0.1); border: 1px solid rgba(220,38,38,0.25); color: #F87171; }
