/* ═══════════════════════════════════════════════════════════════════════════
   Product Design Strategy Sprint — Z School
   style.css
   ══════════════════════════════════════════════════════════════════════════ */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: #000;
  color: #fff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  cursor: pointer;
  background: none;
  border: none;
  font: inherit;
  color: inherit;
}

::selection {
  background: #fff;
  color: #000;
}

/* ── Fade-up animation ─────────────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Navbar ────────────────────────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  border-bottom: 1px solid transparent;
  transition: background 0.3s, border-color 0.3s, backdrop-filter 0.3s;
}

#navbar.scrolled {
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(12px);
  border-color: rgba(255, 255, 255, 0.1);
}

.nav-inner {
  max-width: 1920px;
  margin: auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

@media(min-width:768px) {
  .nav-inner {
    padding: 0 3rem;
  }
}

.nav-logo-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.nav-logo {
  height: 28px;
  width: auto;
  object-fit: contain;
}

@media(min-width:768px) {
  .nav-logo {
    height: 32px;
  }
}

.nav-back-link {
  display: none;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  padding-left: 1rem;
  transition: color 0.3s;
}

.nav-back-link:hover {
  color: rgba(255, 255, 255, 0.7);
}

@media(min-width:640px) {
  .nav-back-link {
    display: flex;
  }
}

.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media(min-width:1024px) {
  .nav-links {
    display: flex;
  }
}

.nav-link {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  position: relative;
  transition: color 0.3s;
}

.nav-link:hover {
  color: #fff;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  height: 1px;
  width: 0;
  background: #fff;
  transition: width 0.3s;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-right {
  display: none;
  align-items: center;
  gap: 1.5rem;
}

@media(min-width:1024px) {
  .nav-right {
    display: flex;
  }
}

.nav-login {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: #fff;
  color: #000;
  padding: 8px 20px;
  transition: background 0.2s;
}

.nav-login:hover {
  background: #e8e8e8;
}

.nav-powered {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  text-transform: uppercase;
}

.nav-powered-by {
  font-weight: 700;
  letter-spacing: 0.25em;
  color: rgba(255, 255, 255, 0.3);
}

.nav-zeux {
  font-weight: 900;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.6);
}

.nav-powered:hover .nav-zeux {
  color: #fff;
}

.nav-mobile-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

@media(min-width:1024px) {
  .nav-mobile-right {
    display: none;
  }
}

.hamburger {
  display: flex;
  align-items: center;
  color: #fff;
  padding: 4px;
}

/* ── Mobile menu ──────────────────────────────────────────────────────── */
#mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: #000;
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}

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

.mobile-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
  height: 80px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 2rem;
  gap: 2rem;
}

.mobile-nav-link {
  font-size: clamp(2rem, 8vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #fff;
  transition: color 0.2s;
}

.mobile-nav-link:hover {
  color: #999;
}

.mobile-nav-back {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.2s;
}

.mobile-nav-back:hover {
  color: #fff;
}

.mobile-login {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: #000;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* ── Hero ──────────────────────────────────────────────────────────────── */
.hero {
  max-width: 1920px;
  margin: 0 auto;
  padding: 7rem 1rem 0;
  text-align: center;
  overflow: hidden;
}

@media(min-width:768px) {
  .hero {
    padding: 8rem 3rem 0;
  }
}

/* Exact match: text-[13vw] md:text-[9vw] lg:text-[8.5vw] */
.hero-headline {
  font-size: 13vw;
  line-height: 0.88;
  letter-spacing: -0.04em;
  font-weight: 900;
  text-transform: uppercase;
  color: #fff;
}

@media(min-width:768px) {
  .hero-headline {
    font-size: 9vw;
  }
}

@media(min-width:1024px) {
  .hero-headline {
    font-size: 8.5vw;
  }
}

/* text-xl md:text-2xl = 20px / 24px */
.hero-sub {
  font-size: 20px;
  font-weight: 300;
  color: #fff;
  max-width: 38rem;
  margin: 1.5rem auto 0;
  line-height: 1.5;
}

@media(min-width:768px) {
  .hero-sub {
    font-size: 24px;
  }
}

.hero-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid rgba(255, 255, 255, 0.1);
  max-width: 36rem;
  margin: 2.5rem auto 0;
}

@media(min-width:640px) {
  .hero-meta {
    grid-template-columns: repeat(4, 1fr);
  }
}

.hero-meta-cell {
  padding: 0.75rem 1rem;
  text-align: center;
}

.hero-meta-cell:not(:first-child) {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-meta-cell:nth-child(3),
.hero-meta-cell:nth-child(4) {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media(min-width:640px) {

  .hero-meta-cell:nth-child(3),
  .hero-meta-cell:nth-child(4) {
    border-top: none;
  }
}

/* text-[9px] */
.hero-meta-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 6px;
}

/* text-sm = 14px */
.hero-meta-val {
  font-size: 14px;
  font-weight: 900;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.avatar-stack {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 2.5rem auto 0;
}

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 900;
  flex-shrink: 0;
  margin-left: -8px;
}

.avatar:first-child {
  margin-left: 0;
}

.rating-row {
  text-align: center;
  margin-top: 0.5rem;
}

.stars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  margin-bottom: 4px;
}

.star-svg {
  width: 13px;
  height: 13px;
  fill: #F5A524;
}

.star-empty {
  fill: rgba(255, 255, 255, 0.2);
}

.star-partial-wrap {
  position: relative;
  display: inline-block;
  width: 13px;
  height: 13px;
  vertical-align: middle;
}

.star-partial-wrap .star-bg {
  position: absolute;
  inset: 0;
}

.star-partial-wrap .star-clip {
  overflow: hidden;
  width: 80%;
  position: absolute;
  inset: 0;
}

/* text-sm = 14px, font-black */
.rating-label {
  font-size: 14px;
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
}

/* text-[11px] */
.rating-sub {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.05em;
  margin-top: 2px;
}

/* ── Video section ─────────────────────────────────────────────────────── */
.video-section {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 1rem 4rem;
}

@media(min-width:768px) {
  .video-section {
    padding: 0 3rem 7rem;
  }
}

.video-wrap {
  position: relative;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  margin-bottom: 2rem;
}

@media(min-width:640px) {
  .video-wrap {
    aspect-ratio: 16/7;
  }
}

.video-thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.55);
  transition: transform 0.7s ease;
}

.video-wrap video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.video-wrap:hover .video-thumb {
  transform: scale(1.03);
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  transition: background 0.5s;
}

.video-wrap:hover .video-overlay {
  background: rgba(0, 0, 0, 0.15);
}

.video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.4s, border-color 0.4s;
}

.video-wrap:hover .video-play {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.7);
}

/* text-[10px] */
.video-caption {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  white-space: nowrap;
}

.video-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

/* text-[10px] */
.early-bird-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #F5A524;
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

/* text-base = 16px */
.price-old {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.3);
  text-decoration: line-through;
}

/* text-3xl md:text-4xl = 30px / 36px */
.price-new {
  font-size: 30px;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: #fff;
}

@media(min-width:768px) {
  .price-new {
    font-size: 36px;
  }
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.5rem;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: #F5A524;
  color: #000;
  transition: filter 0.2s;
}

.cta-btn:hover {
  filter: brightness(0.92);
}

/* text-[10px] */
.cta-sub {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  text-align: center;
  margin-top: 4px;
}

/* ── Company ticker ────────────────────────────────────────────────────── */
.ticker-section {
  background: #fff;
  color: #000;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding: 2.5rem 0;
  text-align: center;
  overflow: hidden;
  position: relative;
  max-width: 1920px;
  margin: 0 auto;
}

/* text-lg sm:text-xl md:text-2xl = 18/20/24px */
.ticker-heading {
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #000;
  max-width: 48rem;
  margin: 0 auto 2rem;
  padding: 0 1rem;
}

@media(min-width:640px) {
  .ticker-heading {
    font-size: 20px;
  }
}

@media(min-width:768px) {
  .ticker-heading {
    font-size: 24px;
  }
}

.ticker-row {
  overflow: hidden;
  margin-bottom: 1.25rem;
}

.ticker-row:last-of-type {
  margin-bottom: 0;
}

.ticker-track {
  display: flex;
  gap: 2.5rem;
  white-space: nowrap;
  width: max-content;
}

.ticker-track.left {
  animation: tickerLeft 28s linear infinite;
}

.ticker-track.right {
  animation: tickerRight 32s linear infinite;
}

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

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

@keyframes tickerRight {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(0);
  }
}

/* text-xl md:text-2xl lg:text-3xl = 20/24/30px */
.ticker-item {
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.2);
  cursor: default;
  transition: color 0.3s;
}

@media(min-width:768px) {
  .ticker-item {
    font-size: 24px;
  }
}

@media(min-width:1024px) {
  .ticker-item {
    font-size: 30px;
  }
}

.ticker-item:hover {
  color: rgba(0, 0, 0, 0.6);
}

.ticker-fade-l {
  pointer-events: none;
  position: absolute;
  inset-y: 0;
  left: 0;
  width: 6rem;
  background: linear-gradient(to right, #fff, transparent);
}

.ticker-fade-r {
  pointer-events: none;
  position: absolute;
  inset-y: 0;
  right: 0;
  width: 6rem;
  background: linear-gradient(to left, #fff, transparent);
}

@media(min-width:768px) {

  .ticker-fade-l,
  .ticker-fade-r {
    width: 10rem;
  }
}

/* ── Testimonials ──────────────────────────────────────────────────────── */
.testi-section {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  max-width: 1920px;
  margin: 0 auto;
}

.testi-heading {
  padding: 4rem 1rem 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media(min-width:768px) {
  .testi-heading {
    padding: 4rem 3rem 0.5rem;
  }
}

/* text-4xl md:text-6xl lg:text-7xl = 36/60/72px */
.testi-heading h2 {
  font-size: 36px;
  font-weight: 900;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  line-height: 0.9;
  text-align: center;
}

@media(min-width:768px) {
  .testi-heading h2 {
    font-size: 60px;
  }
}

@media(min-width:1024px) {
  .testi-heading h2 {
    font-size: 72px;
  }
}

/* Desktop slider */
.testi-desktop {
  display: none;
  padding: 3.5rem 1rem;
}

@media(min-width:768px) {
  .testi-desktop {
    display: block;
    padding: 3.5rem 3rem;
  }
}

.testi-track-outer {
  overflow: hidden;
  width: 100%;
}

.testi-track {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

.testi-card {
  flex-shrink: 0;
  padding: 0 0.75rem;
}

.testi-card:first-child {
  padding-left: 0;
}

.testi-card:last-child {
  padding-right: 0;
}

.testi-card-inner {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.02);
  padding: 2.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: background 0.4s;
}

.testi-card-inner:hover {
  background: rgba(255, 255, 255, 0.05);
}

.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}

/* text-sm = 14px → but card uses smaller */
.testi-avatar span {
  font-size: 13px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: -0.05em;
}

/* text-lg lg:text-xl = 18/20px */
.testi-quote {
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.3;
  color: #fff;
  flex: 1;
}

@media(min-width:1024px) {
  .testi-quote {
    font-size: 20px;
  }
}

.testi-attr {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.25rem;
}

/* text-sm = 14px */
.testi-name {
  font-size: 14px;
  font-weight: 900;
  letter-spacing: -0.01em;
  color: #fff;
  line-height: 1;
}

/* text-xs = 12px */
.testi-role {
  font-size: 12px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 4px;
}

.testi-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 2rem;
}

.testi-dots {
  display: flex;
  align-items: center;
  gap: 6px;
}

.testi-dot {
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
  transition: width 0.3s, background 0.3s;
  cursor: pointer;
}

.testi-dot.active {
  background: rgba(255, 255, 255, 0.6);
}

.testi-arrows {
  display: flex;
  gap: 8px;
}

.testi-arrow {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.3);
  transition: color 0.2s, border-color 0.2s;
}

.testi-arrow:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}

.testi-arrow:disabled {
  opacity: 0.2;
  cursor: not-allowed;
}

/* Mobile spotlight */
.testi-mobile {
  display: block;
  padding: 3rem 1rem;
}

@media(min-width:768px) {
  .testi-mobile {
    display: none;
  }
}

.testi-mob-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  text-align: center;
  max-width: 48rem;
  margin: 0 auto;
}

.testi-mob-portrait {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 260px;
  flex-shrink: 0;
}

.testi-mob-initials-wrap {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testi-mob-monogram {
  /* width: 80px;
  height: 80px; */
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: -0.05em;
}

.testi-mob-text {
  min-height: 180px;
  width: 100%;
}

/* text-2xl = 24px */
.testi-mob-quote {
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 1rem;
}

/* text-base = 16px → but Tailwind has text-base for name, text-sm for role */
.testi-mob-name {
  font-size: 16px;
  font-weight: 900;
  letter-spacing: -0.01em;
  color: #fff;
  line-height: 1;
}

/* text-sm = 14px */
.testi-mob-role {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 4px;
}

.testi-mob-controls {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}

.testi-mob-progress {
  display: flex;
  align-items: center;
  gap: 6px;
  width: 180px;
}

.testi-mob-prog-item {
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.testi-mob-prog-fill {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.5);
  width: 0%;
}

.testi-mob-prog-done {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.3);
}

.testi-mob-arrows {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.testi-mob-arrow {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.3);
  transition: color 0.2s, border-color 0.2s;
}

.testi-mob-arrow:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}

/* ── Playbook ──────────────────────────────────────────────────────────── */
.playbook-section {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  max-width: 1920px;
  margin: 0 auto;
}

.playbook-grid {
  display: grid;
  grid-template-columns: 1fr;
}

@media(min-width:1024px) {
  .playbook-grid {
    grid-template-columns: 1fr 1fr;
    min-height: 520px;
  }
}

.playbook-left {
  padding: 5rem 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media(min-width:768px) {
  .playbook-left {
    padding: 8rem 3rem;
  }
}

@media(min-width:1024px) {
  .playbook-left {
    padding: 8rem 4rem;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
  }
}

/* text-4xl md:text-5xl lg:text-6xl = 36/48/60px */
.playbook-left h2 {
  font-size: 36px;
  font-weight: 900;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 2rem;
}

@media(min-width:768px) {
  .playbook-left h2 {
    font-size: 48px;
  }
}

@media(min-width:1024px) {
  .playbook-left h2 {
    font-size: 60px;
  }
}

/* text-base md:text-lg = 16/18px */
.playbook-left p {
  font-size: 16px;
  font-weight: 300;
  color: #9ca3af;
  line-height: 1.7;
  max-width: 32rem;
  margin-bottom: 1rem;
}

@media(min-width:768px) {
  .playbook-left p {
    font-size: 18px;
  }
}

.playbook-left p.bold-note {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  max-width: 32rem;
}

@media(min-width:768px) {
  .playbook-left p.bold-note {
    font-size: 18px;
  }
}

/* text-xs = 12px */
.see-modules-btn {
  margin-top: 2.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 1rem 2rem;
  transition: border-color 0.2s;
}

.see-modules-btn:hover {
  border-color: #fff;
}

.playbook-right {
  display: none;
}

@media(min-width:1024px) {
  .playbook-right {
    display: block;
    background: #050505;
    position: relative;
    overflow: hidden;
  }
}

.playbook-right::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 48px 48px;
}

.playbook-svg-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2.5rem;
  pointer-events: none;
}

/* text-[10px] */
.playbook-svg-label p {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #99A1AF;
}

/* ── Modules ───────────────────────────────────────────────────────────── */
.modules-section {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  max-width: 1920px;
  margin: 0 auto;
}

.modules-headline {
  padding: 4rem 1rem 6rem;
  text-align: center;
}

@media(min-width:768px) {
  .modules-headline {
    padding: 6rem 3rem;
  }
}

/* text-4xl md:text-6xl lg:text-7xl = 36/60/72px */
.modules-headline h2 {
  font-size: 36px;
  font-weight: 900;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  line-height: 0.9;
}

@media(min-width:768px) {
  .modules-headline h2 {
    font-size: 60px;
  }
}

@media(min-width:1024px) {
  .modules-headline h2 {
    font-size: 72px;
  }
}

.module-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.5s;
}

.module-item.open {
  background: #fff;
}

.module-trigger {
  width: 100%;
  text-align: left;
  padding: 2rem 1rem;
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  cursor: pointer;
}

@media(min-width:768px) {
  .module-trigger {
    padding: 3rem;
    gap: 3rem;
  }
}

.module-illus {
  flex-shrink: 0;
  width: 80px;
  height: 64px;
}

@media(min-width:768px) {
  .module-illus {
    width: 112px;
    height: 80px;
  }
}

.module-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

/* text-xs = 12px */
.module-num {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #99A1AF;
  transition: color 0.5s;
}

.module-item.open .module-num {
  color: #6b7280;
}

.module-dur {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 2px 8px;
  color: rgba(255, 255, 255, 0.5);
  transition: border-color 0.5s, color 0.5s;
}

.module-item.open .module-dur {
  border-color: rgba(0, 0, 0, 0.2);
  color: rgba(0, 0, 0, 0.5);
}

/* text-2xl md:text-4xl = 24/36px */
.module-title {
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  line-height: 1;
  color: #fff;
  transition: color 0.5s;
}

@media(min-width:768px) {
  .module-title {
    font-size: 36px;
  }
}

.module-item.open .module-title {
  color: #000;
}

/* text-sm md:text-base = 14/16px */
.module-subtitle {
  font-size: 14px;
  color: #9ca3af;
  margin-top: 4px;
  transition: color 0.5s;
}

@media(min-width:768px) {
  .module-subtitle {
    font-size: 16px;
  }
}

.module-item.open .module-subtitle {
  color: #4b5563;
}

.module-toggle {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.5s, color 0.5s;
  margin-top: 4px;
}

.module-item.open .module-toggle {
  border-color: #000;
  color: #000;
}

.module-toggle svg {
  transition: transform 0.3s;
}

.module-item.open .module-toggle svg {
  transform: rotate(45deg);
}

.module-body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.module-body-inner {
  padding: 0 1rem 3rem;
}

@media(min-width:768px) {
  .module-body-inner {
    padding: 0 3rem 3rem;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2.5rem;
  }
}

/* text-base md:text-lg = 16/18px */
.module-body p.body-text {
  font-size: 16px;
  color: #374151;
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 2rem;
}

@media(min-width:768px) {
  .module-body p.body-text {
    font-size: 18px;
  }
}

/* text-xs = 12px */
.module-masters-label {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #6b7280;
  margin-bottom: 1rem;
}

.module-masters {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

/* text-sm md:text-base = 14/16px */
.module-master-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 14px;
  color: #374151;
}

@media(min-width:768px) {
  .module-master-item {
    font-size: 16px;
  }
}

.module-master-item svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: #000;
}

.module-why {
  border-left: 2px solid #000;
  padding-left: 1.5rem;
}

.module-why-label {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #6b7280;
  margin-bottom: 0.5rem;
}

/* text-sm md:text-base = 14/16px */
.module-why-body {
  font-size: 14px;
  color: #374151;
  font-weight: 300;
  line-height: 1.7;
}

@media(min-width:768px) {
  .module-why-body {
    font-size: 16px;
  }
}

/* ── Audience ──────────────────────────────────────────────────────────── */
.audience-section {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  max-width: 1920px;
  margin: 0 auto;
}

.audience-heading {
  padding: 5rem 1rem 3rem;
  text-align: center;
}

@media(min-width:768px) {
  .audience-heading {
    padding: 9rem 3rem 3rem;
  }
}

/* text-4xl md:text-6xl lg:text-7xl = 36/60/72px */
.audience-heading h2 {
  font-size: 36px;
  font-weight: 900;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  line-height: 0.9;
}

@media(min-width:768px) {
  .audience-heading h2 {
    font-size: 60px;
  }
}

@media(min-width:1024px) {
  .audience-heading h2 {
    font-size: 72px;
  }
}

.audience-grid {
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media(min-width:640px) {
  .audience-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media(min-width:1024px) {
  .audience-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.audience-card {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem 1rem;
  cursor: default;
  transition: background 0.4s, color 0.4s;
}

@media(min-width:768px) {
  .audience-card {
    padding: 3rem;
  }
}

@media(min-width:1024px) {
  .audience-card {
    padding: 3.5rem;
  }
}

.audience-card:hover {
  background: #fff;
  color: #000;
}

.audience-icon {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: border-color 0.4s;
}

.audience-card:hover .audience-icon {
  border-color: rgba(0, 0, 0, 0.2);
}

.audience-icon svg {
  opacity: 0.4;
  transition: opacity 0.4s;
  color: #fff;
}

.audience-card:hover .audience-icon svg {
  opacity: 0.5;
  color: #000;
}

/* text-2xl md:text-3xl = 24/30px */
.audience-role {
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

@media(min-width:768px) {
  .audience-role {
    font-size: 30px;
  }
}

/* text-xs = 12px */
.audience-hook {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #99A1AF;
  margin-bottom: 0.75rem;
  transition: color 0.4s;
}

.audience-card:hover .audience-hook {
  color: #6b7280;
}

/* text-xs = 12px */
.audience-body {
  font-size: 12px;
  font-weight: 300;
  color: #4b5563;
  line-height: 1.6;
}

.not-for {
  padding: 2.5rem 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media(min-width:768px) {
  .not-for {
    padding: 2.5rem 3rem;
  }
}

.not-for-box {
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem 2.5rem;
  background: rgba(255, 255, 255, 0.02);
}

/* text-[11px] = 11px */
.not-for-label {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #99A1AF;
  margin-bottom: 0.75rem;
}

/* text-sm md:text-base = 14/16px */
.not-for-box p {
  font-size: 14px;
  font-weight: 300;
  color: #9ca3af;
  line-height: 1.6;
  max-width: 40rem;
}

@media(min-width:768px) {
  .not-for-box p {
    font-size: 16px;
  }
}

/* ── Instructors ───────────────────────────────────────────────────────── */
.instructors-section {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  max-width: 1920px;
  margin: 0 auto;
}

.instructors-title {
  padding: 5rem 1rem 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media(min-width:768px) {
  .instructors-title {
    padding: 8rem 3rem 3rem;
  }
}

/* text-4xl md:text-6xl lg:text-7xl = 36/60/72px */
.instructors-title h2 {
  font-size: 36px;
  font-weight: 900;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  line-height: 0.9;
  text-align: center;
}

@media(min-width:768px) {
  .instructors-title h2 {
    font-size: 60px;
  }
}

@media(min-width:1024px) {
  .instructors-title h2 {
    font-size: 72px;
  }
}

.instructor-grid {
  display: grid;
  grid-template-columns: 1fr;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media(min-width:1024px) {
  .instructor-grid {
    grid-template-columns: 1fr 1fr;
    min-height: 680px;
  }
}

.instructor-portrait {
  position: relative;
  background: #080808;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 520px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media(min-width:1024px) {
  .instructor-portrait {
    border-bottom: none;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    min-height: 0;
  }
}

.instructor-portrait img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(100%) contrast(1.08) brightness(0.8);
}

.instructor-portrait-grad {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #080808 0%, rgba(8, 8, 8, 0.7) 40%, rgba(8, 8, 8, 0.1) 100%);
}

.instructor-portrait-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 48px 48px;
}

.instructor-portrait-content {
  position: relative;
  z-index: 10;
  padding: 2rem 1.5rem;
}

@media(min-width:768px) {
  .instructor-portrait-content {
    padding: 3rem;
  }
}

@media(min-width:1024px) {
  .instructor-portrait-content {
    padding: 4rem;
  }
}

@media(min-width:1024px) {
  .instructor-portrait.change-order {
    order: 2;
  }
}

/* text-[10px] */
.instructor-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #99A1AF;
  margin-bottom: 1rem;
}

/* text-4xl md:text-5xl lg:text-6xl = 36/48/60px */
.instructor-name {
  font-size: 36px;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 0.75rem;
}

@media(min-width:768px) {
  .instructor-name {
    font-size: 48px;
  }
}

@media(min-width:1024px) {
  .instructor-name {
    font-size: 60px;
  }
}

/* text-sm md:text-base = 14/16px */
.instructor-role {
  font-size: 14px;
  font-weight: 300;
  color: #9ca3af;
  margin-bottom: 1.5rem;
  max-width: 20rem;
}

@media(min-width:768px) {
  .instructor-role {
    font-size: 16px;
  }
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  padding: 6px 12px;
}

/* text-[10px] */
.badge span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.instructor-bio {
  padding: 4rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2.5rem;
}

@media(min-width:768px) {
  .instructor-bio {
    padding: 6rem 3rem;
    gap: 3.5rem;
  }
}

@media(min-width:1024px) {
  .instructor-bio {
    padding: 6rem 4rem 6rem 6rem;
  }
}

/* text-lg md:text-2xl = 18/24px */
.instructor-bio-text {
  font-size: 18px;
  font-weight: 300;
  color: #d1d5db;
  line-height: 1.7;
}

@media(min-width:768px) {
  .instructor-bio-text {
    font-size: 24px;
  }
}

.instructor-bio-text strong {
  color: #fff;
  font-weight: 500;
}

.instructor-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2.5rem;
}

/* text-3xl md:text-4xl = 30/36px */
.stat-val {
  font-size: 30px;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: #fff;
}

@media(min-width:768px) {
  .stat-val {
    font-size: 36px;
  }
}

/* text-[10px] */
.stat-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #99A1AF;
  margin-top: 4px;
}

.instructor-domains {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2.5rem;
}

.domain-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #9ca3af;
  font-size: 14px;
  font-weight: 300;
  transition: color 0.2s;
  cursor: default;
}

.domain-item:hover {
  color: #e5e7eb;
}

.domain-dot {
  width: 4px;
  height: 4px;
  background: rgba(255, 255, 255, 0.4);
  flex-shrink: 0;
}

/* ── Five reasons ──────────────────────────────────────────────────────── */
.why-section {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 5rem 1rem;
  max-width: 1920px;
  margin: 0 auto;
}

@media(min-width:768px) {
  .why-section {
    padding: 9rem 3rem;
  }
}

/* text-3xl md:text-5xl lg:text-6xl = 30/48/60px */
.why-section h2 {
  font-size: 30px;
  font-weight: 900;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  line-height: 0.9;
  margin-bottom: 4rem;
  text-align: center;
}

@media(min-width:768px) {
  .why-section h2 {
    font-size: 48px;
    margin-bottom: 5rem;
  }
}

@media(min-width:1024px) {
  .why-section h2 {
    font-size: 60px;
  }
}

.why-row {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  transition: background 0.5s;
  cursor: default;
}

@media(min-width:768px) {
  .why-row {
    grid-template-columns: 5fr 7fr;
    gap: 3rem;
    padding: 3rem 0;
    align-items: center;
  }
}

.why-row:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.why-row:hover {
  background: rgba(255, 255, 255, 0.02);
}

.why-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* text-5xl = 48px */
.why-num {
  font-size: 48px;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
  display: none;
}

@media(min-width:768px) {
  .why-num {
    display: block;
  }
}

/* text-lg md:text-2xl = 18/24px */
.why-heading {
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

@media(min-width:768px) {
  .why-heading {
    font-size: 24px;
  }
}

/* text-sm md:text-lg = 14/18px */
.why-body {
  font-size: 14px;
  font-weight: 300;
  color: #6b7280;
  line-height: 1.7;
  transition: color 0.5s;
}

@media(min-width:768px) {
  .why-body {
    font-size: 18px;
  }
}

.why-row:hover .why-body {
  color: #d1d5db;
}

/* ── Pricing ───────────────────────────────────────────────────────────── */
.pricing-section {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  max-width: 1920px;
  margin: 0 auto;
}

.pricing-headline {
  padding: 4rem 1rem 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

@media(min-width:768px) {
  .pricing-headline {
    padding: 5rem 3rem 2.5rem;
  }
}

/* text-4xl md:text-6xl lg:text-7xl = 36/60/72px */
.pricing-headline h2 {
  font-size: 36px;
  font-weight: 900;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  line-height: 0.9;
}

@media(min-width:1024px) {
  .pricing-headline h2 {
    font-size: 72px;
  }
}

.pricing-section .ticker-row {
  position: relative;
  max-width: 1100px;
  overflow: hidden;
  margin: 0px auto;
}

.pricing-section .ticker-track {
  gap: 32px;
  animation: tickerLeft 20s linear infinite;
}

.pricing-section .ticker-item {
  color: #99a1af;
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
  display: flex;
  align-items: center;
  text-transform: none;
}

.pricing-section .ticker-item::after {
  content: '◆';
  margin-left: 32px;
  color: color-mix(in oklab, #F5A524 40%, transparent);
  font-size: 10px;
  line-height: 15px;
}

.pricing-section .ticker-item span {
  color: #F5A524;
  font-size: 20px;
  font-weight: 900;
  line-height: 28px;
  margin-right: 12px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
  padding: 3.5rem 1rem;
}

@media(min-width:1024px) {
  .pricing-grid {
    padding: 5rem 0 1.25rem;
  }
}

@media(min-width:640px) {
  .pricing-grid {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
  }
}

.pricing-col {
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  position: relative;
}

.pricing-col.pricing-left {
  opacity: 0.55;
}

.pricing-col.pricing-right {
  border-color: rgba(245, 165, 36, 0.25);
  background: rgba(245, 165, 36, 0.04);
}

.pricing-label {
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #99A1AF;
}

.pricing-right .pricing-label {
  color: #F5A524;
}

.pricing-details {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.75rem;
}

.pricing-details .pricing {
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: #fff;
  line-height: 1;
}

.pricing-details .pricing-dates {
  color: rgba(255, 255, 255, 0.7);
  text-align: right;
  line-height: 1.3;
  font-size: 12px;
  font-weight: 300;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.pricing-bullets {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1rem;
}

.pricing-right .pricing-bullets {
  border-top-color: rgba(245, 165, 36, 0.2);
}

.pricing-bullet {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.pricing-bullet svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.6);
}

.pricing-bullet span {
  font-size: 13px;
  font-weight: 300;
  color: #9ca3af;
  line-height: 1.35;
  transition: color 0.3s;
}

.pricing-right .pricing-bullet span {
  color: #d1d5db;
}

.reserve-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0.75rem 1.25rem;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: auto;
  background: #F5A524;
  color: #000;
  transition: filter 0.2s;
}

.reserve-btn:hover {
  filter: brightness(0.92);
}

.reserve-btn.disabled {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.25);
  cursor: not-allowed;
}

/* text-xs = 12px */
.group-offer {
  font-size: 12px;
  color: #6b7280;
  margin: 0 3rem 5rem;
  text-align: center;
}

.group-offer a {
  color: #9ca3af;
  transition: color 0.2s;
}

.group-offer a:hover {
  color: #fff;
}

/* ── FAQ ────────────────────────────────────────────────────────────────── */
.faq-section {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 5rem 1rem;
  max-width: 1920px;
  margin: 0 auto;
}

@media(min-width:768px) {
  .faq-section {
    padding: 9rem 3rem;
  }
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media(min-width:1024px) {
  .faq-grid {
    grid-template-columns: 4fr 8fr;
    gap: 6rem;
  }
}

/* text-3xl md:text-5xl = 30/48px */
.faq-title {
  font-size: 30px;
  font-weight: 900;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  line-height: 1;
}

@media(min-width:768px) {
  .faq-title {
    font-size: 48px;
  }
}

@media(min-width:1024px) {
  .faq-title {
    position: sticky;
    top: 8rem;
  }
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-trigger {
  width: 100%;
  text-align: left;
  padding: 1.5rem 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
}

@media(min-width:768px) {
  .faq-trigger {
    padding: 2rem 0;
  }
}

/* text-sm md:text-base = 14/16px */
.faq-q {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
  transition: color 0.2s;
  padding-right: 1rem;
}

@media(min-width:768px) {
  .faq-q {
    font-size: 16px;
  }
}

.faq-trigger:hover .faq-q {
  color: rgba(255, 255, 255, 0.8);
}

.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
}

.faq-icon.open {
  transform: rotate(45deg);
}

.faq-body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* text-sm md:text-base = 14/16px */
.faq-body p {
  font-size: 14px;
  font-weight: 300;
  color: #9ca3af;
  line-height: 1.7;
  padding-bottom: 1.5rem;
  padding-right: 3rem;
}

@media(min-width:768px) {
  .faq-body p {
    font-size: 16px;
  }
}

/* ── Final CTA ─────────────────────────────────────────────────────────── */
.final-cta {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 6rem 1rem 10rem;
  text-align: center;
  max-width: 1920px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media(min-width:768px) {
  .final-cta {
    padding: 10rem 3rem;
  }
}

/* text-4xl md:text-6xl lg:text-[5.5vw] */
.final-cta h2 {
  font-size: 36px;
  font-weight: 900;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  line-height: 0.9;
  max-width: 50rem;
  margin-bottom: 3.5rem;
}

@media(min-width:768px) {
  .final-cta h2 {
    font-size: 60px;
  }
}

@media(min-width:1024px) {
  .final-cta h2 {
    font-size: 5.5vw;
  }
}

/* text-xs md:text-sm = 12/14px */
.final-cta-btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: #fff;
  color: #000;
  padding: 1.25rem 3.5rem;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: background 0.2s;
}

@media(min-width:768px) {
  .final-cta-btn {
    padding: 1.5rem 4rem;
    font-size: 14px;
  }
}

.final-cta-btn:hover {
  background: #e8e8e8;
}

/* ── Site footer ───────────────────────────────────────────────────────── */
.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 4rem 1rem 5rem;
  max-width: 1920px;
  margin: 0 auto;
}

@media(min-width:768px) {
  .site-footer {
    padding: 5rem 3rem;
  }
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

@media(min-width:1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* text-3xl md:text-4xl = 30/36px */
.footer-brand a {
  font-size: 30px;
  font-weight: 900;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: #fff;
  display: inline-block;
  margin-bottom: 4px;
  transition: opacity 0.2s;
}

@media(min-width:768px) {
  .footer-brand a {
    font-size: 36px;
  }
}

.footer-brand a:hover {
  opacity: 0.6;
}

/* text-[11px] = 11px */
.footer-by {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #99A1AF;
  margin-bottom: 1.25rem;
}

/* text-base md:text-lg = 16/18px */
.footer-desc {
  font-size: 16px;
  font-weight: 300;
  color: #9ca3af;
  line-height: 1.7;
  max-width: 28rem;
}

@media(min-width:768px) {
  .footer-desc {
    font-size: 18px;
  }
}

/* text-sm = 14px */
.footer-contact-label {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 8px;
}

/* text-lg md:text-xl = 18/20px */
.footer-email {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  transition: color 0.2s;
  letter-spacing: 0.02em;
}

@media(min-width:768px) {
  .footer-email {
    font-size: 20px;
  }
}

.footer-email:hover {
  color: #d1d5db;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  margin-top: 1.5rem;
}

/* text-[11px] = 11px */
.footer-links a {
  font-size: 11px;
  color: #6b7280;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media(min-width:768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

/* text-xs = 12px */
.footer-copy {
  font-size: 12px;
  color: #4b5563;
}

/* ═══════════════════════════════════════════════════════════════════════════
   CHECKOUT PAGE STYLES
   ══════════════════════════════════════════════════════════════════════════ */

/* ── Breadcrumb ── */
.breadcrumb {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 1rem;
  height: 56px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

@media(min-width:768px) {
  .breadcrumb {
    padding: 0 3rem;
  }
}

/* text-[10px] */
.breadcrumb-back {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #99A1AF;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}

.breadcrumb-back:hover {
  color: #fff;
}

.breadcrumb-sep {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.15);
}

.breadcrumb-current {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #fff;
}

/* ── Page headline ── */
.checkout-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  max-width: 1920px;
  margin: 0 auto;
  padding: 2rem 1rem 1.5rem;
}

@media(min-width:768px) {
  .checkout-header {
    padding: 3rem 3rem 2rem;
  }
}

/* text-[10px] */
.checkout-cohort-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #99A1AF;
  margin-bottom: 0.75rem;
}

/* text-4xl md:text-6xl = 36/60px */
.checkout-title {
  font-size: 36px;
  font-weight: 900;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  line-height: 0.9;
  color: #fff;
  margin-bottom: 1.5rem;
}

@media(min-width:768px) {
  .checkout-title {
    font-size: 60px;
  }
}

/* Mountain indicator */
.mountain-indicator {
  display: flex;
  align-items: center;
  gap: 0;
}

.mi-step {
  display: flex;
  align-items: center;
  gap: 0;
}

.mi-dot {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.1em;
  flex-shrink: 0;
}

.mi-dot.active {
  background: #fff;
  color: #000;
}

.mi-dot.done {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.mi-dot.future {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.3);
}

.mi-line {
  width: 2rem;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
}

.mi-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: 6px;
}

.mi-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ── Checkout grid ── */
.checkout-grid {
  max-width: 1920px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
}

@media(min-width:1024px) {
  .checkout-grid {
    grid-template-columns: 1fr 420px;
  }
}

@media(min-width:1280px) {
  .checkout-grid {
    grid-template-columns: 1fr 480px;
  }
}

/* LEFT: form */
.checkout-left {
  padding: 2rem 1rem 4rem;
  border-right: 0;
}

@media(min-width:768px) {
  .checkout-left {
    padding: 3.5rem 3rem 4rem;
  }
}

@media(min-width:1024px) {
  .checkout-left {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
  }
}

/* Urgency bar */
.urgency-bar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.025);
  padding: 0.75rem 1rem;
  margin-bottom: 2.5rem;
}

/* text-xs = 12px */
.urgency-bar p {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #F5A524;
}

/* text-[10px] */
.form-section-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #99A1AF;
  margin-bottom: 1.5rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

@media(min-width:640px) {
  .form-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
  }
}

.field-wrap {}

/* text-[10px] */
.field-label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #99A1AF;
  margin-bottom: 8px;
}

.field-label .req {
  color: #F5A524;
  margin-left: 2px;
}

.field-input-wrap {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: border-color 0.2s;
}

.field-input-wrap:focus-within {
  border-color: rgba(255, 255, 255, 0.6);
}

/* text-sm = 14px */
.field-input {
  width: 100%;
  background: transparent;
  padding: 14px 16px;
  font-size: 14px;
  color: #fff;
  font-family: inherit;
  font-weight: 300;
  outline: none;
  border: none;
}

.field-input::placeholder {
  color: rgba(255, 255, 255, 0.2);
}

.form-grid .full-width {
  grid-column: 1 / -1;
}

.custom-checkbox {
  display: inline-block;
}

.custom-checkbox .styled-checkbox {
  position: absolute;
  opacity: 0;
  width: 26px;
  height: 26px;
  cursor: pointer;
}

.custom-checkbox .styled-checkbox+label {
  position: relative;
  cursor: pointer;
  color: #99A1AF;
  font-size: 12px;
  padding-left: 30px;
}

.custom-checkbox .styled-checkbox+label:before {
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.4);
  margin-right: 10px;
  display: inline-block;
  width: 20px;
  height: 20px;
  position: absolute;
  left: 0;
}

.custom-checkbox .styled-checkbox:checked+label:after {
  content: "";
  position: absolute;
  left: 7px;
  top: 0px;
  width: 6px;
  height: 11px;
  border: solid rgba(255, 255, 255, 0.8);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.custom-checkbox.error label:before {
  border-color: rgba(245, 165, 36, 0.7);
}

.custom-checkbox a {
  border-bottom: dashed 1px #F4F4F4;
}

/* Submit btn */
/* text-sm = 14px */
.submit-btn {
  width: 100%;
  background: #fff;
  color: #000;
  padding: 1.25rem;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  font-family: inherit;
}

.submit-btn:hover {
  background: #e8e8e8;
}

.submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* text-[10px] */
.submit-note {
  font-size: 10px;
  color: #4b5563;
  text-align: center;
  margin-top: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Trust badges */
.trust-badges {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media(min-width:640px) {
  .trust-badges {
    grid-template-columns: repeat(3, 1fr);
  }
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.trust-badge svg {
  color: rgba(255, 255, 255, 0.4);
  flex-shrink: 0;
  margin-top: 2px;
}

/* text-[11px] = 11px */
.trust-badge p {
  font-size: 11px;
  font-weight: 300;
  color: #6b7280;
  line-height: 1.4;
}

/* Testimonial carousel */
/* text-[10px] */
.testi-carousel-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #99A1AF;
  margin-bottom: 1.25rem;
  margin-top: 3rem;
}

.testi-carousel {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.02);
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
}

.testi-carousel-top {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.2), transparent);
  margin-bottom: 0;
}

.carousel-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 0.75rem;
}

.carousel-star {
  width: 12px;
  height: 12px;
  fill: #F5A524;
}

/* text-sm = 14px */
.carousel-quote {
  font-size: 14px;
  font-weight: 300;
  color: #d1d5db;
  line-height: 1.6;
  margin-bottom: 1rem;
}

/* text-xs = 12px */
.carousel-name {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #fff;
}

/* text-[10px] */
.carousel-title {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #99A1AF;
  margin-top: 2px;
}

.carousel-dots {
  display: flex;
  gap: 6px;
  margin-top: 1rem;
}

.carousel-dot {
  height: 2px;
  background: rgba(255, 255, 255, 0.25);
  transition: width 0.3s, background 0.3s;
  border: none;
  cursor: pointer;
  padding: 0;
}

.carousel-dot.active {
  background: #fff;
}

/* Spinner */
.spinner {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(0, 0, 0, 0.3);
  border-top-color: #000;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* RIGHT: cart */
.checkout-right {
  padding: 2rem 1rem;
  background: #050505;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media(min-width:768px) {
  .checkout-right {
    padding: 3.5rem 2rem;
  }
}

@media(min-width:1024px) {
  .checkout-right {
    border-top: none;
  }
}

/* text-[10px] */
.order-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #99A1AF;
  margin-bottom: 1.25rem;
}

.product-card {
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.02);
  margin-bottom: 2rem;
}

.product-card-head {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.25rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

/* text-[10px] */
.product-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #99A1AF;
  margin-bottom: 4px;
}

/* text-base md:text-lg = 16/18px */
.product-name {
  font-size: 16px;
  font-weight: 900;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  line-height: 1.2;
  color: #fff;
}

@media(min-width:768px) {
  .product-name {
    font-size: 18px;
  }
}

/* text-xs = 12px */
.product-price-old {
  font-size: 12px;
  color: #4b5563;
  text-decoration: line-through;
  text-align: right;
  display: block;
  margin-bottom: 2px;
}

/* text-xl = 20px */
.product-price-new {
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: #fff;
  text-align: right;
  display: block;
}

.product-dates {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, 0.015);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* text-[9px] */
.date-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #99A1AF;
  margin-bottom: 4px;
}

/* text-sm = 14px */
.date-val {
  font-size: 14px;
  font-weight: 900;
  letter-spacing: -0.01em;
  color: #fff;
}

/* text-[10px] */
.date-sub {
  font-size: 10px;
  color: #9ca3af;
  margin-top: 2px;
}

.product-includes {
  padding: 1rem 1.25rem;
}

/* text-[9px] */
.includes-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #99A1AF;
  margin-bottom: 0.75rem;
}

.includes-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.includes-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.includes-item svg {
  color: rgba(255, 255, 255, 0.6);
  flex-shrink: 0;
  margin-top: 2px;
}

/* text-xs = 12px */
.includes-item span {
  font-size: 12px;
  font-weight: 300;
  color: #9ca3af;
  line-height: 1.4;
}

/* Early bird badge (cart) */
.cart-early-bird {
  border: 1px solid rgba(245, 165, 36, 0.4);
  background: rgba(245, 165, 36, 0.05);
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

/* text-xs = 12px */
.cart-early-bird span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #F5A524;
}

/* Stats grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.1);
  margin-bottom: 2rem;
}

.stat-cell {
  background: #000;
  padding: 0.75rem 1rem;
  text-align: center;
}

/* text-lg md:text-xl = 18/20px */
.stat-cell .val {
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: #fff;
}

@media(min-width:768px) {
  .stat-cell .val {
    font-size: 20px;
  }
}

/* text-[9px] */
.stat-cell .lbl {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #99A1AF;
  margin-top: 2px;
}

/* Instructors card */
.instructors-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.015);
  padding: 1.25rem;
  margin-bottom: 2rem;
}

/* text-[9px] */
.instructors-card-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #99A1AF;
  margin-bottom: 0.75rem;
}

.instructor-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.instructor-row:last-child {
  margin-bottom: 0;
}

.instructor-mono {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 900;
  color: #fff;
  flex-shrink: 0;
}

/* text-xs = 12px */
.instructor-row-name {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #fff;
}

/* text-[9px] */
.instructor-row-role {
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #99A1AF;
  margin-top: 2px;
}

/* Cohort notice */
.cohort-notice {
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.75rem 1rem;
}

/* text-[9px] */
.cohort-notice-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #99A1AF;
  margin-bottom: 4px;
}

/* text-xs = 12px */
.cohort-notice p {
  font-size: 12px;
  font-weight: 300;
  color: #9ca3af;
  line-height: 1.5;
}

/* ── Success screen ── */
.success-screen {
  min-height: 100vh;
  background: #000;
  color: #fff;
  display: flex;
  flex-direction: column;
}

.success-body {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 1rem;
}

.success-inner {
  max-width: 36rem;
  width: 100%;
  text-align: center;
}

.success-inner.error {
  max-width: 56rem;
  width: 100%;
}

.success-check {
  width: 64px;
  height: 64px;
  border: 2px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
}

.success-check.error {
  border-color: red;
}

/* text-[10px] */
.success-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #99A1AF;
  margin-bottom: 1rem;
}

/* text-4xl md:text-6xl = 36/60px */
.success-title {
  font-size: 36px;
  font-weight: 900;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  line-height: 0.9;
  color: #fff;
  margin-bottom: 1.5rem;
}

@media(min-width:768px) {
  .success-title {
    font-size: 60px;
  }
}

/* text-base md:text-lg = 16/18px */
.success-body-text {
  font-size: 16px;
  font-weight: 300;
  color: #9ca3af;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

@media(min-width:768px) {
  .success-body-text {
    font-size: 18px;
  }
}

.success-next {
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  text-align: left;
  margin-bottom: 2.5rem;
  background: rgba(255, 255, 255, 0.02);
}

/* text-[10px] */
.success-next-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #99A1AF;
  margin-bottom: 1rem;
}

.success-step {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.success-step:last-child {
  margin-bottom: 0;
}

/* text-[10px] */
.success-step-num {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #99A1AF;
  width: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* text-sm = 14px */
.success-step-text {
  font-size: 14px;
  font-weight: 300;
  color: #d1d5db;
  line-height: 1.5;
}

/* text-xs = 12px */
.success-back-link {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #99A1AF;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s;
}

.success-back-link:hover {
  color: #fff;
}