/* ═══════════════════════════════════════════════════════════════
   OUTLASTING AI — Z School
   Single stylesheet · inline below script tag at bottom
   ═══════════════════════════════════════════════════════════════ */

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

html {
  scroll-behavior: smooth;
}

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

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

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

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

/* ── 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 {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  max-width: 1920px;
  margin: 0 auto;
}

.hero-headline-wrap {
  padding: 8rem 1rem 0;
  text-align: center;
}

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

.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;
  }
}

.hero-sub {
  margin-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem 1rem 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}

@media (min-width: 768px) {
  .hero-sub {
    padding: 2rem 3rem 3.5rem;
    margin-top: 2.5rem;
  }
}

.hero-sub-text {
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1.6;
  max-width: 42rem;
  color: #fff;
}

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

/* Avatar stack */
.avatar-stack {
  display: flex;
  align-items: center;
}

.avatar-item {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 7px;
  font-weight: 900;
  color: #fff;
  flex-shrink: 0;
  overflow: hidden;
}

@media (min-width: 480px) {
  .avatar-item {
    width: 36px;
    height: 36px;
    font-size: 9px;
  }
}

@media (min-width: 768px) {
  .avatar-item {
    width: 40px;
    height: 40px;
  }
}

.avatar-item+.avatar-item {
  margin-left: -8px;
}

.rating-block {
  text-align: center;
}

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

.star {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
}

.star-full {
  color: #F59E0B;
  fill: #F59E0B;
}

.star-partial-wrap {
  position: relative;
  width: 13px;
  height: 13px;
  flex-shrink: 0;
}

.star-partial-bg {
  position: absolute;
  inset: 0;
  color: rgba(255, 255, 255, 0.2);
  fill: rgba(255, 255, 255, 0.2);
}

.star-partial-fg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  width: 60%;
}

.star-partial-fg svg {
  color: #F59E0B;
  fill: #F59E0B;
}

.rating-label {
  font-size: 0.875rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

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

/* ── Hero Network SVG ── */
.hero-network-wrap {
  display: none;
}

@media (min-width: 1024px) {
  .hero-network-wrap {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
}

.hero-network-svg {
  width: 100%;
  max-width: 520px;
  height: auto;
}

@keyframes nodePulse {

  0%,
  100% {
    opacity: 0.2;
    transform: scale(1);
  }

  50% {
    opacity: 0;
    transform: scale(1.8);
  }
}

@keyframes nodeFlicker {

  0%,
  100% {
    fill-opacity: 0.06;
  }

  50% {
    fill-opacity: 0.32;
  }
}

.node-pulse {
  animation: nodePulse 3s ease-in-out infinite;
  transform-origin: center;
}

.node-flicker {
  animation: nodeFlicker 2.8s ease-in-out infinite;
}

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

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

.video-box {
  position: relative;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.02);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  cursor: pointer;
  overflow: hidden;
  margin-bottom: 2rem;
  aspect-ratio: 4/3;
}

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

.video-grid-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
}

.video-play-btn {
  position: relative;
  z-index: 10;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s;
}

.video-play-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.4);
}

@media (min-width: 768px) {
  .video-play-btn {
    width: 5rem;
    height: 5rem;
  }
}

.video-label {
  position: relative;
  z-index: 10;
  text-align: center;
}

.video-label p {
  color: rgba(255, 255, 255, 0.3);
  font-weight: 300;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.price-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
}

.price-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #99A1AF;
}

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

.price-orig {
  color: rgba(255, 255, 255, 0.3);
  text-decoration: line-through;
  font-size: 1rem;
  font-weight: 300;
}

.price-main {
  font-size: 1.875rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: #fff;
}

@media (min-width: 768px) {
  .price-main {
    font-size: 2.25rem;
  }
}

.btn-enroll {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: #fff;
  color: #000;
  padding: 1rem 2rem;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: background 0.2s, transform 0.15s;
}

.btn-enroll:hover {
  background: #e8e8e8;
  transform: scale(1.02);
}

@media (min-width: 768px) {
  .btn-enroll {
    padding: 1.25rem 2.5rem;
    font-size: 0.875rem;
  }
}

.price-meta {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
}

/* ── Testimonials ── */
.testimonials-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;
}

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

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

.section-h2 {
  font-size: 2.5rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  line-height: 1;
}

@media (min-width: 768px) {
  .section-h2 {
    font-size: 3.75rem;
  }
}

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

/* Desktop testimonial slider */
.testi-desktop {
  display: none;
}

@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);
  width: calc(200%);
  /* 6 cards / 3 visible = 2x */
}

.testi-card {
  width: calc(100% / 6);
  padding: 0 0.75rem;
  flex-shrink: 0;
}

.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: 2rem;
  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;
}

.testi-avatar span {
  font-size: 0.75rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: -0.04em;
}

.testi-quote {
  font-size: 1.125rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.35;
  flex: 1;
  color: #fff;
}

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

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

.testi-name {
  font-size: 0.875rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #fff;
}

.testi-role {
  font-size: 0.75rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 4px;
}

.testi-controls {
  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;
  width: 16px;
  background: rgba(255, 255, 255, 0.15);
  transition: all 0.3s;
  border: none;
  cursor: pointer;
}

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

.testi-arrows {
  display: flex;
  gap: 0.5rem;
}

.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: all 0.2s;
}

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

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

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

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

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

.testi-mobile-avatar {
  position: relative;
  flex-shrink: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testi-mobile-avatar-initials {
  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;
  overflow: hidden;
}

.testi-mobile-avatar-initials span {
  font-size: 1.5rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: -0.04em;
}

.testi-mobile-text {
  flex: 1;
}

.testi-mobile-quote {
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.25;
  color: #fff;
  text-align: center;
  transition: opacity 0.5s, transform 0.5s;
}

.testi-mobile-name {
  font-size: 1rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.02em;
  margin-top: 0.75rem;
}

.testi-mobile-role {
  font-size: 0.875rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 4px;
}

.testi-mobile-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2rem;
  justify-content: center;
}

.testi-progress-bars {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  max-width: 180px;
}

#mob-bars {
  display: none;
}

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

.testi-progress-fill {
  position: absolute;
  inset-y: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.5);
  transition: width 0.09s linear;
}

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

.testi-mob-arrows {
  display: flex;
  gap: 0.5rem;
}

.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: all 0.2s;
}

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

/* ── Logo ticker ── */
.ticker-section {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 0.75rem;
  margin-top: 4px;
  overflow: hidden;
}

.ticker-track {
  display: flex;
  gap: 2.5rem;
  white-space: nowrap;
  width: max-content;
  animation: tickerMove 26s linear infinite;
}

.ticker-item {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.2);
  transition: color 0.2s;
}

.ticker-item:hover {
  color: rgba(255, 255, 255, 0.5);
}

@keyframes tickerMove {
  0% {
    transform: translateX(0);
  }

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

/* ── Curriculum / Learnings (white bg) ── */
.curriculum-section {
  background: #fff;
  color: #000;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  max-width: 1920px;
  margin: 0 auto;
}

.section-header-light {
  padding: 5rem 1rem 3rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  text-align: center;
}

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

.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #9ca3af;
  margin-bottom: 1rem;
}

.section-h2-dark {
  font-size: 2.5rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  line-height: 1;
  color: #000;
}

@media (min-width: 768px) {
  .section-h2-dark {
    font-size: 3.75rem;
  }
}

@media (min-width: 1024px) {
  .section-h2-dark {
    font-size: 4.5rem;
  }
}

.curriculum-row {
  display: grid;
  grid-template-columns: 1fr;
  padding: 2.25rem 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  gap: 1rem;
  align-items: start;
  cursor: default;
  transition: background 0.3s;
}

@media (min-width: 768px) {
  .curriculum-row {
    grid-template-columns: 80px 1fr 1fr;
    padding: 2.75rem 3rem;
    gap: 3rem;
  }
}

.curriculum-row:hover {
  background: rgba(0, 0, 0, 0.025);
}

.curriculum-num {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.2);
  padding-top: 2px;
}

.curriculum-title {
  font-size: 1.125rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #000;
  line-height: 1.25;
}

@media (min-width: 768px) {
  .curriculum-title {
    font-size: 1.25rem;
  }
}

.curriculum-body {
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.7;
  color: #6b7280;
}

/* ── Who is this for ── */
.for-you-section {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  max-width: 1920px;
  margin: 0 auto;
}

.for-you-header {
  padding: 5rem 1rem 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

@media (min-width: 768px) {
  .for-you-header {
    padding: 7rem 3rem 3rem;
  }
}

.for-you-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: rgba(255, 255, 255, 0.1);
}

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

.for-you-card {
  position: relative;
  overflow: hidden;
  cursor: default;
  height: 260px;
}

@media (min-width: 768px) {
  .for-you-card {
    height: auto;
    min-height: 340px;
  }
}

.for-you-card.wide {}

@media (min-width: 768px) {
  .for-you-card.wide {
    grid-column: span 2;
    min-height: 420px;
  }
}

.for-you-card.full {}

@media (min-width: 768px) {
  .for-you-card.full {
    grid-column: span 3;
    min-height: 260px;
  }
}

.for-you-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) brightness(0.5);
  transition: filter 0.7s ease, transform 0.7s ease;
  transform: scale(1);
}

.for-you-card:hover .for-you-img {
  filter: grayscale(0%) brightness(0.9);
  transform: scale(1.05);
}

.for-you-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #000 0%, rgba(0, 0, 0, 0.5) 50%, transparent 100%);
  transition: background 0.7s;
}

.for-you-card.full .for-you-overlay {
  background: linear-gradient(to right, #000 0%, rgba(0, 0, 0, 0.6) 50%, transparent 100%);
}

.for-you-card:hover .for-you-overlay {
  background: linear-gradient(to top, #000 0%, rgba(0, 0, 0, 0.2) 40%, transparent 100%);
}

.for-you-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  transform: translateY(4px);
  transition: transform 0.5s;
}

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

.for-you-card:hover .for-you-content {
  transform: translateY(0);
}

.for-you-title {
  font-size: 1.125rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .for-you-title {
    font-size: 1.25rem;
  }
}

.for-you-card.full .for-you-title {
  font-size: 1.25rem;
}

@media (min-width: 768px) {
  .for-you-card.full .for-you-title {
    font-size: 1.5rem;
  }
}

.for-you-body {
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.6;
  color: #9ca3af;
  max-width: 28rem;
  transition: color 0.5s;
}

.for-you-card:hover .for-you-body {
  color: #e5e7eb;
}

/* ── Hook (white bg) ── */
.hook-section {
  background: #fff;
  color: #000;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  max-width: 1920px;
  margin: 0 auto;
}

.hook-inner {
  padding: 6rem 1rem 3.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .hook-inner {
    padding: 9rem 3rem 5rem;
    grid-template-columns: 1fr 2px 1fr;
    gap: 0;
  }
}

.hook-left {}

@media (min-width: 768px) {
  .hook-left {
    padding-right: 4rem;
  }
}

.hook-left p {
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1.6;
  color: #000;
}

@media (min-width: 768px) {
  .hook-left p {
    font-size: 1.5rem;
  }
}

.hook-divider {
  display: none;
}

@media (min-width: 768px) {
  .hook-divider {
    display: block;
    background: rgba(0, 0, 0, 0.1);
    width: 1px;
  }
}

.hook-right {}

@media (min-width: 768px) {
  .hook-right {
    padding-left: 4rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
}

.hook-right p {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.7;
  color: #6b7280;
}

.hook-note {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.6;
  color: #374151;
  border-left: 2px solid rgba(0, 0, 0, 0.2);
  padding-left: 1rem;
}

/* ── Walk Away With (white bg) ── */
.takeaways-section {
  background: #fff;
  color: #000;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  max-width: 1920px;
  margin: 0 auto;
}

.takeaways-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: rgba(0, 0, 0, 0.1);
}

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

.takeaway-card {
  background: #fff;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: background 0.3s;
  cursor: default;
}

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

.takeaway-card:hover {
  background: rgba(0, 0, 0, 0.02);
}

.check-icon {
  width: 24px;
  height: 24px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.takeaway-title {
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: #000;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .takeaway-title {
    font-size: 1.5rem;
  }
}

.takeaway-body {
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.7;
  color: #6b7280;
}

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

.instructor-header {
  padding: 5rem 1rem 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

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

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

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

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

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

.instructor-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 0px -75px;
  filter: grayscale(100%) contrast(1.1) brightness(0.75);
}

.instructor-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #080808, rgba(8, 8, 8, 0.5) 50%, transparent);
  top: 30%;
}

.instructor-info {
  position: relative;
  z-index: 10;
  padding: 2rem;
}

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

@media (min-width: 1024px) {
  .instructor-info {
    padding: 3rem 3.5rem;
  }
}

.instructor-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #99A1AF;
  margin-bottom: 0.75rem;
}

.instructor-name {
  font-size: 2.5rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: #fff;
  line-height: 1;
  margin-bottom: 0.5rem;
}

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

.instructor-desc {
  font-size: 0.875rem;
  font-weight: 300;
  color: #9ca3af;
  margin-bottom: 1rem;
  max-width: 20rem;
}

.instructor-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

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

.badge-text {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1;
}

.badge-img {
  height: 16px;
  width: auto;
  object-fit: contain;
}

.badge-divider {
  width: 1px;
  height: 12px;
  background: rgba(255, 255, 255, 0.25);
}

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

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

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

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

.instructor-bio {
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 1.7;
  color: #d1d5db;
}

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

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

.instructor-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: rgba(255, 255, 255, 0.1);
}

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

.stat-box {
  background: #000;
  padding: 1rem 1.25rem;
}

.stat-val {
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: #fff;
}

.stat-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #99A1AF;
  margin-top: 2px;
}

/* ── Five Reasons (white bg) ── */
.reasons-section {
  background: #fff;
  color: #000;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  max-width: 1920px;
  margin: 0 auto;
}

.reasons-row {
  display: grid;
  grid-template-columns: 1fr;
  padding: 2.25rem 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  gap: 1rem;
  align-items: start;
  transition: background 0.3s;
  cursor: default;
}

@media (min-width: 768px) {
  .reasons-row {
    grid-template-columns: 80px 1fr 1fr;
    padding: 2.75rem 3rem;
    gap: 3rem;
  }
}

.reasons-row:hover {
  background: rgba(0, 0, 0, 0.025);
}

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

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

@media (min-width: 768px) {
  .pricing-header {
    padding: 6rem 3rem 3.5rem;
  }
}

@media (min-width: 1024px) {
  .pricing-header {
    padding: 6rem 6rem 3.5rem;
  }
}

.pricing-grid {
  display: flex;
  flex-direction: column;
}

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

/* Right col — price (shows first on mobile) */
.pricing-right {
  order: 1;
  padding: 4rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-width: 0;
  width: 100%;
}

@media (min-width: 768px) {
  .pricing-right {
    padding: 7rem 3rem;
  }
}

@media (min-width: 1024px) {
  .pricing-right {
    order: 2;
    border-bottom: none;
  }
}

.pricing-price-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 0.75rem;
}

.pricing-orig {
  color: #4b5563;
  text-decoration: line-through;
  font-size: 1.125rem;
  font-weight: 300;
  margin-bottom: 4px;
}

.pricing-main {
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: #fff;
}

@media (min-width: 768px) {
  .pricing-main {
    font-size: 4.5rem;
  }
}

.bundle-box {
  margin-top: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  padding: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  max-width: 400px;
  text-align: left;
}

.bundle-title {
  font-size: 13px;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.35;
  color: #fff;
}

.bundle-desc {
  font-size: 11px;
  font-weight: 300;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 4px;
}

.bundle-price-orig {
  font-size: 11px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.3);
  text-decoration: line-through;
}

.bundle-price-free {
  font-size: 0.875rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.02em;
}

/* Mobile included */
.pricing-included-mobile {
  display: block;
  width: 100%;
  margin-bottom: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  max-width: 400px;
}

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

.included-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  text-align: left;
}

.included-item svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.included-text {
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.5;
  color: #9ca3af;
}

.btn-enroll-lg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: #fff;
  color: #000;
  padding: 1rem 2rem;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  width: 100%;
  max-width: 400px;
  margin-bottom: 2rem;
  transition: background 0.2s, transform 0.15s;
}

.btn-enroll-lg:hover {
  background: #e8e8e8;
  transform: scale(1.02);
}

@media (min-width: 768px) {
  .btn-enroll-lg {
    padding: 1.25rem 2.5rem;
    font-size: 0.875rem;
  }
}

.pricing-logos-label {
  font-size: 10px;
  color: #99A1AF;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.pricing-logos-ticker {
  width: 100%;
  overflow: hidden;
  min-width: 0;
}

/* Mobile testimonials ticker */
.pricing-mob-testi {
  display: block;
  margin-top: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  overflow: hidden;
  width: 100%;
}

@media (min-width: 1024px) {
  .pricing-mob-testi {
    display: none;
  }
}

.pricing-mob-testi-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #99A1AF;
  margin-bottom: 1.5rem;
  text-align: center;
}

.pricing-mob-testi-track-outer {
  position: relative;
  overflow: hidden;
  width: 100%;
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.testi-mini-track {
  display: flex;
  gap: 2rem;
  width: max-content;
  animation: tickerMove 28s linear infinite;
}

.testi-mini-card {
  flex-shrink: 0;
  width: 220px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  padding-left: 1.25rem;
}

.testi-mini-quote {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
  margin-bottom: 0.75rem;
}

.testi-mini-attr {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.25);
}

/* Left col — included + desktop testimonials ticker */
.pricing-left {
  display: none;
  order: 2;
  padding: 4rem 1rem;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  min-width: 0;
  width: 100%;
}

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

@media (min-width: 1024px) {
  .pricing-left {
    display: block;
    order: 1;
    padding: 7rem 6rem;
  }
}

.pricing-included-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.pricing-included-list.center {
  max-width: 400px;
  margin: 0px auto 40px auto;
}

@media (min-width: 768px) {
  .pricing-included-list {
    gap: 1.75rem;
  }
}

.pricing-included-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  cursor: default;
}

.pricing-included-item svg {
  flex-shrink: 0;
  margin-top: 2px;
  transition: transform 0.2s;
}

.pricing-included-item:hover svg {
  transform: scale(1.25);
}

.pricing-included-text {
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.5;
  color: #9ca3af;
  transition: color 0.3s;
}

@media (min-width: 768px) {
  .pricing-included-text {
    font-size: 1rem;
  }
}

.pricing-included-item:hover .pricing-included-text {
  color: #fff;
}

.pricing-desk-testi {
  margin-top: 3.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  overflow: hidden;
}

.pricing-desk-testi-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #99A1AF;
  margin-bottom: 1.5rem;
}

.pricing-desk-testi-outer {
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, black 60%, transparent);
  mask-image: linear-gradient(to right, black 60%, transparent);
}

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

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

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

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

.faq-heading {
  font-size: 1.875rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  line-height: 1.05;
  color: #000;
  text-align: center;
}

@media (min-width: 768px) {
  .faq-heading {
    font-size: 3rem;
  }
}

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

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

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

.faq-q {
  font-size: 0.875rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  line-height: 1.35;
  color: #000;
  padding-right: 1rem;
  flex: 1;
  transition: color 0.2s;
}

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

.faq-btn:hover .faq-q {
  color: rgba(0, 0, 0, 0.7);
}

.faq-icon {
  flex-shrink: 0;
  margin-top: 2px;
  color: rgba(0, 0, 0, 0.3);
  transition: color 0.2s;
}

.faq-btn:hover .faq-icon {
  color: #000;
}

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

.faq-answer.open {
  opacity: 1;
}

.faq-answer p {
  padding-bottom: 1.75rem;
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.7;
  color: #4b5563;
  max-width: 48rem;
}

@media (min-width: 768px) {
  .faq-answer p {
    font-size: 1rem;
  }
}

/* ── Footer CTA (white bg) ── */
.footer-cta-section {
  background: #fff;
  color: #000;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  max-width: 1920px;
  margin: 0 auto;
}

.footer-cta-inner {
  padding: 5rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .footer-cta-inner {
    padding: 7rem 3rem;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 2.5rem;
  }
}

.footer-cta-h2 {
  font-size: 1.875rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: #000;
  line-height: 1.2;
  max-width: 42rem;
}

@media (min-width: 768px) {
  .footer-cta-h2 {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .footer-cta-h2 {
    font-size: 3rem;
  }
}

.footer-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex-shrink: 0;
}

.btn-enroll-dark {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #000;
  color: #fff;
  padding: 1rem 2.5rem;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: background 0.3s, transform 0.15s;
}

.btn-enroll-dark:hover {
  background: #1a1a1a;
  transform: scale(1.02);
}

.footer-cta-subtext {
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: #6b7280;
  text-align: center;
}

/* ── Site Footer ── */
/* ── Footer ── */
footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: #000;
}

.footer-main {
  max-width: 1920px;
  margin: 0 auto;
  padding: 4rem 1.5rem 3rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width:768px) {
  .footer-main {
    grid-template-columns: 1fr 1fr;
    padding: 5rem 3rem 3rem;
  }
}

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

/* Brand col */
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-logo-img {
  height: 32px;
  width: auto;
  object-fit: contain;
  display: block;
  transition: opacity 0.2s;
}

.footer-logo-img:hover {
  opacity: 0.6;
}

.footer-desc {
  font-size: 1rem;
  font-weight: 300;
  color: #6b7280;
  line-height: 1.6;
  max-width: 20rem;
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
}

.footer-social-btn {
  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.4);
  transition: color 0.2s, border-color 0.2s;
}

.footer-social-btn:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}

/* Nav cols */
.footer-col {}

.footer-col-head {
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 1.5rem;
}

.footer-col-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-col-list li {}

.footer-col-link {
  font-size: 1rem;
  font-weight: 500;
  color: #6b7280;
  transition: color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.footer-col-link:hover {
  color: #fff;
}

.footer-col-link-stack {
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}

.footer-col-sub {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.2);
}

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

/* Bottom bar */
.footer-bottom {
  max-width: 1920px;
  margin: 0 auto;
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

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

.footer-copy {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.2);
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.footer-bottom-link {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.2);
  transition: color 0.2s;
}

.footer-bottom-link:hover {
  color: rgba(255, 255, 255, 0.4);
}

.footer-part-of {
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-part-of-label {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.2);
}

.footer-part-of-zeux {
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
}



/* ── CHECKOUT PAGE ────────────────────────────────────────────────────────── */
.breadcrumb-bar {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  max-width: 1920px;
  margin: 0 auto;
  padding: 20px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 80px;
}

@media (min-width: 768px) {
  .breadcrumb-bar {
    padding: 20px 48px;
  }
}

.breadcrumb-link {
  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-link:hover {
  color: #fff;
}

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

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

.checkout-headline-wrap {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  max-width: 1920px;
  margin: 0 auto;
  padding: 64px 16px 16px;
}

@media (min-width: 768px) {
  .checkout-headline-wrap {
    padding: 64px 48px 16px;
  }
}

.checkout-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #99A1AF;
  margin-bottom: 12px;
}

.checkout-headline {
  font-size: 36px;
  font-weight: 900;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  line-height: 1;
  color: #fff;
}

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

.checkout-grid {
  max-width: 1920px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  min-height: calc(100vh - 200px);
}

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

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

.checkout-form-col {
  padding: 56px 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
  .checkout-form-col {
    padding: 56px 48px;
  }
}

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

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 40px;
}

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

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

.form-field label span {
  color: #fff;
  margin-left: 2px;
}

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

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

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

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

.field-focus-line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.6);
  opacity: 0;
  transition: opacity 0.2s;
}

.field-wrap:focus-within .field-focus-line {
  opacity: 1;
}

.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(249, 115, 22, 0.7);
}

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

.form-field .error,
.form-field .green {
  font-size: 12px;
  color: red;
  padding-top: 5px;
}

.form-field .green {
  color: green;
}

.submit-btn {
  position: relative;
  overflow: hidden;
  width: 100%;
  background: #fff;
  color: #000;
  padding: 20px;
  border: none;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  cursor: pointer;
  transition: background 0.2s;
}

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

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

.submit-shimmer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.1) 50%, transparent 100%);
  transform: skewX(-12deg);
  animation: shimmer 3.5s ease-in-out infinite;
}

.submit-btn.applybtn {
  font-size: 12px;
  padding: 5px 10px;
  position: absolute;
  width: auto;
  bottom: 10px;
  right: 10px;
}

.submit-btn.applybtn:disabled {
  opacity: 0.6;
  cursor: default;
}

@keyframes shimmer {

  0%,
  100% {
    transform: skewX(-12deg) translateX(-160%);
  }

  50% {
    transform: skewX(-12deg) translateX(160%);
  }
}

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

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

.trust-badges {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 32px;
  margin-top: 16px;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 6px;
}

.trust-badge svg {
  flex-shrink: 0;
}

.trust-badge p {
  font-size: 10px;
  font-weight: 300;
  color: #6b7280;
}

/* Checkout testimonial carousel */
.checkout-testimonials {
  margin-top: 48px;
}

.checkout-testi-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #99A1AF;
  margin-bottom: 20px;
}

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

.checkout-testi-top-line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.checkout-testi-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 12px;
}

.checkout-testi-quote {
  font-size: 14px;
  font-weight: 300;
  color: #d1d5db;
  line-height: 1.6;
  margin-bottom: 16px;
}

.checkout-testi-name {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #fff;
}

.checkout-testi-role {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #99A1AF;
  margin-top: 2px;
}

.checkout-testi-dots {
  display: flex;
  gap: 6px;
  margin-top: 16px;
}

.checkout-testi-dot {
  height: 2px;
  transition: all 0.3s;
  background: rgba(255, 255, 255, 0.25);
  width: 8px;
  cursor: pointer;
  border: none;
}

.checkout-testi-dot.active {
  width: 20px;
  background: #fff;
}

/* Order summary sidebar */
.checkout-summary-col {
  padding: 56px 16px;
  background: #050505;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
  .checkout-summary-col {
    padding: 56px 32px;
  }
}

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

.order-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #99A1AF;
  margin-bottom: 20px;
}

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

.order-card-top {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px;
}

.order-product-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

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

.order-title {
  font-size: 16px;
  font-weight: 900;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.2;
}

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

.order-sub {
  font-size: 10px;
  font-weight: 300;
  color: #6b7280;
  margin-top: 4px;
}

.order-price-col {
  text-align: right;
  flex-shrink: 0;
}

.order-original {
  font-size: 12px;
  color: #6b7280;
  text-decoration: line-through;
  margin-bottom: 2px;
}

.order-price-row {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: flex-end;
}

.order-badge {
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 2px 6px;
}

.order-price {
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: #fff;
}

.order-pulse-row {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 6px;
  justify-content: flex-end;
}

.pulse-dot {
  position: relative;
  width: 6px;
  height: 6px;
  flex-shrink: 0;
}

.pulse-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #fff;
  animation: pulseRing 1.6s ease-out infinite;
}

@keyframes pulseRing {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.8;
  }

  50% {
    transform: scale(2.5);
    opacity: 0;
  }
}

.pulse-core {
  position: relative;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
}

.pulse-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.bonus-section {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.015);
}

.bonus-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #99A1AF;
  margin-bottom: 12px;
}

.bonus-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.bonus-item:last-child {
  margin-bottom: 0;
}

.bonus-title {
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}

.bonus-desc {
  font-size: 10px;
  font-weight: 300;
  color: #6b7280;
  line-height: 1.4;
  margin-top: 2px;
}

.bonus-free {
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: #fff;
  color: #000;
  padding: 2px 6px;
  flex-shrink: 0;
  align-self: flex-start;
  margin-top: 2px;
}

.includes-section {
  padding: 16px 20px;
}

.includes-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #99A1AF;
  margin-bottom: 12px;
}

.include-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
}

.include-item:last-child {
  margin-bottom: 0;
}

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

.include-text {
  font-size: 12px;
  font-weight: 300;
  color: #9ca3af;
  line-height: 1.4;
}

.savings-card {
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 20px;
  margin-bottom: 32px;
}

.savings-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.savings-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #99A1AF;
}

.savings-val {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #99A1AF;
}

.savings-total-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 12px;
}

.savings-total-label {
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
}

.savings-total-val {
  font-size: 30px;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: #fff;
}

.instructor-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.015);
  padding: 20px;
}

.instructor-card-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #99A1AF;
  margin-bottom: 12px;
}

.instructor-card-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.instructor-monogram {
  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;
}

.instructor-card-name {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #fff;
}

.instructor-card-cred {
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #99A1AF;
  margin-top: 2px;
}

/* ── SUCCESS PAGE ─────────────────────────────────────────────────────────── */
.success-wrap {
  max-width: 1920px;
  margin: 0 auto;
  padding: 160px 16px 80px;
  text-align: center;
}

@media (min-width: 768px) {
  .success-wrap {
    padding: 192px 48px 112px;
  }
}

.success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
}

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

.success-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #99A1AF;
  margin-bottom: 16px;
}

.success-title {
  font-size: 36px;
  font-weight: 900;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1;
  margin-bottom: 24px;
}

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

.success-body {
  font-size: 18px;
  font-weight: 300;
  color: #9ca3af;
  line-height: 1.6;
  max-width: 480px;
  margin: 0 auto 48px;
}

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

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