/* ===== The AI Playground — Custom Styles ===== */

:root {
  --primary: #7c3aed;
  --primary-light: #a78bfa;
  --secondary: #ec4899;
  --accent: #3b82f6;
  --dark: #0f0a1e;
  --dark-card: #1a1230;
  --dark-card-hover: #231a40;
  --text: #f1f0f5;
  --text-muted: #a09bb5;
  --gradient-hero: linear-gradient(135deg, #0f0a1e 0%, #1e1145 30%, #2d1b69 60%, #1a0a3e 100%);
  --gradient-cta: linear-gradient(135deg, #7c3aed, #ec4899);
  --gradient-card: linear-gradient(145deg, #1a1230, #231a40);
}

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

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

body {
  font-family: 'Inter', sans-serif;
  background: var(--dark);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

/* ===== Navbar ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(15, 10, 30, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(124, 58, 237, 0.15);
  transition: background 0.3s;
}

.navbar.scrolled {
  background: rgba(15, 10, 30, 0.95);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--text);
}

.nav-brand-icon {
  width: 40px;
  height: 40px;
  background: var(--gradient-cta);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.nav-brand-text {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  background: linear-gradient(135deg, #fff, var(--primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-cta);
  transition: width 0.3s;
  border-radius: 2px;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-play {
  background: rgba(34, 197, 94, 0.15) !important;
  color: #4ade80 !important;
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-weight: 600 !important;
  border: 1px solid rgba(34, 197, 94, 0.3);
  -webkit-text-fill-color: #4ade80 !important;
  transition: all 0.3s !important;
}

.nav-play:hover {
  background: rgba(34, 197, 94, 0.25) !important;
  border-color: rgba(34, 197, 94, 0.6) !important;
}

.nav-play::after { display: none !important; }

.nav-cta {
  background: var(--gradient-cta) !important;
  color: #fff !important;
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-weight: 600 !important;
  -webkit-text-fill-color: #fff !important;
}

.nav-cta::after { display: none !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.hamburger span {
  width: 26px;
  height: 2.5px;
  background: var(--text);
  border-radius: 3px;
  transition: all 0.3s;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* ===== Hero ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
  padding: 6rem 2rem 4rem;
}

.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.particle {
  position: absolute;
  border-radius: 50%;
  animation: float linear infinite;
  opacity: 0.3;
}

@keyframes float {
  0% { transform: translateY(100vh) scale(0); opacity: 0; }
  10% { opacity: 0.4; }
  90% { opacity: 0.4; }
  100% { transform: translateY(-10vh) scale(1); opacity: 0; }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: rgba(124, 58, 237, 0.15);
  border: 1px solid rgba(124, 58, 237, 0.3);
  border-radius: 50px;
  font-size: 0.85rem;
  color: var(--primary-light);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #ffffff 0%, #a78bfa 50%, #ec4899 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 8s ease infinite;
  background-size: 200% 200%;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.hero p {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
  font-family: 'Inter', sans-serif;
}

.btn-primary {
  background: var(--gradient-cta);
  color: #fff;
  box-shadow: 0 4px 25px rgba(124, 58, 237, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 35px rgba(124, 58, 237, 0.55);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
  border-color: var(--primary-light);
  background: rgba(124, 58, 237, 0.1);
}

/* ===== Section Base ===== */
.section {
  padding: 6rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--primary-light);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 600px;
  margin-bottom: 3rem;
}

.section-center {
  text-align: center;
}

.section-center .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

/* ===== About ===== */
.about-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 3rem;
  align-items: center;
}

.about-photo {
  width: 300px;
  height: 350px;
  border-radius: 24px;
  background: var(--gradient-card);
  border: 2px solid rgba(124, 58, 237, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.about-photo-placeholder {
  color: var(--text-muted);
  font-size: 0.9rem;
  text-align: center;
  padding: 1rem;
}

.about-photo-placeholder span {
  font-size: 3rem;
  display: block;
  margin-bottom: 0.5rem;
}

.about-text h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.about-text .role {
  color: var(--primary-light);
  font-weight: 600;
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.about-text p {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 1rem;
  line-height: 1.8;
}

.about-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}

.stat {
  text-align: center;
}

.stat-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  background: var(--gradient-cta);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===== Services ===== */
.services-bg {
  background: linear-gradient(180deg, var(--dark) 0%, #0d0820 50%, var(--dark) 100%);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--gradient-card);
  border: 1px solid rgba(124, 58, 237, 0.12);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.08), rgba(236, 72, 153, 0.08));
  opacity: 0;
  transition: opacity 0.4s;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(124, 58, 237, 0.3);
  box-shadow: 0 12px 40px rgba(124, 58, 237, 0.15);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
}

.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 1;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

/* ===== How It Works ===== */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  top: 48px;
  left: 15%;
  right: 15%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
  opacity: 0.3;
}

.step {
  text-align: center;
  position: relative;
}

.step-number {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2.5rem;
  position: relative;
  z-index: 1;
}

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

.step p {
  color: var(--text-muted);
  font-size: 0.9rem;
  max-width: 280px;
  margin: 0 auto;
}

/* ===== CTA Banner ===== */
.cta-banner {
  background: var(--gradient-cta);
  border-radius: 24px;
  padding: 4rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin: 0 2rem 6rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.15) 0%, transparent 60%);
}

.cta-banner h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  margin-bottom: 0.75rem;
  position: relative;
}

.cta-banner p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 2rem;
  position: relative;
}

.btn-white {
  background: #fff;
  color: var(--primary);
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

/* ===== Footer ===== */
.footer {
  background: #080515;
  border-top: 1px solid rgba(124, 58, 237, 0.1);
  padding: 3rem 2rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-brand-icon {
  width: 36px;
  height: 36px;
  background: var(--gradient-cta);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

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

.footer-info .company {
  color: var(--text);
  font-weight: 600;
  font-size: 0.95rem;
}

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

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
}

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

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

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(124, 58, 237, 0.1);
  border: 1px solid rgba(124, 58, 237, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  text-decoration: none;
  transition: all 0.3s;
  font-size: 1.1rem;
}

.footer-social a:hover {
  background: var(--gradient-cta);
  color: #fff;
  border-color: transparent;
}

.social-icon {
  display: block;
  width: 20px;
  height: 20px;
  background-color: currentColor;
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
}

.social-icon--linkedin {
  -webkit-mask-image: url('../assets/icons/linkedin.svg');
  mask-image: url('../assets/icons/linkedin.svg');
}

.social-icon--instagram {
  -webkit-mask-image: url('../assets/icons/instagram.svg');
  mask-image: url('../assets/icons/instagram.svg');
}

.social-icon--tiktok {
  -webkit-mask-image: url('../assets/icons/tiktok.svg');
  mask-image: url('../assets/icons/tiktok.svg');
}

.social-icon--youtube {
  -webkit-mask-image: url('../assets/icons/youtube.svg');
  mask-image: url('../assets/icons/youtube.svg');
}

/* ===== Experience Cards (Page 2) ===== */
.page-header {
  padding: 10rem 2rem 4rem;
  text-align: center;
  background: var(--gradient-hero);
  position: relative;
}

.page-header h1 {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  margin-bottom: 1rem;
}

.page-header p {
  color: var(--text-muted);
  font-size: 1.15rem;
  max-width: 550px;
  margin: 0 auto;
}

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

.experience-card {
  background: var(--gradient-card);
  border: 1px solid rgba(124, 58, 237, 0.12);
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.4s;
}

.experience-card:hover {
  transform: translateY(-6px);
  border-color: rgba(124, 58, 237, 0.35);
  box-shadow: 0 16px 50px rgba(124, 58, 237, 0.2);
}

.experience-thumb {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.experience-thumb-inner {
  font-size: 4rem;
  position: relative;
  z-index: 1;
}

.experience-card-body {
  padding: 1.75rem;
}

.experience-badge {
  display: inline-block;
  padding: 0.3rem 0.85rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.badge-live {
  background: rgba(34, 197, 94, 0.15);
  color: #4ade80;
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.badge-soon {
  background: rgba(251, 191, 36, 0.15);
  color: #fbbf24;
  border: 1px solid rgba(251, 191, 36, 0.3);
}

.experience-card-body h3 {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
}

.experience-card-body p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.experience-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.feature-tag {
  padding: 0.3rem 0.75rem;
  background: rgba(124, 58, 237, 0.1);
  border: 1px solid rgba(124, 58, 237, 0.15);
  border-radius: 8px;
  font-size: 0.8rem;
  color: var(--primary-light);
}

/* ===== Bingo Play Card ===== */
.bingo-play-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.75rem;
  background: var(--gradient-card);
  border: 1px solid rgba(124, 58, 237, 0.2);
  border-radius: 24px;
  padding: 3rem 2rem;
  max-width: 600px;
  margin: 0 auto;
  transition: all 0.4s;
}

.bingo-play-card:hover {
  border-color: rgba(124, 58, 237, 0.4);
  box-shadow: 0 16px 50px rgba(124, 58, 237, 0.2);
}

.bingo-play-thumb {
  font-size: 4rem;
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #7c3aed, #ec4899);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bingo-play-card h3 {
  font-size: 1.75rem;
  margin: 0;
}

.bingo-play-card > p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

.bingo-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
}

/* ===== Scroll Animations ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ===== Mobile Responsive ===== */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 10, 30, 0.98);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    z-index: 99;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    font-size: 1.25rem;
  }

  .hamburger {
    display: flex;
    z-index: 101;
  }

  .hero {
    min-height: 100dvh;
    padding: 5rem 1.5rem 3rem;
  }

  .about-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-photo {
    margin: 0 auto;
    width: 220px;
    height: 260px;
  }

  .about-stats {
    justify-content: center;
  }

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

  .steps::before {
    display: none;
  }

  .section {
    padding: 4rem 1.5rem;
  }

  .cta-banner {
    margin: 0 1rem 4rem;
    padding: 3rem 1.5rem;
    border-radius: 20px;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

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

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

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

  .service-card {
    text-align: center;
  }

  .service-icon {
    margin-left: auto;
    margin-right: auto;
  }
}

/* =========================================================
   Trusted By / Clients Marquee
   ========================================================= */

.clients-section {
  position: relative;
  padding: 6rem 0 5rem;
  overflow: hidden;
  background:
    radial-gradient(1200px 600px at 50% 0%, rgba(124, 58, 237, 0.12), transparent 60%),
    linear-gradient(180deg, #0a0618 0%, #120826 50%, #0a0618 100%);
  border-top: 1px solid rgba(124, 58, 237, 0.15);
  border-bottom: 1px solid rgba(124, 58, 237, 0.15);
}

.clients-glow {
  position: absolute;
  inset: auto 0 -40% 0;
  height: 60%;
  background: radial-gradient(ellipse at center, rgba(236, 72, 153, 0.18), transparent 70%);
  pointer-events: none;
  filter: blur(30px);
}

.clients-inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  text-align: center;
}

.clients-inner .section-subtitle {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 3rem;
}

.clients-marquee {
  position: relative;
  display: flex;
  gap: 1.25rem;
  overflow: hidden;
  margin: 1rem 0;
  padding: 0.5rem 0;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.clients-track {
  display: flex;
  gap: 1.25rem;
  flex-shrink: 0;
  padding-right: 1.25rem;
  animation: clientsScroll 60s linear infinite;
  will-change: transform;
}

.clients-marquee[data-direction="right"] .clients-track {
  animation-direction: reverse;
}

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

@keyframes clientsScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(calc(-100% - 1.25rem)); }
}

.client-logo {
  flex-shrink: 0;
  width: 200px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1rem;
  border-radius: 16px;
  background: linear-gradient(135deg, #ffffff 0%, #f4f5fb 100%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow:
    0 6px 20px rgba(8, 4, 22, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1),
              box-shadow 0.4s ease,
              background 0.4s ease;
}

.client-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 1;
  transform: scale(0.85);
  transition: transform 0.4s ease;
}

.client-logo--square {
  padding: 0;
}

.client-logo--square img {
  transform: scale(1);
}

.client-logo:hover {
  transform: translateY(-6px) scale(1.05);
  background: linear-gradient(135deg, #ffffff, #ede9ff);
  box-shadow:
    0 20px 50px rgba(124, 58, 237, 0.45),
    0 0 0 2px rgba(167, 139, 250, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.client-logo:hover img {
  transform: scale(0.89);
}

.client-logo--square:hover img {
  transform: scale(1.05);
}

.clients-footnote {
  margin-top: 2.5rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.clients-footnote strong {
  color: var(--primary-light);
  font-weight: 700;
}

@media (max-width: 768px) {
  .clients-section { padding: 4rem 0 3.5rem; }
  .client-logo {
    width: 155px;
    height: 95px;
    padding: 0.5rem 0.75rem;
  }
  .clients-marquee { gap: 0.85rem; }
  .clients-track { gap: 0.85rem; padding-right: 0.85rem; }
  .clients-track { animation-duration: 45s; }
}

@media (prefers-reduced-motion: reduce) {
  .clients-track { animation: none; }
  .clients-marquee { overflow-x: auto; }
}

/* =========================================================
   Workshop Page
   ========================================================= */

.workshop-page {
  padding-bottom: 120px;
}

/* ---- Workshop Hero ---- */
.ws-hero {
  position: relative;
  min-height: 100vh;
  padding: 10rem 2rem 6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-hero);
  overflow: hidden;
  isolation: isolate;
}

.ws-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(167, 139, 250, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(167, 139, 250, 0.08) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
  z-index: -1;
}

.ws-hero-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(124, 58, 237, 0.35), transparent 45%),
    radial-gradient(circle at 80% 70%, rgba(236, 72, 153, 0.28), transparent 45%),
    radial-gradient(circle at 50% 100%, rgba(59, 130, 246, 0.22), transparent 50%);
  z-index: -1;
  animation: wsGlow 14s ease-in-out infinite alternate;
}

@keyframes wsGlow {
  0% { transform: scale(1) rotate(0deg); opacity: 0.85; }
  100% { transform: scale(1.1) rotate(2deg); opacity: 1; }
}

.ws-hero-content {
  max-width: 900px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.ws-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 1.25rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(167, 139, 250, 0.35);
  border-radius: 50px;
  font-size: 0.82rem;
  color: var(--primary-light);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 1.75rem;
  backdrop-filter: blur(10px);
}

.ws-hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 12px rgba(74, 222, 128, 0.8);
  animation: wsPulseDot 1.8s ease-in-out infinite;
}

@keyframes wsPulseDot {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.2); }
}

.ws-hero-title {
  font-size: clamp(2.5rem, 7vw, 5rem);
  line-height: 1.05;
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
}

.ws-hero-title-accent {
  background: linear-gradient(135deg, #a78bfa 0%, #ec4899 50%, #60a5fa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% 200%;
  animation: gradientShift 8s ease infinite;
}

.ws-hero-subtitle {
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.ws-hero-subtitle em {
  font-style: normal;
  color: var(--primary-light);
  font-weight: 600;
}

.ws-hero-meta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.ws-meta-chip {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1.25rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(124, 58, 237, 0.25);
  border-radius: 16px;
  backdrop-filter: blur(12px);
  text-align: left;
}

.ws-meta-chip-icon {
  font-size: 1.35rem;
}

.ws-meta-chip-label {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  margin-bottom: 0.15rem;
}

.ws-meta-chip strong {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
}

.ws-hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.ws-cta-pulse {
  position: relative;
}

.ws-cta-pulse::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 50px;
  background: var(--gradient-cta);
  opacity: 0.6;
  z-index: -1;
  animation: wsCtaPulse 2.4s ease-out infinite;
}

@keyframes wsCtaPulse {
  0% { transform: scale(1); opacity: 0.55; }
  100% { transform: scale(1.25); opacity: 0; }
}

/* ---- Outcomes Strip ---- */
.ws-outcomes {
  background: linear-gradient(180deg, var(--dark) 0%, #0d0820 100%);
  border-top: 1px solid rgba(124, 58, 237, 0.15);
  border-bottom: 1px solid rgba(124, 58, 237, 0.15);
}

.ws-outcomes-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2.5rem 2rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.ws-outcome {
  text-align: center;
  position: relative;
}

.ws-outcome + .ws-outcome::before {
  content: '';
  position: absolute;
  left: -1rem;
  top: 20%;
  bottom: 20%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(124, 58, 237, 0.3), transparent);
}

.ws-outcome-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  background: linear-gradient(135deg, #fff 0%, var(--primary-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.ws-outcome-number span {
  font-size: 0.9rem;
  background: none;
  -webkit-text-fill-color: var(--text-muted);
  color: var(--text-muted);
  font-weight: 500;
  margin-left: 0.2rem;
}

.ws-outcome-label {
  color: var(--text-muted);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 500;
}

/* ---- Section Head ---- */
.ws-section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 4rem;
}

.ws-section-head .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

/* ---- Timeline ---- */
.ws-timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 1rem 0;
}

.ws-timeline-line {
  position: absolute;
  left: calc(140px - 1px);
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg,
    transparent 0%,
    rgba(124, 58, 237, 0.5) 8%,
    rgba(236, 72, 153, 0.5) 50%,
    rgba(74, 222, 128, 0.5) 92%,
    transparent 100%);
}

.ws-timeline-item {
  display: grid;
  grid-template-columns: 140px 40px 1fr;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  position: relative;
}

.ws-timeline-time {
  text-align: right;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  padding-right: 0.5rem;
}

.ws-timeline-dot {
  --dot-color: var(--primary-light);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--dot-color);
  box-shadow: 0 0 0 4px rgba(15, 10, 30, 1), 0 0 20px var(--dot-color);
  justify-self: center;
  position: relative;
  z-index: 1;
}

.ws-timeline-dot-break {
  --dot-color: #4b3a6a;
  width: 10px;
  height: 10px;
  box-shadow: 0 0 0 4px rgba(15, 10, 30, 1);
}

.ws-timeline-card {
  background: var(--gradient-card);
  border: 1px solid rgba(124, 58, 237, 0.15);
  border-radius: 16px;
  padding: 1.25rem 1.5rem;
  transition: all 0.3s;
}

.ws-timeline-card:hover {
  transform: translateX(4px);
  border-color: rgba(124, 58, 237, 0.4);
  box-shadow: 0 8px 30px rgba(124, 58, 237, 0.15);
}

.ws-timeline-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--primary-light);
  margin-bottom: 0.3rem;
}

.ws-timeline-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.35rem;
}

.ws-timeline-card p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.55;
  margin: 0;
}

.ws-timeline-card-break {
  background: transparent;
  border: 1px dashed rgba(124, 58, 237, 0.2);
  padding: 0.75rem 1.25rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.ws-timeline-card-break:hover {
  transform: none;
  box-shadow: none;
  border-color: rgba(124, 58, 237, 0.35);
}

/* ---- Modules Grid ---- */
.ws-modules-bg {
  background: linear-gradient(180deg, var(--dark) 0%, #0c0719 50%, var(--dark) 100%);
  position: relative;
}

.ws-modules-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  text-align: left;
  margin-top: 1rem;
}

.ws-module-card {
  position: relative;
  background: var(--gradient-card);
  border: 1px solid rgba(124, 58, 237, 0.15);
  border-radius: 24px;
  padding: 2rem;
  transition: all 0.4s;
  overflow: hidden;
  isolation: isolate;
}

.ws-module-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top right, var(--mod-accent), transparent 55%);
  opacity: 0.08;
  z-index: -1;
  transition: opacity 0.4s;
}

.ws-module-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--mod-accent), var(--mod-accent-2));
  opacity: 0.7;
  transition: opacity 0.4s, height 0.4s;
}

.ws-module-card:hover {
  transform: translateY(-6px);
  border-color: var(--mod-accent);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.ws-module-card:hover::before {
  opacity: 0.18;
}

.ws-module-card:hover::after {
  opacity: 1;
  height: 4px;
}

.ws-module-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
}

.ws-module-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.75rem;
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(135deg, var(--mod-accent), var(--mod-accent-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.04em;
}

.ws-module-time {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.8rem;
  color: var(--text-muted);
  padding: 0.4rem 0.85rem;
  border: 1px solid rgba(124, 58, 237, 0.2);
  border-radius: 50px;
  letter-spacing: 0.5px;
}

.ws-module-title {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--text);
}

.ws-module-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.ws-module-objectives {
  padding: 1.25rem;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 14px;
  border: 1px solid rgba(124, 58, 237, 0.12);
  margin-bottom: 1.25rem;
}

.ws-objective-label {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--mod-accent);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.ws-module-objectives ul {
  list-style: none;
  padding: 0;
}

.ws-module-objectives li {
  color: var(--text);
  font-size: 0.9rem;
  line-height: 1.6;
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.5rem;
}

.ws-module-objectives li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mod-accent);
  box-shadow: 0 0 8px var(--mod-accent);
}

.ws-module-objectives li:last-child {
  margin-bottom: 0;
}

.ws-module-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* ---- Work Samples ---- */
.ws-samples-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.ws-sample {
  background: var(--gradient-card);
  border: 1px solid rgba(124, 58, 237, 0.12);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s;
}

.ws-sample:hover {
  transform: translateY(-4px);
  border-color: rgba(124, 58, 237, 0.35);
  box-shadow: 0 16px 40px rgba(124, 58, 237, 0.2);
}

.ws-sample-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  display: block;
  text-decoration: none;
  color: inherit;
}

.ws-sample-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background:
    linear-gradient(135deg, rgba(124, 58, 237, 0.18), rgba(236, 72, 153, 0.12)),
    repeating-linear-gradient(45deg,
      rgba(255, 255, 255, 0.02) 0,
      rgba(255, 255, 255, 0.02) 12px,
      transparent 12px,
      transparent 24px);
  color: var(--text-muted);
}

.ws-sample-icon {
  font-size: 3rem;
  opacity: 0.8;
}

.ws-sample-placeholder-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary-light);
  font-weight: 600;
}

.ws-sample-type {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  padding: 0.3rem 0.75rem;
  background: rgba(15, 10, 30, 0.7);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(167, 139, 250, 0.3);
  border-radius: 8px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--primary-light);
  z-index: 2;
}

.ws-sample-play {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.95);
  color: #111;
  font-size: 1.3rem;
  padding-left: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s, box-shadow 0.3s;
}

.ws-sample-play:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 40px rgba(124, 58, 237, 0.5);
}

.ws-sample-video .ws-sample-placeholder {
  background:
    linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(124, 58, 237, 0.2)),
    radial-gradient(circle at center, rgba(236, 72, 153, 0.15), transparent 70%);
}

.ws-sample-link .ws-sample-placeholder {
  background: #0d0820;
  padding: 0;
  align-items: stretch;
  justify-content: stretch;
}

.ws-sample-link-preview {
  display: flex;
  flex-direction: column;
}

.ws-link-browser {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(124, 58, 237, 0.15);
}

.ws-link-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
}

.ws-link-url {
  flex: 1;
  margin-left: 0.75rem;
  padding: 0.35rem 0.75rem;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  color: var(--text-muted);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ws-link-preview-body {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.15), rgba(59, 130, 246, 0.1));
}

.ws-link-favicon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 1.4rem;
  flex-shrink: 0;
}

.ws-link-preview-body strong {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 0.15rem;
}

.ws-link-preview-body small {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.ws-sample-body {
  padding: 1.25rem 1.5rem 1.5rem;
}

.ws-sample-body h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}

.ws-sample-body p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.6;
  margin: 0;
}

/* ---- Tier Callout (Free vs Paid) ---- */
.ws-tier-callout {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: stretch;
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto 3rem;
}

.ws-tier {
  padding: 1.5rem 1.75rem;
  border-radius: 18px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  text-align: left;
}

.ws-tier-free {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(160, 155, 181, 0.25);
}

.ws-tier-paid {
  background: linear-gradient(145deg, rgba(124, 58, 237, 0.18), rgba(236, 72, 153, 0.14));
  border: 1px solid rgba(236, 72, 153, 0.35);
  box-shadow: 0 12px 40px rgba(124, 58, 237, 0.2);
}

.ws-tier-paid::before {
  content: '';
  position: absolute;
  top: -60%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(236, 72, 153, 0.25), transparent 65%);
  z-index: -1;
}

.ws-tier-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.ws-tier-head strong {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
  color: var(--text);
}

.ws-tier-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.25rem 0.7rem;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  background: rgba(160, 155, 181, 0.15);
  color: var(--text-muted);
  border: 1px solid rgba(160, 155, 181, 0.25);
}

.ws-tier-badge-paid {
  background: var(--gradient-cta);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 15px rgba(236, 72, 153, 0.35);
}

.ws-tier p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
  margin: 0;
}

.ws-tier-paid p {
  color: var(--text);
}

.ws-tier-vs {
  align-self: center;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0.4rem 0.85rem;
  border: 1px solid rgba(124, 58, 237, 0.2);
  border-radius: 50px;
  background: rgba(15, 10, 30, 0.5);
}

@media (max-width: 700px) {
  .ws-tier-callout {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .ws-tier-vs {
    justify-self: center;
  }
}

/* ---- Video Sub-Heading (within showcase) ---- */
.ws-video-subhead {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  margin: 0.5rem 0 1.5rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(124, 58, 237, 0.18);
  border-radius: 14px;
}

.ws-video-subhead + .ws-video-grid {
  margin-bottom: 3rem;
}

.ws-video-subhead-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(124, 58, 237, 0.15);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.ws-video-subhead-text {
  flex: 1;
  text-align: left;
}

.ws-video-subhead h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
  margin: 0 0 0.2rem;
  color: var(--text);
}

.ws-video-subhead p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

@media (max-width: 600px) {
  .ws-video-subhead {
    flex-wrap: wrap;
    gap: 0.75rem;
    padding: 1rem 1.1rem;
  }

  .ws-video-subhead h3 { font-size: 1rem; }
  .ws-video-subhead p { font-size: 0.8rem; }
}

/* ---- Thematic Video Showcase ---- */
.ws-video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.ws-video-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: var(--gradient-card);
  border: 1px solid rgba(124, 58, 237, 0.12);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s;
}

.ws-video-card:hover {
  transform: translateY(-6px);
  border-color: rgba(236, 72, 153, 0.4);
  box-shadow: 0 18px 50px rgba(124, 58, 237, 0.25);
}

.ws-video-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #0b0618;
}

.ws-video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}

.ws-video-card:hover .ws-video-thumb img {
  transform: scale(1.06);
}

.ws-video-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(15, 10, 30, 0.7) 100%);
  pointer-events: none;
}

.ws-video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: #111;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 4px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
  z-index: 2;
}

.ws-video-card:hover .ws-video-play {
  transform: translate(-50%, -50%) scale(1.12);
  background: #fff;
  box-shadow: 0 14px 40px rgba(236, 72, 153, 0.5);
}

.ws-video-badge {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  padding: 0.3rem 0.75rem;
  background: rgba(15, 10, 30, 0.75);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(236, 72, 153, 0.35);
  border-radius: 8px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #f472b6;
  z-index: 2;
}

.ws-video-badge-pro {
  background: var(--gradient-cta);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 18px rgba(236, 72, 153, 0.4);
}

.ws-video-badge-free {
  background: rgba(34, 197, 94, 0.15);
  color: #4ade80;
  border-color: rgba(34, 197, 94, 0.35);
}

.ws-video-meta {
  padding: 1.1rem 1.3rem 1.4rem;
}

/* ---- AI Image Gallery ---- */
.ws-image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.ws-image-card {
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ws-image-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.ws-image-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
}

.ws-image-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.ws-image-card:hover .ws-image-thumb img {
  transform: scale(1.04);
}

.ws-image-placeholder {
  display: none;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: rgba(255,255,255,0.3);
  font-size: 0.75rem;
  text-align: center;
  padding: 1rem;
  flex-direction: column;
  gap: 0.4rem;
}

.ws-image-placeholder code {
  background: rgba(255,255,255,0.08);
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
  font-family: monospace;
}

.ws-image-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.28rem 0.7rem;
  background: rgba(15, 10, 30, 0.8);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(6, 182, 212, 0.4);
  border-radius: 8px;
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #22d3ee;
  z-index: 2;
}

.ws-image-meta {
  padding: 1rem 1.2rem 1.3rem;
}

.ws-image-meta h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 0.3rem;
}

.ws-image-meta p {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

/* ---- Live Sample App (Module 4) ---- */
.ws-app-bg {
  background: linear-gradient(180deg, var(--dark) 0%, #0c0719 50%, var(--dark) 100%);
  position: relative;
}

.ws-app-showcase {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 2.5rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  text-align: left;
}

.ws-app-preview {
  display: block;
  text-decoration: none;
  color: inherit;
  background: #0d0820;
  border: 1px solid rgba(124, 58, 237, 0.25);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.ws-app-preview:hover {
  transform: translateY(-4px);
  border-color: rgba(236, 72, 153, 0.5);
  box-shadow: 0 28px 70px rgba(124, 58, 237, 0.3);
}

.ws-app-preview-body {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 2rem 1.75rem;
  background:
    linear-gradient(135deg, rgba(124, 58, 237, 0.15), rgba(236, 72, 153, 0.1)),
    radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.12), transparent 60%);
}

.ws-app-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 1.6rem;
  flex-shrink: 0;
}

.ws-app-preview-text {
  flex: 1;
  min-width: 0;
}

.ws-app-preview-text strong {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.15rem;
  color: var(--text);
  margin-bottom: 0.2rem;
}

.ws-app-preview-text small {
  display: block;
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.ws-app-launch {
  flex-shrink: 0;
  padding: 0.45rem 0.9rem;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: var(--gradient-cta);
  color: #fff;
  box-shadow: 0 4px 15px rgba(236, 72, 153, 0.35);
}

.ws-app-details h3 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin: 0.75rem 0 1rem;
  line-height: 1.2;
}

.ws-app-details > p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.ws-app-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.9rem;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: rgba(124, 58, 237, 0.15);
  border: 1px solid rgba(124, 58, 237, 0.35);
  color: var(--primary-light);
}

.ws-app-steps {
  padding: 1.25rem 1.5rem;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(124, 58, 237, 0.15);
  border-radius: 14px;
  margin-bottom: 1.75rem;
}

.ws-app-steps-label {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--primary-light);
  font-weight: 600;
  margin-bottom: 0.85rem;
}

.ws-app-steps ol {
  list-style: none;
  counter-reset: appstep;
  padding: 0;
  margin: 0;
}

.ws-app-steps li {
  counter-increment: appstep;
  padding: 0.45rem 0 0.45rem 2.25rem;
  position: relative;
  color: var(--text);
  font-size: 0.92rem;
  line-height: 1.55;
}

.ws-app-steps li::before {
  content: counter(appstep);
  position: absolute;
  left: 0;
  top: 0.4rem;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--gradient-cta);
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 900px) {
  .ws-app-showcase {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .ws-app-preview-body {
    padding: 1.5rem 1.25rem;
  }

  .ws-app-launch {
    display: none;
  }
}

.ws-video-meta h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
  color: var(--text);
}

.ws-video-meta p {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.55;
  margin: 0;
}

/* ---- Who It's For / Takeaways ---- */
.ws-for-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 3rem;
  align-items: start;
}

.ws-for h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin: 0.75rem 0 1.5rem;
}

.ws-for h2 em {
  font-style: normal;
  background: var(--gradient-cta);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ws-for-list {
  list-style: none;
  padding: 0;
}

.ws-for-list li {
  color: var(--text-muted);
  padding: 1rem 0;
  border-bottom: 1px solid rgba(124, 58, 237, 0.1);
  font-size: 0.95rem;
  line-height: 1.6;
}

.ws-for-list li:last-child { border-bottom: none; }

.ws-for-list strong {
  color: var(--text);
  font-weight: 600;
  display: block;
  margin-bottom: 0.15rem;
  font-family: 'Space Grotesk', sans-serif;
}

.ws-takeaway-card {
  padding: 2rem;
  background: var(--gradient-card);
  border: 1px solid rgba(124, 58, 237, 0.2);
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.ws-takeaway-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 70%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(236, 72, 153, 0.18), transparent 65%);
  z-index: -1;
}

.ws-takeaway-card h3 {
  font-size: 1.4rem;
  margin: 0.75rem 0 1.5rem;
}

.ws-takeaway-list {
  list-style: none;
  padding: 0;
}

.ws-takeaway-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.6rem 0;
  color: var(--text);
  font-size: 0.95rem;
}

.ws-takeaway-list span {
  color: #4ade80;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

/* ---- Reserve Banner ---- */
.ws-reserve-banner {
  max-width: 1200px;
  margin: 0 auto 5rem;
  padding: 0 2rem;
}

.ws-reserve-inner {
  background: var(--gradient-cta);
  border-radius: 28px;
  padding: clamp(2.5rem, 5vw, 4rem);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 3rem;
  align-items: center;
}

.ws-reserve-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.25), transparent 55%),
    radial-gradient(circle at 80% 90%, rgba(0, 0, 0, 0.25), transparent 55%);
  z-index: -1;
}

.ws-reserve-inner::after {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  z-index: -1;
}

.ws-reserve-label {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #fff;
  margin-bottom: 1rem;
  backdrop-filter: blur(10px);
}

.ws-reserve-label-featured {
  background: #fff;
  color: #7c3aed;
  font-size: 0.95rem;
  padding: 0.55rem 1.25rem;
  letter-spacing: 1.5px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
  animation: wsPulseDate 2.2s ease-in-out infinite;
}

@keyframes wsPulseDate {
  0%, 100% { transform: scale(1); box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18); }
  50% { transform: scale(1.04); box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28); }
}

.ws-meta-chip-featured {
  background: linear-gradient(135deg, rgba(167, 139, 250, 0.28), rgba(244, 114, 182, 0.22));
  border-color: rgba(167, 139, 250, 0.7);
  box-shadow: 0 10px 30px rgba(124, 58, 237, 0.25);
}

.ws-meta-chip-featured .ws-meta-chip-label {
  color: #fbbf24;
  font-weight: 700;
}

.ws-meta-chip-featured strong {
  font-size: 1.1rem;
  background: linear-gradient(135deg, #fff, #f9a8d4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ws-hero-badge-date strong {
  color: #fff;
  font-weight: 700;
  letter-spacing: 1.5px;
}

.ws-reserve-text h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  margin-bottom: 0.75rem;
  color: #fff;
}

.ws-reserve-text p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 500px;
}

.ws-reserve-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

.ws-reserve-secondary {
  display: inline-block;
  margin-top: 1.25rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  padding-bottom: 2px;
  transition: all 0.3s;
}

.ws-reserve-secondary:hover {
  color: #fff;
  border-color: #fff;
}

/* ---- Partner Contact Card ---- */
.ws-partner-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 22px;
  padding: 1.75rem;
  color: #fff;
  position: relative;
  z-index: 1;
}

.ws-partner-logo {
  background: #fff;
  border-radius: 14px;
  padding: 1rem 1.25rem;
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.ws-partner-logo img {
  max-width: 100%;
  max-height: 64px;
  object-fit: contain;
  display: block;
}

.ws-partner-logo-fallback {
  display: none;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #0f0a1e;
  letter-spacing: 3px;
}

.ws-partner-tagline {
  display: block;
  text-align: center;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.4rem;
  font-weight: 600;
}

.ws-partner-host {
  text-align: center;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 1.25rem;
}

.ws-partner-host strong {
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
}

.ws-partner-contact {
  padding: 1.1rem 1.25rem;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  margin-bottom: 1.25rem;
}

.ws-partner-name {
  padding-bottom: 0.75rem;
  margin-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.ws-partner-name-label {
  display: block;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.ws-partner-name strong {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.15rem;
  color: #fff;
  font-weight: 700;
}

.ws-partner-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.6rem 0;
  text-decoration: none;
  color: #fff;
  transition: opacity 0.3s;
}

.ws-partner-item:hover {
  opacity: 0.8;
}

.ws-partner-item-icon {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  font-size: 0.95rem;
}

.ws-partner-item small {
  display: block;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
  margin-bottom: 0.15rem;
}

.ws-partner-item strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.4;
  color: #fff;
}

.ws-partner-cta {
  display: flex;
  width: 100%;
  justify-content: center;
}

/* ---- Sticky Mobile CTA ---- */
.ws-sticky-cta {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 1.25rem;
  z-index: 50;
  display: none;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 1.5rem;
  background: var(--gradient-cta);
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 0 10px 40px rgba(124, 58, 237, 0.5);
}

.ws-sticky-cta-arrow {
  transition: transform 0.3s;
}

.ws-sticky-cta:hover .ws-sticky-cta-arrow {
  transform: translateX(4px);
}

/* ---- Workshop Responsive ---- */
@media (max-width: 960px) {
  .ws-modules-grid {
    grid-template-columns: 1fr;
  }

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

  .ws-for-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .ws-reserve-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .ws-outcomes-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem 2rem;
  }

  .ws-outcome + .ws-outcome::before { display: none; }
}

@media (max-width: 768px) {
  .workshop-page {
    padding-bottom: 90px;
  }

  .ws-hero {
    padding: 8rem 1.25rem 4rem;
  }

  .ws-hero-meta {
    flex-direction: column;
    align-items: stretch;
  }

  .ws-meta-chip {
    justify-content: flex-start;
  }

  .ws-hero-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .ws-hero-cta .btn {
    width: 100%;
    justify-content: center;
  }

  .ws-timeline-item {
    grid-template-columns: 90px 24px 1fr;
    gap: 0.75rem;
  }

  .ws-timeline-line {
    left: calc(90px + 12px - 1px);
  }

  .ws-timeline-time {
    font-size: 0.78rem;
  }

  .ws-timeline-dot {
    width: 14px;
    height: 14px;
  }

  .ws-samples-grid {
    grid-template-columns: 1fr;
  }

  .ws-sticky-cta {
    display: inline-flex;
  }

  .ws-reserve-banner {
    margin-bottom: 3rem;
    padding: 0 1rem;
  }

  .ws-reserve-inner {
    padding: 2.25rem 1.5rem;
    border-radius: 22px;
  }
}

@media (max-width: 480px) {
  .ws-module-card {
    padding: 1.5rem;
  }

  .ws-module-number {
    font-size: 2.25rem;
  }

  .ws-module-title {
    font-size: 1.25rem;
  }

  .ws-outcomes-inner {
    grid-template-columns: 1fr 1fr;
    padding: 2rem 1.25rem;
  }
}

/* ===== Video Lightbox Modal ===== */
.video-modal {
  position: fixed;
  inset: 0;
  background: rgba(6, 2, 22, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.video-modal.open {
  opacity: 1;
  pointer-events: auto;
}

.video-modal-frame {
  position: relative;
  width: 100%;
  max-width: 1100px;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(124, 58, 237, 0.35);
  transform: scale(0.96);
  transition: transform 0.3s ease;
}

.video-modal.portrait .video-modal-frame {
  aspect-ratio: 9 / 16;
  max-width: min(420px, 90vw);
  max-height: 90vh;
}

.video-modal.open .video-modal-frame {
  transform: scale(1);
}

.video-modal-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.video-modal-close {
  position: absolute;
  top: -14px;
  right: -14px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 0;
  background: linear-gradient(135deg, #7c3aed, #ec4899);
  color: #fff;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.4);
  transition: transform 0.2s ease;
  z-index: 2;
}

.video-modal-close:hover {
  transform: scale(1.08) rotate(90deg);
}

@media (max-width: 640px) {
  .video-modal-close {
    top: 8px;
    right: 8px;
  }
}

/* ===== Public Programmes ===== */
.programmes-states {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin-top: 3rem;
  text-align: left;
}

.state-group {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.state-heading {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(124, 58, 237, 0.2);
}

.state-heading h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  margin: 0;
  background: linear-gradient(135deg, #a78bfa, #f472b6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.state-pin {
  font-size: 1.4rem;
}

.programmes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 360px));
  gap: 1.5rem;
  justify-content: start;
}

.programme-card {
  display: flex;
  flex-direction: column;
  background: var(--gradient-card);
  border: 1px solid rgba(124, 58, 237, 0.15);
  border-radius: 22px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: all 0.35s ease;
  position: relative;
}

.programme-card:hover {
  transform: translateY(-6px);
  border-color: rgba(236, 72, 153, 0.45);
  box-shadow: 0 20px 50px rgba(124, 58, 237, 0.25);
}

.programme-card-media {
  position: relative;
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.4), rgba(236, 72, 153, 0.4));
  display: flex;
  align-items: center;
  justify-content: center;
}

.programme-card-icon {
  font-size: 4rem;
  filter: drop-shadow(0 4px 14px rgba(0, 0, 0, 0.35));
}

.programme-card-media--image {
  background: #0a0618;
}

.programme-card-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.programme-card:hover .programme-card-image {
  transform: scale(1.04);
}

.programme-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.programme-card-body {
  padding: 1.5rem 1.6rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  flex: 1;
}

.programme-card-body h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  margin: 0;
  color: #fff;
}

.programme-card-desc {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
  line-height: 1.5;
}

.programme-meta {
  list-style: none;
  padding: 0;
  margin: 0.4rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.programme-meta li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
}

.programme-meta-icon {
  font-size: 1rem;
}

.programme-card-cta {
  margin-top: auto;
  padding-top: 0.6rem;
  font-weight: 600;
  color: #f472b6;
  transition: transform 0.25s ease;
  display: inline-block;
}

.programme-card:hover .programme-card-cta {
  transform: translateX(4px);
}

@media (max-width: 640px) {
  .programmes-states {
    gap: 2rem;
  }
  .state-heading h3 {
    font-size: 1.35rem;
  }
}

/* ===== Hero Split (Hero with portrait) ===== */
.hero-split {
  text-align: left;
}

.hero-split-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  padding: 0 1rem;
}

.hero-content-left {
  max-width: none;
  text-align: left;
}

.hero-split .hero h1,
.hero-split h1 {
  text-align: left;
}

.hero-split p {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
  max-width: 560px;
}

.hero-buttons-left {
  justify-content: flex-start;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: 2rem;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
}

.hero-trust-item strong {
  font-family: 'Space Grotesk', sans-serif;
  background: var(--gradient-cta);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
  font-size: 1.05rem;
  margin-right: 0.3rem;
}

.hero-trust-divider {
  color: rgba(255, 255, 255, 0.25);
}

.hero-portrait {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.hero-portrait-frame {
  position: relative;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 4 / 5;
  border-radius: 28px;
  overflow: hidden;
  border: 2px solid rgba(124, 58, 237, 0.35);
  box-shadow: 0 30px 80px rgba(124, 58, 237, 0.4);
  background: var(--gradient-card);
}

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

.hero-portrait-glow {
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at 30% 20%, rgba(236, 72, 153, 0.45), transparent 60%);
  pointer-events: none;
  mix-blend-mode: screen;
}

.hero-portrait-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.5rem 1.1rem;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.35);
  border-radius: 999px;
  font-size: 0.85rem;
  color: #4ade80;
  font-weight: 500;
}

.hero-portrait-tag-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 10px #4ade80;
  animation: pulseDot 2s ease-in-out infinite;
}

@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.55; transform: scale(0.85); }
}

@media (max-width: 880px) {
  .hero-split-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }
  .hero-content-left,
  .hero-split p {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-buttons-left,
  .hero-trust {
    justify-content: center;
  }
  .hero-portrait {
    order: -1;
  }
  .hero-portrait-frame {
    max-width: 280px;
  }
}

/* ===== About photo (real image) ===== */
.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 1.4rem 0 0.5rem;
}

.skill-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.85rem;
  background: rgba(124, 58, 237, 0.15);
  border: 1px solid rgba(124, 58, 237, 0.3);
  border-radius: 999px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

/* ===== Brand (Pixels and Purpose) Section ===== */
.brand-bg {
  background: linear-gradient(180deg, rgba(124, 58, 237, 0.06), rgba(236, 72, 153, 0.03));
  border-top: 1px solid rgba(124, 58, 237, 0.1);
  border-bottom: 1px solid rgba(124, 58, 237, 0.1);
}

.brand-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: start;
}

.brand-text h2 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  margin: 0.5rem 0 0.75rem;
}

.brand-tagline {
  font-size: 1.15rem;
  color: var(--primary-light);
  font-style: italic;
  margin-bottom: 1.5rem !important;
}

.brand-text p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.brand-bullets {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.brand-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.5;
}

.brand-bullet-icon {
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.brand-portfolio {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.brand-portfolio-card {
  position: relative;
  background: var(--gradient-card);
  border: 1px solid rgba(124, 58, 237, 0.18);
  border-radius: 18px;
  padding: 1.5rem 1.4rem 1.6rem;
  transition: all 0.35s ease;
}

.brand-portfolio-card:hover {
  transform: translateY(-4px);
  border-color: rgba(236, 72, 153, 0.4);
  box-shadow: 0 16px 40px rgba(124, 58, 237, 0.2);
}

.brand-portfolio-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.brand-portfolio-card h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  color: #fff;
}

.brand-portfolio-card p {
  margin: 0 0 1rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  line-height: 1.5;
}

.brand-portfolio-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  background: rgba(236, 72, 153, 0.15);
  color: #f472b6;
  border: 1px solid rgba(236, 72, 153, 0.3);
}

@media (max-width: 880px) {
  .brand-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .brand-portfolio {
    grid-template-columns: 1fr;
  }
}

/* ===== CTA Banner extras ===== */
.cta-meta {
  margin-top: 1.25rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}
