:root {
  --color-paper: #0d0d0d;
  --color-paper-dark: #0B0B0B;
  --color-indigo: #3226b9;
  --color-indigo-dark: #1e1491;
  --color-text: #fff;
  --color-text-muted: #AAA;
  --color-border: rgba(0, 0, 0, 0.08);
  --color-white: #0b0b0b;

  --font-heading: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;

  --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.06);
  --shadow-card-hover: 0 14px 40px rgba(0, 0, 0, 0.1);

  --transition-fast: 0.2s ease;
  --transition-medium: 0.3s ease;
}

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

html {
  scroll-behavior: auto;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-paper);
  color: var(--color-text);
  line-height: 1.55;
  letter-spacing: -0.01em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  letter-spacing: -0.02em;
  line-height: 0.95;
  font-weight: 600;
}

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

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

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

.grain-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.03;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

.monochrome-cool {
  filter: grayscale(100%) contrast(1.15) brightness(0.98);
}

.monochrome-overlay {
  position: relative;
}

.monochrome-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(79, 70, 229, 0.06);
  mix-blend-mode: multiply;
  pointer-events: none;
}

.navigation {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background-color 0.5s ease, box-shadow 0.5s ease;
}

.navigation.scrolled {
  /*! background-color: rgba(246, 245, 242, 0.9); */
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--color-border);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  padding: 0 6vw;
  max-width: 100%;
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-text);
  letter-spacing: -0.02em;
}

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

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text-muted);
  position: relative;
  transition: color var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-indigo);
  transition: width var(--transition-fast);
}

.nav-link:hover {
  color: var(--color-text);
}

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

.nav-cta {
  display: none;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-indigo);
  border: 2px solid var(--color-indigo);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.nav-cta:hover {
  background-color: var(--color-indigo);
  color: var(--color-white);
}

.nav-mobile-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.nav-mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-text);
  transition: all 0.3s ease;
}

.nav-mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.nav-mobile-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: rgba(246, 245, 242, 0.98);
  backdrop-filter: blur(12px);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.nav-mobile-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-mobile-link {
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-text-muted);
  padding: 0.5rem 0;
  transition: color var(--transition-fast);
}

.nav-mobile-link:hover {
  color: var(--color-text);
}

.nav-cta-mobile {
  display: block;
  margin-top: 0.5rem;
  width: 100%;
}

@media (min-width: 1024px) {
  .nav-container {
    height: 80px;
  }

  .nav-links,
  .nav-cta {
    display: flex;
  }

  .nav-mobile-toggle {
    display: none;
  }

  .nav-mobile-menu {
    display: none;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.btn-primary {
  background-color: var(--color-indigo);
  color: #d7d7d7;
}

.btn-primary:hover {
  background-color: var(--color-indigo-dark);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: var(--color-white);
  color: var(--color-text);
  border: 1px solid var(--color-border);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card-hover);
}

.btn-full {
  width: 100%;
}

.section {
  position: relative;
  width: 100%;
}

.section-pinned {
  width: 100vw;
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-color: rgba(79, 70, 229, 0.2);
}

.feature-card {
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), border-color 0.3s ease;
}

.section-hero {
  display: flex;
  align-items: center;
  background-color: var(--color-paper);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.hero-glows {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  display: none;
}

.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(150px);
  opacity: 0.25;
  mix-blend-mode: soft-light;
  animation: float-glow 15s infinite alternate ease-in-out;
}

.glow-1 {
  width: 800px;
  height: 800px;
  top: 10%;
  left: 50%;
  transform: translate(-50%, -20%);
  background: #286268;
  opacity: 0.1;
}

.glow-2 {
  width: 600px;
  height: 600px;
  bottom: 10%;
  left: 30%;
  background: #342868;
  opacity: 0.1;
  animation-delay: -5s;
}

.glow-3 {
  width: 500px;
  height: 500px;
  top: 30%;
  right: 20%;
  background: #c81111;
  opacity: 0;
  animation-delay: -10s;
}

@keyframes float-glow {
  0% {
    transform: translate(0, 0) scale(1);
  }

  100% {
    transform: translate(50px, 30px) scale(1.1);
  }
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  /*! background: radial-gradient(circle at center, transparent, rgba(246, 245, 242, 0.4)); */
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  color: var(--color-text-muted);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  animation: hero-jump 2s infinite ease-in-out;
  transition: color var(--transition-normal);
}

.hero-scroll-indicator:hover {
  color: var(--color-primary);
}

@keyframes hero-jump {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  40% {
    transform: translateX(-50%) translateY(-15px);
  }

  60% {
    transform: translateX(-50%) translateY(-7px);
  }
}

.hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
  padding: 0 6vw;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding-top: 80px;
}

.hero-left {
  max-width: 100%;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 0.5rem;
}

.hero-headline {
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 1.5rem;
  line-height: 1.05;
}

.hero-subheadline {
  font-size: 1rem;
  color: var(--color-text-muted);
  max-width: 450px;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.hero-positioning {
  display: block;
  margin-top: 0.75rem;
  font-weight: 600;
  color: #333;
  opacity: 0.8;
  font-size: 14px;
}

@media (min-width: 1024px) {
  .section-hero {
    min-height: 100vh;
  }

  .hero-content {
    gap: 2rem;
    padding-top: 0;
  }

  .hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .hero-headline {
    margin-bottom: 0.75rem;
  }

  .hero-subheadline {
    margin-bottom: 1.5rem;
  }
}

.hero-video-card {
  width: 100%;
  max-width: 900px;
  aspect-ratio: 16 / 9;
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  position: relative;
  margin: 0 auto;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
  pointer-events: none;
}

.hero-video-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-sm);
}

.hero-play-btn svg {
  margin-left: 4px;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

@media (min-width: 1024px) {
  .hero-content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding-top: 0;
  }

  .hero-left {
    width: 42vw;
    max-width: 900px;
  }

  .hero-headline {
    font-size: 4rem;
  }

  .hero-subheadline {
    font-size: 1.125rem;
  }

  .hero-video-card {
    width: 45vw;
    height: auto;
    aspect-ratio: 16 / 9;
  }

}

@media (min-width: 1280px) {
  .hero-headline {
    font-size: 5rem;
  }
}

.section-manifesto {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-paper);
  padding: 6rem 6vw;
  min-height: 50vh;
}

@media (min-width: 1024px) {
  .section-manifesto {
    min-height: 60vh;
  }
}

.manifesto-content {
  text-align: center;
  padding: 0 6vw;
  max-width: 900px;
}

.manifesto-headline {
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 1.5rem;
  line-height: 0.95;
}

.manifesto-caption {
  font-size: 1rem;
  color: var(--color-text-muted);
  max-width: 500px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .manifesto-headline {
    font-size: 3.5rem;
  }
}

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

  .manifesto-caption {
    font-size: 1.125rem;
  }
}

.section-features {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: var(--color-paper);
  padding: 2rem 6vw;
}

.features-label {
  position: absolute;
  top: 12vh;
  left: 6vw;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  width: 100%;
  max-width: 1200px;
}

.feature-card {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.4s ease;
}

.feature-icon {
  width: 48px;
  height: 48px;
  background-color: rgba(79, 70, 229, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--color-indigo);
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.75rem;
}

.feature-description {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2vw;
  }

  .feature-card {
    padding: 2.5rem;
  }

  .feature-title {
    font-size: 1.5rem;
  }
}

.split-image {
  position: relative;
  width: 100%;
  height: 50vh;
  overflow: hidden;
}

.split-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-panel {
  position: relative;
  width: 100%;
  min-height: 50vh;
  display: flex;
  align-items: center;
  background-color: var(--color-paper);
}

.split-content {
  padding: 4rem 6vw;
  max-width: 600px;
  width: 100%;
}

.split-headline {
  font-size: 2rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 1rem;
  line-height: 1;
}

.split-body {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.split-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-indigo);
  transition: gap var(--transition-fast);
}

.split-cta:hover {
  gap: 0.75rem;
}

.split-cta svg {
  transition: transform var(--transition-fast);
}

.split-cta:hover svg {
  transform: translateX(4px);
}

.courses-secondary {
  display: block;
  margin-top: 1rem;
  font-size: 0.875rem;
  color: var(--color-text-muted);
  transition: color var(--transition-fast);
}

.courses-secondary:hover {
  color: var(--color-indigo);
}

@media (min-width: 1024px) {
  .section-pinned {
    flex-direction: row;
    align-items: stretch;
  }

  .split-image {
    width: 50vw;
    height: auto;
    min-height: 100vh;
    order: 1;
  }

  .split-panel {
    width: 50vw;
    height: auto;
    min-height: 100vh;
    order: 2;
  }

  .split-image-right {
    order: 2;
  }

  .split-panel-left {
    order: 1;
  }

  .split-panel-right {
    order: 2;
  }

  .section-method .split-image,
  .section-indicators .split-image {
    order: 1;
  }

  .section-method .split-panel,
  .section-indicators .split-panel {
    order: 2;
  }

  .section-courses .split-panel,
  .section-community .split-panel {
    order: 1;
  }

  .section-courses .split-image,
  .section-community .split-image {
    order: 2;
  }

  .split-content {
    padding: 0 6vw;
  }

  .split-headline {
    font-size: 2.75rem;
  }

  .split-body {
    font-size: 1rem;
  }
}

@media (min-width: 1280px) {
  .split-headline {
    font-size: 3.25rem;
  }
}

.section-faq {
  background-color: var(--color-paper-dark);
  padding: 5rem 6vw;
}

.faq-container {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.faq-left {
  position: relative;
}

.faq-headline {
  font-size: 2rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.75rem;
  line-height: 1;
}

.faq-subheadline {
  font-size: 1rem;
  color: var(--color-text-muted);
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background-color: #131313;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-text);
  text-align: left;
  transition: background-color var(--transition-fast);
}

.faq-question:hover {
  background-color: rgba(0, 0, 0, 0.02);
}

.faq-icon {
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 0 1.5rem 1.25rem;
}

.faq-answer p {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

@media (min-width: 1024px) {
  .faq-container {
    flex-direction: row;
    gap: 4rem;
  }

  .faq-left {
    width: 30vw;
    position: sticky;
    top: 12vh;
    align-self: flex-start;
  }

  .faq-right {
    width: 54vw;
    margin-left: auto;
  }

  .faq-headline {
    font-size: 2.75rem;
  }
}

.section-contact {
  background-color: var(--color-paper);
  padding: 5rem 6vw;
}

.contact-container {
  max-width: 900px;
  margin: 0 auto;
}

.contact-header {
  text-align: center;
  margin-bottom: 3rem;
}

.contact-headline {
  font-size: 2rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 1rem;
  line-height: 1;
}

.contact-subheadline {
  font-size: 1rem;
  color: var(--color-text-muted);
  max-width: 500px;
  margin: 0 auto;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-icon {
  width: 48px;
  height: 48px;
  background-color: rgba(79, 70, 229, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-indigo);
}

.contact-details h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.25rem;
}

.contact-details a {
  font-size: 0.9375rem;
  color: var(--color-indigo);
  transition: color var(--transition-fast);
}

.contact-details a:hover {
  color: var(--color-indigo-dark);
}

.contact-details p {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
}

.section-steps {
  background-color: var(--color-white);
  padding: 6rem 6vw;
  text-align: center;
}

.steps-container {
  max-width: 1200px;
  margin: 0 auto;
}

.steps-title {
  font-size: 2.5rem;
  margin-bottom: 4rem;
  color: var(--color-text);
  line-height: 1.1;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  margin-bottom: 5rem;
}

.step-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--color-indigo);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1.25rem;
}

.step-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.2;
}

.step-card p {
  color: var(--color-text-muted);
  max-width: 250px;
}

.trust-element {
  padding: 2rem;
  border-top: 1px solid var(--color-border);
  display: inline-block;
  margin-top: 2rem;
}

.trust-element p {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--color-text);
}

.subscription-block {
  padding: 4rem 6vw;
  text-align: center;
  background-color: var(--color-paper-dark);
  border-radius: var(--radius-lg);
  margin: 4rem 6vw;
}

.subscription-block p {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--color-text);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.4;
}

.section-courses,
.section-indicators {
  background-color: var(--color-paper);
  padding: 8rem 6vw;
}

.section-header {
  /*! max-width: 800px; */
  margin-bottom: 4rem;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  line-height: 1.1;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--color-text-muted);
}

.courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.course-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.course-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

.course-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.course-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lock-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  gap: 0.75rem;
}

.lock-overlay span {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.course-info {
  padding: 1.5rem;
}

.course-info h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.course-info p {
  color: var(--color-text-muted);
  font-size: 0.9375rem;
}

/* Indicators Redesign */
.indicators-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: flex-start;
}

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

.indicators-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.indicator-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: transparent;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--transition-fast);
  position: relative;
  overflow: hidden;
}

.indicator-item:hover {
  background: rgba(0, 0, 0, 0.02);
}

.indicator-item.active {
  background: var(--color-white);
  border-color: var(--color-border);
  box-shadow: var(--shadow-card);
}

.indicator-visual {
  flex-shrink: 0;
}

.indicator-icon {
  width: 48px;
  height: 48px;
  background: var(--color-paper);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  transition: all var(--transition-fast);
}

.indicator-item.active .indicator-icon {
  background: var(--color-indigo);
  color: var(--color-white);
}

.indicator-content h3 {
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
  transition: color var(--transition-fast);
}

.indicator-content p {
  color: var(--color-text-muted);
  font-size: 0.875rem;
  line-height: 1.4;
}

.indicator-item.active .indicator-content h3 {
  color: var(--color-text);
}

.indicator-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--color-indigo);
  width: 0%;
}

.indicators-right {
  position: sticky;
  top: 120px;
}

.indicator-preview-container {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
  position: relative;
}

.indicator-preview {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease, transform 0.5s ease;
  transform: scale(1.05);
}

.indicator-preview.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.indicator-preview img,
.indicator-preview video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Subscription Animation */
.subscription-text {
  opacity: 0;
  transform: translateY(20px);
}

@media (max-width: 1023px) {
  .indicators-right {
    display: none;
  }
}

.contact-response {
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-border);
}

.contact-response p {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-input,
.contact-textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  font-size: 0.9375rem;
  font-family: inherit;
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  color: white;
}

.contact-input:focus,
.contact-textarea:focus {
  outline: none;
  border-color: var(--color-indigo);
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.contact-textarea {
  min-height: 120px;
  resize: none;
}

@media (min-width: 768px) {
  .contact-content {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }

  .contact-headline {
    font-size: 2.75rem;
  }
}

.footer {
  margin-top: 5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

.footer-content p {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  transition: color var(--transition-fast);
}

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

@media (min-width: 640px) {
  .footer-content {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--color-paper);
}

::-webkit-scrollbar-thumb {
  background: #D1D0CC;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #B9B8B4;
}

/* Results Section */
/* Results Section - Full Width Marquee */
.section-results {
  background-color: #0f0f0f;
  padding: 8rem 0;
  overflow: hidden;
  position: relative;
  width: 100vw;
  margin-left: -50vw;
  left: 50%;
}

.results-container {
  width: 100%;
  max-width: none;
  /* Full width */
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.results-header-wrapper {
  padding: 0 6vw;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.results-headline {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.results-subheadline {
  font-size: 1.125rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* Marquee Wrapper */
.results-marquee-wrapper {
  width: 100%;
  overflow: hidden;
  padding: 2rem 0;
  position: relative;
  display: flex;
}

.results-track {
  display: flex;
  gap: 2rem;
  width: max-content;
  /* Initial state for JS to pick up, or fallback CSS animation if JS fails */
  will-change: transform;
}

.result-card-apple {
  flex: 0 0 300px;
  /* Fixed width for consistency */
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  /*! border: 1px solid rgba(0, 0, 0, 0.04); */
  position: relative;
  aspect-ratio: 4/5;
  /* Taller aspect ratio for images */
}

.result-card-apple:hover {
  transform: scale(1.02);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
  z-index: 10;
}

.result-card-media {
  width: 100%;
  height: 100%;
  margin: 0;
  /*! background-color: #f0f0f0; */
}

.result-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Statement Section */
.results-statement-apple {
  text-align: center;
  padding: 0 6vw;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 2rem;
}

.statement-line {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 600;
  color: var(--color-text-muted);
  opacity: 0.4;
  transition: opacity 0.5s ease, color 0.5s ease;
}

.statement-line.highlight {
  color: var(--color-text);
  opacity: 1;
}

@media (min-width: 768px) {
  .result-card-apple {
    flex: 0 0 400px;
  }
}


.section-courses {
  padding-top: 2rem !important;
  /*! padding-bottom: 6rem !important; */
}

.section-indicators {
  padding-top: 11rem !important;
}

.result-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

.result-image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #eee;
}

.result-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out-expo);
}

.result-card:hover .result-image img {
  transform: scale(1.05);
}

.result-info {
  padding: 1.5rem;
}

.result-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-muted);
  margin-bottom: 0.5rem;
}

.result-status {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-text);
}

.section-how-it-works {
  background-color: var(--color-paper);
  padding: 12rem 6vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.intro-video-wrapper {
  max-width: 1000px;
  margin: 1rem auto 0;
}

.intro-video-card {
  width: 100%;
  aspect-ratio: 16 / 9;
  background-color: #000;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--color-border);
  position: relative;
}

.custom-video-player {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  background: #000;
  cursor: pointer;
}

.intro-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Play Overlay */
.video-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.3);
  transition: opacity 0.4s ease, visibility 0.4s;
  z-index: 5;
}

.custom-video-player.is-playing .video-play-overlay {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.play-pulse {
  width: 80px;
  height: 80px;
  background: var(--color-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 0 rgba(100, 100, 255, 0.4);
  animation: pulse-ring 2s infinite;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.play-pulse svg {
  margin-left: 4px;
}

.custom-video-player:hover .play-pulse {
  transform: scale(1.1);
}

@keyframes pulse-ring {
  0% {
    box-shadow: 0 0 0 0 rgba(66, 54, 208, 0.6);
  }

  70% {
    box-shadow: 0 0 0 20px rgba(66, 54, 208, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(66, 54, 208, 0);
  }
}

/* Controls */
.video-controls {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 10;
}

.custom-video-player:hover .video-controls,
.custom-video-player.controls-active .video-controls {
  transform: translateY(0);
}

.video-progress {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 3px;
  cursor: pointer;
  margin-bottom: 1.2rem;
  position: relative;
  overflow: hidden;
  transition: height 0.2s;
}

.video-progress:hover {
  height: 8px;
}

.video-progress-filled {
  height: 100%;
  background: var(--color-primary);
  width: 0%;
  border-radius: 3px;
  box-shadow: 0 0 10px rgba(66, 54, 208, 0.5);
}

.video-controls-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.video-controls-left,
.video-controls-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.player-button {
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s, color 0.2s;
  opacity: 0.9;
}

.player-button:hover {
  transform: scale(1.1);
  color: var(--color-primary);
  opacity: 1;
}

.video-time {
  color: #fff;
  font-size: 0.85rem;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
  opacity: 0.8;
}

.text-center {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.text-center .section-title {
  width: 100%;
  max-width: none;
}

.section-courses {
  background-color: var(--color-paper);
  padding: 10rem 6vw;
}

.section-indicators {
  background-color: var(--color-white);
  padding: 12rem 6vw;
  border-top: 1px solid var(--color-border);
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.02);
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}