/* ===== 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.92);
  backdrop-filter: blur(20px);
  -webkit-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.96);
}

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

/* ===== Nav Dropdown ===== */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  cursor: pointer;
}

.nav-caret {
  font-size: 0.65em;
  line-height: 1;
  opacity: 0.7;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-dropdown:hover .nav-caret,
.nav-dropdown:focus-within .nav-caret {
  transform: rotate(180deg);
  opacity: 1;
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, 8px);
  min-width: 220px;
  margin: 0;
  padding: 0.45rem;
  list-style: none;
  background: rgba(15, 10, 30, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 200;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 4px);
}

/* Hover bridge so the menu doesn't snap closed when crossing the gap */
.nav-dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 12px;
}

.nav-dropdown-menu li {
  list-style: none;
}

.nav-dropdown-menu a {
  display: block;
  padding: 0.6rem 0.85rem;
  border-radius: 8px;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  white-space: nowrap;
  transition: background 0.15s ease, color 0.15s ease;
}

.nav-links .nav-dropdown-menu a::after,
.nav-links .nav-dropdown-menu a:hover::after,
.nav-links .nav-dropdown-menu a.active::after { display: none !important; }

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a.active {
  background: rgba(124, 58, 237, 0.18);
  color: #fff;
}

/* Mobile: flatten the dropdown into the full-screen menu */
@media (max-width: 768px) {
  .nav-dropdown {
    width: 100%;
    text-align: center;
  }
  .nav-dropdown::after { display: none; }
  .nav-caret { display: none; }
  .nav-dropdown-menu {
    position: static;
    transform: none;
    background: transparent;
    border: none;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    padding: 0.4rem 0 0.8rem;
    min-width: 0;
  }
  .nav-links .nav-dropdown-menu a {
    text-align: center;
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.55);
    padding: 0.4rem 0.85rem;
  }
  .nav-links .nav-dropdown-menu a::before {
    content: "·  ";
    opacity: 0.5;
  }
}

.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;
  isolation: isolate;
}

.hero::before {
  content: '';
  position: absolute;
  /* start right below the fixed navbar (~97px) so there's no gap and no overlap */
  top: var(--nav-h, 97px);
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../assets/bryan-hero-banner.png') center top / 100% auto no-repeat;
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 55%, rgba(0,0,0,0.6) 80%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 0%, #000 55%, rgba(0,0,0,0.6) 80%, transparent 100%);
  z-index: -2;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(15,15,35,0.30) 0%, rgba(15,15,35,0.50) 45%, rgba(15,15,35,0.92) 100%);
  z-index: -1;
  pointer-events: none;
}

.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;
  overflow: hidden;
}

.page-header-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.page-header > :not(.page-header-particles) {
  position: relative;
  z-index: 1;
}

.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;
    /* Explicit width/height so the menu fills the viewport even when the
       parent .navbar's backdrop-filter creates a containing block. */
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    background: rgba(15, 10, 30, 0.98);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 1.25rem;
    padding: 5.5rem 1.5rem 2rem;
    overflow-y: auto;
    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;
}

.ws-module-toolset {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.ws-module-toolset-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.ws-toolset-label {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.ws-toolset-label-free {
  background: rgba(74, 222, 128, 0.12);
  color: #4ade80;
  border: 1px solid rgba(74, 222, 128, 0.3);
}

.ws-toolset-label-paid {
  background: rgba(236, 72, 153, 0.12);
  color: #f472b6;
  border: 1px solid rgba(236, 72, 153, 0.3);
}

.ws-toolset-label-edit {
  background: rgba(250, 204, 21, 0.12);
  color: #facc15;
  border: 1px solid rgba(250, 204, 21, 0.3);
}

.feature-tag-with-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding-left: 0.55rem;
}

.feature-tag-logo {
  width: 16px;
  height: 16px;
  object-fit: contain;
  border-radius: 4px;
  background: #fff;
}

/* ---- 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);
}

/* ===== Scroll-Scrub Showcase =====
   Wrapper is tall (300vh); inner is sticky so it pins while you scroll.
   JS maps scroll progress within this section -> video.currentTime.
*/
.scrub-section {
  position: relative;
  height: 300vh;
  background: #05060a;
  overflow: clip;
}

.scrub-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(ellipse at 50% 40%, #10121a 0%, #05060a 70%);
}

.scrub-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  background: #05060a;
  pointer-events: none;
}

.scrub-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  pointer-events: none;
  text-align: center;
}

/* Tight radial vignette behind text — keeps the rest of the frame clean */
.scrub-overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 35% at 50% 50%, rgba(5, 6, 10, 0.7) 0%, rgba(5, 6, 10, 0.35) 50%, rgba(5, 6, 10, 0) 100%),
    linear-gradient(180deg, rgba(5, 6, 10, 0.3) 0%, rgba(5, 6, 10, 0) 18%, rgba(5, 6, 10, 0) 78%, rgba(5, 6, 10, 0.55) 100%);
  z-index: -1;
}

.scrub-text {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(820px, 92%);
  transform: translate(-50%, calc(-50% + 18px));
  opacity: 0;
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.scrub-text.active {
  opacity: 1;
  transform: translate(-50%, -50%);
}

.scrub-text .section-label {
  display: inline-block;
  margin-bottom: 1rem;
  color: #fff;
  background: linear-gradient(135deg, rgba(236, 72, 153, 0.95), rgba(124, 58, 237, 0.95));
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 0.4rem 0.95rem;
  border-radius: 999px;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
  box-shadow: 0 6px 18px rgba(236, 72, 153, 0.3);
}

.scrub-text h2 {
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: clamp(1.9rem, 4.2vw, 3.4rem);
  line-height: 1.12;
  font-weight: 700;
  margin: 0;
  color: #fff;
  letter-spacing: -0.01em;
  /* Layered shadow = "outline" feel without an actual stroke */
  text-shadow:
    0 1px 0 rgba(0, 0, 0, 0.55),
    0 2px 8px rgba(0, 0, 0, 0.7),
    0 12px 40px rgba(0, 0, 0, 0.55);
}

.scrub-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  opacity: 0.9;
  animation: scrubHintPulse 2s ease-in-out infinite;
}

.scrub-hint-arrow {
  font-size: 1.1rem;
  line-height: 1;
}

@keyframes scrubHintPulse {
  0%, 100% { transform: translate(-50%, 0); opacity: 0.55; }
  50%      { transform: translate(-50%, 6px); opacity: 1; }
}

/* Respect reduced motion: let the video sit on its first frame, hide hint animation */
@media (prefers-reduced-motion: reduce) {
  .scrub-hint { animation: none; }
}

@media (max-width: 720px) {
  .scrub-section { height: 260vh; }
  .scrub-overlay { align-items: flex-start; }
  .scrub-text h2 { font-size: clamp(1.6rem, 6vw, 2.25rem); }
}

/* ===== Gallery — Kinetic Polaroid Wall ===== */
.gallery-section {
  padding: 1rem 4rem 6rem;
  max-width: 1600px;
  margin: 0 auto;
}

.gallery-wall {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  perspective: 1200px;
}

.gallery-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
  will-change: transform;
  transition: transform 0.08s linear;
}

.gallery-tile {
  position: relative;
  display: block;
  border-radius: 10px;
  overflow: visible;
  cursor: zoom-in;
  background: #fff;
  padding: 10px 10px 42px;
  box-shadow:
    0 2px 6px rgba(0, 0, 0, 0.35),
    0 12px 30px rgba(0, 0, 0, 0.45);
  transform: rotate(var(--tilt, 0deg));
  transform-origin: center 45%;
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1),
              box-shadow 0.35s ease,
              z-index 0s linear 0.35s;
  opacity: 0;
  translate: 0 20px;
}

.gallery-tile.in {
  opacity: 1;
  translate: 0 0;
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1),
              box-shadow 0.35s ease,
              opacity 0.6s ease,
              translate 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.gallery-tile img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 4px;
  background: #1a1030;
}

.gallery-tile::before,
.gallery-tile::after {
  content: "";
  position: absolute;
  width: 56px;
  height: 18px;
  background: rgba(255, 225, 120, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
  pointer-events: none;
}

.gallery-tile::before {
  top: -8px;
  left: 12px;
  transform: rotate(-8deg);
}

.gallery-tile::after {
  top: -8px;
  right: 12px;
  transform: rotate(9deg);
}

.gallery-tile:hover {
  transform: rotate(0deg) scale(1.04);
  box-shadow:
    0 4px 10px rgba(0, 0, 0, 0.4),
    0 22px 50px rgba(124, 58, 237, 0.45);
  z-index: 10;
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1),
              box-shadow 0.35s ease;
}

.gallery-tile:focus-visible {
  outline: 3px solid #a78bfa;
  outline-offset: 6px;
}

.gallery-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 3rem 1rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.gallery-empty code {
  background: rgba(124, 58, 237, 0.18);
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.85em;
}

/* Lightbox */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(8, 4, 20, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
}

.gallery-lightbox.open {
  display: flex;
}

.gallery-lightbox-stage {
  position: relative;
  max-width: min(1200px, 92vw);
  max-height: 82vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-lightbox-stage img {
  max-width: 100%;
  max-height: 82vh;
  border-radius: 10px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
  display: block;
}

.gallery-close,
.gallery-prev,
.gallery-next {
  position: absolute;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  cursor: pointer;
  font-size: 1.5rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
  z-index: 2;
}

.gallery-close {
  top: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.8rem;
}

.gallery-prev,
.gallery-next {
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  font-size: 2rem;
}

.gallery-prev { left: 1.5rem; }
.gallery-next { right: 1.5rem; }

.gallery-close:hover,
.gallery-prev:hover,
.gallery-next:hover {
  background: rgba(124, 58, 237, 0.4);
}

.gallery-prev:hover,
.gallery-next:hover {
  transform: translateY(-50%) scale(1.1);
}

.gallery-counter {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.08);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

/* Instagram section */
.instagram-section {
  padding: 4rem 2rem 6rem;
  max-width: 1400px;
  margin: 0 auto;
}

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

.instagram-header h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin: 0.6rem 0 1rem;
  color: var(--text);
}

.instagram-header p {
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 1.5rem;
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
  align-items: start;
}

.instagram-grid blockquote.instagram-media {
  margin: 0 auto !important;
  min-width: 260px !important;
  max-width: 100% !important;
}

/* Responsive */
@media (max-width: 1024px) {
  .gallery-section { padding: 1rem 2rem 4rem; }
}

@media (max-width: 720px) {
  .gallery-section { padding: 0.5rem 1rem 3rem; }
  .gallery-wall { gap: 12px; }
  .gallery-column { gap: 12px; }
  .gallery-tile { padding: 8px 8px 32px; }
  .gallery-tile::before,
  .gallery-tile::after { width: 40px; height: 14px; }
  .gallery-prev, .gallery-next { width: 42px; height: 42px; font-size: 1.6rem; }
  .gallery-close { width: 40px; height: 40px; }
  .gallery-lightbox { padding: 3rem 0.5rem; }
  .instagram-section { padding: 3rem 1rem 4rem; }
}

@media (prefers-reduced-motion: reduce) {
  .gallery-tile { transform: none !important; opacity: 1; translate: 0 0; }
  .gallery-column { transition: none; }
}

/* ===== Resource (Downloads) Modal ===== */
.resource-modal {
  position: fixed;
  inset: 0;
  background: rgba(8, 4, 20, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
}

.resource-modal.open { display: flex; }

.resource-modal-inner {
  background: rgba(20, 12, 40, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  max-width: 640px;
  width: 100%;
  max-height: 82vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
  animation: resource-pop 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
}

@keyframes resource-pop {
  from { opacity: 0; transform: translateY(12px) scale(0.98); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.resource-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.resource-modal-header h3 {
  margin: 0;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.2rem;
  color: var(--text);
}

.resource-modal-close {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.resource-modal-close:hover { background: rgba(124, 58, 237, 0.4); }

.resource-modal-body {
  padding: 1rem 1.5rem 1.5rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.resource-card {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.85rem 1rem;
  background: rgba(124, 58, 237, 0.08);
  border: 1px solid rgba(124, 58, 237, 0.22);
  border-radius: 10px;
  text-decoration: none;
  color: var(--text);
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.resource-card:hover {
  background: rgba(124, 58, 237, 0.18);
  border-color: rgba(167, 139, 250, 0.5);
  transform: translateY(-1px);
}

.resource-icon {
  font-size: 1.7rem;
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 8px;
}

.resource-meta {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.resource-title {
  font-weight: 600;
  font-size: 0.98rem;
  color: #fff;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.resource-sub {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.resource-action {
  color: var(--primary-light);
  font-size: 0.88rem;
  font-weight: 600;
  white-space: nowrap;
  padding-left: 0.5rem;
}

.resource-empty {
  text-align: center;
  padding: 2rem 1rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.resource-filters-host {
  padding: 0.9rem 1.5rem 0.4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.resource-filters-host:empty {
  display: none;
}

.resource-search {
  position: relative;
  display: flex;
  align-items: center;
}

.resource-search-icon {
  position: absolute;
  left: 0.85rem;
  font-size: 0.95rem;
  opacity: 0.6;
  pointer-events: none;
}

.resource-search-input {
  width: 100%;
  padding: 0.55rem 0.9rem 0.55rem 2.3rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  color: var(--text);
  font-size: 0.92rem;
  font-family: inherit;
  transition: border-color 0.2s, background 0.2s;
}

.resource-search-input::placeholder {
  color: var(--text-muted);
}

.resource-search-input:focus {
  outline: none;
  border-color: rgba(167, 139, 250, 0.55);
  background: rgba(124, 58, 237, 0.1);
}

.resource-filter-row {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.resource-filter-label {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  min-width: 56px;
  user-select: none;
  -webkit-user-select: none;
}

.resource-filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  flex: 1;
}

.resource-chip {
  padding: 0.3rem 0.75rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: var(--text-muted);
  font-size: 0.82rem;
  font-family: inherit;
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
  -webkit-tap-highlight-color: transparent;
  transition: background 0.18s, border-color 0.18s, color 0.18s;
}

.resource-chip:hover {
  background: rgba(124, 58, 237, 0.14);
  color: var(--text);
}

.resource-chip:focus { outline: none; }
.resource-chip:focus-visible {
  outline: 2px solid rgba(167, 139, 250, 0.7);
  outline-offset: 2px;
}

.resource-chip.active {
  background: rgba(124, 58, 237, 0.32);
  border-color: rgba(167, 139, 250, 0.6);
  color: #fff;
}

.resource-results-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding-top: 0.15rem;
  min-height: 1.4rem;
}

.resource-results-count {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.resource-clear {
  background: none;
  border: none;
  color: var(--primary-light);
  font-size: 0.8rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  padding: 0.2rem 0.4rem;
}

.resource-clear:hover {
  text-decoration: underline;
}

@media (max-width: 560px) {
  .resource-modal { padding: 0.5rem; align-items: stretch; }
  .resource-modal-inner { max-height: 94vh; border-radius: 12px; }
  .resource-title { white-space: normal; }
  .resource-filters-host { padding: 0.75rem 1rem 0.3rem; }
  .resource-filter-row { gap: 0.4rem; }
  .resource-filter-label { min-width: 100%; }
}

/* ============================================================
   Copilot Literacy Quiz + Admin Dashboard
   ============================================================ */

/* Shared page shell */
.quiz-page,
.admin-page {
  min-height: 100vh;
  background: var(--gradient-hero);
  padding: 7rem 1.5rem 4rem;
}

.quiz-shell {
  max-width: 720px;
  margin: 0 auto;
}

.admin-page {
  padding: 7rem 1.5rem 4rem;
}

.quiz-screen,
.admin-screen {
  display: none;
  animation: quizFade 0.35s ease;
}

.quiz-screen.active,
.admin-screen.active {
  display: block;
}

@keyframes quizFade {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.quiz-card {
  background: var(--gradient-card);
  border: 1px solid rgba(124, 58, 237, 0.18);
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.35);
}

.quiz-card--wide {
  padding: 2.25rem 2.5rem;
}

.quiz-card h1 {
  font-size: clamp(1.6rem, 3.2vw, 2.25rem);
  margin-bottom: 0.75rem;
}

.quiz-card h2 {
  font-size: 1.35rem;
  margin-bottom: 1.5rem;
  line-height: 1.4;
}

.quiz-subtitle {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.quiz-muted {
  color: var(--text-muted);
  text-align: center;
  margin-top: 1rem;
}

.quiz-session-chip {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem;
  background: rgba(124, 58, 237, 0.12);
  border: 1px solid rgba(124, 58, 237, 0.35);
  padding: 0.6rem 1rem;
  border-radius: 12px;
  margin-bottom: 1.5rem;
}

.quiz-session-label {
  text-transform: uppercase;
  font-size: 0.7rem;
  letter-spacing: 1.5px;
  color: var(--primary-light);
  font-weight: 600;
}

.quiz-session-company {
  font-weight: 600;
  color: var(--text);
}

.quiz-session-date {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.quiz-meta-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding: 0;
  margin: 0 0 1.75rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.quiz-meta-list li strong {
  color: var(--text);
}

/* Forms */
.quiz-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 0.5rem;
}

.quiz-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.quiz-field > span {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.quiz-field > span em {
  color: var(--secondary);
  font-style: normal;
  margin-left: 0.25rem;
}

.quiz-field-optional {
  color: var(--text-muted) !important;
  font-weight: 500 !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  font-size: 0.75rem;
}

.quiz-field input,
.quiz-field select {
  background: rgba(15, 10, 30, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 0.85rem 1rem;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.quiz-field input:focus,
.quiz-field select:focus {
  outline: none;
  border-color: var(--primary-light);
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.25);
}

.quiz-field--inline {
  flex-direction: row;
  align-items: center;
  gap: 0.75rem;
}

.quiz-field--inline > span {
  margin-bottom: 0;
}

.quiz-field--full {
  grid-column: 1 / -1;
}

.quiz-start-btn {
  width: 100%;
  justify-content: center;
  margin-top: 0.5rem;
}

.quiz-fineprint {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 1.5rem;
  line-height: 1.5;
}

.quiz-error-text {
  color: #f87171;
  font-size: 0.9rem;
  margin-top: 0.25rem;
  min-height: 1.25rem;
}

.quiz-error-label {
  color: #fbbf24 !important;
}

/* Progress bar */
.quiz-progress {
  margin-bottom: 1.75rem;
}

.quiz-progress-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.quiz-progress-track {
  height: 6px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50px;
  overflow: hidden;
}

.quiz-progress-fill {
  height: 100%;
  background: var(--gradient-cta);
  border-radius: 50px;
  transition: width 0.4s ease;
}

.quiz-question-text {
  font-size: 1.25rem;
  line-height: 1.45;
  color: var(--text);
  margin-bottom: 1.5rem;
}

/* Options */
.quiz-options {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.quiz-option {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.1rem;
  background: rgba(15, 10, 30, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 0.98rem;
  line-height: 1.5;
  text-align: left;
  color: var(--text);
  transition: all 0.2s;
  width: 100%;
}

.quiz-option:hover {
  border-color: rgba(124, 58, 237, 0.5);
  background: rgba(124, 58, 237, 0.08);
}

.quiz-option.selected {
  border-color: var(--primary-light);
  background: rgba(124, 58, 237, 0.18);
  box-shadow: 0 0 0 2px rgba(124, 58, 237, 0.3);
}

.quiz-option-letter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--primary-light);
  flex-shrink: 0;
  transition: all 0.2s;
}

.quiz-option.selected .quiz-option-letter {
  background: var(--gradient-cta);
  color: #fff;
}

.quiz-option-text {
  flex: 1;
}

.quiz-nav {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.quiz-nav--center {
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.quiz-nav .btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none !important;
}

/* Loader */
.quiz-loader {
  width: 48px;
  height: 48px;
  border: 3px solid rgba(255, 255, 255, 0.15);
  border-top-color: var(--primary-light);
  border-radius: 50%;
  margin: 1rem auto;
  animation: quizSpin 0.9s linear infinite;
}

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

/* Result */
.result-badge {
  display: inline-block;
  padding: 0.5rem 1.1rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 1rem;
}

.result-tier-basic {
  background: rgba(59, 130, 246, 0.18);
  color: #93c5fd;
  border: 1px solid rgba(59, 130, 246, 0.4);
}

.result-tier-intermediate {
  background: rgba(236, 72, 153, 0.18);
  color: #f9a8d4;
  border: 1px solid rgba(236, 72, 153, 0.4);
}

.result-tier-advanced {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.25), rgba(236, 72, 153, 0.25));
  color: #e9d5ff;
  border: 1px solid rgba(167, 139, 250, 0.5);
}

.result-score {
  margin-top: 1.5rem;
  padding: 1rem 1.25rem;
  background: rgba(15, 10, 30, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.result-score strong {
  color: var(--text);
}

/* ============================================================
   Admin Dashboard
   ============================================================ */

.admin-page .quiz-card {
  max-width: 480px;
  margin: 0 auto;
}

#screenDashboard {
  max-width: 1200px;
  margin: 0 auto;
}

.admin-topbar {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.admin-h1 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
}

.admin-user {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.admin-user .btn {
  padding: 0.55rem 1.25rem;
  font-size: 0.9rem;
}

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

/* Stats */
.admin-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.admin-stat {
  background: var(--gradient-card);
  border: 1px solid rgba(124, 58, 237, 0.15);
  border-radius: 16px;
  padding: 1.25rem;
  text-align: center;
}

.admin-stat-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
}

.admin-stat-label {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-top: 0.35rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

.admin-tier-basic        { color: #93c5fd; }
.admin-tier-intermediate { color: #f9a8d4; }
.admin-tier-advanced     { color: #c4b5fd; }

/* Tabs */
.admin-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-tab {
  background: none;
  border: none;
  padding: 0.85rem 1.25rem;
  color: var(--text-muted);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.admin-tab:hover {
  color: var(--text);
}

.admin-tab.active {
  color: var(--text);
  border-bottom-color: var(--primary-light);
}

.admin-panel {
  display: none;
}

.admin-panel.active {
  display: block;
}

/* Cards */
.admin-card {
  background: var(--gradient-card);
  border: 1px solid rgba(124, 58, 237, 0.15);
  border-radius: 20px;
  padding: 1.75rem;
  margin-bottom: 1.5rem;
}

.admin-card-title {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: var(--text);
}

.admin-card-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}

.admin-grid-form {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  align-items: end;
}

.admin-grid-form .btn {
  grid-column: 1 / -1;
  justify-self: start;
}

/* Tables */
.admin-table-wrap {
  overflow-x: auto;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.admin-table th,
.admin-table td {
  padding: 0.75rem 0.9rem;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  vertical-align: top;
}

.admin-table thead th {
  background: rgba(15, 10, 30, 0.6);
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.75rem;
}

.admin-table tbody tr:hover {
  background: rgba(124, 58, 237, 0.05);
}

.admin-empty {
  text-align: center;
  color: var(--text-muted);
  padding: 2rem !important;
}

.admin-nowrap {
  white-space: nowrap;
}

.admin-pill {
  display: inline-block;
  padding: 0.25rem 0.65rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.admin-pill--green { background: rgba(34, 197, 94, 0.18); color: #4ade80; }
.admin-pill--grey  { background: rgba(255, 255, 255, 0.08); color: var(--text-muted); }

.admin-pill--tier-basic        { background: rgba(59, 130, 246, 0.18); color: #93c5fd; }
.admin-pill--tier-intermediate { background: rgba(236, 72, 153, 0.18); color: #f9a8d4; }
.admin-pill--tier-advanced     { background: linear-gradient(135deg, rgba(124, 58, 237, 0.25), rgba(236, 72, 153, 0.25)); color: #e9d5ff; }

.admin-row-actions {
  display: flex;
  gap: 0.4rem;
  white-space: nowrap;
}

.admin-icon-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text);
  width: 32px;
  height: 32px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

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

.admin-icon-btn--danger:hover {
  background: rgba(239, 68, 68, 0.2);
  border-color: #f87171;
}

/* Toast */
.admin-toast {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translate(-50%, 120%);
  padding: 0.8rem 1.4rem;
  background: var(--dark-card);
  color: var(--text);
  border: 1px solid rgba(124, 58, 237, 0.35);
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  transition: transform 0.35s ease;
  z-index: 1000;
  max-width: 90vw;
}

.admin-toast.visible {
  transform: translate(-50%, 0);
}

.admin-toast--error {
  border-color: rgba(239, 68, 68, 0.5);
}

/* Mobile */
@media (max-width: 720px) {
  .quiz-page,
  .admin-page {
    padding-top: 6rem;
  }
  .quiz-card,
  .admin-card {
    padding: 1.5rem;
    border-radius: 18px;
  }
  .admin-grid-form {
    grid-template-columns: 1fr;
  }
  .quiz-nav .btn {
    flex: 1;
    justify-content: center;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .admin-topbar {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Quiz-card card for experience grid */
.experience-badge.badge-quiz {
  background: rgba(59, 130, 246, 0.15);
  color: #93c5fd;
  border: 1px solid rgba(59, 130, 246, 0.35);
}

/* Live sessions block on the Copilot Literacy Test card */
.live-sessions {
  background: rgba(15, 23, 42, 0.45);
  border: 1px solid rgba(124, 58, 237, 0.2);
  border-radius: 12px;
  padding: 0.9rem 1rem;
  margin-bottom: 1rem;
}
.live-sessions-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.6rem;
}
.live-sessions-title {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
}
.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #6b7280;
  box-shadow: 0 0 0 3px rgba(107, 114, 128, 0.18);
}
.live-sessions[data-state="live"] .live-dot {
  background: #4ade80;
  box-shadow: 0 0 0 3px rgba(74, 222, 128, 0.25);
  animation: live-pulse 1.8s ease-in-out infinite;
}
.live-sessions[data-state="live"] .live-sessions-title {
  color: #4ade80;
}
@keyframes live-pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(74, 222, 128, 0.25); }
  50%      { box-shadow: 0 0 0 6px rgba(74, 222, 128, 0.08); }
}
.live-sessions-status {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin: 0;
}
.live-sessions-body {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.session-pill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.55rem 0.8rem;
  background: rgba(124, 58, 237, 0.12);
  border: 1px solid rgba(124, 58, 237, 0.25);
  border-radius: 10px;
  font-size: 0.85rem;
  color: var(--text);
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.session-pill:hover {
  background: rgba(124, 58, 237, 0.2);
  border-color: rgba(124, 58, 237, 0.45);
  transform: translateY(-1px);
}
.session-pill-company {
  font-weight: 600;
}
.session-pill-date {
  color: var(--text-muted);
  font-size: 0.78rem;
}

/* ===== About CTA row (homepage brief about) ===== */
.about-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.6rem;
}

/* ===== Training Providers / HR Callout (homepage) ===== */
.trainer-callout {
  display: grid;
  grid-template-columns: 220px 1fr auto;
  gap: 2rem;
  align-items: center;
  padding: 2.25rem 2.5rem;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(124, 58, 237, 0.18) 0%, rgba(59, 130, 246, 0.14) 55%, rgba(167, 139, 250, 0.10) 100%),
    rgba(15, 14, 28, 0.55);
  border: 1px solid rgba(167, 139, 250, 0.28);
  text-decoration: none;
  color: inherit;
  transition: transform 0.4s cubic-bezier(.2,.8,.2,1), border-color 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.trainer-callout-aura {
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(420px circle at 12% 50%, rgba(124, 58, 237, 0.45), transparent 60%),
    radial-gradient(380px circle at 92% 20%, rgba(59, 130, 246, 0.35), transparent 60%);
  filter: blur(20px);
  opacity: 0.85;
  pointer-events: none;
  z-index: 0;
  transition: opacity 0.4s, transform 0.6s ease;
}
.trainer-callout-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: 32px 32px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
  pointer-events: none;
  z-index: 0;
  opacity: 0.6;
}
.trainer-callout:hover {
  transform: translateY(-4px);
  border-color: rgba(167, 139, 250, 0.55);
  box-shadow: 0 24px 60px rgba(124, 58, 237, 0.32), 0 0 0 1px rgba(167, 139, 250, 0.12) inset;
}
.trainer-callout:hover .trainer-callout-aura {
  opacity: 1;
  transform: scale(1.05);
}
.trainer-callout:hover .trainer-callout-btn {
  transform: translateY(-1px);
  box-shadow: 0 14px 36px rgba(124, 58, 237, 0.55), 0 0 0 1px rgba(255, 255, 255, 0.18) inset;
}
.trainer-callout:hover .trainer-callout-btn svg {
  transform: translateX(4px);
}
.trainer-callout:hover .trainer-doc-1 { transform: rotate(-2deg) translate(-4px, -2px); }
.trainer-callout:hover .trainer-doc-2 { transform: rotate(3deg) translate(2px, -3px); }
.trainer-callout:hover .trainer-doc-3 { transform: rotate(-6deg) translate(6px, 4px); }

/* Visual: stacked document cards */
.trainer-callout-visual {
  position: relative;
  width: 200px;
  height: 180px;
  z-index: 1;
  justify-self: center;
}
.trainer-doc {
  position: absolute;
  width: 130px;
  height: 160px;
  border-radius: 12px;
  padding: 14px 12px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(6px);
  transition: transform 0.5s cubic-bezier(.2,.8,.2,1);
}
.trainer-doc-1 {
  left: 6px;
  top: 10px;
  transform: rotate(-8deg);
  background: linear-gradient(160deg, rgba(124, 58, 237, 0.35), rgba(124, 58, 237, 0.08));
  border-color: rgba(167, 139, 250, 0.45);
  z-index: 3;
}
.trainer-doc-2 {
  left: 36px;
  top: 18px;
  transform: rotate(2deg);
  background: linear-gradient(160deg, rgba(59, 130, 246, 0.32), rgba(59, 130, 246, 0.08));
  border-color: rgba(96, 165, 250, 0.45);
  z-index: 2;
}
.trainer-doc-3 {
  left: 62px;
  top: 6px;
  transform: rotate(-4deg);
  background: linear-gradient(160deg, rgba(244, 114, 182, 0.28), rgba(244, 114, 182, 0.06));
  border-color: rgba(244, 114, 182, 0.4);
  z-index: 1;
}
.trainer-doc-tag {
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 3px 7px;
  border-radius: 999px;
  align-self: flex-start;
  margin-bottom: 4px;
}
.trainer-doc-line {
  height: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
}
.trainer-doc-line.w-40 { width: 40%; }
.trainer-doc-line.w-50 { width: 50%; }
.trainer-doc-line.w-60 { width: 60%; }
.trainer-doc-line.w-70 { width: 70%; }
.trainer-doc-line.w-80 { width: 80%; }
.trainer-doc-line.w-90 { width: 90%; }
.trainer-doc-bar {
  margin-top: auto;
  height: 28px;
  border-radius: 6px;
  background: linear-gradient(90deg, rgba(244, 114, 182, 0.45), rgba(167, 139, 250, 0.45));
}

.trainer-callout-text {
  position: relative;
  z-index: 1;
  min-width: 0;
}
.trainer-callout-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #c4b5fd;
  background: rgba(124, 58, 237, 0.18);
  border: 1px solid rgba(167, 139, 250, 0.3);
  padding: 0.32rem 0.7rem;
  border-radius: 999px;
  margin-bottom: 0.85rem;
}
.trainer-callout-pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #a78bfa;
  box-shadow: 0 0 0 0 rgba(167, 139, 250, 0.7);
  animation: trainerPulse 2s infinite;
}
@keyframes trainerPulse {
  0%   { box-shadow: 0 0 0 0 rgba(167, 139, 250, 0.7); }
  70%  { box-shadow: 0 0 0 8px rgba(167, 139, 250, 0); }
  100% { box-shadow: 0 0 0 0 rgba(167, 139, 250, 0); }
}
.trainer-callout-text h3 {
  font-size: clamp(1.35rem, 2.6vw, 1.7rem);
  margin: 0 0 0.55rem;
  line-height: 1.25;
  background: linear-gradient(135deg, #fff 0%, #e9d5ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.trainer-callout-text p {
  margin: 0 0 1rem;
  color: rgba(255, 255, 255, 0.82);
  max-width: 56ch;
  line-height: 1.55;
}
.trainer-callout-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}
.trainer-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.36rem 0.78rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(167, 139, 250, 0.28);
  border-radius: 999px;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.88);
  transition: background 0.25s, border-color 0.25s;
}
.trainer-callout:hover .trainer-tag {
  background: rgba(167, 139, 250, 0.12);
  border-color: rgba(167, 139, 250, 0.45);
}
.trainer-callout-cta {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.65rem;
  position: relative;
  z-index: 1;
  min-width: 240px;
}
.trainer-callout-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.95rem 1.4rem;
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  background: linear-gradient(135deg, #7c3aed 0%, #6366f1 50%, #3b82f6 100%);
  border-radius: 999px;
  box-shadow: 0 10px 28px rgba(124, 58, 237, 0.4);
  white-space: nowrap;
  transition: transform 0.25s, box-shadow 0.25s;
}
.trainer-callout-btn svg {
  transition: transform 0.25s;
}
.trainer-callout-meta {
  text-align: center;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.78rem;
  letter-spacing: 0.02em;
}

@media (max-width: 900px) {
  .trainer-callout {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 1.75rem 1.5rem;
    gap: 1.25rem;
  }
  .trainer-callout-visual {
    width: 200px;
    height: 150px;
    margin: 0 auto;
  }
  .trainer-doc { width: 110px; height: 130px; }
  .trainer-doc-1 { left: 12px; top: 8px; }
  .trainer-doc-2 { left: 42px; top: 12px; }
  .trainer-doc-3 { left: 70px; top: 4px; }
  .trainer-callout-text p { margin-left: auto; margin-right: auto; }
  .trainer-callout-tags { justify-content: center; }
  .trainer-callout-cta {
    min-width: 0;
    align-items: center;
  }
  .trainer-callout-btn {
    width: auto;
    align-self: center;
    box-shadow: 0 8px 22px rgba(124, 58, 237, 0.32);
  }
}
@media (max-width: 540px) {
  .trainer-callout {
    padding: 1.5rem 1.1rem;
    border-radius: 22px;
    gap: 1rem;
  }
  .trainer-callout-eyebrow {
    font-size: 0.66rem;
    padding: 0.26rem 0.6rem;
    letter-spacing: 0.1em;
  }
  .trainer-callout-text h3 {
    font-size: clamp(1.1rem, 5.2vw, 1.3rem);
    line-height: 1.3;
  }
  .trainer-callout-text p {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 0.85rem;
  }
  .trainer-tag {
    font-size: 0.72rem;
    padding: 0.3rem 0.65rem;
    gap: 0.3rem;
  }
  .trainer-callout-tags { gap: 0.35rem; }
  .trainer-callout-visual {
    width: 170px;
    height: 130px;
  }
  .trainer-doc { width: 96px; height: 116px; padding: 11px 10px; gap: 6px; }
  .trainer-doc-1 { left: 6px; top: 6px; }
  .trainer-doc-2 { left: 36px; top: 10px; }
  .trainer-doc-3 { left: 64px; top: 2px; }
  .trainer-doc-tag { font-size: 0.5rem; padding: 2px 5px; }
  .trainer-doc-line { height: 4px; }
  .trainer-doc-bar { height: 22px; }
  .trainer-callout-btn {
    padding: 0.78rem 1.5rem;
    font-size: 0.95rem;
  }
  .trainer-callout-meta {
    font-size: 0.74rem;
  }
  .trainer-callout-grid {
    background-size: 26px 26px;
  }
}

/* ===== Resources Banner (services.html) ===== */
.resources-banner {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.12), rgba(59, 130, 246, 0.1));
  border: 1px solid rgba(124, 58, 237, 0.25);
  border-radius: 28px;
  padding: 2.25rem 2rem;
}
.resources-banner-head {
  text-align: center;
  margin-bottom: 1.75rem;
}
.resources-banner-head h2 {
  font-size: clamp(1.6rem, 3.6vw, 2.1rem);
  margin: 0.4rem 0 0.6rem;
}
.resources-banner-head p {
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto;
}
.resources-banner-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 1.25rem;
}
.resources-tile {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem 1.1rem;
  align-items: start;
  padding: 1.4rem 1.4rem 1.2rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(124, 58, 237, 0.25);
  border-radius: 20px;
  text-align: left;
  cursor: pointer;
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
  color: inherit;
  font: inherit;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s, background 0.25s;
}
.resources-tile:hover {
  transform: translateY(-3px);
  border-color: rgba(124, 58, 237, 0.55);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 14px 40px rgba(124, 58, 237, 0.22);
}
.resources-tile-icon {
  font-size: 1.6rem;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(124, 58, 237, 0.18);
  border: 1px solid rgba(124, 58, 237, 0.35);
}
.resources-tile-body strong {
  display: block;
  font-size: 1.05rem;
  margin-bottom: 0.3rem;
}
.resources-tile-body p {
  margin: 0 0 0.55rem;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.5;
}
.resources-tile-meta {
  display: inline-block;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.02em;
}
.resources-tile-cta {
  grid-column: 2;
  margin-top: 0.4rem;
  font-weight: 600;
  color: var(--primary-light, #a78bfa);
  font-size: 0.92rem;
}
@media (max-width: 600px) {
  .resources-banner {
    padding: 1.5rem 1.1rem;
    border-radius: 22px;
  }
  .resources-banner-head { margin-bottom: 1.25rem; }
  .resources-banner-grid { gap: 0.9rem; }
  .resources-tile {
    padding: 1.1rem 1.1rem 1rem;
    border-radius: 18px;
    gap: 0.85rem 0.9rem;
  }
  .resources-tile-icon {
    width: 42px;
    height: 42px;
    font-size: 1.4rem;
    border-radius: 12px;
  }
  .resources-tile-body strong { font-size: 1rem; }
  .resources-tile-body p { font-size: 0.88rem; }
  .resources-tile-meta { font-size: 0.74rem; }
  .resources-tile-cta { font-size: 0.88rem; }
}

/* ===== QR Code Grid (about.html) ===== */
.qr-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.4rem;
  max-width: 1100px;
  margin: 2.5rem auto 0;
}
.qr-card {
  display: flex;
  flex-direction: column;
  background: var(--gradient-card, rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  position: relative;
}
.qr-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: var(--qr-accent, linear-gradient(135deg, #7c3aed, #ec4899));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
  opacity: 0.55;
  transition: opacity 0.3s;
}
.qr-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
}
.qr-card:hover::before {
  opacity: 1;
}
.qr-card-frame {
  background: #fff;
  padding: 1rem;
  display: grid;
  place-items: center;
  aspect-ratio: 1 / 1;
}
.qr-card-frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}
.qr-card-meta {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.95rem 1.1rem;
}
.qr-card-meta strong {
  display: block;
  font-size: 0.95rem;
}
.qr-card-meta small {
  display: block;
  color: var(--text-muted);
  font-size: 0.78rem;
}
.qr-card-meta > div {
  flex: 1;
  min-width: 0;
}
.qr-card-icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1.05rem;
  background: var(--qr-accent-bg, rgba(255, 255, 255, 0.06));
  color: #fff;
  flex-shrink: 0;
}
.qr-card-icon .social-icon {
  width: 20px;
  height: 20px;
}
.qr-card-icon--facebook {
  background: #1877f2;
  font-family: "Helvetica", "Arial", sans-serif;
  font-style: italic;
}
.qr-card-arrow {
  font-size: 1.1rem;
  color: var(--text-muted);
  transition: transform 0.25s, color 0.25s;
  flex-shrink: 0;
}
.qr-card:hover .qr-card-arrow {
  transform: translate(2px, -2px);
  color: #fff;
}
.qr-card--instagram {
  --qr-accent: linear-gradient(135deg, #f58529, #dd2a7b, #8134af);
  --qr-accent-bg: linear-gradient(135deg, #f58529, #dd2a7b, #8134af);
}
.qr-card--facebook {
  --qr-accent: linear-gradient(135deg, #1877f2, #4267b2);
}
.qr-card--linkedin {
  --qr-accent: linear-gradient(135deg, #0a66c2, #0077b5);
  --qr-accent-bg: #0a66c2;
}
.qr-card--tiktok {
  --qr-accent: linear-gradient(135deg, #25f4ee, #fe2c55);
  --qr-accent-bg: #111;
}

/* ===== HRDCorp Accreditation Badges ===== */
.cred-badges {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.4rem;
  padding: 0.55rem 0.9rem 0.55rem 1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
}
.cred-badges-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
}
.cred-badge {
  width: 44px;
  height: 44px;
  display: block;
  border-radius: 50%;
  background: #fff;
  padding: 3px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
  transition: transform 0.25s, box-shadow 0.25s;
  cursor: help;
}
.cred-badge:hover {
  transform: translateY(-2px) scale(1.06);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
}
.cred-badges-hero .cred-badge {
  width: 52px;
  height: 52px;
}
@media (max-width: 480px) {
  .cred-badges {
    padding: 0.45rem 0.7rem;
    gap: 0.5rem;
  }
  .cred-badge,
  .cred-badges-hero .cred-badge {
    width: 38px;
    height: 38px;
  }
}
