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

:root {
  --black: #000000;
  --white: #FFFFFF;
  --silver: #A8A8A8;
  --silver-dim: #555555;
  --silver-bright: #D4D4D4;
  --gold: #C9A84C;
  --gold-dim: #7a6230;
  --border: rgba(255, 255, 255, 0.1);
  --border-bright: rgba(255, 255, 255, 0.25);
  --surface: rgba(255, 255, 255, 0.03);
  --surface-hover: rgba(255, 255, 255, 0.06);
  --font-display: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --font-mono: 'DM Mono', monospace;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}

/* ── CURSOR ── */
#cursor {
  position: fixed;
  width: 10px;
  height: 10px;
  background: var(--white);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s, width 0.2s, height 0.2s, background 0.2s;
  mix-blend-mode: difference;
}

#cursor-ring {
  position: fixed;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94), width 0.3s, height 0.3s, opacity 0.3s;
}

body:hover #cursor-ring {
  opacity: 1;
}

/* ── NOISE OVERLAY ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.35;
}

/* ── GRID BG ── */
.grid-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 80px 80px;
}

.grid-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(201, 168, 76, 0.06) 0%, transparent 70%);
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 60px;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, background 0.3s, backdrop-filter 0.3s;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Hamburger button — hidden on desktop */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  cursor: pointer;
  padding: 12px 10px;
  z-index: 200;
  transition: background 0.3s, border-color 0.3s;
}

.hamburger:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(201, 168, 76, 0.5);
}

.hamburger span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--gold);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s;
  transform-origin: center;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

nav.scrolled {
  border-color: var(--border);
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(20px);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--white);
}

.nav-logo span {
  color: var(--gold);
}

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--silver);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--white);
}

.nav-cta {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 12px 24px;
  background: var(--white);
  color: var(--black);
  border: none;
  cursor: none;
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
}

.nav-cta:hover {
  background: var(--gold);
}

/* ── SECTIONS COMMON ── */
section {
  position: relative;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 60px;
}

.section-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.section-label::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}

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

.hero-inner {
  position: relative;
  z-index: 2;
  padding: 100px 60px 80px;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 16px;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s forwards;
}

.hero-eyebrow::before {
  content: '';
  width: 48px;
  height: 1px;
  background: var(--gold);
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(20px, 9vw, 70px);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 40px;
}

.hero-headline .line {
  display: block;
  overflow: hidden;
}

.hero-headline .line span {
  display: block;
  opacity: 0;
  transform: translateY(100%);
}

.hero-headline .line:nth-child(1) span {
  animation: slideUp 0.9s 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-headline .line:nth-child(2) span {
  animation: slideUp 0.9s 0.45s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-headline .line:nth-child(3) span {
  animation: slideUp 0.9s 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-headline .accent {
  color: var(--gold);
}

.hero-sub {
  font-size: 18px;
  font-weight: 300;
  color: var(--silver);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 56px;
  opacity: 0;
  animation: fadeUp 0.8s 0.9s forwards;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  align-items: center;
  opacity: 0;
  animation: fadeUp 0.8s 1.1s forwards;
}

.btn-primary {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 18px 36px;
  background: linear-gradient(135deg, var(--gold) 0%, #a48232 100%);
  color: var(--black);
  border: 1px solid var(--gold);
  cursor: none;
  display: inline-block;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: 4px;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.2);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201, 168, 76, 0.4);
  filter: brightness(1.1);
}

.btn-primary span {
  position: relative;
  z-index: 1;
}

.btn-secondary {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 18px 36px;
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.15);
  cursor: none;
  display: inline-block;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: 4px;
}

.btn-secondary:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-2px);
}

.hero-stats {
  display: flex;
  gap: 0;
  border-top: 1px solid var(--border);
  margin-top: 80px;
  opacity: 0;
  animation: fadeUp 0.8s 1.3s forwards;
}

.hero-stat {
  flex: 1;
  padding: 32px 0;
  border-right: 1px solid var(--border);
}

.hero-stat:last-child {
  border-right: none;
}

.hero-stat-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.hero-stat-num .unit {
  font-size: 28px;
  color: var(--gold);
}

.hero-stat-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--silver);
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  right: 60px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--silver-dim);
  display: flex;
  align-items: center;
  gap: 12px;
  writing-mode: vertical-rl;
  z-index: 2;
  opacity: 0;
  animation: fadeUp 0.8s 1.5s forwards;
}

.hero-scroll::after {
  content: '';
  width: 1px;
  height: 60px;
  background: var(--silver-dim);
  animation: grow 1.5s 2s ease-in-out infinite;
}

.hero-marquee {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(201, 168, 76, 0.04);
}

.hero-marquee-track {
  display: flex;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
}

.hero-marquee-track span {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-dim);
  padding: 10px 48px;
}

.hero-marquee-track span::before {
  content: '✦';
  margin-right: 48px;
}

/* ── VIDEO PLACEHOLDER ── */
.hero-video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #050505;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  opacity: 0;
  animation: fadeUp 0.8s 0.7s forwards;
  border-radius: 16px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(201, 168, 76, 0.03);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-video-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.5;
  z-index: 3;
}

.hero-video-element {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.video-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
  /* Dim the video before playing */
  transition: opacity 0.4s ease;
  cursor: pointer;
}

.video-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}

.video-placeholder-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  color: var(--silver);
}

.video-placeholder-inner .play-icon {
  width: 72px;
  height: 72px;
  border: 1px solid rgba(201, 168, 76, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 24px;
  padding-left: 6px;
  /* visually center play icon */
  transition: transform 0.3s, background 0.3s, border-color 0.3s;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
}

.video-overlay:hover .play-icon {
  transform: scale(1.1);
  background: rgba(201, 168, 76, 0.2);
  border-color: var(--gold);
}

.video-placeholder-inner span {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  font-weight: 500;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

@media (min-width: 1025px) {
  .hero-inner {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    /* Right side is larger */
    grid-template-areas:
      "eyebrow video"
      "headline video"
      "sub video"
      "ctas video"
      "stats video";
    column-gap: 60px;
    align-items: start;
  }

  .hero-eyebrow {
    grid-area: eyebrow;
  }

  .hero-headline {
    grid-area: headline;
  }

  .hero-sub {
    grid-area: sub;
  }

  .hero-ctas {
    grid-area: ctas;
  }

  .hero-stats {
    grid-area: stats;
  }

  .hero-video-wrapper {
    grid-area: video;
    align-self: start;
    /* Moved higher */
    margin-top: -20px;
    transform: scale(1.05);
    /* Made slightly bigger */
    transform-origin: top right;
  }
}

@media (max-width: 1024px) {
  .hero-video-wrapper {
    margin-bottom: 40px;
  }
}

/* ── ABOUT / MANIFESTO ── */
#manifesto {
  padding: 140px 0;
  border-bottom: 1px solid var(--border);
}

.manifesto-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 120px;
  align-items: center;
}

.manifesto-text h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.manifesto-text h2 em {
  font-style: normal;
  color: var(--gold);
}

.manifesto-text p {
  color: var(--silver);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 20px;
}

.manifesto-visual {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #050505;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(201, 168, 76, 0.03);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.manifesto-visual::before {
  content: '';
  position: absolute;
  inset: -50%;
  background: conic-gradient(from 0deg, transparent 0deg, rgba(201, 168, 76, 0.06) 60deg, transparent 120deg);
  animation: rotateSlow 20s linear infinite;
}

.manifesto-visual .inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 40px;
}

.manifesto-visual .big-num {
  font-family: var(--font-display);
  font-size: 96px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  color: rgba(255, 255, 255, 0.06);
}

.manifesto-visual .tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 16px;
}

.diagonal-line {
  position: absolute;
  top: -1px;
  right: 40px;
  width: 1px;
  height: 80px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

/* ── COURSES ── */

.courses-header {
  margin-bottom: 80px;
}

.courses-header h2 {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  line-height: 0.95;
  margin-bottom: 20px;
}

.platform-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 60px;
  border: 1px solid var(--border);
}

.platform-tab {
  flex: 1;
  padding: 20px 32px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: transparent;
  color: var(--silver);
  border: none;
  cursor: none;
  transition: background 0.2s, color 0.2s;
  position: relative;
}

.platform-tab.active {
  background: var(--white);
  color: var(--black);
}

.platform-tab:not(.active):hover {
  background: var(--surface-hover);
  color: var(--white);
}

.platform-content {
  display: none;
}

.platform-content.active {
  display: block;
}

/* Shopify cards */
.courses-grid {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 600px;
  margin: 0 auto;
  gap: 32px;
}

.course-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 48px 40px;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 0;
  transform: translateY(30px);
}

.course-card.revealed {
  opacity: 1;
  transform: translateY(0);
}

.course-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201, 168, 76, 0.4);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 40px rgba(201, 168, 76, 0.05);
}

.course-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.course-card:hover::before {
  transform: scaleX(1);
}

.course-card-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}

.course-card-tag::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--gold);
}

.course-card h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
  text-transform: uppercase;
  line-height: 1.2;
}

.course-card p {
  font-size: 14px;
  color: var(--silver);
  line-height: 1.7;
  margin-bottom: 32px;
  font-weight: 300;
}

.course-features-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.course-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--silver);
}

.course-feature-item svg {
  color: var(--gold);
  flex-shrink: 0;
}

.course-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border);
  padding-top: 28px;
  margin-top: auto;
}

.course-price {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--white);
}

.course-price .curr {
  font-size: 14px;
  color: var(--silver);
  font-weight: 400;
}

.course-btn {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 12px 24px;
  border: 1px solid var(--gold);
  color: var(--white);
  background: transparent;
  cursor: none;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  border-radius: 4px;
}

.course-btn:hover {
  background: var(--gold);
  color: var(--black);
  box-shadow: 0 0 15px rgba(201, 168, 76, 0.4);
}

.course-card-badge {
  position: absolute;
  top: 0;
  right: 24px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--gold) 0%, #a48232 100%);
  color: var(--black);
  padding: 8px 18px;
  font-weight: 600;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  box-shadow: 0 4px 12px rgba(201, 168, 76, 0.25);
}

/* eBay toggle */
.ebay-toggle-wrap {
  margin-bottom: 48px;
}

.ebay-toggle {
  display: inline-flex;
  border: 1px solid var(--border);
  overflow: hidden;
}

.ebay-toggle-btn {
  padding: 14px 32px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: transparent;
  color: var(--silver);
  border: none;
  cursor: none;
  transition: background 0.2s, color 0.2s;
}

.ebay-toggle-btn.active {
  background: var(--white);
  color: var(--black);
}

.ebay-panel {
  display: none;
}

.ebay-panel.active {
  display: block;
}

.mentorship-banner {
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.08) 0%, rgba(201, 168, 76, 0.02) 100%);
  border: 1px solid rgba(201, 168, 76, 0.3);
  padding: 32px 40px;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.mentorship-icon {
  width: 56px;
  height: 56px;
  border: 1px solid rgba(201, 168, 76, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 22px;
}

.mentorship-banner h4 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 6px;
  color: var(--gold);
}

.mentorship-banner p {
  font-size: 14px;
  color: var(--silver);
  font-weight: 300;
}

.mentorship-features {
  list-style: none;
  gap: 12px;
  margin-top: 32px;
}

.mentorship-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--silver);
  font-weight: 300;
}

.mentorship-features li::before {
  content: '→';
  color: var(--gold);
  font-family: var(--font-mono);
  flex-shrink: 0;
}

/* ── RESULTS ── */
#results {
  padding: 60px 0;
  border-top: 1px solid var(--border);
}

.results-header {
  margin-bottom: 60px;
}

.results-header h2 {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  line-height: 0.95;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
}

.results-platform-content {
  display: none;
}

.results-platform-content.active {
  display: block;
}

.result-card {
  background: var(--black);
  position: relative;
  overflow: hidden;
  cursor: none;
  aspect-ratio: 0.8;
}

.result-card-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 60%);
}

.result-card-bg {
  position: absolute;
  inset: 0;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.result-card:hover .result-card-bg {
  transform: scale(1.06);
}

.result-card-profit {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--gold);
  line-height: 1;
}

.result-card-name {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--silver);
  margin-top: 4px;
}

.result-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}

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

.result-card-overlay span {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  border: 1px solid var(--white);
  padding: 10px 24px;
}

/* Lightbox */
#lightbox {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  backdrop-filter: blur(8px);
}

#lightbox.open {
  opacity: 1;
  pointer-events: all;
}

#lightbox-content {
  max-width: 80vw;
  max-height: 80vh;
  position: relative;
}

#lightbox-img {
  max-width: 100%;
  max-height: 80vh;
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

#lightbox-close {
  position: absolute;
  top: -48px;
  right: 0;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--silver);
  cursor: none;
  background: none;
  border: none;
  transition: color 0.2s;
}

#lightbox-close:hover {
  color: var(--white);
}

#lightbox-info {
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border);
  padding-top: 20px;
}

#lightbox-profit {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 800;
  color: var(--gold);
}

#lightbox-meta {
  text-align: right;
}

#lightbox-name {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--silver);
}

#lightbox-period {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--silver-dim);
}

/* ── PROCESS ── */
#process {
  padding: 100px 0;
  border-top: 1px solid var(--border);
}

.process-header h2 {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  line-height: 0.95;
  margin-bottom: 80px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
}

.process-step {
  background: var(--black);
  padding: 48px 36px;
  position: relative;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s, transform 0.6s;
}

.process-step.revealed {
  opacity: 1;
  transform: translateY(0);
}

.process-step:nth-child(2) {
  transition-delay: 0.1s;
}

.process-step:nth-child(3) {
  transition-delay: 0.2s;
}

.process-step:nth-child(4) {
  transition-delay: 0.3s;
}

.process-num {
  font-family: var(--font-display);
  font-size: 80px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.18);
  line-height: 1;
  margin-bottom: 24px;
  letter-spacing: -0.04em;
}

.process-step h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}

.process-step p {
  font-size: 14px;
  color: var(--silver);
  line-height: 1.7;
  font-weight: 300;
}

.process-step-line {
  position: absolute;
  top: 48px;
  right: 0;
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

/* ── TESTIMONIALS ── */
#testimonials {
  padding: 140px 0;
  border-top: 1px solid var(--border);
  overflow: hidden;
}

.testimonials-header {
  margin-bottom: 60px;
}

.testimonials-header h2 {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  line-height: 0.95;
}

.testimonials-track-outer {
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: marqueeTestimonials 40s linear infinite;
}

.testimonials-track:hover {
  animation-play-state: paused;
}

.testimonial-card {
  width: 400px;
  flex-shrink: 0;
  border: 1px solid var(--border);
  padding: 36px;
  background: var(--black);
  transition: border-color 0.3s, background 0.3s;
}

.testimonial-card:hover {
  border-color: rgba(201, 168, 76, 0.3);
  background: var(--surface);
}

.testimonial-quote {
  font-size: 16px;
  font-weight: 300;
  color: var(--silver-bright);
  line-height: 1.7;
  margin-bottom: 28px;
  font-style: italic;
}

.testimonial-quote::before {
  content: '"';
  color: var(--gold);
  font-size: 32px;
  line-height: 0;
  vertical-align: -12px;
  margin-right: 6px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 800;
  color: var(--gold);
}

.testimonial-name {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 2px;
  text-transform: uppercase;
}

.testimonial-meta {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── BOOKING ── */
#booking {
  padding: 60px 0;
  border-top: 1px solid var(--border);
}

.booking-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.booking-left h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 60px);
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  line-height: 0.95;
  margin-bottom: 28px;
}

.booking-left h2 em {
  font-style: normal;
  color: var(--gold);
}

.booking-left p {
  font-size: 17px;
  color: var(--silver);
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 40px;
}

.booking-perks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}

.booking-perks li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 15px;
  color: var(--silver);
  font-weight: 300;
}

.booking-perk-icon {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(201, 168, 76, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  font-size: 14px;
}

.booking-right {
  border: 1px solid var(--border);
  padding: 4px;
  position: relative;
}

.booking-right::before {
  content: 'BOOK A SESSION';
  position: absolute;
  top: -12px;
  left: 24px;
  z-index: 1;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  background: var(--black);
  padding: 0 8px;
  color: var(--gold);
}

.calendly-frame {
  width: 100%;
  min-height: 680px;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
}

.calendly-placeholder {
  text-align: center;
  padding: 60px 40px;
}

.calendly-placeholder p {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--silver-dim);
  margin-bottom: 24px;
}

.calendly-placeholder .cta-book {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 16px 36px;
  background: var(--gold);
  color: var(--black);
  border: none;
  cursor: none;
  text-decoration: none;
  display: inline-block;
}

/* ── FOOTER ── */
footer {
  border-top: 1px solid var(--border);
  padding: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-logo span {
  color: var(--gold);
}

.footer-links {
  display: flex;
  gap: 32px;
}

.footer-links a {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--silver-dim);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-copy {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--silver-dim);
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-social-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--silver-dim);
  text-decoration: none;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.2s;
}

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

.footer-social-link svg {
  flex-shrink: 0;
  transition: stroke 0.2s;
}

.footer-social-link:hover svg {
  stroke: var(--gold);
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(100%);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes marqueeTestimonials {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes rotateSlow {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes grow {

  0%,
  100% {
    transform: scaleY(0);
    transform-origin: top;
  }

  50% {
    transform: scaleY(1);
  }
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.4;
  }
}

/* ── REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

/* ── RESULT CARD COLORS (fake screenshots) ── */
.result-bg-1 {
  background: linear-gradient(135deg, #0d1b0d 0%, #0a1f0a 100%);
}

.result-bg-2 {
  background: linear-gradient(135deg, #1a0d0d 0%, #1f0a0a 100%);
}

.result-bg-3 {
  background: linear-gradient(135deg, #0d120d 0%, #0a170a 100%);
}

.result-bg-4 {
  background: linear-gradient(135deg, #1a150d 0%, #1f180a 100%);
}

.result-bg-5 {
  background: linear-gradient(135deg, #0d1a1a 0%, #0a1f1f 100%);
}

.result-bg-6 {
  background: linear-gradient(135deg, #120d1a 0%, #170a1f 100%);
}

.result-bg-7 {
  background: linear-gradient(135deg, #1a1a0d 0%, #1f1f0a 100%);
}

.result-bg-8 {
  background: linear-gradient(135deg, #0d0d1a 0%, #0a0a1f 100%);
}

/* Image styling for result cards */
.result-card-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.result-chart {
  width: 80%;
  height: 60%;
  display: flex;
  align-items: flex-end;
  gap: 4px;
  opacity: 0.3;
}

.result-bar {
  flex: 1;
  background: var(--gold);
  border-radius: 0;
}

@media (max-width: 1024px) {
  nav {
    padding: 20px 32px;
  }

  .container {
    padding: 0 32px;
  }

  .hero-inner {
    padding: 40px 32px 60px;
  }

  .manifesto-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .courses-grid {
    grid-template-columns: 1fr;
  }

  .results-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .booking-inner {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  /* Calendly widget mobile fix */
  .booking-right {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }

  .calendly-inline-widget {
    min-width: unset !important;
    width: 100% !important;
  }

  footer {
    flex-direction: column;
    gap: 32px;
    text-align: center;
    padding: 40px 32px;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer-socials {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }

  /* Hamburger visible on tablet/mobile */
  .hamburger {
    display: flex;
  }

  .nav-links {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(24px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    z-index: 150;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s;
    margin: 0;
    padding: 0;
  }

  .nav-links.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-links li {
    overflow: hidden;
  }

  .nav-links li a {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: var(--silver);
    text-decoration: none;
    transition: color 0.3s, transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    transform: translateY(100%);
  }

  .nav-links.open li a {
    transform: translateY(0);
    color: var(--white);
  }

  .nav-links li a:hover {
    color: var(--gold);
  }

  /* Staggered animation for links */
  .nav-links.open li:nth-child(1) a {
    transition-delay: 0.1s;
  }

  .nav-links.open li:nth-child(2) a {
    transition-delay: 0.15s;
  }

  .nav-links.open li:nth-child(3) a {
    transition-delay: 0.2s;
  }

  .nav-links.open li:nth-child(4) a {
    transition-delay: 0.25s;
  }
}

@media (max-width:757px) {
  .nav-cta {
    padding: 7px 12px;
    font-size: 9px;
  }
}

@media (max-width:627px) {
  .nav-cta {
    display: none;
  }

  .hero-stats {
    flex-wrap: wrap;
  }

  .process-steps {
    grid-template-columns: repeat(1, 1fr);
  }

  .hero-ctas a {
    font-size: 11px;
    letter-spacing: 0em;
  }

  .hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-left: 0;
  }

  .hero-stat-num {
    font-size: 27px;
  }

  #lightbox-content {
    max-width: 95vw;
    max-height: 85vh;
    padding: 20px;
  }

  #lightbox-img {
    max-height: 50vh;
  }

  #lightbox-close {
    top: -40px;
    font-size: 10px;
  }

  #lightbox-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  #lightbox-meta {
    text-align: left;
  }

  .results-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width:467px) {
  nav {
    padding: 14px 20px;
  }
}