/* ============================================
   CINEMATIC HERO — full-bleed photo + bold type
   (structure inspired by aaronsansoni.com, recolored to brand palette)
   ============================================ */

.chero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  max-height: 980px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--navy-deep);
  color: var(--white);
}

@media (max-width: 600px) {
  .chero { min-height: 100vh; min-height: 100dvh; max-height: none; }
}

.chero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.chero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 78% 22%;
}

@media (max-width: 768px) {
  .chero__bg img { object-position: 60% 15%; }
}
.chero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
}

/* Gradient overlay — navy instead of his black, keeps text legible over photo */
.chero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(7,28,74,0.15) 0%, rgba(7,28,74,0.55) 55%, rgba(7,28,74,0.96) 100%),
    linear-gradient(90deg, rgba(7,28,74,0.92) 0%, rgba(7,28,74,0.35) 45%, rgba(7,28,74,0.05) 75%);
}

.chero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: calc(var(--nav-height) + var(--sp-2xl)) 0 var(--sp-3xl);
}

.chero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: var(--sp-lg);
}
.chero__eyebrow::before {
  content: "";
  width: 28px; height: 2px;
  background: var(--coral);
  display: inline-block;
}

.chero h1.chero__headline {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  font-size: clamp(2.4rem, 7vw, 5rem);
  line-height: 1.05;
  color: var(--white);
  max-width: 880px;
  margin-bottom: var(--sp-lg);
}
.chero__headline .accent { color: var(--coral); }

.chero__sub {
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: rgba(255,255,255,0.85);
  max-width: 580px;
  margin-bottom: var(--sp-xl);
  font-weight: 400;
}
.chero__sub strong { color: var(--yellow); font-weight: 600; }

.chero__ctas { display: flex; flex-wrap: wrap; gap: var(--sp-md); margin-bottom: var(--sp-2xl); }

/* Play button — round, glassy, like his "Play Video" */
.chero__play {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
}
.chero__play .ring {
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--dur-base) var(--ease-out), background var(--dur-base);
  flex-shrink: 0;
}
.chero__play:hover .ring { transform: scale(1.1); background: var(--coral); border-color: var(--coral); }
.chero__play .ring svg { width: 18px; height: 18px; color: var(--white); margin-left: 2px; }

/* Press / partner logo strip — dark, like his Forbes/Entrepreneur row */
.press-strip {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: var(--sp-xl);
}
.press-strip__label {
  font-size: var(--fs-caption);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: var(--sp-md);
}
.press-strip__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--sp-2xl);
}
.press-strip__row span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.01em;
}

/* ============================================
   MID-PAGE BOLD STATEMENT (his "SURROUND YOURSELF..." block)
   ============================================ */

.bold-statement {
  background: var(--navy);
  padding: var(--sp-3xl) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.bold-statement::before {
  content: "";
  position: absolute;
  top: -100px; left: 50%;
  width: 500px; height: 500px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(47,156,166,0.18), transparent 70%);
}
.bold-statement__quote {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(1.5rem, 4.5vw, 2.75rem);
  line-height: 1.25;
  color: var(--white);
  max-width: 900px;
  margin: 0 auto;
}
.bold-statement__quote .hl { color: var(--yellow); }
.bold-statement__quote .hl2 { color: var(--coral); }

/* ============================================
   FEATURED PROOF CARDS (his press feature cards)
   ============================================ */

.proof-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-lg);
}
@media (min-width: 768px) { .proof-grid { grid-template-columns: repeat(3, 1fr); } }

.proof-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-soft);
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
  display: flex;
  flex-direction: column;
}
.proof-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }

.proof-card__top {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.proof-card__top svg { width: 56px; height: 56px; }
.proof-card__top .stat-mini {
  font-family: var(--font-data);
  font-weight: 700;
  font-size: 2.4rem;
  color: var(--white);
}
.proof-card__body { padding: var(--sp-lg) var(--sp-xl) var(--sp-xl); flex-grow: 1; display: flex; flex-direction: column; }
.proof-card__body h4 { font-size: 1.05rem; margin-bottom: 8px; }
.proof-card__body p { font-size: 0.9rem; flex-grow: 1; margin-bottom: var(--sp-md); }
.proof-card__link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.85rem; font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.proof-card__link svg { width: 15px; height: 15px; transition: transform var(--dur-fast); }
.proof-card:hover .proof-card__link svg { transform: translateX(4px); }

/* ============================================
   ACHIEVEMENT BULLET BLOCK (his "AARON SANSONI" block)
   ============================================ */

.achieve-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-2xl);
  align-items: center;
}
@media (min-width: 960px) { .achieve-block { grid-template-columns: 0.8fr 1.2fr; } }

.achieve-block__photo {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 3/4;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.achieve-block__photo img { width: 100%; height: 100%; object-fit: cover; }

.achieve-block__name {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  color: var(--navy);
  margin-bottom: var(--sp-lg);
  letter-spacing: -0.01em;
}

.achieve-list { display: flex; flex-direction: column; gap: var(--sp-md); margin-bottom: var(--sp-xl); }
.achieve-list li {
  display: flex;
  align-items: baseline;
  gap: var(--sp-md);
  font-size: 1.05rem;
  color: var(--ink-soft);
  padding-bottom: var(--sp-md);
  border-bottom: 1px solid var(--border-soft);
}
.achieve-list .num {
  font-family: var(--font-data);
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--coral);
  flex-shrink: 0;
  min-width: 90px;
}

/* ============================================
   BIG IMAGE-TILE NAVIGATION (his Investor/Mentor/Philanthropist/Media)
   ============================================ */

.tile-nav {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
}
@media (min-width: 768px) { .tile-nav { grid-template-columns: repeat(4, 1fr); } }

.tile-nav__item {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  display: block;
  background: var(--navy);
}
@media (min-width: 768px) { .tile-nav__item { aspect-ratio: auto; height: 480px; } }

.tile-nav__bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.6s var(--ease-out);
}
.tile-nav__item:hover .tile-nav__bg { transform: scale(1.08); }

.tile-nav__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11,42,111,0.15) 0%, rgba(11,42,111,0.85) 100%);
  transition: background var(--dur-base) var(--ease-out);
}
.tile-nav__item:hover .tile-nav__overlay {
  background: linear-gradient(180deg, rgba(233,106,106,0.25) 0%, rgba(11,42,111,0.9) 100%);
}

.tile-nav__label {
  position: absolute;
  left: var(--sp-lg);
  bottom: var(--sp-lg);
  z-index: 2;
  color: var(--white);
}
.tile-nav__label .kicker {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--yellow);
  display: block;
  margin-bottom: 6px;
}
.tile-nav__label .title {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.tile-nav__label .title svg {
  width: 18px; height: 18px;
  transition: transform var(--dur-base) var(--ease-out);
}
.tile-nav__item:hover .title svg { transform: translateX(5px); }

/* ============================================
   ANIMATED COUNTER STRIP (cinematic version)
   ============================================ */

.counter-strip {
  background: var(--navy-deep);
  padding: var(--sp-3xl) 0;
}
.counter-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-2xl);
  text-align: center;
}
@media (min-width: 768px) { .counter-grid { grid-template-columns: repeat(4, 1fr); } }

.counter-item .num {
  font-family: var(--font-data);
  font-weight: 700;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  color: var(--white);
  line-height: 1;
}
.counter-item .num .accent { color: var(--coral); }
.counter-item .lbl {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  margin-top: 8px;
  max-width: 160px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   PROGRAMS STRIP (his "Additional Experiences" row)
   ============================================ */

.programs-strip {
  background: var(--navy);
  padding: var(--sp-2xl) 0;
}
.programs-strip__label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: var(--sp-lg);
}
.programs-strip__row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-md) var(--sp-2xl);
}
.programs-strip__row a {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
  position: relative;
  padding-bottom: 4px;
  transition: color var(--dur-fast) var(--ease-out);
}
.programs-strip__row a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--coral);
  transition: width var(--dur-base) var(--ease-out);
}
.programs-strip__row a:hover { color: var(--yellow); }
.programs-strip__row a:hover::after { width: 100%; background: var(--yellow); }

/* ============================================
   VIDEO MODAL (lightweight, no dependency)
   ============================================ */

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(7,28,74,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--sp-lg);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--dur-base) var(--ease-out);
}
.video-modal.open { opacity: 1; visibility: visible; }
.video-modal__inner {
  position: relative;
  width: 100%;
  max-width: 900px;
  aspect-ratio: 16/9;
  background: var(--navy);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.video-modal__inner iframe, .video-modal__inner video {
  width: 100%; height: 100%; border: none;
}
.video-modal__close {
  position: absolute;
  top: -48px; right: 0;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
}
.video-modal__close svg { width: 18px; height: 18px; }
