/* ==========================================================================
   THEME VARIABLES, FONTS & RESET
   ========================================================================== */
@font-face {
  font-family: 'iamsoubh';
  src: url('iamsoubh.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

:root {
  --bg-color: #0a0a0a;
  --accent-color: #ffe400;
  --text-primary: #f5f5f0;
  /* Off-white / Cream */
  --text-secondary: #9f9f97;
  /* Muted Cream */
  --text-muted: #5e5e58;
  /* Dark Muted */

  --font-display: 'iamsoubh', 'Outfit', 'SF Pro Display', 'Inter Display', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Geist', 'Inter', 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;

  --container-width: 900px;
  --header-height: 56px;
}

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

html {
  background-color: var(--bg-color);
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: -0.011em;
  /* Clean tracking for Inter on dark mode */
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

/* ==========================================================================
   TYPOGRAPHY & BRAND VOICE RULES
   ========================================================================== */
/* Retain natural typography casing */
h1,
h2,
h3,
h4,
p,
li,
button,
span,
a {
  text-transform: none;
}

/* Global Headings Reset */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-sans);
  font-weight: 700;
  letter-spacing: -0.02em;
}

/* Big word stamp styling (Retains iamsoubh Display Font) */
.big-word-background {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  font-weight: 800;
  font-style: normal;
  color: var(--accent-color);
  line-height: 1.1;
  letter-spacing: 0.02em;
  margin-bottom: 2rem;
  opacity: 0.95;
  user-select: none;
}

/* Custom Vector SVG Typography Styling - COLOSSAL & PROMINENT */
.hero-svg-title {
  height: clamp(12rem, 30vw, 22rem);
  width: auto;
  max-width: 100%;
  object-fit: contain;
  margin-bottom: 0.5rem;
  display: inline-block;
  filter: drop-shadow(0 0 35px rgba(255, 228, 0, 0.3));
}

.big-word-svg-wrapper {
  margin-bottom: 2.75rem;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
}

.class-word-wrapper {
  justify-content: flex-start;
}

.class-svg-stamp {
  margin-left: -0.75rem;
}

.center-word-wrapper {
  justify-content: center;
  text-align: center;
}

.big-word-svg {
  height: clamp(5.8rem, 15vw, 11rem);
  width: auto;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 30px rgba(255, 228, 0, 0.25));
}

.yours-svg-stamp {
  height: clamp(6.5rem, 16vw, 12rem);
}

.card-title-svg {
  height: clamp(2rem, 4.5vw, 2.8rem);
  width: auto;
  max-width: 85%;
  object-fit: contain;
}

.stat-40m-svg {
  height: clamp(3.5rem, 8.5vw, 6rem);
  width: auto;
  max-width: 100%;
  object-fit: contain;
  margin-left: 0;
  margin-bottom: 0.25rem;
  display: block;
}

.homework-lead-svg-wrapper {
  margin-bottom: 0.75rem;
}

.homework-lead-svg {
  height: clamp(1.8rem, 4vw, 2.5rem);
  width: auto;
  max-width: 85%;
  object-fit: contain;
}

/* Class override for uppercase labels / tags / annotation boxes */
.annotation-tag {
  text-transform: uppercase !important;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--bg-color);
  background-color: var(--accent-color);
  padding: 0.25rem 0.5rem;
  border-radius: 2px;
  display: inline-block;
}

.body-copy {
  font-size: clamp(1rem, 1.25vw, 1.2rem);
  color: var(--text-secondary);
  max-width: 680px;
  margin-bottom: 1.5rem;
}

/* Film Grain Overlay */
.grain-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  opacity: 0.015;
  /* Subtle textured feel */
  pointer-events: none;
  z-index: 9999;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* ==========================================================================
   LAYOUT CONTAINER
   ========================================================================== */
.section-container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

section {
  padding: 6rem 0;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

/* ==========================================================================
   HEADER NAVIGATION
   ========================================================================== */
.site-header {
  position: fixed;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 2rem);
  max-width: 1100px;
  height: var(--header-height);
  display: flex;
  align-items: center;
  background-color: rgba(10, 10, 10, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 100px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6), inset 0 0 15px rgba(255, 255, 255, 0.02);
  z-index: 1000;
  transition: all 0.3s ease;
}

.header-container {
  width: 100%;
  padding: 0 1.25rem 0 1.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 480px) {
  .site-header {
    width: calc(100% - 1.5rem);
    top: 0.75rem;
  }

  .header-container {
    padding: 0 0.8rem 0 1.1rem;
  }
}

.logo-link {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: -0.04em;
  text-transform: none !important;
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.logo-link:hover {
  opacity: 0.95;
  transform: translateY(-0.5px);
}

.logo-swipe {
  color: var(--accent-color);
}

.logo-by-soubh {
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: normal;
}

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

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

.nav-link {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  color: #999999;
  text-decoration: none;
  text-transform: none !important;
  letter-spacing: -0.02em;
  transition: color 0.3s ease;
  position: relative;
  padding: 0.25rem 0.5rem;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0.5rem;
  width: 0;
  height: 1px;
  background-color: #ffffff;
  transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.nav-link:hover::after {
  width: calc(100% - 1rem);
}

.header-right {
  display: flex;
  align-items: center;
}

.header-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--accent-color);
  color: #000000;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  text-decoration: none;
  text-transform: none !important;
  letter-spacing: -0.02em;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    background-color 0.3s ease,
    box-shadow 0.3s ease;
}

.header-cta-btn:hover {
  transform: scale(1.03);
  box-shadow: 0 4px 15px rgba(229, 255, 0, 0.25);
}

.header-cta-btn:active {
  transform: scale(0.98);
}

@media (max-width: 480px) {
  .logo-link {
    font-size: 1.25rem;
  }

  .logo-by-soubh {
    font-size: 0.72rem;
  }

  .header-cta-btn {
    padding: 0.45rem 1rem;
    font-size: 0.8rem;
  }
}

/* ==========================================================================
   BUTTONS & CTAs
   ========================================================================== */
.cta-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

@media (min-width: 600px) {
  .cta-group {
    flex-direction: row;
  }
}

.cta-btn {
  flex: 1;
  background: rgba(15, 15, 25, 0.65) !important;
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  font-family: var(--font-sans);
  font-size: 0.98rem;
  font-weight: 700;
  padding: 0.9rem 1.8rem !important;
  border-radius: 14px !important;
  /* Rounded corners matching reference */
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  will-change: transform;
}

/* Horizontal glow at the top-center edge inside the button like the reference */
.cta-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #5f5cff, #a25cff, transparent);
  opacity: 0.8;
  transition: opacity 0.3s ease, width 0.3s ease;
}

.cta-btn::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  background: radial-gradient(circle at 50% 0%, rgba(95, 92, 255, 0.15), transparent 60%);
  opacity: 0.8;
  pointer-events: none;
}

.cta-btn:hover {
  transform: scale(1.02) translateY(-2px);
  background: rgba(25, 25, 40, 0.8) !important;
  border-color: rgba(255, 228, 0, 0.45) !important;
  /* Yellow-ish border glow on hover */
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5),
    0 0 20px rgba(95, 92, 255, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.cta-btn:hover::before {
  width: 90%;
  background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}

.cta-btn:active {
  transform: scale(0.97) translateY(0);
}

.btn-brand-icon {
  width: 28px;
  height: 28px;
  max-height: 28px;
  object-fit: contain;
  margin-right: 0.5rem;
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}

/* ==========================================================================
   SECTION 1: HERO
   ========================================================================== */
.hero-section {
  padding-top: calc(var(--header-height) + 2rem);
  padding-bottom: 5rem;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--bg-color);
  position: relative;
  overflow: hidden;
}

/* Hero Cinematic Effects */
.hero-cinematic-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(circle at 50% 50%, rgba(229, 255, 0, 0.02) 0%, #0a0a0a 80%);
}

.cinematic-zoom-grid {
  position: absolute;
  inset: -50%;
  background-image: radial-gradient(rgba(255, 255, 255, 0.035) 1.5px, transparent 1.5px);
  background-size: 36px 36px;
  mask-image: radial-gradient(circle, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(circle, black 30%, transparent 80%);
  animation: cinematic-zoom 24s linear infinite;
}

@keyframes cinematic-zoom {
  0% {
    transform: scale(0.85) translateZ(0);
    opacity: 0.2;
  }

  50% {
    opacity: 0.6;
  }

  100% {
    transform: scale(1.4) translateZ(0);
    opacity: 0.2;
  }
}

/* Floating Cinematic Shards with Motion Blur */
.hero-shards-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
  overflow: hidden;
}

.shard {
  position: absolute;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(0, 0, 0, 0.85));
  border: 1px solid rgba(255, 255, 255, 0.03);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.6);
  opacity: 0.6;
  pointer-events: none;
}

.shard-tl-1 {
  top: 6%;
  left: 4%;
  width: 55px;
  height: 14px;
  clip-path: polygon(0% 15%, 100% 0%, 85% 85%, 15% 100%);
  transform: rotate(35deg) skewX(10deg);
  filter: blur(1.5px);
  animation: travel-tl-1 14s ease-in-out infinite;
}

.shard-tl-2 {
  top: 18%;
  left: -3%;
  width: 38px;
  height: 9px;
  clip-path: polygon(5% 0%, 95% 15%, 100% 85%, 0% 100%);
  transform: rotate(40deg) skewX(15deg);
  filter: blur(2px);
  animation: travel-tl-2 18s ease-in-out infinite;
}

.shard-tl-3 {
  top: -3%;
  left: 14%;
  width: 48px;
  height: 11px;
  clip-path: polygon(0% 0%, 100% 15%, 85% 100%, 15% 85%);
  transform: rotate(30deg) skewX(8deg);
  filter: blur(1px);
  animation: travel-tl-3 11s ease-in-out infinite;
}

.shard-tr-1 {
  top: 9%;
  right: 4%;
  width: 60px;
  height: 15px;
  clip-path: polygon(15% 0%, 100% 15%, 85% 100%, 0% 85%);
  transform: rotate(-35deg) skewX(-10deg);
  filter: blur(1.5px);
  animation: travel-tr-1 15s ease-in-out infinite;
}

.shard-tr-2 {
  top: 20%;
  right: -3%;
  width: 42px;
  height: 11px;
  clip-path: polygon(0% 15%, 100% 0%, 85% 85%, 15% 100%);
  transform: rotate(-40deg) skewX(-15deg);
  filter: blur(2px);
  animation: travel-tr-2 20s ease-in-out infinite;
}

.shard-tr-3 {
  top: -4%;
  right: 12%;
  width: 48px;
  height: 13px;
  clip-path: polygon(15% 15%, 85% 0%, 100% 85%, 0% 100%);
  transform: rotate(-30deg) skewX(-8deg);
  filter: blur(1px);
  animation: travel-tr-3 12s ease-in-out infinite;
}

@keyframes travel-tl-1 {

  0%,
  100% {
    transform: translate(0, 0) rotate(35deg) skewX(10deg);
    opacity: 0.5;
  }

  50% {
    transform: translate(20px, 15px) rotate(36deg) skewX(10deg);
    opacity: 0.7;
  }
}

@keyframes travel-tl-2 {

  0%,
  100% {
    transform: translate(0, 0) rotate(40deg) skewX(15deg);
    opacity: 0.4;
  }

  50% {
    transform: translate(25px, 20px) rotate(41deg) skewX(15deg);
    opacity: 0.6;
  }
}

@keyframes travel-tl-3 {

  0%,
  100% {
    transform: translate(0, 0) rotate(30deg) skewX(8deg);
    opacity: 0.6;
  }

  50% {
    transform: translate(15px, 10px) rotate(29deg) skewX(8deg);
    opacity: 0.8;
  }
}

@keyframes travel-tr-1 {

  0%,
  100% {
    transform: translate(0, 0) rotate(-35deg) skewX(-10deg);
    opacity: 0.5;
  }

  50% {
    transform: translate(-20px, 15px) rotate(-36deg) skewX(-10deg);
    opacity: 0.7;
  }
}

@keyframes travel-tr-2 {

  0%,
  100% {
    transform: translate(0, 0) rotate(-40deg) skewX(-15deg);
    opacity: 0.4;
  }

  50% {
    transform: translate(-25px, 20px) rotate(-41deg) skewX(-15deg);
    opacity: 0.6;
  }
}

@keyframes travel-tr-3 {

  0%,
  100% {
    transform: translate(0, 0) rotate(-30deg) skewX(-8deg);
    opacity: 0.6;
  }

  50% {
    transform: translate(-15px, 10px) rotate(-29deg) skewX(-8deg);
    opacity: 0.8;
  }
}

.hero-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
  width: 100%;
  position: relative;
  z-index: 5;
}

.hero-title-top {
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 15vw, 9.5rem);
  font-weight: 400;
  color: var(--accent-color);
  letter-spacing: 0.02em;
  line-height: 1.05;
  margin-bottom: 0.5rem;
  z-index: 5;
}

/* Center Interactive Visual Stack */
.hero-showcase {
  width: 100%;
  display: flex;
  justify-content: center;
}

.visual-stack-container {
  position: relative;
  width: 100%;
  max-width: 440px;
  height: 550px;
  /* Exact 4:5 aspect ratio of hero1.png / hero2.png */
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: visible;
  perspective: 1200px;
  /* Crucial for 3D depth tilt */
  transform-style: preserve-3d;
  transition: transform 0.15s ease-out;
  margin-bottom: 2.5rem;
  /* Large safe margin to prevent overlay overlap with subtext */
}

/* Overlay graphic cards layer (hero2.png) */
.hero-cards-overlay {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) translateZ(40px);
  /* 3D layer depth */
  height: 100%;
  width: 100%;
  object-fit: contain;
  z-index: 2;
  pointer-events: none;
  will-change: transform;
  transition: transform 0.15s ease-out, opacity 0.15s ease-out;
}

/* Foreground cutout layer of Soubh (hero1.png) */
.hero-person-cutout {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) translateZ(90px);
  /* 3D layer depth closer to viewport */
  height: 100%;
  width: 100%;
  object-fit: contain;
  z-index: 3;
  pointer-events: none;
  will-change: transform;
  transition: transform 0.15s ease-out;
}

/* Centered content directly below visual stack */
.hero-content-centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 600px;
}

/* Live Class Date Highlight Badge */
.hero-date-highlight-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255, 228, 0, 0.12);
  border: 1px solid rgba(255, 228, 0, 0.35);
  padding: 0.45rem 1.25rem;
  border-radius: 100px;
  margin-top: 1rem;
  margin-bottom: 1.25rem;
  box-shadow: 0 0 25px rgba(255, 228, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-date-highlight-badge:hover {
  transform: scale(1.04);
  box-shadow: 0 0 35px rgba(255, 228, 0, 0.35);
}

.date-badge-pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--accent-color);
  box-shadow: 0 0 10px var(--accent-color);
  animation: pulseDotGlow 1.8s infinite ease-in-out;
}

.date-badge-text {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--accent-color);
  letter-spacing: 0.01em;
}

.hero-sub-single {
  font-family: var(--font-sans);
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  font-weight: 500;
  line-height: 1.5;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 540px;
}

.hero-cta-group {
  display: flex;
  justify-content: center;
  margin: 0;
}

.btn-join {
  text-decoration: none;
  min-width: 180px;
}

.cta-arrow {
  width: 16px;
  height: 16px;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-join:hover .cta-arrow {
  transform: translateX(3px);
}

@media (max-width: 767px) {
  .visual-stack-container {
    max-width: 280px;
    height: 350px;
    margin-bottom: 1.5rem;
  }
}

/* ==========================================================================
   SECTION 2: RECEIPTS (WORK MARQUEE)
   ========================================================================== */
.work-section {
  background-image: radial-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 20px 20px;
}

.editorial-grid {
  margin-bottom: 3.5rem;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .editorial-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3.5rem;
    align-items: center;
  }
}

.receipts-profile-card {
  max-width: 380px;
  width: 100%;
  margin: 0 auto;
}

.receipts-profile-card .instructor-img-wrapper {
  height: 350px;
}

.marquee-wrapper {
  max-width: var(--container-width);
  width: calc(100% - 3rem);
  /* 1.5rem margin left/right */
  margin: 0 auto 2.5rem auto;
  overflow: hidden;
  padding: 1.5rem 0;
  background-color: #070707;
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  position: relative;

  /* Fade mask on the edges */
  mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.marquee-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  animation: marquee-scroll 25s linear infinite;
  will-change: transform;
}

/* Pause on hover */
.marquee-track:hover {
  animation-play-state: paused;
}

/* 4:5 Aspect Ratio Card Style - Shows Full Screenshot Slide */
.card-landscape {
  width: 260px;
  height: 325px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  position: relative;
  flex-shrink: 0;
  cursor: pointer;
  background-color: #080808;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.card-landscape::after {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.08) 30%,
      rgba(255, 255, 255, 0.25) 50%,
      rgba(255, 255, 255, 0.08) 70%,
      rgba(255, 255, 255, 0) 100%);
  transform: skewX(-20deg);
  pointer-events: none;
  z-index: 3;
}

.card-landscape:hover::after {
  animation: sweep-shimmer-card 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes sweep-shimmer-card {
  0% {
    left: -150%;
  }

  100% {
    left: 150%;
  }
}

.card-landscape:hover {
  transform: scale(1.02);
  border-color: var(--accent-color);
}

.card-bg-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  /* Full size, no cropping! */
  background-color: #080808;
  /* Dark backdrop for any empty space */
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

/* Graphic Overlay Elements */
.card-overlay-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

/* Pointers in Card 1 */
.pointer-tag {
  position: absolute;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 700;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background-color: rgba(10, 10, 10, 0.85);
  padding: 0.15rem 0.45rem;
  border-radius: 4px;
  letter-spacing: 0.02em;
  text-transform: lowercase;
}

.pt-1 {
  top: 15%;
  left: 8%;
}

.pt-2 {
  top: 10%;
  right: 40%;
}

.pt-3 {
  top: 25%;
  right: 10%;
}

.pt-4 {
  bottom: 25%;
  right: 15%;
}

.pt-5 {
  bottom: 15%;
  left: 45%;
}

.pointer-lines {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.card-class-title {
  font-family: var(--font-sans);
  font-size: clamp(1.8rem, 4vw, 2.3rem);
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin-bottom: 0.5rem;
}

/* Decision bubble on Card 3 */
.bubble-decision {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #ffffff;
  color: #000000;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 0.85rem;
  border-radius: 100px;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
  text-transform: lowercase !important;
}

/* Speech bubble on Card 4 */
.bubble-speech {
  position: absolute;
  bottom: 22%;
  left: 10%;
  background-color: var(--accent-color);
  color: #000000;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 0.85rem;
  border-radius: 100px 100px 100px 0;
  box-shadow: 0 0 20px rgba(229, 255, 0, 0.4);
  text-transform: lowercase !important;
}

.carousel-caption {
  font-size: 0.85rem;
  color: var(--text-muted);
}

@keyframes marquee-scroll {
  0% {
    transform: translate3d(0, 0, 0);
  }

  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

@media (max-width: 767px) {
  .card-landscape {
    width: 180px;
    height: 225px;
    /* Maintain 4:5 ratio so slides fit correctly */
  }

  .pointer-tag {
    font-size: 0.55rem;
    padding: 0.1rem 0.35rem;
  }

  .bubble-decision,
  .bubble-speech {
    font-size: 0.65rem;
    padding: 0.25rem 0.7rem;
  }
}

/* ==========================================================================
   SECTION 3: INSIDE (WHAT YOU LEARN)
   ========================================================================== */
.class-section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5.5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: 0.01em;
  color: #ffffff;
  line-height: 1.25;
  margin-top: -0.5rem;
  margin-bottom: 0.5rem;
}

.bio-lead-white {
  color: #ffffff !important;
  font-size: clamp(1.15rem, 2.5vw, 1.35rem) !important;
  font-weight: 500 !important;
  line-height: 1.6 !important;
}

.class-section-tagline {
  font-family: var(--font-sans);
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.section-intro {
  font-size: clamp(0.95rem, 2vw, 1.12rem);
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 3.5rem;
  max-width: 820px;
}

/* Redesigned Class Section Layout */
.cohort-learn-grid {
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
  margin-top: 3.5rem;
}

.homework-card-fullwidth {
  width: 100%;
  grid-column: 1 / -1;
}

.learn-card {
  background-color: rgba(15, 15, 15, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), inset 0 0 15px rgba(255, 255, 255, 0.01);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.learn-card:hover {
  transform: translateY(-4px);
  border-color: rgba(229, 255, 0, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(229, 255, 0, 0.02);
}

.learn-card-featured {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .learn-card-featured {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
  }
}

.card-featured-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.card-header-with-num {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.card-big-num {
  font-size: 2.2rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.08);
  font-family: var(--font-sans);
  line-height: 1;
  transition: color 0.4s ease;
}

.learn-card:hover .card-big-num {
  color: rgba(255, 255, 255, 0.15);
}

/* Time Badges Group (Separate Div Tags) */
.class-time-group {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.85rem;
  flex-wrap: wrap;
}

.class-group-tag {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #d0d0c8;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.3rem 0.7rem;
  border-radius: 6px;
  letter-spacing: 0.01em;
}

.class-time-tag {
  background: rgba(255, 228, 0, 0.12);
  border: 1px solid rgba(255, 228, 0, 0.35);
  color: #ffe400;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.3rem 0.75rem;
  border-radius: 6px;
  letter-spacing: 0.02em;
  box-shadow: 0 2px 10px rgba(255, 228, 0, 0.12);
}

.class-time-tag.tag-canva {
  background: rgba(255, 228, 0, 0.12);
  border-color: rgba(255, 228, 0, 0.35);
  color: #ffe400;
}

.class-time-tag.tag-photoshop {
  background: rgba(0, 168, 255, 0.12);
  border-color: rgba(0, 168, 255, 0.35);
  color: #00a8ff;
}

.tag-tool-name {
  opacity: 0.85;
  font-weight: 600;
  margin-right: 0.2rem;
}

/* Pure Typography Specimen Graphic */
.pure-typography-specimen {
  background: rgba(12, 12, 20, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 1.75rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 190px;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 0 35px rgba(0, 0, 0, 0.6);
}

.typography-specimen-grid {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.45rem;
  z-index: 2;
}

.specimen-badge {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 700;
  color: var(--accent-color);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(255, 228, 0, 0.1);
  border: 1px solid rgba(255, 228, 0, 0.25);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
}

.specimen-hero-word {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.6rem);
  font-weight: 800;
  color: var(--accent-color);
  line-height: 1;
  letter-spacing: 0.03em;
}

.specimen-sub-line {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.15rem;
  color: #ffffff;
  letter-spacing: -0.01em;
}

.specimen-font-details {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.4rem;
}

.font-chip {
  font-size: 0.72rem;
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.2rem 0.5rem;
  border-radius: 6px;
}

.card-class-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.card-featured-right {
  width: 100%;
}

/* Row 2: Half width cards split */
.learn-row-split {
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
}

@media (min-width: 1024px) {
  .learn-row-split {
    display: grid;
    grid-template-columns: 1.25fr 0.85fr 1.25fr;
    align-items: stretch;
  }

  .learn-card-half {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-bottom: 2.5rem;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .learn-row-split {
    display: flex;
    flex-direction: column;
  }

  .learn-card-half {
    padding-bottom: 2.5rem;
  }
}

.learn-card-content-top {
  margin-bottom: 2rem;
}

/* Time Badges */
.class-time-badge {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--bg-color);
  background: var(--accent-color);
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  margin-bottom: 1.25rem;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 10px rgba(229, 255, 0, 0.15);
  display: inline-block;
}

.card-storytelling .class-time-badge {
  background: #00a8ff;
  color: #ffffff;
  box-shadow: 0 4px 10px rgba(0, 168, 255, 0.15);
}

.card-the-build .class-time-badge {
  background: #7d2ae8;
  color: #ffffff;
  box-shadow: 0 4px 10px rgba(125, 42, 232, 0.15);
}

/* Card Visual Graphic containers inside Learn Cards */
.pairing-preview-graphic,
.sequence-carousel-graphic,
.tool-integration-graphic {
  width: 100%;
  height: 180px;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.02);
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 1. Typography Graphic Panel */
.pairing-preview-graphic {
  display: flex;
  flex-direction: column;
}

.pairing-bg-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.4) contrast(1.1);
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1;
}

.learn-card:hover .pairing-bg-img {
  transform: scale(1.05);
}

.pairing-bg-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, transparent 30%, rgba(10, 10, 10, 0.85) 90%);
  z-index: 2;
}

.pairing-typography-display {
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.pair-word {
  line-height: 1;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.8);
}

.pair-word-display {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--accent-color);
  letter-spacing: -0.04em;
  transform: rotate(-2deg);
}

.pair-word-serif {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.6rem;
  color: #ffffff;
  margin-top: -0.6rem;
  transform: rotate(1deg);
  letter-spacing: -0.01em;
}

/* 2. Storytelling Card Graphic (Sequence Staggered Slides) */
.sequence-slide {
  position: absolute;
  width: 90px;
  height: 125px;
  background: #0d0d0d;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  padding: 0.35rem;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), z-index 0.5s ease;
}

.slide-mini-pic {
  width: 100%;
  height: 75px;
  background-size: cover;
  background-position: center;
  border-radius: 4px;
  background-color: #121212;
}

.slide-mini-num {
  font-size: 0.5rem;
  color: var(--text-muted);
  font-weight: 700;
  margin-top: 0.25rem;
}

.slide-mini-hook {
  font-size: 0.6rem;
  color: #ffffff;
  font-weight: 600;
  line-height: 1.1;
  margin-top: 0.05rem;
  text-transform: none !important;
}

.slide-1 {
  transform: translateX(-65px) rotate(-6deg) scale(0.9);
  z-index: 1;
}

.slide-2 {
  transform: translateX(0) scale(1);
  z-index: 3;
  border-color: rgba(0, 168, 255, 0.3);
  box-shadow: 0 12px 30px rgba(0, 168, 255, 0.15);
}

.slide-3 {
  transform: translateX(65px) rotate(6deg) scale(0.9);
  z-index: 2;
}

/* Hover interaction to fan out slides */
.learn-card-half:hover .slide-1 {
  transform: translateX(-80px) rotate(-12deg) scale(0.92);
}

.learn-card-half:hover .slide-2 {
  transform: translateX(0) scale(1.05);
  border-color: rgba(0, 168, 255, 0.5);
}

.learn-card-half:hover .slide-3 {
  transform: translateX(80px) rotate(12deg) scale(0.92);
}

/* 3. Blended Break Note Divider Panel */
.break-note-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.5rem 0.5rem;
}

.break-line-element {
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.08), transparent);
  transition: background 0.4s ease;
}

.break-badge-content {
  margin: 1.5rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}

.break-note-badge:hover .break-line-element {
  background: linear-gradient(to bottom, transparent, rgba(229, 255, 0, 0.15), transparent);
}

.break-emoji {
  font-size: 1.25rem;
  opacity: 0.75;
  animation: break-spin-clock 12s linear infinite;
}

@keyframes break-spin-clock {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.break-text {
  font-size: 0.78rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
  opacity: 0.65;
  transition: opacity 0.3s ease;
}

.break-note-badge:hover .break-text {
  opacity: 0.95;
}

@media (min-width: 1024px) {
  .break-line-element {
    width: 1px;
    flex: 1;
  }

  .break-text {
    max-width: 140px;
    /* nice narrow width for vertical divider space */
  }
}

@media (max-width: 1023px) {
  .break-note-badge {
    flex-direction: row;
    width: 100%;
    gap: 1rem;
    padding: 2rem 0;
  }

  .break-line-element {
    height: 1px;
    flex: 1;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.08), transparent);
  }

  .break-note-badge:hover .break-line-element {
    background: linear-gradient(to right, transparent, rgba(229, 255, 0, 0.15), transparent);
  }

  .break-badge-content {
    margin: 0;
    flex-direction: row;
    gap: 0.75rem;
    align-items: center;
  }

  .break-text {
    max-width: 320px;
  }
}

/* 4. Tool Integration Graphic */
.tool-integration-graphic {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
}

.tool-panel {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 0.75rem 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  min-width: 90px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease;
}

.tool-panel-logo {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.tool-panel-name {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
}

.tool-plus-sign {
  font-size: 1.2rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.15);
  font-family: var(--font-sans);
}

.tool-panel-canva {
  border-color: rgba(125, 42, 232, 0.15);
}

.learn-card-half:hover .tool-panel-canva {
  transform: translateY(-5px) rotate(-3deg);
  border-color: #7d2ae8;
  box-shadow: 0 8px 20px rgba(125, 42, 232, 0.25);
}

.tool-panel-ps {
  border-color: rgba(0, 168, 255, 0.15);
}

.learn-card-half:hover .tool-panel-ps {
  transform: translateY(-5px) rotate(3deg);
  border-color: #00a8ff;
  box-shadow: 0 8px 20px rgba(0, 168, 255, 0.25);
}

/* Brand logos styled bigger & in real color */
.featured-companies-strip {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  border-top: none !important;
  padding-top: 1.5rem !important;
  margin: 3rem auto 1.5rem auto !important;
  max-width: var(--container-width);
  width: calc(100% - 3rem);
}

.featured-logo-item {
  height: 48px !important;
  /* Bigger logo height */
  display: flex;
  align-items: center;
  justify-content: center;
}

.company-logo {
  height: 100% !important;
  width: auto !important;
  max-width: 150px !important;
  object-fit: contain !important;
  opacity: 1 !important;
  transition: transform 0.3s ease;
  filter: brightness(1.05) contrast(1.1) drop-shadow(0 0 10px rgba(255, 255, 255, 0.12)) !important;
}

/* Specific white inversion for Neeman's to render crisp & bright */
.logo-neemans {
  filter: brightness(0) invert(1) drop-shadow(0 0 12px rgba(255, 255, 255, 0.35)) !important;
  opacity: 1 !important;
}

.featured-logo-item:hover .company-logo {
  opacity: 1;
  transform: scale(1.06);
}

/* Instagram profile-card styled button (explore the feed) */
.instagram-card-button {
  display: inline-flex;
  align-items: center;
  gap: 1.25rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 100px;
  padding: 0.75rem 2rem 0.75rem 0.85rem;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  margin-top: 1rem;
}

.instagram-card-button:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--accent-color);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3), 0 0 15px rgba(255, 228, 0, 0.05);
}

.ig-card-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.ig-card-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.2;
}

.ig-card-username {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  text-transform: none !important;
}

.ig-card-meta {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.15rem;
}

.ig-icon {
  width: 14px;
  height: 14px;
  color: #e1306c;
}

.ig-card-followers {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-transform: none !important;
}

/* ==========================================================================
   SECTION 4: HOMEWORK
   ========================================================================== */
.homework-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .homework-grid {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
  }
}

.homework-card-glass {
  background: rgba(15, 15, 15, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 3rem 2.5rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.02);
  position: relative;
  overflow: hidden;
}

.font-picker-graphic {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: 1.25rem;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.typography-card-font-graphic {
  width: 100%;
  height: 100%;
  min-height: 180px;
  background: rgba(10, 10, 18, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 1.5rem 1.75rem;
  justify-content: center;
  gap: 0.7rem;
  box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.5);
}

.homework-badge {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--accent-color);
  border: 1px solid rgba(229, 255, 0, 0.25);
  background-color: rgba(229, 255, 0, 0.05);
  padding: 0.25rem 0.65rem;
  border-radius: 4px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
}

.homework-lead-text {
  font-family: var(--font-sans);
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.homework-body-text {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.homework-prize-highlight {
  display: flex;
  gap: 1.25rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  padding: 1.5rem;
  border-radius: 12px;
}

.prize-trophy {
  font-size: 2.2rem;
  line-height: 1;
}

.prize-details {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.prize-title {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1.05rem;
  color: #ffffff;
}

.prize-subtitle {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.homework-visual-stats {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.stat-box {
  background: rgba(15, 15, 15, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 16px;
  padding: 2rem;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: inset 0 0 15px rgba(255, 255, 255, 0.02);
}

.reach-box {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.stat-number {
  font-family: var(--font-sans);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--accent-color);
  line-height: 1;
  letter-spacing: -0.02em;
}

.stat-label {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: var(--text-secondary);
  text-transform: lowercase;
  margin-bottom: 0.5rem;
}

.stat-growth-bar {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 100px;
  overflow: hidden;
}

.stat-growth-fill {
  width: 82%;
  height: 100%;
  background: var(--accent-color);
  border-radius: 100px;
  box-shadow: 0 0 10px rgba(229, 255, 0, 0.6);
  animation: fill-growth-bar 2.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fill-growth-bar {
  from {
    width: 0%;
  }

  to {
    width: 82%;
  }
}

.prize-box {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 110px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.prize-badge-glow {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 700;
  color: #ffffff;
  border: 1px solid rgba(125, 42, 232, 0.35);
  background: rgba(125, 42, 232, 0.1);
  padding: 0.75rem 1.5rem;
  border-radius: 100px;
  box-shadow: 0 0 25px rgba(125, 42, 232, 0.25);
  animation: prize-pulse-glow 3s ease-in-out infinite;
}

@keyframes prize-pulse-glow {

  0%,
  100% {
    box-shadow: 0 0 20px rgba(125, 42, 232, 0.2);
  }

  50% {
    box-shadow: 0 0 35px rgba(125, 42, 232, 0.45);
  }
}

/* ==========================================================================
   SECTION 5: YOURS (WHAT YOU KEEP)
   ========================================================================== */
/* ==========================================================================
   SECTION 5: YOURS (WHAT YOU KEEP) & INSTRUCTOR
   ========================================================================== */
/* Centered Header group for Yours section */
.yours-header-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 3.5rem;
  position: relative;
}

.yours-icon-decorator {
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: icon-float-pulse 4s ease-in-out infinite;
}

@keyframes icon-float-pulse {

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

  50% {
    transform: translateY(-4px) scale(1.05);
    opacity: 1;
  }
}

.yours-stamp {
  margin-bottom: 1rem;
}

.yours-title {
  font-family: var(--font-sans);
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #ffffff;
  line-height: 1.1;
  margin-top: -0.5rem;
  margin-bottom: 0.75rem;
}

.yours-intro-line {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  font-weight: 500;
  color: var(--text-secondary);
  max-width: 600px;
}

.verbatim-case {
  text-transform: none !important;
}

/* Yours Cards Grid Layout */
.yours-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  margin-top: 2rem;
}

@media (min-width: 640px) {
  .yours-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .yours-cards-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
}

/* Individual Yours Card */
.yours-card {
  background: rgba(15, 15, 15, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 1.75rem;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 410px;
  padding-bottom: 4.5rem;
  /* Space for plus button */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), inset 0 0 15px rgba(255, 255, 255, 0.01);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.yours-card:hover {
  transform: translateY(-4px);
  border-color: rgba(229, 255, 0, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(229, 255, 0, 0.03);
}

.instructor-card {
  background-color: rgba(15, 15, 15, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.instructor-img-wrapper {
  position: relative;
  width: 100%;
  height: 410px;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.instructor-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(15%) contrast(1.05);
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.instructor-card:hover .instructor-img {
  transform: scale(1.03);
  filter: grayscale(0%) contrast(1.05);
}

.instructor-badge-overlay {
  position: absolute;
  bottom: 0.9rem;
  left: 0.9rem;
  z-index: 2;
}

.label-instructor {
  background-color: var(--accent-color);
  color: var(--bg-color);
  font-size: 0.65rem;
}

.instructor-info {
  margin-top: 1.25rem;
  padding: 0 0.25rem;
}

.instructor-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  /* bold */
  letter-spacing: -0.04em;
  /* tight letter-spacing */
  color: var(--text-primary);
  margin-bottom: 0.3rem;
}

.instructor-bio {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Card Header */
.yours-card-header {
  margin-bottom: 1.25rem;
}

.yours-card-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

.yours-card-title {
  font-family: var(--font-sans);
  font-size: 1.55rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-top: 0.15rem;
}

/* Card Graphic Area */
.yours-card-graphic {
  height: 125px;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

/* Card Description */
.yours-card-body {
  flex-grow: 1;
}

.yours-card-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Card Action Button (+ Icon) */
.yours-card-action {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
}

.plus-btn-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.plus-btn-circle svg {
  width: 14px;
  height: 14px;
}

.yours-card:hover .plus-btn-circle {
  background: var(--accent-color);
  color: var(--bg-color);
  border-color: var(--accent-color);
  box-shadow: 0 0 10px rgba(229, 255, 0, 0.3);
  transform: rotate(90deg);
}

/* --- Specific Graphic Mockups --- */

/* 1. Font Picker graphic */
.font-picker-graphic {
  flex-direction: column;
  gap: 0.35rem;
  padding: 0.5rem 0.75rem;
}

.font-tag {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  padding: 0.25rem 0.5rem;
  border-radius: 6px;
  font-size: 0.75rem;
  text-align: center;
  width: 100%;
  color: var(--text-secondary);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.font-geist {
  font-family: var(--font-sans);
  letter-spacing: 0.03em;
}

.font-outfit {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--accent-color);
}

.font-playfair {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.8rem;
}

.font-inter {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
}

/* 2. Photo Stack graphic */
.photo-stack-graphic {
  position: relative;
  overflow: visible;
}

.yours-photo-thumb {
  position: absolute;
  width: 58px;
  height: 72px;
  background-size: cover;
  background-position: center;
  border: 1.5px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
  border-radius: 4px;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.photo-t1 {
  left: 20%;
  top: 25px;
  transform: rotate(-10deg);
  z-index: 1;
}

.photo-t2 {
  left: 42%;
  top: 18px;
  transform: rotate(2deg);
  z-index: 2;
}

.photo-t3 {
  left: 62%;
  top: 26px;
  transform: rotate(12deg);
  z-index: 3;
}

.yours-card:hover .photo-t1 {
  transform: rotate(-16deg) translate(-6px, -4px);
}

.yours-card:hover .photo-t3 {
  transform: rotate(20deg) translate(6px, -4px);
}

/* 3. Video Player graphic */
.video-player-graphic {
  position: relative;
}

.video-mock-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: blur(1px) brightness(0.65);
  z-index: 1;
}

.video-mock-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 60%);
  z-index: 2;
}

.video-mock-play {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent-color);
  color: var(--bg-color);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  box-shadow: 0 4px 10px rgba(229, 255, 0, 0.3);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.video-mock-play svg {
  width: 14px;
  height: 14px;
}

.yours-card:hover .video-mock-play {
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 6px 15px rgba(229, 255, 0, 0.5);
}

.video-mock-timeline {
  position: absolute;
  bottom: 0.6rem;
  left: 0.75rem;
  right: 0.75rem;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.video-timeline-track {
  height: 3px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
  overflow: hidden;
}

.video-timeline-fill {
  width: 68%;
  height: 100%;
  background: var(--accent-color);
}

.video-mock-time {
  font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

/* 4. WhatsApp group graphic */
.chat-group-graphic {
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  padding: 0.5rem 0.65rem;
}

.chat-header-bar {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding-bottom: 0.3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 0.5rem;
}

.chat-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #25d366;
}

.chat-title-text {
  font-size: 0.6rem;
  color: var(--text-muted);
  font-weight: 600;
}

.chat-bubble-item {
  border-radius: 6px;
  padding: 0.25rem 0.45rem;
  max-width: 82%;
  display: flex;
  flex-direction: column;
  margin-bottom: 0.35rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.bubble-user {
  font-size: 0.52rem;
  font-weight: 700;
  margin-bottom: 0.05rem;
}

.bubble-txt {
  font-size: 0.65rem;
  line-height: 1.15;
}

.bubble-student {
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.05);
  border-left: 2px solid #00a8ff;
}

.bubble-student .bubble-user {
  color: #00a8ff;
}

.bubble-soubh {
  align-self: flex-end;
  background: rgba(229, 255, 0, 0.06);
  border-right: 2px solid var(--accent-color);
}

.bubble-soubh .bubble-user {
  color: var(--accent-color);
}

/* Quiet Footnote Line */
.yours-footnote-container {
  margin-top: 3.5rem;
  text-align: center;
  padding: 0 1rem;
}

.yours-footnote-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.5;
  text-transform: none !important;
}

/* Yours Logo Strip Adjustments */
.yours-logo-strip {
  margin-top: 4.5rem;
  border-bottom: none;
}

/* Mobile Swipable Horizontal Track styles */
@media (max-width: 767px) {
  .yours-cards-grid {
    display: flex;
    gap: 1.25rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 1.5rem;
    padding-left: 0.25rem;
    padding-right: 0.25rem;
    clip-path: inset(-15px 0 -15px 0);
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    /* Hide scrollbar for Firefox */
  }

  .yours-cards-grid::-webkit-scrollbar {
    display: none;
    /* Hide scrollbar for Chrome, Safari, Opera */
  }

  .yours-card {
    flex: 0 0 265px;
    scroll-snap-align: start;
    min-height: 380px;
  }
}

/* ==========================================================================
   SECTION 6: SIMPLE (HOW IT RUNS)
   ========================================================================== */
.steps-flow-container {
  position: relative;
  margin-top: 3rem;
}

.steps-connector-line {
  display: none;
  position: absolute;
  top: 50px;
  left: 10%;
  width: 80%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-color) 0%, #00a8ff 50%, #7d2ae8 100%);
  opacity: 0.15;
  z-index: 1;
}

@media (min-width: 768px) {
  .steps-connector-line {
    display: block;
  }
}

.steps-flow {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  position: relative;
  z-index: 2;
}

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

.step-card-glass {
  background: rgba(15, 15, 15, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.02);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), \n border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1), \n box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.step-card-glass:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), inset 0 0 20px rgba(255, 255, 255, 0.04);
}

.step-num-glow {
  font-family: var(--font-sans);
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
  color: rgba(255, 255, 255, 0.06);
  transition: color 0.4s ease;
}

.step-card-glass:hover .step-num-glow {
  color: var(--accent-color);
  text-shadow: 0 0 15px rgba(229, 255, 0, 0.4);
}

.step-card-glass:nth-child(2):hover .step-num-glow {
  color: #00a8ff;
  text-shadow: 0 0 15px rgba(0, 168, 255, 0.4);
}

.step-card-glass:nth-child(3):hover .step-num-glow {
  color: #7d2ae8;
  text-shadow: 0 0 15px rgba(125, 42, 232, 0.4);
}

.step-card-title {
  font-family: var(--font-sans);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #ffffff;
  line-height: 1.2;
}

.step-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

.step-icon-visual {
  font-size: 2.5rem;
  opacity: 0.15;
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.step-card-glass:hover .step-icon-visual {
  opacity: 0.65;
  transform: scale(1.1) rotate(-5deg);
}

/* ==========================================================================
   SECTION 7: MOMOS (THE SACRIFICE)
   ========================================================================== */
.sacrifice-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-top: 3rem;
}

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

.sacrifice-card-glass {
  background: rgba(15, 15, 15, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 16px;
  padding: 3rem 2.5rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.02);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 330px;
  transition: border-color 0.4s ease, box-shadow 0.4s ease, transform 0.4s ease;
}

.sacrifice-card-glass:hover {
  transform: translateY(-2px);
}

.card-depreciate:hover {
  border-color: rgba(255, 68, 68, 0.2);
  box-shadow: 0 15px 35px rgba(255, 68, 68, 0.03);
}

.card-appreciate:hover {
  border-color: rgba(229, 255, 0, 0.2);
  box-shadow: 0 15px 35px rgba(229, 255, 0, 0.03);
}

.sacrifice-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.sac-icon {
  font-size: 2rem;
}

.sac-label-tag {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.25rem 0.65rem;
  border-radius: 4px;
  letter-spacing: 0.05em;
}

.tag-temp {
  color: #ff4444;
  background-color: rgba(255, 68, 68, 0.05);
  border: 1px solid rgba(255, 68, 68, 0.2);
}

.tag-grow {
  color: var(--accent-color);
  background-color: rgba(229, 255, 0, 0.05);
  border: 1px solid rgba(229, 255, 0, 0.2);
}

.sacrifice-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: bold;
  letter-spacing: -0.03em;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.sacrifice-desc {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.55;
  margin-bottom: 2rem;
}

.visual-expiring-bar {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.visual-timer {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: #ff4444;
  font-weight: 600;
}

.timer-bar-fill {
  width: 100%;
  height: 4px;
  background: rgba(255, 68, 68, 0.15);
  border-radius: 100px;
  position: relative;
  overflow: hidden;
}

.timer-bar-fill::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: #ff4444;
  animation: empty-timer 5s linear infinite;
}

@keyframes empty-timer {
  0% {
    width: 100%;
  }

  100% {
    width: 0%;
  }
}

.visual-compounding-graph {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.visual-grow {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  color: var(--accent-color);
  font-weight: 700;
}

.growth-chart-dots {
  display: flex;
  gap: 4px;
}

.dot-growth {
  width: 8px;
  height: 8px;
  background: rgba(229, 255, 0, 0.2);
  border-radius: 50%;
}

.dg-1 {
  animation: compound-dot 1.2s infinite 0.2s;
}

.dg-2 {
  animation: compound-dot 1.2s infinite 0.4s;
}

.dg-3 {
  animation: compound-dot 1.2s infinite 0.6s;
}

@keyframes compound-dot {

  0%,
  100% {
    transform: scale(1);
    background: rgba(229, 255, 0, 0.2);
  }

  50% {
    transform: scale(1.3);
    background: var(--accent-color);
    box-shadow: 0 0 8px var(--accent-color);
  }
}

/* ==========================================================================
   SECTION 8: FAQ & KICKER
   ========================================================================== */
.faq-accordion {
  display: flex;
  flex-direction: column;
  margin-bottom: 4rem;
}

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

.faq-trigger {
  width: 100%;
  background: transparent;
  border: none;
  color: var(--text-primary);
  text-align: left;
  padding: 1.75rem 0;
  font-family: var(--font-sans);
  font-size: 1.15rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq-question {
  max-width: 90%;
}

/* Accordion Icon */
.faq-icon {
  width: 14px;
  height: 14px;
  position: relative;
  flex-shrink: 0;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background-color: var(--accent-color);
  transition: transform 0.3s ease;
}

/* Horizontal line */
.faq-icon::before {
  top: 6px;
  left: 0;
  width: 100%;
  height: 2px;
}

/* Vertical line */
.faq-icon::after {
  top: 0;
  left: 6px;
  width: 2px;
  height: 100%;
}

/* When expanded, rotate the vertical line to hide it (creating a minus sign) */
.faq-item.active .faq-icon::after {
  transform: rotate(90deg);
  opacity: 0;
}

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

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

.faq-answer {
  padding-bottom: 1.75rem;
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.6;
}

.kicker-wrapper {
  margin-top: 4rem;
  margin-bottom: 3.5rem;
  border-left: 3px solid var(--accent-color);
  padding-left: 1.75rem;
}

.kicker-text {
  font-family: var(--font-sans);
  font-size: clamp(1.15rem, 2.8vw, 1.45rem);
  font-weight: 500;
  font-style: italic;
  line-height: 1.7;
  letter-spacing: -0.01em;
  color: var(--text-primary);
  max-width: 680px;
}

.final-cta-group {
  margin-top: 1rem;
}

.final-micro {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ==========================================================================
   STICKY / FLOATING CTA PILL BAR
   ========================================================================== */
.floating-cta-bar {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translate(-50%, 150%);
  width: calc(100% - 2rem);
  max-width: 580px;
  background-color: rgba(10, 10, 10, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 100px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 0.6rem 1.25rem;
  z-index: 990;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
  pointer-events: none;
}

.floating-cta-bar.visible {
  transform: translate(-50%, 0);
  pointer-events: auto;
}

.floating-cta-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.floating-brand {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 900;
  font-style: italic;
  color: var(--accent-color);
  letter-spacing: -0.04em;
  padding-left: 0.5rem;
}

.floating-actions {
  display: flex;
  gap: 0.75rem;
}

.btn-mini {
  padding: 0.65rem 1.25rem;
  font-size: 0.85rem;
  border-radius: 100px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background-color: #060606;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 3rem 0;
}

.footer-container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

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

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.footer-wordmark {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 900;
  font-style: italic;
  color: var(--accent-color);
}

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

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

.footer-link {
  font-size: 0.85rem;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

/* ==========================================================================
   PRICING SECTION
   ========================================================================== */
.pricing-section {
  padding: 6rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.pricing-intro-line {
  text-align: center;
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 500;
  color: var(--text-secondary);
  margin-top: 0.5rem;
  margin-bottom: 3.5rem;
  font-family: var(--font-sans);
}

.pricing-title-meta {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  flex-grow: 1;
}

.pricing-badge {
  align-self: flex-start;
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.15rem 0.45rem;
  border-radius: 4px;
  letter-spacing: 0.05em;
}

.badge-beginner {
  color: var(--accent-color);
  background-color: rgba(229, 255, 0, 0.05);
  border: 1px solid rgba(229, 255, 0, 0.15);
}

.badge-advanced {
  color: #00a8ff;
  background-color: rgba(0, 168, 255, 0.05);
  border: 1px solid rgba(0, 168, 255, 0.15);
}

.editorial-unified-card {
  background: rgba(15, 15, 25, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 3rem;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.featured-marquee-container {
  overflow: hidden;
  width: 100%;
  position: relative;
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  padding: 0.75rem 0;
}

.featured-logos-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3.5rem;
  width: 100%;
  flex-wrap: wrap;
  padding: 0.75rem 0;
}

.featured-logo-item {
  transition: transform 0.3s ease;
}

.featured-logo-item:hover {
  transform: translateY(-3px) scale(1.05);
}

.company-logo {
  height: 44px;
  width: auto;
  object-fit: contain;
  filter: brightness(1.05) contrast(1.1) drop-shadow(0 0 12px rgba(255, 255, 255, 0.15)) !important;
  opacity: 1 !important;
  transition: transform 0.3s ease;
}

.logo-neemans {
  filter: brightness(0) invert(1) drop-shadow(0 0 12px rgba(255, 255, 255, 0.35)) !important;
  opacity: 1 !important;
}

.class-time-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 0.85rem;
  flex-wrap: wrap;
}

.badge-group-text {
  color: #a0a098;
  font-weight: 500;
}

.badge-dot {
  color: rgba(255, 255, 255, 0.25);
}

.badge-time-highlight {
  background: rgba(255, 228, 0, 0.14);
  color: #ffe400;
  padding: 0.22rem 0.6rem;
  border-radius: 6px;
  font-weight: 700;
  border: 1px solid rgba(255, 228, 0, 0.3);
  letter-spacing: 0.01em;
  box-shadow: 0 0 12px rgba(255, 228, 0, 0.15);
}

.pricing-grid {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  margin-top: 3.5rem;
}

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

.pricing-card {
  background: rgba(15, 15, 15, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 20px;
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 520px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.02), 0 20px 40px rgba(0, 0, 0, 0.5);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.pricing-card>* {
  position: relative;
  z-index: 2;
}

/* Glow shimmer sweeping overlay for pricing cards */
.pricing-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.04) 30%,
      rgba(255, 255, 255, 0.12) 50%,
      rgba(255, 255, 255, 0.04) 70%,
      rgba(255, 255, 255, 0) 100%);
  transform: skewX(-20deg);
  pointer-events: none;
  z-index: 3;
}

.pricing-card:hover::after {
  animation: sweep-shimmer-card 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Canva card theme colors */
.card-canva-pricing {
  background-image:
    radial-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    radial-gradient(circle at 90% 10%, rgba(229, 255, 0, 0.015) 0%, rgba(15, 15, 15, 0.55) 70%);
  background-size: 14px 14px, auto;
}

.card-canva-pricing:hover {
  transform: translateY(-4px);
  border-color: rgba(229, 255, 0, 0.25);
  box-shadow: 0 20px 45px rgba(229, 255, 0, 0.06), 0 0 15px rgba(229, 255, 0, 0.02);
}

/* Photoshop card theme colors */
.card-photoshop-pricing {
  background-image:
    radial-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    radial-gradient(circle at 90% 10%, rgba(0, 168, 255, 0.015) 0%, rgba(15, 15, 15, 0.55) 70%);
  background-size: 14px 14px, auto;
}

.card-photoshop-pricing:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 168, 255, 0.25);
  box-shadow: 0 20px 45px rgba(0, 168, 255, 0.06), 0 0 15px rgba(0, 168, 255, 0.02);
}

/* Header details */
.pricing-card-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 1.5rem;
}

.brand-badge {
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.badge-canva-pricing {
  background-color: rgba(125, 42, 232, 0.08);
  border-color: rgba(125, 42, 232, 0.25);
  box-shadow: 0 4px 12px rgba(125, 42, 232, 0.1);
}

.badge-photoshop-pricing {
  background-color: rgba(0, 168, 255, 0.08);
  border-color: rgba(0, 168, 255, 0.25);
  box-shadow: 0 4px 12px rgba(0, 168, 255, 0.1);
}

.pricing-logo-img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.pricing-card-title {
  font-family: var(--font-sans);
  font-size: clamp(1.35rem, 3vw, 1.65rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  text-transform: none;
  line-height: 1.2;
  white-space: nowrap;
}

.pricing-date-tag {
  font-size: 0.65rem;
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--text-secondary);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Body details */
.pricing-price-row {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
  margin-bottom: 2rem;
}

.price-value {
  font-family: var(--font-sans);
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
}

.card-canva-pricing .price-value {
  background: linear-gradient(135deg, #ffffff 0%, var(--accent-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.card-photoshop-pricing .price-value {
  background: linear-gradient(135deg, #ffffff 0%, #00a8ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.price-currency {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
}

.pricing-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.pricing-bullets .bullet-plus {
  color: var(--accent-color);
  font-weight: 700;
  margin-right: 0.25rem;
}

.card-photoshop-pricing .pricing-bullets .bullet-plus {
  color: #00a8ff;
}

/* Button layouts */
/* Button layouts matching reference glassmorphism card style */
.btn-canva-pricing,
.btn-photoshop-pricing {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: rgba(15, 15, 25, 0.6) !important;
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  padding: 0.95rem 1.8rem !important;
  border-radius: 14px !important;
  /* Rounded corners like reference */
  font-family: var(--font-sans);
  font-size: 1.02rem;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: -0.01em;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.btn-canva-pricing::before,
.btn-photoshop-pricing::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 2px;
  opacity: 0.85;
  transition: opacity 0.3s ease, width 0.3s ease;
}

.btn-canva-pricing::before {
  background: linear-gradient(90deg, transparent, #ffe400, transparent);
}

.btn-photoshop-pricing::before {
  background: linear-gradient(90deg, transparent, #00a8ff, transparent);
}

.btn-canva-pricing::after,
.btn-photoshop-pricing::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  opacity: 0.7;
  pointer-events: none;
}

.btn-canva-pricing::after {
  background: radial-gradient(circle at 50% 0%, rgba(255, 228, 0, 0.12), transparent 60%);
}

.btn-photoshop-pricing::after {
  background: radial-gradient(circle at 50% 0%, rgba(0, 168, 255, 0.12), transparent 60%);
}

.btn-canva-pricing:hover {
  transform: scale(1.02) translateY(-2px);
  background: rgba(25, 25, 40, 0.8) !important;
  border-color: rgba(255, 228, 0, 0.45) !important;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5),
    0 0 20px rgba(255, 228, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-photoshop-pricing:hover {
  transform: scale(1.02) translateY(-2px);
  background: rgba(25, 25, 40, 0.8) !important;
  border-color: rgba(0, 168, 255, 0.45) !important;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5),
    0 0 20px rgba(0, 168, 255, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-canva-pricing:hover::before {
  width: 90%;
}

.btn-photoshop-pricing:hover::before {
  width: 90%;
}

.pricing-micro {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 2.5rem;
}

/* ==========================================================================
   SCROLL REVEAL ANIMATIONS
   ========================================================================== */
.scroll-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   HERO ANNOUNCEMENT BAR & OUTCOME STRIP
   ========================================================================== */
.hero-announcement-bar {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(229, 255, 0, 0.05);
  border: 1px solid rgba(229, 255, 0, 0.15);
  padding: 0.5rem 1rem;
  border-radius: 100px;
  margin-bottom: 2rem;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  animation: announcement-float 4s ease-in-out infinite;
}

.announcement-pulse-dot {
  width: 8px;
  height: 8px;
  background-color: var(--accent-color);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent-color);
  animation: announcement-pulse 1.8s infinite;
}

.announcement-bar-text {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

@keyframes announcement-pulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(229, 255, 0, 0.7);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 6px rgba(229, 255, 0, 0);
  }

  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(229, 255, 0, 0);
  }
}

@keyframes announcement-float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-4px);
  }
}

/* Outcome Strip Card styles */
.outcome-strip-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 2rem;
  margin-top: 3.5rem;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.01);
  align-items: center;
  text-align: center;
}

@media (min-width: 768px) {
  .outcome-strip-card {
    flex-direction: row;
    text-align: left;
    padding: 1.75rem 2.5rem;
    justify-content: space-between;
  }
}

.outcome-pill {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 700;
  color: #00a8ff;
  border: 1px solid rgba(0, 168, 255, 0.25);
  background-color: rgba(0, 168, 255, 0.05);
  padding: 0.25rem 0.65rem;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

.outcome-text {
  font-family: var(--font-sans);
  font-size: 1.15rem;
  color: var(--text-primary);
  line-height: 1.5;
  margin: 0;
}

.outcome-text strong {
  color: var(--accent-color);
  font-weight: 700;
}