/* ═══════════════════════════════════
   HOME PAGE STYLES
═══════════════════════════════════ */

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--nav-h);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(26,140,216,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(92,184,232,0.10) 0%, transparent 50%),
    radial-gradient(ellipse 40% 60% at 80% 10%, rgba(212,168,39,0.07) 0%, transparent 50%);
}
.hero-particles {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(26,140,216,0.5) 1px, transparent 1px),
    radial-gradient(circle, rgba(92,184,232,0.3) 1px, transparent 1px);
  background-size: 60px 60px, 120px 120px;
  background-position: 0 0, 30px 30px;
  animation: particleFloat 20s linear infinite;
  opacity: 0.4;
}
@keyframes particleFloat {
  0%   { transform: translateY(0); }
  100% { transform: translateY(-60px); }
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 80px 32px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(212,168,39,0.12);
  border: 1px solid rgba(212,168,39,0.30);
  color: var(--gold-lt);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 28px;
}
.gold-dot {
  width: 7px; height: 7px;
  background: var(--gold);
  border-radius: 50%;
  display: inline-block;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}
.hero-name {
  display: flex;
  flex-direction: column;
  font-family: var(--font-display);
  line-height: 0.95;
  margin-bottom: 24px;
}
.name-wes {
  font-size: clamp(72px, 10vw, 120px);
  font-weight: 300;
  color: var(--white);
  letter-spacing: -0.02em;
}
.name-whitner {
  font-size: clamp(72px, 10vw, 120px);
  font-weight: 700;
  color: var(--electric);
  letter-spacing: -0.02em;
}
.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 300;
  color: rgba(255,255,255,0.80);
  margin-bottom: 12px;
  line-height: 1.4;
  font-style: italic;
}
.hero-sub {
  font-size: 13px;
  color: rgba(255,255,255,0.50);
  letter-spacing: 0.06em;
  margin-bottom: 36px;
  font-weight: 500;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
/* Photo placeholder */
.hero-photo-frame {
  position: relative;
  width: 420px;
  max-width: 100%;
  margin: 0 auto;
}
.photo-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, var(--navy-mid) 0%, rgba(26,140,216,0.15) 100%);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(26,140,216,0.25);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.photo-initials {
  font-family: var(--font-display);
  font-size: 80px;
  font-weight: 700;
  color: rgba(26,140,216,0.25);
}
.photo-note {
  font-size: 13px;
  color: rgba(255,255,255,0.30);
  font-style: italic;
}
.hero-photo-ring {
  position: absolute;
  inset: -12px;
  border-radius: 24px;
  border: 2px solid rgba(26,140,216,0.20);
  pointer-events: none;
}
.hero-photo-badge {
  position: absolute;
  bottom: 24px;
  right: -20px;
  background: var(--electric);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  padding: 10px 16px;
  border-radius: 10px;
  line-height: 1.4;
  box-shadow: var(--shadow-lg);
}
.hero-photo-badge span { display: block; }
.hero-scroll-line {
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, transparent, rgba(26,140,216,0.50));
}

/* ── TICKER ── */
.ticker-wrap {
  background: var(--electric);
  overflow: hidden;
  padding: 14px 0;
}
.ticker-track {
  display: flex;
  align-items: center;
  gap: 24px;
  white-space: nowrap;
  animation: ticker 40s linear infinite;
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.05em;
}
@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.ticker-dot { color: rgba(255,255,255,0.50); font-size: 8px; }

/* ── MISSION ── */
.mission-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}
.mission-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.stat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.stat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.stat-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  color: var(--electric);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 13px;
  color: var(--gray);
  font-weight: 500;
  line-height: 1.4;
}

/* ── SERVICES PREVIEW ── */
.section-header { margin-bottom: 52px; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.svc-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: var(--transition);
  position: relative;
  cursor: pointer;
  display: block;
}
.svc-card:hover {
  border-color: var(--electric);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.svc-icon { font-size: 28px; margin-bottom: 14px; }
.svc-card h3 {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.svc-card p { font-size: 14px; color: var(--gray); line-height: 1.6; }
.svc-arrow {
  position: absolute;
  bottom: 20px; right: 20px;
  font-size: 18px;
  color: var(--electric);
  opacity: 0;
  transform: translateX(-6px);
  transition: var(--transition);
}
.svc-card:hover .svc-arrow { opacity: 1; transform: translateX(0); }

/* ── LEGACY BAND ── */
.legacy-band { padding: 80px 0; }
.legacy-inner { text-align: center; }
.legacy-chain {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-top: 40px;
  flex-wrap: wrap;
}
.legacy-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px 24px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.04);
}
.legacy-node--active {
  background: rgba(26,140,216,0.15);
  border-color: var(--electric);
}
.legacy-icon { font-size: 28px; }
.legacy-node span:last-child {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
  text-align: center;
  max-width: 120px;
}
.legacy-node--active span:last-child { color: var(--sky); font-weight: 700; }
.legacy-arrow {
  font-size: 20px;
  color: rgba(255,255,255,0.25);
  padding: 0 8px;
}

/* ── VENTURES PREVIEW ── */
.ventures-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.venture-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
  display: block;
  cursor: pointer;
}
.venture-card:hover {
  border-color: var(--accent, var(--electric));
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.venture-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.venture-logo-wrap {
  height: 48px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
}
.venture-logo-img { height: 48px; width: auto; object-fit: contain; }
.venture-card h3 {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.venture-card p { font-size: 14px; color: var(--gray); line-height: 1.6; }
.venture-card--locked { border-style: dashed; }
.venture-nda {
  margin-top: 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
}

/* ── APPS STRIP ── */
.apps-strip-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: center;
}
.apps-strip-cards {
  display: flex;
  gap: 20px;
}
.app-card {
  flex: 1;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.app-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.app-card-placeholder {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, rgba(26,140,216,0.20), rgba(92,184,232,0.10));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 56px;
}
.app-card-info {
  padding: 20px;
}
.app-card-info h4 {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}
.app-card-info p {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 16px;
  line-height: 1.5;
}
.btn-sm { padding: 10px 20px; font-size: 13px; }

/* ── SPEAKING ── */
.speaking-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}
.speaking-topics {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.topic-pill {
  background: var(--sky-light);
  color: var(--navy);
  font-size: 13px;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: 100px;
}
.speaking-quote-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 36px;
  margin-bottom: 20px;
  border: 1px solid rgba(26,140,216,0.20);
  position: relative;
}
.quote-mark {
  font-family: var(--font-display);
  font-size: 80px;
  color: var(--electric);
  opacity: 0.30;
  line-height: 1;
  margin-bottom: -20px;
}
.speaking-quote-card p {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  color: var(--white);
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 20px;
}
.quote-attr {
  font-size: 13px;
  color: var(--electric);
  font-weight: 600;
}
.speaking-stats { display: flex; gap: 16px; }
.spk-stat {
  flex: 1;
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
}
.spk-num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--electric);
  display: block;
}
.spk-label {
  font-size: 12px;
  color: var(--gray);
  font-weight: 500;
  line-height: 1.4;
  display: block;
  margin-top: 4px;
}

/* ── RESEARCH STRIP ── */
.research-strip-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: center;
}
.research-cards { display: flex; flex-direction: column; gap: 16px; }
.research-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--electric);
  border-radius: var(--radius);
  padding: 20px 24px;
}
.rc-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--electric);
  margin-bottom: 8px;
}
.research-card h4 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
  line-height: 1.4;
}
.research-card p { font-size: 13px; color: var(--gray); }

/* ── CTA BAND ── */
.cta-band { padding: 80px 0; text-align: center; }
.cta-band-inner { max-width: 640px; margin: 0 auto; }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .ventures-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; padding: 60px 24px; }
  .hero-photo { display: none; }
  .mission-grid { grid-template-columns: 1fr; gap: 48px; }
  .apps-strip-inner { grid-template-columns: 1fr; gap: 40px; }
  .speaking-inner { grid-template-columns: 1fr; gap: 40px; }
  .research-strip-inner { grid-template-columns: 1fr; gap: 40px; }
  .legacy-chain { gap: 8px; }
  .legacy-arrow { display: none; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .ventures-grid { grid-template-columns: 1fr; }
  .mission-stats { grid-template-columns: 1fr 1fr; }
  .apps-strip-cards { flex-direction: column; }
  .speaking-stats { flex-direction: column; }
}
