/* ═══════════════════════════════════════════════════════════
   JILL HEINERTH — MASTERPIECE SITE
   Palette: Midnight Ocean · Glacier White · Electric Cyan
   ═══════════════════════════════════════════════════════════ */

/* ── TOKENS ── */

:root {
  --midnight: #080e14;
  --abyss: #030709;
  --deep-navy: #0a1628;
  --mid-navy: #0d1f3c;
  --surface-navy: #102040;
  --glacier: #e8f4f8;
  --glacier-dim: #a8c4cf;
  --cyan: #00d4ff;
  --cyan-glow: #00d4ff33;
  --cyan-dim: #00a8cc;
  --warm-white: #f5f0eb;
  --border-subtle: rgba(0, 212, 255, 0.12);
  --border-mid: rgba(0, 212, 255, 0.25);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-ui: 'Space Grotesk', system-ui, sans-serif;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ── GLOBAL ── */

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--midnight);
  color: var(--glacier);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
}

em {
  font-style: italic;
  color: var(--cyan);
}

/* ── SCROLLBAR ── */

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--abyss);
}

::-webkit-scrollbar-thumb {
  background: var(--cyan-dim);
  border-radius: 3px;
}

/* ══════════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════════ */

.btn-cyan-solid {
  background: var(--cyan);
  color: var(--abyss);
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: none;
  border-radius: 4px;
  padding: 0.75rem 2rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-cyan-solid::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.15);
  opacity: 0;
  transition: var(--transition);
}

.btn-cyan-solid:hover {
  background: #00eaff;
  color: var(--abyss);
  box-shadow: 0 0 30px rgba(0, 212, 255, 0.4);
  transform: translateY(-2px);
}

.btn-cyan-solid:hover::after {
  opacity: 1;
}

.btn-cyan-outline {
  background: transparent;
  color: var(--cyan);
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 1px solid var(--cyan);
  border-radius: 4px;
  padding: 0.75rem 2rem;
  transition: var(--transition);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.btn-cyan-outline:hover {
  background: var(--cyan-glow);
  color: var(--cyan);
  box-shadow: 0 0 20px var(--cyan-glow);
}

.btn-ghost-white {
  background: transparent;
  color: var(--glacier);
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 1px solid rgba(232, 244, 248, 0.3);
  border-radius: 4px;
  padding: 0.75rem 2rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
}

.btn-ghost-white:hover {
  border-color: var(--glacier);
  color: var(--glacier);
  background: rgba(232, 244, 248, 0.07);
}

.btn-hero {
  padding: 1rem 2.5rem;
  font-size: 0.9rem;
}

/* ══════════════════════════════════════════════
   SECTION TYPOGRAPHY
══════════════════════════════════════════════ */

.section-eyebrow {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.section-eyebrow::before {
  content: '';
  display: inline-block;
  width: 2rem;
  height: 1px;
  background: var(--cyan);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--glacier);
  margin-bottom: 0;
}

.section-sub {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--glacier-dim);
  line-height: 1.8;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* ══════════════════════════════════════════════
   REVEAL ANIMATION
══════════════════════════════════════════════ */

.reveal-card {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════════ */

.jh-nav {
  padding: 1.25rem 0;
  background: transparent;
  transition: background 0.5s ease, backdrop-filter 0.5s ease, padding 0.3s ease;
  z-index: 1000;
}

.jh-nav.scrolled {
  background: rgba(8, 14, 20, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-subtle);
}

.jh-brand {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  text-decoration: none;
}

.brand-name {
  font-family: var(--font-ui);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--glacier);
}

.brand-powered {
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  color: var(--glacier-dim);
  text-transform: uppercase;
}

.orative-accent {
  color: var(--cyan);
  font-weight: 600;
}

.jh-nav-link {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--glacier-dim) !important;
  padding: 0.5rem 1rem !important;
  transition: color 0.25s ease;
}

.jh-nav-link:hover {
  color: var(--glacier) !important;
}

/* ══════════════════════════════════════════════
   HERO
══════════════════════════════════════════════ */

.jh-hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  padding-top: 80px;
}

.hero-bg-abyss {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 70% 50%, #001a2e 0%, transparent 60%), radial-gradient(ellipse 50% 80% at 20% 80%, #003344 0%, transparent 50%), radial-gradient(ellipse 60% 40% at 50% 10%, #00d4ff0a 0%, transparent 50%), linear-gradient(180deg, var(--abyss) 0%, #040d18 40%, #030a12 100%);
  animation: abyssShift 20s ease-in-out infinite alternate;
}

@keyframes abyssShift {
  0% {
    filter: brightness(1) hue-rotate(0deg);
  }
  100% {
    filter: brightness(1.08) hue-rotate(8deg);
  }
}

/* Animated depth lines */

.hero-bg-abyss::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient( 0deg, transparent, transparent 60px, rgba(0, 212, 255, 0.015) 60px, rgba(0, 212, 255, 0.015) 61px );
}

/* Cyan glow orb */

.hero-bg-abyss::after {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.06) 0%, transparent 70%);
  top: 50%;
  left: 65%;
  transform: translate(-50%, -50%);
  animation: orbPulse 8s ease-in-out infinite;
}

@keyframes orbPulse {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.6;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 1;
  }
}

.hero-scan-line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  opacity: 0.3;
  animation: scanDown 8s linear infinite;
}

@keyframes scanDown {
  0% {
    top: 0;
    opacity: 0.3;
  }
  50% {
    opacity: 0.6;
  }
  100% {
    top: 100%;
    opacity: 0;
  }
}

/* Particles */

.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  border-radius: 50%;
  background: var(--cyan);
  opacity: 0;
  animation: floatUp linear infinite;
}

@keyframes floatUp {
  0% {
    transform: translateY(0) translateX(0);
    opacity: 0;
  }
  10% {
    opacity: 0.4;
  }
  90% {
    opacity: 0.1;
  }
  100% {
    transform: translateY(-100vh) translateX(30px);
    opacity: 0;
  }
}

.hero-eyebrow {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cyan);
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  animation: fadeSlideIn 1s ease 0.2s both;
}

.eyebrow-line {
  display: inline-block;
  width: 40px;
  height: 1px;
  background: var(--cyan);
  flex-shrink: 0;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 7.5rem);
  font-weight: 300;
  line-height: 0.95;
  color: var(--glacier);
  margin-bottom: 2rem;
  letter-spacing: -0.01em;
  animation: fadeSlideIn 1s ease 0.4s both;
}

.hero-headline em {
  font-style: italic;
  color: var(--glacier-dim);
}

.headline-cyan {
  color: var(--cyan);
  font-style: normal;
  text-shadow: 0 0 60px rgba(0, 212, 255, 0.4);
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--glacier-dim);
  max-width: 540px;
  line-height: 1.8;
  animation: fadeSlideIn 1s ease 0.6s both;
}

.hero-cta-group {
  animation: fadeSlideIn 1s ease 0.8s both;
}

.hero-stats {
  animation: fadeSlideIn 1s ease 1s both;
}

@keyframes fadeSlideIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--glacier);
  line-height: 1;
}

.stat-label {
  font-family: var(--font-ui);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--glacier-dim);
  margin-top: 0.3rem;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border-subtle);
  align-self: center;
}

.hero-scroll-cue {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  animation: fadeSlideIn 1s ease 1.5s both;
}

.hero-scroll-cue span {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--glacier-dim);
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--glacier-dim), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% {
    opacity: 0.3;
    transform: scaleY(1);
  }
  50% {
    opacity: 1;
    transform: scaleY(1.1);
  }
}

/* ── HERO PORTRAIT ── */

@keyframes fadeSlideInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-portrait-wrap {
  position: relative;
  width: 100%;
  max-width: 420px;
  animation: fadeSlideInRight 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.5s both;
}

.hero-portrait-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
  border: none;
  position: relative;
  z-index: 1;
  object-fit: cover;
  filter: brightness(0.85) contrast(1.05) saturate(0.8);
  mix-blend-mode: luminosity;
  -webkit-mask-image: radial-gradient(ellipse 85% 90% at 50% 45%, black 40%, transparent 80%);
  mask-image: radial-gradient(ellipse 85% 90% at 50% 45%, black 40%, transparent 80%);
}

.hero-portrait-glow {
  position: absolute;
  inset: -20px;
  border-radius: 8px;
  background: radial-gradient(ellipse at center, rgba(0, 212, 255, 0.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* ══════════════════════════════════════════════
   PARTNERS STRIP
══════════════════════════════════════════════ */

.jh-partners {
  padding: 3rem 0;
  background: rgba(0, 0, 0, 0.4);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  overflow: hidden;
}

.partners-label {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(168, 196, 207, 0.4);
  text-align: center;
  margin-bottom: 1.5rem;
}

.partners-track-wrap {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}

.partners-track {
  display: flex;
  gap: 4rem;
  width: max-content;
  animation: ticker 30s linear infinite;
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.partner-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  white-space: nowrap;
  filter: grayscale(1) brightness(0.5);
  transition: filter var(--transition);
  cursor: default;
}

.partner-item:hover {
  filter: grayscale(0) brightness(1);
}

.partner-icon {
  font-size: 1.4rem;
  color: var(--glacier-dim);
}

.partner-item span {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--glacier-dim);
  white-space: normal;
  max-width: 120px;
  line-height: 1.2;
}

/* ══════════════════════════════════════════════
   THREE PILLARS — BENTO GRID
══════════════════════════════════════════════ */

.jh-pillars {
  padding: 8rem 0;
  background: linear-gradient(180deg, var(--midnight) 0%, var(--deep-navy) 50%, var(--midnight) 100%);
}

.bento-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1.5rem;
}

@media (max-width: 991px) {
  .bento-grid {
    grid-template-columns: 1fr;
  }
}

.bento-card {
  background: linear-gradient(135deg, rgba(13, 31, 60, 0.8) 0%, rgba(8, 14, 20, 0.9) 100%);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  padding: 3rem;
  position: relative;
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.bento-card:hover {
  border-color: var(--border-mid);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px var(--cyan-glow);
}

.bento-explorer {
  grid-column: 1;
  grid-row: 1;
}

.bento-storyteller {
  grid-column: 2;
  grid-row: 1;
}

.bento-speaker {
  grid-column: 1;
  grid-row: 2;
}

.bento-quote {
  grid-column: 2;
  grid-row: 2;
}

.bento-glow {
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  pointer-events: none;
}

.bento-glow-cyan {
  background: radial-gradient(circle, rgba(0,212,255,0.08) 0%, transparent 70%);
}

.bento-glow-white {
  background: radial-gradient(circle, rgba(232,244,248,0.05) 0%, transparent 70%);
}

.bento-number {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 700;
  color: rgba(0, 212, 255, 0.08);
  line-height: 1;
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  letter-spacing: -0.05em;
}

.bento-icon-wrap {
  font-size: 2rem;
  color: var(--cyan);
  margin-bottom: 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: var(--cyan-glow);
  border-radius: 8px;
  border: 1px solid var(--border-subtle);
}

.bento-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--glacier);
  margin-bottom: 1rem;
  line-height: 1.1;
}

.bento-body {
  font-size: 0.92rem;
  color: var(--glacier-dim);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.bento-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.bento-list li {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  color: var(--glacier-dim);
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.bento-list li em {
  font-style: italic;
  color: var(--glacier);
}

.bento-list .bi {
  color: var(--cyan);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.bento-depth-label {
  font-family: var(--font-ui);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(168, 196, 207, 0.4);
  border-top: 1px solid var(--border-subtle);
  padding-top: 1rem;
  margin-top: auto;
}

.bento-depth-label span {
  color: var(--cyan);
}

/* Quote Card */

.bento-quote {
  background: linear-gradient(135deg, rgba(0, 50, 70, 0.5) 0%, rgba(8, 14, 20, 0.95) 100%);
  border-color: var(--border-mid);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.quote-mark {
  font-family: var(--font-display);
  font-size: 8rem;
  color: var(--cyan);
  opacity: 0.2;
  line-height: 0.8;
  margin-bottom: 0.5rem;
}

.bento-quote-text {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-style: italic;
  font-weight: 300;
  color: var(--glacier);
  line-height: 1.5;
  border: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

.quote-attr {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan);
}

/* ══════════════════════════════════════════════
   MEDIA LIBRARY
══════════════════════════════════════════════ */

.jh-media {
  padding: 8rem 0;
  background: var(--abyss);
}

.media-category-label {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--glacier-dim);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
}

/* Book / Media Cards */

.media-card {
  background: var(--deep-navy);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  height: 100%;
}

.media-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-mid);
  box-shadow: 0 24px 60px rgba(0,0,0,0.6);
}

.media-card-cover {
  height: 240px;
  position: relative;
  overflow: hidden;
}

.book-cover-1 {
  background: linear-gradient(135deg, #0a1f3d 0%, #001a30 40%, #003355 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.book-cover-1::before {
  content: '"INTO THE PLANET"';
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--glacier-dim);
  letter-spacing: 0.1em;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
}

.book-cover-1::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(to top, rgba(0,212,255,0.08), transparent);
}

.book-cover-2 {
  background: linear-gradient(135deg, #0d1a10 0%, #001a0d 40%, #00331a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.book-cover-2::before {
  content: '"THE AQUANAUT"';
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 300;
  color: #a8cfb8;
  letter-spacing: 0.1em;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
}

.book-cover-2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(to top, rgba(0, 255, 100, 0.05), transparent);
}

.media-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--cyan);
  color: var(--abyss);
  font-family: var(--font-ui);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 2px;
  z-index: 2;
}

.media-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 14, 20, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}

.media-card:hover .media-overlay {
  opacity: 1;
}

.media-card-body {
  padding: 1.75rem;
}

.media-type-tag {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cyan);
  font-weight: 600;
}

.media-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--glacier);
  margin: 0.5rem 0 0.75rem;
  line-height: 1.2;
}

.media-desc {
  font-size: 0.88rem;
  color: var(--glacier-dim);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.media-meta {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  color: var(--glacier-dim);
}

/* CTA Card */

.media-card-cta {
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.04) 0%, var(--deep-navy) 100%);
  border-color: var(--border-mid);
  border-style: dashed;
  display: flex;
  align-items: center;
  justify-content: center;
}

.media-cta-inner {
  text-align: center;
  padding: 2rem;
}

.media-cta-icon {
  font-size: 3rem;
  color: var(--cyan);
  opacity: 0.6;
  display: block;
  margin-bottom: 1.25rem;
}

.media-cta-inner h4 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--glacier);
  margin-bottom: 0.75rem;
}

.media-cta-inner p {
  font-size: 0.88rem;
  color: var(--glacier-dim);
}

/* Film Strip */

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

@media (max-width: 991px) {
  .film-strip {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .film-strip {
    grid-template-columns: 1fr;
  }
}

.film-thumb {
  height: 160px;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--border-subtle);
  transition: border-color var(--transition), transform var(--transition);
}

.film-thumb:hover {
  border-color: var(--cyan);
  transform: scale(1.03);
}

.film-1 {
  background: linear-gradient(135deg, #001830 0%, #002a50 100%);
}

.film-2 {
  background: linear-gradient(135deg, #1a0a00 0%, #402000 100%);
}

.film-3 {
  background: linear-gradient(135deg, #0a001a 0%, #200040 100%);
}

.film-4 {
  background: linear-gradient(135deg, #001a1a 0%, #004040 100%);
}

.film-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2.5rem;
  color: rgba(255,255,255,0.7);
  transition: color var(--transition), transform var(--transition);
}

.film-thumb:hover .film-play {
  color: var(--cyan);
  transform: translate(-50%, -50%) scale(1.15);
}

.film-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
}

.film-network {
  font-family: var(--font-ui);
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cyan);
  display: block;
  margin-bottom: 0.2rem;
}

.film-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--glacier);
  margin: 0;
}

/* ══════════════════════════════════════════════
   ORATIVE KEYNOTE PITCH
══════════════════════════════════════════════ */

.jh-speaking {
  padding: 8rem 0;
  background: linear-gradient(180deg, var(--midnight) 0%, var(--mid-navy) 50%, var(--midnight) 100%);
  position: relative;
  overflow: hidden;
}

.speaking-bg-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse 60% 50% at 100% 50%, rgba(0, 212, 255, 0.04) 0%, transparent 60%), radial-gradient(ellipse 40% 60% at 0% 50%, rgba(0, 50, 100, 0.2) 0%, transparent 50%);
  pointer-events: none;
}

.speaking-topics {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.topic-pill {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.6rem 1.25rem;
  border-radius: 100px;
  border: 1px solid var(--border-subtle);
  color: var(--glacier-dim);
  background: rgba(13, 31, 60, 0.5);
  transition: var(--transition);
  cursor: default;
  display: flex;
  align-items: center;
}

.topic-pill:hover, .topic-pill.active {
  border-color: var(--cyan);
  color: var(--cyan);
  background: var(--cyan-glow);
}

/* Testimonial Card */

.testimonial-card {
  background: linear-gradient(135deg, rgba(13, 31, 60, 0.9) 0%, rgba(8, 14, 20, 0.95) 100%);
  border: 1px solid var(--border-mid);
  border-radius: 8px;
  padding: 3rem;
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), transparent);
}

.testimonial-quote-mark {
  font-family: var(--font-display);
  font-size: 6rem;
  color: var(--cyan);
  opacity: 0.25;
  line-height: 0.7;
  margin-bottom: 0.5rem;
}

.testimonial-text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-style: italic;
  font-weight: 300;
  color: var(--glacier);
  line-height: 1.6;
  border: none;
  padding: 0;
  margin-bottom: 2rem;
}

.testimonial-attr {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--cyan-glow);
  border: 1px solid var(--border-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--cyan);
  flex-shrink: 0;
}

.testimonial-attr strong {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.9rem;
  color: var(--glacier);
}

.testimonial-attr span {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: var(--glacier-dim);
  display: block;
}

.testimonial-rating {
  display: flex;
  gap: 0.25rem;
  color: var(--cyan);
  font-size: 0.85rem;
}

/* Metrics */

.speaking-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border-subtle);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  overflow: hidden;
  margin-top: 4rem;
}

@media (max-width: 767px) {
  .speaking-metrics {
    grid-template-columns: repeat(2, 1fr);
  }
}

.metric-item {
  background: rgba(13, 31, 60, 0.5);
  padding: 2.5rem 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  transition: background var(--transition);
}

.metric-item:hover {
  background: rgba(0, 212, 255, 0.05);
}

.metric-icon {
  font-size: 1.5rem;
  color: var(--cyan);
  opacity: 0.7;
}

.metric-num {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 600;
  color: var(--glacier);
  line-height: 1;
}

.metric-label {
  font-family: var(--font-ui);
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--glacier-dim);
}

/* ══════════════════════════════════════════════
   CONTACT
══════════════════════════════════════════════ */

.jh-contact {
  padding: 8rem 0;
  background: var(--abyss);
  position: relative;
  overflow: hidden;
}

.contact-depth-lines {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient( 90deg, transparent, transparent 80px, rgba(0, 212, 255, 0.012) 80px, rgba(0, 212, 255, 0.012) 81px ), repeating-linear-gradient( 0deg, transparent, transparent 80px, rgba(0, 212, 255, 0.012) 80px, rgba(0, 212, 255, 0.012) 81px );
  pointer-events: none;
}

.jh-form {
  width: 100%;
}

.form-group-jh {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.jh-label {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--glacier-dim);
}

.jh-input {
  background: rgba(13, 31, 60, 0.6);
  border: 1px solid var(--border-subtle);
  border-radius: 4px;
  color: var(--glacier);
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 0.9rem 1.25rem;
  width: 100%;
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.jh-input:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px var(--cyan-glow);
  background: rgba(13, 31, 60, 0.9);
}

.jh-input::placeholder {
  color: rgba(168, 196, 207, 0.35);
}

.jh-select option {
  background: var(--deep-navy);
  color: var(--glacier);
}

.jh-textarea {
  resize: vertical;
  min-height: 130px;
}

.btn-submit {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  padding: 1.25rem 3rem;
}

.btn-submit-sub {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: none;
  opacity: 0.7;
}

.contact-direct-label {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(168, 196, 207, 0.4);
  margin-bottom: 1rem;
}

.contact-link {
  font-family: var(--font-ui);
  font-size: 0.85rem;
  color: var(--glacier-dim);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  transition: color var(--transition);
}

.contact-link:hover {
  color: var(--cyan);
}

/* ══════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════ */

.jh-footer {
  padding: 4rem 0 2rem;
  background: var(--abyss);
  border-top: 1px solid var(--border-subtle);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  margin-bottom: 1rem;
}

.footer-tagline {
  font-family: var(--font-display);
  font-size: 1rem;
  font-style: italic;
  color: var(--glacier-dim);
  line-height: 1.5;
  margin: 0;
}

.footer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-link {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--glacier-dim);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-link:hover {
  color: var(--cyan);
}

.footer-social {
  display: flex;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--glacier-dim);
  text-decoration: none;
  font-size: 1rem;
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}

.social-icon:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  background: var(--cyan-glow);
}

.footer-divider {
  border-color: var(--border-subtle);
  margin: 2.5rem 0 1.5rem;
}

.footer-copy {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: rgba(168, 196, 207, 0.35);
  margin: 0;
}

/* ══════════════════════════════════════════════
   UTILITIES & RESPONSIVE TWEAKS
══════════════════════════════════════════════ */

.mb-6 {
  margin-bottom: 4rem;
}

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

@media (max-width: 991px) {
  .hero-headline {
    font-size: clamp(3rem, 10vw, 5rem);
  }
}

@media (max-width: 991px) {
  .section-title {
    font-size: clamp(2rem, 6vw, 3rem);
  }
}

@media (max-width: 991px) {
  .bento-explorer, .bento-storyteller, .bento-speaker, .bento-quote {
    grid-column: 1;
    grid-row: auto;
  }
}

@media (max-width: 991px) {
  .jh-speaking .section-sub {
    max-width: 100%;
  }
}

@media (max-width: 575px) {
  .jh-pillars, .jh-media, .jh-speaking, .jh-contact {
    padding: 5rem 0;
  }
}

@media (max-width: 575px) {
  .bento-card {
    padding: 2rem;
  }
}

@media (max-width: 575px) {
  .hero-stats {
    gap: 2rem;
  }
}

@media (max-width: 575px) {
  .stat-divider {
    display: none;
  }
}

@media (max-width: 575px) {
  .speaking-metrics {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 575px) {
  .film-strip {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .testimonial-card {
    padding: 2rem;
  }
}

