@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700;800&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --bg: #fbf7f0;
  --bg-alt: #f3ecdc;
  --surface: #ffffff;
  --text: #17110d;
  --text-muted: #6b6055;
  --accent: #1e86e8;
  --accent-strong: #0b66be;
  --border: #ece4d6;
  --dark-bg: #150a0b;
  --dark-bg-2: #1f1213;
  --dark-surface: #231314;
  --cream: #f4eee0;
  --shadow: 0 1px 2px rgba(23,17,13,0.06), 0 6px 20px rgba(23,17,13,0.05);
  --shadow-lg: 0 10px 30px rgba(23,17,13,0.10), 0 2px 8px rgba(23,17,13,0.06);
  --radius: 16px;
  --max: 820px;
  --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body: "Inter", -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #16140f;
    --bg-alt: #1c1912;
    --surface: #211d17;
    --text: #f2ede4;
    --text-muted: #b9b1a3;
    --accent: #4fa8f5;
    --accent-strong: #7cc1ff;
    --border: #362f24;
    --shadow: 0 1px 2px rgba(0,0,0,0.3), 0 10px 30px rgba(0,0,0,0.35);
    --shadow-lg: 0 14px 34px rgba(0,0,0,0.42), 0 3px 10px rgba(0,0,0,0.3);
  }
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
}

.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--accent), var(--accent-strong));
  z-index: 1000;
  transition: width .08s linear;
}

/* ---------- Hero ---------- */

header.hero {
  position: relative;
  background: var(--dark-bg);
  color: var(--cream);
  padding: 96px 0 76px;
  overflow: hidden;
  isolation: isolate;
}

header.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    radial-gradient(ellipse 620px 420px at 82% -8%, rgba(30,134,232,0.38), transparent 60%),
    radial-gradient(ellipse 500px 380px at -6% 100%, rgba(30,134,232,0.22), transparent 60%),
    linear-gradient(100deg, rgba(21,10,11,0.90) 0%, rgba(21,10,11,0.78) 45%, rgba(21,10,11,0.92) 100%),
    url('assets/hero-bg.jpg');
  background-repeat: no-repeat;
  background-size: auto, auto, auto, cover;
  background-position: 0 0, 0 0, 0 0, center 24%;
}

header.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.5;
  background-image: radial-gradient(rgba(244,238,224,0.10) 1px, transparent 1px);
  background-size: 22px 22px;
  mask-image: radial-gradient(ellipse 70% 70% at 30% 30%, black, transparent);
}

.hero-grid {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 56px;
  flex-wrap: wrap;
}

.hero-text { flex: 1 1 420px; }

.hero-media {
  position: relative;
  flex: 0 1 380px;
  max-width: 380px;
  margin-left: auto;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 20px -20px -20px 20px;
  z-index: 0;
  background: linear-gradient(135deg, var(--accent), #6fc3ff);
  border-radius: 20px;
}

.hero-media img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 50% 15%;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
}

.broadcast-ring {
  position: absolute;
  top: 20px;
  right: -20px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 2px solid rgba(111,195,255,0.55);
  transform: translate(50%, -50%) scale(0.6);
  opacity: 0.9;
  z-index: 2;
  animation: broadcastPulse 3.6s ease-out infinite;
  pointer-events: none;
}
.broadcast-ring.r2 { animation-delay: 1.2s; }
.broadcast-ring.r3 { animation-delay: 2.4s; }

@keyframes broadcastPulse {
  0%   { transform: translate(50%, -50%) scale(0.6); opacity: 0.9; }
  100% { transform: translate(50%, -50%) scale(6.5); opacity: 0; }
}

@media (max-width: 760px) {
  .hero-grid { flex-direction: column-reverse; gap: 32px; }
  .hero-media { max-width: 280px; margin: 0 auto; }
}

.hero-text h1 {
  font-family: var(--font-display);
  font-weight: 800;
  margin: 0 0 10px;
  font-size: clamp(34px, 5.6vw, 54px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--cream);
}

.hero-text .aka {
  color: rgba(244,238,224,0.72);
  font-size: 17px;
  margin: 0 0 16px;
}

.hero-text .role {
  font-size: 16.5px;
  color: rgba(244,238,224,0.92);
  margin: 0 0 18px;
  max-width: 56ch;
}

.btn {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  padding: 11px 24px;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: var(--shadow);
  transition: background-color .15s ease, transform .15s ease, box-shadow .15s ease;
}
.btn:hover { background: var(--accent-strong); transform: translateY(-2px); box-shadow: var(--shadow-lg); }

.link-group { margin: 0 0 36px; }
.link-group:last-child { margin-bottom: 0; }

.tagline-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.tagline-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--cream);
  color: var(--dark-bg);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 9px 18px;
  border-radius: 999px;
  margin-bottom: 0;
  box-shadow: var(--shadow);
}

.tagline-pill.outline {
  background: transparent;
  color: var(--cream);
  border: 1.5px solid var(--accent);
  box-shadow: none;
}

.social-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.social-row a {
  font-size: 13.5px;
  font-weight: 600;
  text-decoration: none;
  color: var(--accent-strong);
  border: 1px solid var(--border);
  padding: 7px 14px;
  border-radius: 999px;
  background: var(--surface);
  transition: border-color .15s ease, transform .15s ease, box-shadow .15s ease;
}

.social-row a:hover { border-color: var(--accent); transform: translateY(-2px); box-shadow: var(--shadow); }

header.hero .social-row a {
  color: var(--cream);
  border-color: rgba(244,238,224,0.24);
  background: rgba(244,238,224,0.08);
}
header.hero .social-row a:hover { border-color: var(--accent); background: rgba(244,238,224,0.16); }

/* ---------- Nav ---------- */

/* ---------- Site header (logo + nav, one bar) ---------- */

header.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--dark-bg);
  box-shadow: 0 2px 12px rgba(0,0,0,0.18);
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px 24px;
  padding: 14px 24px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.site-nav a {
  color: rgba(244,238,224,0.75);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  padding: 5px 2px;
  transition: color .15s ease;
}

.site-nav a:hover { color: var(--cream); }
.site-nav a.active {
  background: var(--accent);
  color: #fff;
  padding: 5px 14px;
  border-radius: 999px;
}

.brand {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--cream);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
}

.brand-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  object-position: 50% 12%;
  flex-shrink: 0;
  border: 2px solid var(--accent);
}

@media (max-width: 640px) {
  .site-header-inner { justify-content: flex-start; }
  .site-nav { gap: 14px 16px; }
}

/* ---------- Section typography ---------- */

.eyebrow {
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--accent-strong);
  font-weight: 700;
  margin: 0 0 10px;
}

.headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(24px, 3.4vw, 34px);
  line-height: 1.18;
  letter-spacing: -0.01em;
  margin: 0 0 22px;
  max-width: 22ch;
}

.page-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 4.4vw, 40px);
  letter-spacing: -0.01em;
  margin: 14px 0 10px;
}

.page-intro {
  color: var(--text-muted);
  max-width: 62ch;
  margin: 0 0 32px;
  font-size: 16px;
}

/* ---------- Sections ---------- */

section { padding: 68px 0; }
section.alt { background: var(--bg-alt); }

section p { max-width: 68ch; }

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.in-view { opacity: 1; transform: none; }

/* ---------- Cards ---------- */

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 8px;
}

.card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 22px 22px;
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--accent-strong));
  opacity: 0;
  transition: opacity .2s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: color-mix(in srgb, var(--accent) 35%, var(--border));
}
.card:hover::before { opacity: 1; }

.venture-logo {
  display: block;
  height: 34px;
  width: auto;
  max-width: 160px;
  margin-bottom: 14px;
  object-fit: contain;
  object-position: left center;
}

.card-thumb {
  display: block;
  width: calc(100% + 44px);
  margin: -24px -22px 16px -22px;
  height: 140px;
  object-fit: cover;
  border-radius: var(--radius) var(--radius) 0 0;
}

.badge {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 14px;
}

.podcast-card, .book-card, .award-card {
  display: flex;
  gap: 22px;
  align-items: flex-start;
}
.podcast-cover {
  width: 128px;
  height: 128px;
  border-radius: 12px;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: var(--shadow-lg);
}
.book-cover {
  width: 128px;
  height: auto;
  border-radius: 6px;
  flex-shrink: 0;
  box-shadow: var(--shadow-lg);
}
.award-photo {
  width: 110px;
  height: auto;
  border-radius: 10px;
  flex-shrink: 0;
  box-shadow: var(--shadow-lg);
}
@media (max-width: 480px) {
  .podcast-card, .book-card, .award-card { flex-direction: column; }
  .podcast-cover { width: 100px; height: 100px; }
  .book-cover { width: 110px; }
  .award-photo { width: 100px; }
}

.card h3 { margin: 0 0 6px; font-size: 17.5px; letter-spacing: -0.005em; }
.card h3 a { color: inherit; text-decoration: none; }
.card h3 a:hover { color: var(--accent-strong); }

.video-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: #000;
}
.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.card .tag {
  display: inline-block;
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--accent-strong);
  font-weight: 700;
  margin-bottom: 8px;
}
.card p { margin: 0; font-size: 14.5px; color: var(--text-muted); }

/* ---------- Facts ---------- */

dl.facts {
  margin: 28px 0 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px 26px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 24px;
  box-shadow: var(--shadow);
}
dl.facts > div { margin: 0; }
dl.facts dt {
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--accent-strong);
  font-weight: 700;
  margin: 0 0 4px;
}
dl.facts dd {
  margin: 0;
  font-size: 15px;
  color: var(--text);
}

/* ---------- Lists ---------- */

ul.plain { list-style: none; margin: 0; padding: 0; }
ul.plain li {
  padding: 16px 0;
  border-top: 1px solid var(--border);
}
ul.plain li:first-child { border-top: none; }

.press-item a {
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  font-size: 15.5px;
  transition: color .15s ease;
}
.press-item a:hover { color: var(--accent-strong); }
.press-item .source {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 3px;
}

.award {
  display: flex;
  gap: 16px;
  align-items: baseline;
}
.award .year {
  font-variant-numeric: tabular-nums;
  color: var(--accent-strong);
  font-weight: 700;
  font-size: 13.5px;
  min-width: 44px;
}

/* ---------- Footer ---------- */

footer {
  position: relative;
  background: var(--dark-bg);
  color: rgba(244,238,224,0.7);
  padding: 52px 0 40px;
  overflow: hidden;
}
footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 500px 300px at 10% 0%, rgba(30,134,232,0.20), transparent 65%);
}
footer .wrap { position: relative; }
footer p { margin: 0 0 6px; font-size: 14px; }
footer .social-row { margin: 16px 0 26px; }
footer .social-row a {
  color: var(--cream);
  border-color: rgba(244,238,224,0.22);
  background: rgba(244,238,224,0.07);
}
footer .social-row a:hover { border-color: var(--accent); background: rgba(244,238,224,0.14); }
footer .copyright {
  border-top: 1px solid rgba(244,238,224,0.14);
  padding-top: 20px;
  font-size: 12.5px;
  color: rgba(244,238,224,0.5);
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--cream);
  margin: 0 0 4px;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin: 20px 0 26px;
}
.footer-links a {
  color: rgba(244,238,224,0.75);
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 600;
  transition: color .15s ease;
}
.footer-links a:hover { color: var(--accent); }

@media (max-width: 520px) {
  header.hero { padding: 52px 0 40px; }
}
