/* ========================================
   HERO
   ======================================== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: 100px;
}

.hero__bg-line {
  position: absolute;
  top: 0;
  right: 15%;
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, var(--border-subtle) 30%, var(--border-subtle) 70%, transparent);
}

.hero__bg-line:nth-child(2) { right: 50%; }
.hero__bg-line:nth-child(3) { right: 85%; opacity: 0.5; }

.hero__content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.hero__text {
  position: relative;
}

.hero__label {
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 0.2s forwards;
}

.hero__headline {
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 0.4s forwards;
}

.hero__headline .line {
  display: block;
}

.hero__headline .italic {
  color: var(--accent-gold-bright);
}

.hero__sub {
  max-width: 640px;
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 0.6s forwards;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 0.8s forwards;
}

.hero__portrait {
  position: relative;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 0.5s forwards;
}

.hero__portrait-img {
  width: 100%;
  height: auto;
  max-height: 600px;
  object-fit: contain;
  object-position: bottom center;
  filter: grayscale(15%) contrast(1.05);
  transition: filter 0.5s;
}

.hero__portrait:hover .hero__portrait-img {
  filter: grayscale(0%) contrast(1.08);
}

.hero__portrait-glow {
  position: absolute;
  bottom: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 60%;
  background: radial-gradient(ellipse, rgba(200, 165, 92, 0.1), transparent 70%);
  pointer-events: none;
  z-index: -1;
}

.hero__portrait-frame {
  position: absolute;
  bottom: 0;
  right: -12px;
  width: 100%;
  height: 85%;
  border: 1px solid var(--border-subtle);
  border-radius: 2px;
  pointer-events: none;
  z-index: -1;
}

.hero__scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 1.2s forwards;
}

.hero__scroll-indicator span {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: var(--accent-gold-dim);
  animation: scrollPulse 2s ease-in-out infinite;
}

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

@media (max-width: 900px) {
  .hero__content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero__portrait {
    max-width: 320px;
    margin: 0 auto;
    order: -1;
  }
  .hero__actions { justify-content: center; }
}

@media (max-width: 600px) {
  .hero { min-height: 90vh; padding-top: 80px; }
  .hero__actions { flex-direction: column; }
}

/* ========================================
   POSITIONING SECTION
   ======================================== */
.positioning {
  background: var(--bg-surface);
  position: relative;
}

.positioning::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  width: 80%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--accent-gold-dim), transparent);
  opacity: 0.3;
}

.positioning__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 8vw, 100px);
  align-items: center;
}

.positioning__text .body-lg {
  margin-top: 24px;
}

.positioning__photo {
  margin-top: 40px;
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}

.positioning__photo img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(20%) contrast(1.05);
  transition: filter 0.5s, transform 0.5s var(--ease-out);
}

.positioning__photo:hover img {
  filter: grayscale(0%) contrast(1.08);
  transform: scale(1.02);
}

.positioning__photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--bg-surface) 0%, transparent 40%);
  pointer-events: none;
}

.positioning__photo-caption {
  position: absolute;
  bottom: 16px;
  left: 20px;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.positioning__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.stat {
  padding: 28px;
  border: 1px solid var(--border-subtle);
  border-radius: 2px;
  transition: border-color 0.3s, transform 0.3s;
}

.stat:hover {
  border-color: var(--accent-gold-dim);
  transform: translateY(-4px);
}

.stat__number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 300;
  color: var(--accent-gold);
  line-height: 1;
  margin-bottom: 8px;
}

.stat__label {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.4;
}

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

/* ========================================
   BOOKS SECTION
   ======================================== */
.books {
  position: relative;
  overflow: hidden;
}

.books__header {
  text-align: center;
  margin-bottom: clamp(60px, 8vw, 100px);
}

.books__header .label { margin-bottom: 16px; }

.books__header .headline-lg { margin-bottom: 20px; }

.books__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 40px);
}

.book-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.5s var(--ease-out);
}

.book-card:hover {
  border-color: var(--accent-gold-dim);
  transform: translateY(-8px);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4);
}

.book-card__cover {
  aspect-ratio: 2/3;
  background: var(--bg-elevated);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: clamp(20px, 3vw, 36px);
}

.book-card__cover-img {
  width: 78%;
  aspect-ratio: 2/3;
  object-fit: cover;
  border-radius: 2px;
  box-shadow:
    8px 8px 32px rgba(0,0,0,0.5),
    -2px -2px 8px rgba(255,255,255,0.02),
    0 0 0 1px rgba(255,255,255,0.04);
  transition: transform 0.5s var(--ease-out);
}

.book-card:hover .book-card__cover-img {
  transform: scale(1.04) rotate(-1deg);
}

/* Subtle shelf shadow beneath each book */
.book-card__cover::after {
  content: '';
  position: absolute;
  bottom: 8%;
  left: 20%;
  width: 60%;
  height: 20px;
  background: radial-gradient(ellipse, rgba(0,0,0,0.35), transparent 70%);
  filter: blur(8px);
  pointer-events: none;
}

.book-card__body {
  padding: 28px;
}

.book-card__tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 12px;
}

.book-card__title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 12px;
}

.book-card__desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 20px;
}

.book-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-gold);
  transition: gap 0.3s var(--ease-out);
}

.book-card__link:hover { gap: 14px; }

/* Coming Soon badge */
.book-card--coming-soon { position: relative; }

.coming-soon-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 3;
  background: rgba(200, 165, 92, 0.9);
  color: var(--bg-deep);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 2px;
  backdrop-filter: blur(4px);
}

/* Lead capture form inline */
.book-card__form {
  display: flex;
  gap: 8px;
  margin-top: 4px;
}

.book-card__input {
  flex: 1;
  padding: 10px 14px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: 2px;
  color: var(--text-primary);
  outline: none;
  transition: border-color 0.3s;
}

.book-card__input::placeholder {
  color: var(--text-muted);
}

.book-card__input:focus {
  border-color: var(--accent-gold-dim);
}

.book-card__submit {
  padding: 10px 16px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s;
  white-space: nowrap;
}

.book-card__submit--gold {
  background: var(--accent-gold);
  color: var(--bg-deep);
  border: none;
}

.book-card__submit--gold:hover {
  background: var(--accent-gold-bright);
}

.book-card__submit--green {
  background: var(--accent-green);
  color: var(--bg-deep);
  border: none;
}

.book-card__submit--green:hover {
  background: #2dd968;
}

.book-card__submit--red {
  background: #e05535;
  color: #fff;
  border: none;
}

.book-card__submit--red:hover {
  background: #e8674a;
}

.book-card__free-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-bottom: 10px;
}

@media (max-width: 900px) {
  .books__grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}

/* ========================================
   SPEAKING SECTION
   ======================================== */
.speaking {
  background: var(--bg-surface);
  position: relative;
}

.speaking__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 8vw, 100px);
}

.speaking__left .label { margin-bottom: 16px; }
.speaking__left .headline-lg { margin-bottom: 24px; }
.speaking__left .body-lg { margin-bottom: 40px; }

.speaking__topics {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.topic {
  padding: 28px 0;
  border-bottom: 1px solid var(--border-subtle);
  cursor: pointer;
  transition: all 0.3s;
}

.topic:first-child { border-top: 1px solid var(--border-subtle); }

.topic:hover { padding-left: 16px; }

.topic__number {
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--accent-gold);
  margin-bottom: 8px;
}

.topic__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 6px;
  transition: color 0.3s;
}

.topic:hover .topic__title { color: var(--accent-gold); }

.topic__audience {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-style: italic;
}

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

/* ========================================
   VENTURES SECTION
   ======================================== */
.ventures {
  position: relative;
}

.ventures__header {
  text-align: center;
  margin-bottom: clamp(60px, 8vw, 80px);
}

.ventures__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 3vw, 40px);
}

.venture-card {
  padding: clamp(36px, 4vw, 56px);
  border: 1px solid var(--border-subtle);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  transition: all 0.5s var(--ease-out);
}

.venture-card:hover {
  border-color: var(--border-medium);
  transform: translateY(-4px);
}

.venture-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 1.2rem;
  font-weight: 700;
}

.venture-card__icon--revheat {
  background: rgba(200, 165, 92, 0.12);
  color: var(--accent-gold);
  border: 1px solid rgba(200, 165, 92, 0.25);
}

.venture-card__icon--unseat {
  background: rgba(34, 197, 94, 0.12);
  color: var(--accent-green);
  border: 1px solid rgba(34, 197, 94, 0.25);
}

.venture-card__label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.venture-card__label--revheat { color: var(--accent-gold); }
.venture-card__label--unseat { color: var(--accent-green); }

.venture-card__name {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.5vw, 2rem);
  font-weight: 600;
  margin-bottom: 16px;
}

.venture-card__desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 28px;
}

.venture-card__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: gap 0.3s var(--ease-out);
}

.venture-card__link--revheat { color: var(--accent-gold); }
.venture-card__link--unseat { color: var(--accent-green); }

.venture-card__link:hover { gap: 16px; }

.venture-card__glow {
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  opacity: 0.04;
  pointer-events: none;
  transition: opacity 0.5s;
}

.venture-card:hover .venture-card__glow { opacity: 0.08; }

.venture-card__glow--revheat { background: radial-gradient(circle, var(--accent-gold), transparent); }
.venture-card__glow--unseat { background: radial-gradient(circle, var(--accent-green), transparent); }

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

/* ========================================
   PODCAST SECTION
   ======================================== */
.podcast {
  background: var(--bg-surface);
  position: relative;
  overflow: hidden;
}

.podcast__layout {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: clamp(40px, 8vw, 100px);
  align-items: center;
}

.podcast__artwork {
  aspect-ratio: 1;
  background: var(--bg-elevated);
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4);
}

.podcast__artwork-inner {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 50%, #2a1a0a 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px;
  text-align: center;
}

.podcast__artwork-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 12px;
}

.podcast__artwork-sub {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

.podcast__artwork-ring {
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(200, 165, 92, 0.2);
  border-radius: 6px;
  pointer-events: none;
}

.podcast__content .label { margin-bottom: 16px; }
.podcast__content .headline-lg { margin-bottom: 20px; }
.podcast__content .body-lg { margin-bottom: 32px; }

.podcast__platforms {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.platform-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border: 1px solid var(--border-subtle);
  border-radius: 2px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: all 0.3s;
}

.platform-btn:hover {
  border-color: var(--accent-gold-dim);
  color: var(--text-primary);
  background: rgba(200, 165, 92, 0.05);
}

/* Podcast coming soon treatment */
.podcast__coming-soon {
  display: inline-block;
  background: rgba(200, 165, 92, 0.15);
  color: var(--accent-gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 2px;
  border: 1px solid rgba(200, 165, 92, 0.25);
  margin-bottom: 16px;
}

.podcast__form {
  display: flex;
  gap: 8px;
  max-width: 420px;
}

.podcast__input {
  flex: 1;
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: 2px;
  color: var(--text-primary);
  outline: none;
  transition: border-color 0.3s;
}

.podcast__input::placeholder {
  color: var(--text-muted);
}

.podcast__input:focus {
  border-color: var(--accent-gold-dim);
}

.podcast__submit {
  padding: 14px 24px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--accent-gold);
  color: var(--bg-deep);
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s;
  white-space: nowrap;
}

.podcast__submit:hover {
  background: var(--accent-gold-bright);
}

@media (max-width: 900px) {
  .podcast__layout { grid-template-columns: 1fr; }
  .podcast__artwork { max-width: 320px; margin: 0 auto; }
  .podcast__form { flex-direction: column; }
}

/* ========================================
   BELIEFS SECTION
   ======================================== */
.beliefs {
  position: relative;
}

.beliefs__header {
  margin-bottom: clamp(60px, 8vw, 80px);
}

.beliefs__header .label { margin-bottom: 16px; }

.beliefs__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.belief {
  padding: clamp(32px, 4vw, 48px) 0;
  border-bottom: 1px solid var(--border-subtle);
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 24px;
  transition: all 0.3s;
}

.belief:first-child { border-top: 1px solid var(--border-subtle); }

.belief:hover { padding-left: 12px; }

.belief__number {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--accent-gold-dim);
  padding-top: 4px;
}

.belief__quote {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 1.8vw, 1.4rem);
  font-weight: 600;
  line-height: 1.35;
  margin-bottom: 12px;
}

.belief__expansion {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 640px;
}

/* ========================================
   TESTIMONIAL SECTION
   ======================================== */
.testimonials {
  background: var(--bg-surface);
  text-align: center;
}

.testimonials .label { margin-bottom: 16px; }
.testimonials .headline-lg { margin-bottom: clamp(48px, 6vw, 72px); }

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  text-align: left;
}

.testimonial {
  padding: clamp(28px, 3vw, 40px);
  border: 1px solid var(--border-subtle);
  border-radius: 4px;
  transition: border-color 0.3s;
}

.testimonial:hover { border-color: var(--border-medium); }

.testimonial__quote-mark {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--accent-gold-dim);
  line-height: 1;
  margin-bottom: 12px;
}

.testimonial__text {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1.65;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.testimonial__author {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
}

.testimonial__role {
  font-size: 0.8rem;
  color: var(--text-muted);
}

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