/* ============================================================
   RAJESH SANGLE TRADING ACADEMY — PREMIUM LIGHT THEME
   Skills Used: Awesome Design MD (Tokens), Impeccable (Craft), 
                UI/UX Pro Max (Typography)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..800;1,400..800&family=Inter:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  /* Canvas — Clean, crisp white and soft grays (Awesome Design MD) */
  --bg-canvas:      #fdfdfd;
  --bg-surface:     #ffffff;
  --bg-surface-alt: #f9fafb;
  
  /* Hairlines */
  --border-light:   rgba(0, 0, 0, 0.06);
  --border-strong:  rgba(0, 0, 0, 0.12);

  /* Accents — Institutional Slate & Trust Blue */
  --accent-slate:   #0f172a;
  --accent-blue:    #2563eb;
  --accent-blue-bg: rgba(37, 99, 235, 0.08);

  /* Ink — High contrast readability (Impeccable) */
  --charcoal:       #0A1128; /* Rich, deep midnight navy */
  --ink:            #0A1128;
  --text-primary:   #0A1128;
  --text-secondary: #26365C; /* Rich blue-slate instead of dull grey */
  --text-muted:     #526B8C;
  --text-inverse:   #ffffff;

  /* Typography (UI/UX Pro Max) */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;
  --font-mono:    'JetBrains Mono', ui-monospace, monospace;

  /* Shadows (Stripe-inspired diffused shadows) */
  --shadow-sm:    0 1px 2px rgba(0,0,0,0.04);
  --shadow-md:    0 4px 12px rgba(0,0,0,0.05), 0 2px 4px rgba(0,0,0,0.03);
  --shadow-lg:    0 12px 32px rgba(0,0,0,0.06), 0 4px 12px rgba(0,0,0,0.03);
  --shadow-hover: 0 20px 48px rgba(0,0,0,0.08), 0 8px 16px rgba(0,0,0,0.04);

  --section-py:   120px;
  --content-max:  1280px;
}

/* Reset dark mode override */
[data-theme="dark"] {
  /* Force light theme for this redesign */
}

html { scroll-behavior: auto; } /* Lenis handles smoothness */
body {
  background-color: var(--bg-canvas);
  color: var(--text-secondary);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}

/* ── TYPOGRAPHY ─────────────────────────────────────────────── */
h1, h2, h3, .display-xl, .display-lg, .headline {
  font-family: var(--font-display);
  color: var(--text-primary);
  text-wrap: balance;
  margin: 0;
}

h1, .display-xl {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--charcoal); /* Catchy deep navy */
}
h1 em, .display-xl em {
  font-style: italic;
  color: var(--accent-blue);
}

h2, .display-lg {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 500;
  line-height: 1.15;
}
h2 em, .display-lg em { font-style: italic; color: var(--accent-blue); }

h3, .headline {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 600;
  font-family: var(--font-body); /* Sans-serif for subheadings */
  letter-spacing: -0.01em;
}

p, .body-lead {
  font-family: var(--font-body);
  line-height: 1.6;
}

/* ── NAVBAR ─────────────────────────────────────────────────── */
.navbar {
  background: rgba(255, 255, 255, 0.8) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  border-bottom: 1px solid var(--border-light) !important;
}
.navbar-logo .logo-mark {
  background: var(--accent-slate) !important;
  color: #fff !important;
  font-family: var(--font-display);
  font-weight: 600;
}
.logo-name { color: var(--text-primary) !important; }
.logo-sub  { color: var(--text-muted) !important; font-family: var(--font-mono); }
.nav-link  { color: var(--text-secondary) !important; }
.nav-link.active, .nav-link:hover { color: var(--accent-blue) !important; }

/* ── BUTTONS ────────────────────────────────────────────────── */
.btn-primary {
  background: var(--accent-slate) !important;
  color: var(--text-inverse) !important;
  border: none !important;
  box-shadow: var(--shadow-md);
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.2s ease;
}
.btn-primary:hover {
  background: var(--accent-blue) !important;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* ── HERO REDESIGN (Light Mode) ─────────────────────────────── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
  background: radial-gradient(circle at 50% 0%, rgba(37, 99, 235, 0.05), transparent 60%);
}

#hero canvas#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  z-index: -1;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  width: min(100% - 48px, var(--content-max));
  margin-inline: auto;
  z-index: 10;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-cards { display: none !important; }
}

.hero-content {
  max-width: 760px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border: 1px solid var(--border-strong);
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
  border-radius: 9999px;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 24px;
}

.hero-heading h1 {
  margin-bottom: 24px;
}

/* Word loop block */
.word-loop-wrap {
  display: inline-block;
  height: 1.05em;
  overflow: hidden;
  vertical-align: baseline;
  position: relative;
}
.word-loop {
  display: flex;
  flex-direction: column;
  animation: wordCycle 12s cubic-bezier(0.25, 1, 0.5, 1) infinite;
}
.word-loop span {
  display: block;
  height: 1.05em;
  line-height: 1.05;
  font-style: italic;
  font-weight: 500;
  color: var(--accent-blue);
}
@keyframes wordCycle {
  0%, 12%  { transform: translateY(0); }
  14%, 26% { transform: translateY(-1.05em); }
  28%, 40% { transform: translateY(-2.10em); }
  42%, 54% { transform: translateY(-3.15em); }
  56%, 68% { transform: translateY(-4.20em); }
  70%, 82% { transform: translateY(-5.25em); }
  84%, 100%{ transform: translateY(-6.30em); }
}

.hero-sub {
  font-size: clamp(1.1rem, 1.5vw, 1.25rem);
  color: var(--text-secondary);
  max-width: 60ch;
  margin: 0 auto 40px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
}
@media (max-width: 960px) {
  .hero-ctas { justify-content: center; }
}

/* Floating course preview cards */
.hero-cards {
  position: relative;
  display: grid;
  gap: 16px;
  align-content: center;
}
.hero-mini-card {
  position: relative;
  padding: 20px 24px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  transition: transform 600ms cubic-bezier(0.16,1,0.3,1);
}
.hero-mini-card:nth-child(1) { transform: translateX(-8%) rotate(-2deg); }
.hero-mini-card:nth-child(2) { transform: translateX(2%)   rotate(1deg); }
.hero-mini-card:nth-child(3) { transform: translateX(-4%)  rotate(-1deg); }

.mini-card-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.mini-card-badge {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 4px;
  font-weight: 600;
}
.badge-beginner    { background: #e0f2fe; color: #0284c7; }
.badge-advanced    { background: #fef3c7; color: #d97706; }
.badge-global, .badge-wealth { background: #fae8ff; color: #c026d3; }

.mini-card-price { color: var(--text-primary); font-weight: 600; font-size: 1.1rem; }
.mini-card-title { color: var(--text-primary); font-weight: 600; font-size: 1.05rem; margin-bottom: 4px; }
.mini-card-sub   { color: var(--text-secondary); font-size: 0.9rem; }

.hero-bg-fallback, .hero-mesh { display: none !important; }
.hero-trust { display: none !important; } /* Replaced by Bento below */

/* ── BENTO GRID (Why this academy) ───────────────────────── */
.bento-section {
  padding-block: var(--section-py);
  background: var(--bg-surface-alt);
  border-top: 1px solid var(--border-light);
}
.bento-head {
  width: min(100% - 48px, 1024px);
  margin: 0 auto 48px;
  text-align: center;
}
.bento-head h2 { margin-bottom: 16px; }
.bento-head p { 
  color: var(--text-secondary); 
  max-width: 60ch; 
  margin: 0 auto; 
  font-size: 1.1rem; 
}

.bento {
  width: min(100% - 48px, 1024px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(140px, auto);
  gap: 16px;
}

.bento-tile {
  position: relative;
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.4s ease;
  overflow: hidden;
  isolation: isolate;
}
.bento-tile:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: var(--accent-blue);
}

/* Virtual Animation (Spotlight Glow) */
.bento-tile::before {
  content: '';
  position: absolute;
  top: var(--my, 50%); left: var(--mx, 50%);
  transform: translate(-50%, -50%);
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 0;
}
.bento-tile:hover::before { opacity: 1; }
.bento-tile > * { position: relative; z-index: 1; }

.bento-tile .label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--accent-blue);
  margin-bottom: 16px;
  display: inline-block;
  font-weight: 600;
}
.bento-tile h3 { margin: 0 0 12px; }
.bento-tile p { color: var(--text-secondary); margin: 0; }

/* Sizes */
.t-experience { grid-column: span 8; grid-row: span 2; }
.t-students   { grid-column: span 4; grid-row: span 1; }
.t-courses    { grid-column: span 4; grid-row: span 1; }
.t-method     { grid-column: span 4; grid-row: span 2; }
.t-ticker     { grid-column: span 8; grid-row: span 1; }
.t-coach      { grid-column: span 8; grid-row: span 2; }
.t-bank       { grid-column: span 4; grid-row: span 2; }

@media (max-width: 900px) {
  .bento { grid-template-columns: repeat(6, 1fr); }
  .t-experience, .t-students, .t-courses, .t-method, .t-ticker, .t-coach, .t-bank {
    grid-column: span 6; grid-row: auto;
  }
}

.giant-number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 8px;
}
.giant-number .unit {
  font-family: var(--font-body);
  font-size: 0.35em;
  color: var(--text-muted);
  vertical-align: middle;
  margin-left: 8px;
}

/* Live ticker tile */
.ticker-row {
  display: flex;
  gap: 24px;
  align-items: center;
  font-family: var(--font-mono);
  margin-top: 16px;
  background: var(--bg-surface-alt);
  padding: 16px;
  border-radius: 12px;
  border: 1px solid var(--border-light);
}
.ticker-row .sym { color: var(--text-secondary); font-weight: 600; }
.ticker-row .px  { color: var(--text-primary); font-size: 1.2rem; font-weight: 600;}
.ticker-row .chg.up   { color: #10b981; }
.ticker-row .chg.down { color: #ef4444; }

/* Coach tile */
.coach-tile {
  background: linear-gradient(135deg, var(--bg-surface) 0%, var(--bg-surface-alt) 100%);
}
.coach-credits {
  display: flex; gap: 12px; margin-top: 24px; flex-wrap: wrap;
}
.coach-credits span {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  padding: 6px 12px;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  color: var(--text-secondary);
  background: #fff;
}

/* ── LEGACY GRAPH ANIMATION ── */
.legacy-graph-wrapper {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 120px;
  pointer-events: none;
  z-index: 0;
  mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%);
}
.legacy-graph {
  width: 100%; height: 100%;
  display: block;
}
.graph-line {
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
}
.bento-tile.is-visible .graph-line {
  animation: drawLine 2s cubic-bezier(0.2, 0.8, 0.2, 1) 0.3s forwards;
}
.graph-fill { opacity: 0; }
.bento-tile.is-visible .graph-fill {
  animation: fadeFill 2s cubic-bezier(0.2, 0.8, 0.2, 1) 0.6s forwards;
}
.candles rect {
  opacity: 0;
  transform-origin: bottom;
  transform: scaleY(0);
}
.bento-tile.is-visible .candles rect:nth-child(1) { animation: popCandle 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.8s forwards; }
.bento-tile.is-visible .candles rect:nth-child(2) { animation: popCandle 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) 1.1s forwards; }
.bento-tile.is-visible .candles rect:nth-child(3) { animation: popCandle 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) 1.4s forwards; }
.bento-tile.is-visible .candles rect:nth-child(4) { animation: popCandle 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) 1.7s forwards; }
.bento-tile.is-visible .candles rect:nth-child(5) { animation: popCandle 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) 2.0s forwards; }

.graph-pulse-dot { opacity: 0; }
.bento-tile.is-visible .graph-pulse-dot {
  animation: pulseDot 2.5s infinite 2.2s;
}

@keyframes drawLine { to { stroke-dashoffset: 0; } }
@keyframes fadeFill { to { opacity: 1; } }
@keyframes popCandle { to { opacity: 1; transform: scaleY(1); } }
@keyframes pulseDot {
  0% { transform: scale(0.8); opacity: 0; }
  20% { transform: scale(1); opacity: 1; }
  100% { transform: scale(3.5); opacity: 0; }
}

/* ── COURSES REDESIGN ───────────────────────────────────────── */
.courses-section {
  padding-block: var(--section-py);
  background: var(--bg-canvas);
}
.courses-footer { margin-top: 64px; text-align: center; }

/* ── WHO SHOULD JOIN (Audience Section) ───────────────────── */
.audience-section {
  position: relative;
  background: var(--bg-surface-alt);
  border-top: 1px solid var(--border-light);
  padding-block: clamp(80px, 10vw, 120px);
  overflow: hidden;
}
.audience-section .container {
  /* normal flow */
}
.audience-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: 24px;
}
@media (max-width: 900px) {
  .audience-grid { flex-direction: column; text-align: center; gap: 24px; padding-top: 40px; }
  .audience-col { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-bottom: 0; }
  .audience-pill { margin-bottom: 0 !important; }
}

.audience-highlight-text {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  line-height: 1.3;
  text-align: center;
  max-width: 700px;
  color: rgba(0, 0, 0, 0.15); /* Inactive state */
}
.audience-highlight-text span {
  /* JS controls active class */
  color: rgba(0, 0, 0, 0.15);
  transition: color 0.3s ease;
}
.audience-highlight-text span.active {
  color: #000 !important; /* Active state */
}

.audience-pill {
  display: inline-block;
  padding: 14px 28px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 99px;
  font-family: var(--font-mono);
  font-size: 1.05rem;
  color: var(--accent-slate);
  margin-bottom: 16px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
  font-weight: 600;
  white-space: nowrap;
}
.audience-pill:hover {
  background: var(--accent-blue);
  color: #ffffff;
  border-color: var(--accent-blue);
  transform: scale(1.05) !important;
}

/* Base tilts to make them look organic */
.pill-tilt-right { transform: rotate(3deg); }
.pill-tilt-left { transform: rotate(-3deg); }

.courses-section .section-header {
  text-align: center;
  margin-bottom: 64px;
}
.courses-grid {
  width: min(100% - 48px, var(--content-max));
  margin-inline: auto;
  display: grid !important;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.course-card {
  position: relative;
  display: flex !important;
  flex-direction: column;
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  opacity: 0;
  transform: translateY(20px);
}
.course-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.course-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: var(--border-strong);
}

.course-card:nth-child(n) { grid-column: span 1; }

@media (max-width: 900px) {
  .courses-grid { grid-template-columns: 1fr; }
  .course-card:nth-child(n) { grid-column: span 1; }
}

.card-hero-wrap {
  aspect-ratio: 1.4 / 1;
  overflow: hidden;
  background: #3b40fc; /* Premium vibrant blue */
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-illustration-svg {
  width: 100%; height: 100%;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.course-card:hover .card-illustration-svg { transform: scale(1.05) translateY(-4px); }
.card-hero-img { display: none; }

.card-content { padding: 32px; flex: 1; }
.card-title {
  font-family: var(--font-display);
  font-size: 1.25rem; font-weight: 700;
  color: var(--charcoal); margin-bottom: 12px;
}
.card-description { font-size: 0.9375rem; color: var(--ink-muted); line-height: 1.6; margin-bottom: 24px; }
.card-footer {
  margin-top: auto; padding-top: 16px;
  border-top: 1px solid var(--border-light);
  display: flex; align-items: center; justify-content: space-between;
}
.card-level {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 0.75rem; color: var(--ink-muted);
  text-transform: uppercase; letter-spacing: 0.05em;
}
.level-icon { display: flex; align-items: flex-end; gap: 2px; height: 14px; }
.level-bar { width: 4px; background: var(--border-strong); border-radius: 2px; }
.level-bar.active { background: var(--accent-blue); }
.card-price {
  font-family: var(--font-display); font-size: 1.125rem;
  font-weight: 800; color: var(--accent-blue);
}

/* ── REBUILT STICKY STACKING SCROLL EFFECT ── */
.philosophy-sticky-wrapper {
  height: auto !important;
}
.philosophy-steps {
  position: relative !important;
  top: auto !important;
  height: auto !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 120px !important; /* Distance between cards while scrolling */
  perspective: none !important;
  margin-top: 64px !important;
  padding-bottom: 200px !important;
}
.step-card, .step-card-1, .step-card-2, .step-card-3 {
  position: sticky !important;
  width: 100% !important;
  max-width: 640px !important;
  transform: none !important;
  opacity: 1 !important;
  background: #ffffff !important;
  border: 1px solid rgba(0,0,0,0.06) !important;
  border-radius: 32px !important;
  padding: 48px !important;
  box-shadow: 0 24px 60px -12px rgba(26,17,8,0.1) !important;
  margin-bottom: 0 !important;
  transition: transform 0.3s ease !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  overflow: hidden !important;
}

/* Premium Card Inner Styling */
.step-card::before {
  content: '' !important;
  position: absolute !important;
  top: 0 !important; left: 0 !important; right: 0 !important;
  height: 6px !important;
  background: linear-gradient(90deg, var(--accent-blue), #1e24c5) !important;
}
.step-number {
  font-family: var(--font-display) !important;
  font-size: 8rem !important;
  line-height: 0.8 !important;
  color: var(--accent-blue) !important;
  opacity: 0.08 !important;
  position: absolute !important;
  top: 40px !important;
  right: 40px !important;
  margin: 0 !important;
  pointer-events: none !important;
}
.step-icon {
  width: 64px !important;
  height: 64px !important;
  border-radius: 20px !important;
  background: linear-gradient(135deg, var(--accent-blue), #1e24c5) !important;
  color: #fff !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 28px !important;
  margin-bottom: 32px !important;
  box-shadow: 0 12px 24px rgba(59, 64, 252, 0.25) !important;
}
.step-title {
  font-family: var(--font-display) !important;
  font-size: 2rem !important;
  color: var(--charcoal) !important;
  margin-bottom: 16px !important;
  font-weight: 800 !important;
  letter-spacing: -0.02em !important;
}
.step-body {
  font-size: 1.1rem !important;
  color: var(--ink-muted) !important;
  line-height: 1.65 !important;
  max-width: 85% !important;
  margin: 0 !important;
}

/* Stacking offsets (40px gap between stacked cards) */
.step-card-1 {
  top: 120px !important;
  z-index: 1 !important;
}
.step-card-2 {
  top: 160px !important;
  z-index: 2 !important;
}
.step-card-3 {
  top: 200px !important;
  z-index: 3 !important;
}

@media (max-width: 900px) {
  .philosophy-steps { gap: 80px !important; }
  .step-card-1 { top: 100px !important; }
  .step-card-2 { top: 120px !important; }
  .step-card-3 { top: 140px !important; }
  .step-card, .step-card-1, .step-card-2, .step-card-3 { padding: 32px !important; }
  .step-number { font-size: 5rem !important; top: 24px !important; right: 24px !important; }
  .step-body { max-width: 100% !important; }
}

/* ── FORCE VISIBILITY FOR COACH SECTION (Bypass JS/Animations) ── */
.coach-section .reveal,
.coach-section .reveal-left,
.coach-section .reveal-right,
.coach-grid {
  opacity: 1 !important;
  transform: none !important;
  animation: none !important;
  visibility: visible !important;
}

/* ── NAVBAR FIXES ── */
.nav-link {
  text-decoration: none !important;
  color: var(--charcoal) !important;
  font-weight: 500 !important;
}
.nav-link.active {
  color: var(--accent-blue) !important;
}
.navbar-inner {
  box-sizing: border-box !important;
  padding-right: 24px !important;
}
.navbar.scrolled {
  max-width: 1200px !important;
}
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--text-primary);
  margin-bottom: 12px;
}
.card-description { color: var(--text-secondary); line-height: 1.6; }

.card-footer {
  padding: 24px 32px;
  border-top: 1px solid var(--border-light);
  display: flex; justify-content: space-between; align-items: center;
  background: var(--bg-surface-alt);
}
.card-price {
  font-family: var(--font-mono);
  color: var(--text-primary);
  font-weight: 600;
  font-size: 1.1rem;
}

/* ── SCROLL REVEAL (Taste Skill Motion) ────────────────────── */
.reveal, [data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1),
              transform 0.8s cubic-bezier(0.16,1,0.3,1);
}
.reveal.is-visible, [data-reveal].is-visible { opacity: 1; transform: translateY(0); }
.stagger > * { transition-delay: calc(var(--i, 0) * 80ms); }

@media (prefers-reduced-motion: reduce) {
  .reveal, [data-reveal], .course-card { opacity: 1; transform: none; transition: none; }
}

/* ── COACH BENTO CARD REDESIGN ────────────────────────────── */
.coach-section {
  padding-block: var(--section-py) !important;
  background: var(--bg-canvas) !important;
}
.coach-bento-card {
  background: var(--bg-surface-alt) !important;
  border-radius: 40px !important;
  padding: 80px !important;
  box-shadow: var(--shadow-md) !important;
  border: 1px solid var(--border-light) !important;
  overflow: hidden !important;
}
.coach-bento-card .coach-grid {
  display: grid !important;
  grid-template-columns: 1.15fr 0.85fr !important;
  gap: 80px !important;
  align-items: center !important;
}
.coach-pill {
  display: inline-block !important;
  padding: 8px 24px !important;
  border: 1px solid var(--border-strong) !important;
  border-radius: 40px !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  color: var(--text-primary) !important;
  margin-bottom: 24px !important;
}
.coach-bento-card .coach-role {
  font-family: var(--font-body) !important;
  font-size: 4rem !important;
  font-weight: 500 !important;
  line-height: 1.1 !important;
  letter-spacing: -0.04em !important;
  margin-bottom: 24px !important;
  color: var(--text-primary) !important;
}
.coach-bento-card .coach-text {
  font-size: 1.1rem !important;
  color: var(--text-muted) !important;
  margin-bottom: 48px !important;
  line-height: 1.6 !important;
  max-width: 90% !important;
}
.coach-actions {
  display: flex !important;
  gap: 16px !important;
  margin-bottom: 64px !important;
}
.coach-actions .btn {
  border-radius: 32px !important;
  padding-block: 16px !important;
}
.coach-divider {
  border: none !important;
  border-top: 1px solid var(--border-light) !important;
  margin-bottom: 48px !important;
  width: 100% !important;
}
.coach-creds-new {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 24px !important;
}
.cred-number-new {
  font-family: var(--font-body) !important;
  font-size: 4.5rem !important;
  font-weight: 500 !important;
  color: var(--text-primary) !important;
  line-height: 1 !important;
  margin-bottom: 12px !important;
  letter-spacing: -0.04em !important;
}
.cred-label-new {
  font-size: 1rem !important;
  color: var(--text-muted) !important;
  line-height: 1.4 !important;
}

/* Right column image */
.coach-bento-card .coach-photo-wrap {
  width: 100% !important;
  height: 100% !important;
  min-height: 640px !important;
  position: relative !important;
  border-radius: 24px !important;
  overflow: hidden !important;
}
.coach-bento-card .coach-photo {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center top !important;
}

/* Hide old elements */
.coach-photo-frame, .coach-bg-pattern, .coach-badge-float {
  display: none !important;
}

/* Responsive */
@media (max-width: 1024px) {
  .coach-bento-card .coach-grid {
    grid-template-columns: 1fr !important;
    gap: 48px !important;
  }
  .coach-bento-card {
    padding: 32px !important;
    border-radius: 24px !important;
  }
  .coach-bento-card .coach-photo-wrap {
    min-height: 480px !important;
    order: -1 !important; /* Move image to top on mobile */
  }
  .coach-creds-new {
    grid-template-columns: 1fr 1fr !important; /* Stack stats */
  }
  .coach-bento-card .coach-role {
    font-size: 2.8rem !important;
  }
  .cred-number-new {
    font-size: 3rem !important;
  }
}

/* ── TESTIMONIALS SECTION REDESIGN ────────────────────────────── */
.testimonials-section {
  background: var(--bg-canvas) !important;
  padding-block: 120px !important;
}

.testi-card {
  position: relative !important;
  background: var(--bg-surface-alt) !important;
  border: 1px solid var(--border-light) !important;
  border-radius: 32px !important;
  padding: 40px !important;
  min-width: 380px !important;
  box-shadow: var(--shadow-sm) !important;
  transition: transform 300ms ease, box-shadow 300ms ease !important;
  margin-top: 32px !important; /* space for the quote mark */
}

.testi-card:hover {
  transform: translateY(-8px) !important;
  box-shadow: var(--shadow-md) !important;
}

.testi-quote-icon {
  position: absolute !important;
  top: -24px !important;
  left: 32px !important;
  font-family: var(--font-display) !important;
  font-size: 5rem !important;
  color: var(--accent-blue) !important;
  opacity: 1 !important;
  line-height: 1 !important;
  float: none !important;
  margin: 0 !important;
}

.testi-stars {
  margin-top: 16px !important;
  margin-bottom: 24px !important;
}
.testi-stars span {
  font-size: 1.2rem !important;
  color: #F59E0B !important; /* Premium gold */
}

.testi-text {
  font-size: 1.05rem !important;
  line-height: 1.6 !important;
  color: var(--text-primary) !important;
  font-style: normal !important; /* Remove italics */
  margin-bottom: 32px !important;
}

.testi-author {
  border-top: 1px solid var(--border-light) !important;
  padding-top: 24px !important;
  gap: 16px !important;
}

.testi-avatar {
  background: var(--accent-blue) !important;
  color: #ffffff !important;
  width: 48px !important;
  height: 48px !important;
  font-size: 1.1rem !important;
}

.testi-name {
  font-family: var(--font-body) !important;
  font-size: 1.1rem !important;
  font-weight: 600 !important;
  color: var(--text-primary) !important;
  margin-bottom: 4px !important;
}

.testi-role {
  font-size: 0.85rem !important;
  color: var(--text-muted) !important;
}

/* ── BLOG SECTION REDESIGN ────────────────────────────── */
.blog-section {
  background: var(--bg-canvas) !important;
  padding-block: 120px !important;
}

.blog-filters {
  display: flex !important;
  justify-content: center !important;
  gap: 12px !important;
  margin-bottom: 64px !important;
}

.filter-tab {
  padding: 10px 24px !important;
  border-radius: 32px !important;
  border: 1px solid var(--border-light) !important;
  background: transparent !important;
  color: var(--text-muted) !important;
  font-family: var(--font-body) !important;
  font-weight: 500 !important;
  font-size: 0.95rem !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
}

.filter-tab:hover {
  background: var(--bg-surface-alt) !important;
  color: var(--text-primary) !important;
}

.filter-tab.active {
  background: var(--accent-blue) !important;
  color: #fff !important;
  border-color: var(--accent-blue) !important;
}

.blog-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 40px !important;
}

.blog-card {
  background: var(--bg-surface-alt) !important;
  border: 1px solid var(--border-light) !important;
  border-radius: 24px !important;
  overflow: hidden !important;
  box-shadow: var(--shadow-sm) !important;
  transition: transform 300ms ease, box-shadow 300ms ease !important;
  display: flex !important;
  flex-direction: column !important;
}

.blog-card:hover {
  transform: translateY(-8px) !important;
  box-shadow: var(--shadow-md) !important;
}

.blog-card-img-placeholder {
  background: #f3f4f6 !important;
  height: 220px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 5rem !important;
  border-bottom: 1px solid var(--border-light) !important;
}

.blog-card-body {
  padding: 32px !important;
  display: flex !important;
  flex-direction: column !important;
  flex-grow: 1 !important;
}

.blog-card-category {
  font-family: var(--font-body) !important;
  font-size: 0.8rem !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.1em !important;
  color: var(--accent-blue) !important;
  margin-bottom: 12px !important;
}

.blog-card-title {
  font-family: var(--font-body) !important;
  font-size: 1.3rem !important;
  font-weight: 600 !important;
  color: var(--text-primary) !important;
  line-height: 1.4 !important;
  margin-bottom: 16px !important;
}

.blog-card-excerpt {
  font-size: 1rem !important;
  line-height: 1.6 !important;
  color: var(--text-muted) !important;
  margin-bottom: 32px !important;
  flex-grow: 1 !important;
}

.blog-card-footer {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  border-top: 1px solid var(--border-light) !important;
  padding-top: 24px !important;
}

.blog-date {
  font-size: 0.9rem !important;
  color: var(--text-muted) !important;
}

.blog-read-more {
  font-size: 0.95rem !important;
  font-weight: 600 !important;
  color: var(--accent-blue) !important;
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  transition: color 0.2s ease !important;
}

.blog-read-more:hover {
  color: #1e24c5 !important;
}

/* Responsive */
@media (max-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr !important;
  }
}

/* ── PHILOSOPHY BENTO GRID ────────────────────────────── */
.philosophy-bento-grid {
  display: grid !important;
  grid-template-columns: 1.2fr 0.8fr !important;
  grid-template-rows: auto auto !important;
  gap: 32px !important;
  margin-top: 64px !important;
  margin-bottom: 64px !important;
}

.bento-card {
  position: relative !important;
  background: var(--bg-surface-alt) !important;
  border-radius: 32px !important;
  padding: 48px !important;
  border: 1px solid var(--border-light) !important;
  box-shadow: var(--shadow-sm) !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease !important;
  overflow: hidden !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-start !important;
}

.bento-card:hover {
  transform: translateY(-8px) !important;
  box-shadow: var(--shadow-md) !important;
}

.bento-card-tall {
  grid-row: span 2 !important;
}

/* Make step-body slightly larger in the tall card */
.bento-card-tall .step-body {
  font-size: 1.15rem !important;
  line-height: 1.8 !important;
}

/* Hide old philosophy steps logic */
.philosophy-steps {
  display: none !important;
}

@media (max-width: 900px) {
  .philosophy-bento-grid {
    grid-template-columns: 1fr !important;
    grid-template-rows: auto !important;
  }
  .bento-card-tall {
    grid-row: span 1 !important;
  }
  .bento-card {
    padding: 32px !important;
  }
}

/* ── PHILOSOPHY BENTO REFINEMENTS ────────────────────────────── */
.philosophy-bento-grid {
  max-width: 1000px !important;
  margin: 64px auto !important;
  gap: 24px !important;
}

.bento-card {
  padding: 40px 32px !important;
  border-radius: 24px !important;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s cubic-bezier(0.2, 0.8, 0.2, 1) !important;
  z-index: 1 !important;
}

.bento-card:hover {
  transform: translateY(-12px) scale(1.02) !important;
  box-shadow: 0 24px 48px -12px rgba(0, 0, 0, 0.1) !important;
  z-index: 10 !important;
}

.bento-card-tall {
  padding: 56px 48px !important;
}

/* Fix the number positioning */
.bento-card .step-number {
  position: absolute !important;
  bottom: -16px !important;
  right: 16px !important;
  font-size: 10rem !important;
  color: rgba(37, 99, 235, 0.04) !important;
  line-height: 1 !important;
  font-family: var(--font-display) !important;
  font-weight: 800 !important;
  margin: 0 !important;
  top: auto !important;
  z-index: -1 !important;
}

/* Fix the giant blue blob icons */
.bento-card .step-icon {
  width: auto !important;
  height: auto !important;
  background: transparent !important;
  box-shadow: none !important;
  font-size: 2.5rem !important;
  margin-bottom: 24px !important;
  color: var(--text-primary) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
}

@media (max-width: 900px) {
  .bento-card, .bento-card-tall {
    padding: 32px !important;
  }
}

/* ── BENTO TILE ANIMATIONS ────────────────────────────── */
.bento-tile {
  position: relative !important;
  overflow: hidden !important;
}

.anim-bg {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  pointer-events: none !important;
  z-index: 0 !important;
}

/* 1. Methodology: Process Lines */
.process-anim svg {
  width: 100% !important;
  height: 100% !important;
}
.node-line {
  stroke-dasharray: 100 !important;
  stroke-dashoffset: 1000 !important;
  animation: flowLine 6s linear infinite !important;
}
@keyframes flowLine {
  to {
    stroke-dashoffset: 0 !important;
  }
}

/* 2. Rajesh Sangle: Aurora Mesh */
.aurora-anim {
  background: radial-gradient(circle at 0% 0%, rgba(37,99,235,0.06) 0%, transparent 50%),
              radial-gradient(circle at 100% 100%, rgba(245,158,11,0.06) 0%, transparent 50%) !important;
  background-size: 200% 200% !important;
  animation: auroraPan 10s ease-in-out infinite alternate !important;
}
@keyframes auroraPan {
  0% { background-position: 0% 0% !important; }
  100% { background-position: 100% 100% !important; }
}

/* Float pills */
.coach-credits span {
  animation: floatPill 3s ease-in-out infinite alternate !important;
}
.coach-credits span:nth-child(2) {
  animation-delay: -1.5s !important;
}
@keyframes floatPill {
  0% { transform: translateY(0px) !important; }
  100% { transform: translateY(-4px) !important; }
}

/* 3. Background: Institutional Grid */
.grid-anim {
  background-image: linear-gradient(rgba(37,99,235,0.03) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(37,99,235,0.03) 1px, transparent 1px) !important;
  background-size: 40px 40px !important;
  animation: gridPan 15s linear infinite !important;
}
@keyframes gridPan {
  0% { background-position: 0 0 !important; }
  100% { background-position: 40px 40px !important; }
}


/* ── FAQ ACCORDION REDESIGN ────────────────────────────── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-surface-alt);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  overflow: hidden;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(37,99,235,0.3);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.faq-chevron {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-question[aria-expanded="true"] .faq-chevron {
  transform: rotate(180deg);
}

/* CSS Grid approach for smooth height animation */
.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.faq-question[aria-expanded="true"] + .faq-answer {
  grid-template-rows: 1fr;
}

.faq-answer-inner {
  overflow: hidden;
  padding: 0 24px;
}

.faq-question[aria-expanded="true"] + .faq-answer .faq-answer-inner {
  padding-bottom: 24px;
}

.faq-answer-inner p {
  margin: 0;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ── CTA BANNER & FOOTER REDESIGN ────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%) !important;
  color: #ffffff !important;
  position: relative;
  overflow: hidden;
}

.cta-banner h2, .cta-banner p, .cta-banner .eyebrow {
  color: #ffffff !important;
}

.cta-banner .eyebrow {
  opacity: 0.8;
}

.cta-banner p {
  opacity: 0.9;
}

.cta-banner-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle, rgba(56,189,248,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.contact-info {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 32px !important;
  margin-top: 32px !important;
  flex-wrap: wrap !important;
}

.contact-item {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  color: #ffffff !important;
  font-size: 1.1rem !important;
  text-decoration: none !important;
  transition: all 0.3s ease !important;
}

.contact-item:hover {
  color: #38bdf8 !important;
  transform: translateY(-2px) !important;
}

.contact-item svg {
  width: 24px !important;
  height: 24px !important;
  fill: none !important;
  stroke: #38bdf8 !important;
  stroke-width: 2 !important;
  stroke-linecap: round !important;
  stroke-linejoin: round !important;
  transition: transform 0.3s ease !important;
}

.contact-item:hover svg {
  transform: scale(1.1) !important;
}

/* ── ULTRA PREMIUM FOOTER REDESIGN ────────────────────────────── */
.footer {
  background: #0b1120 !important;
  color: #94a3b8 !important;
  padding: 80px 0 40px !important;
  border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
}

.footer-grid {
  display: grid !important;
  grid-template-columns: 2fr 1fr 1fr 1fr !important;
  gap: 64px !important;
  margin-bottom: 64px !important;
}

.footer-brand {
  display: flex !important;
  flex-direction: column !important;
  gap: 24px !important;
}

.footer-brand .logo-name, .footer-brand .logo-sub {
  color: #ffffff !important;
}

.footer-brand-tagline {
  color: #94a3b8 !important;
  font-size: 1rem !important;
  line-height: 1.6 !important;
  max-width: 300px !important;
  margin: 0 !important;
}

.footer-socials {
  display: flex !important;
  gap: 16px !important;
}

.social-link {
  width: 40px !important;
  height: 40px !important;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, 0.05) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  fill: #94a3b8 !important;
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1) !important;
}

.social-link:hover {
  background: var(--accent-blue) !important;
  fill: #ffffff !important;
  transform: translateY(-4px) scale(1.1) !important;
  box-shadow: 0 10px 20px rgba(37,99,235, 0.3) !important;
}

.footer-col h4 {
  color: #ffffff !important;
  font-size: 1.1rem !important;
  font-weight: 600 !important;
  margin-bottom: 24px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
}

.footer-col ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 16px !important;
}

.footer-col a {
  color: #94a3b8 !important;
  text-decoration: none !important;
  font-size: 1rem !important;
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1) !important;
  display: inline-block !important;
}

.footer-col a:hover {
  color: #ffffff !important;
  transform: translateX(8px) !important;
}

.footer-bottom {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  padding-top: 32px !important;
  border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
}

.footer-copy {
  color: #64748b !important;
  font-size: 0.9rem !important;
  margin: 0 !important;
}

.footer-legal {
  display: flex !important;
  gap: 24px !important;
}

.footer-legal a {
  color: #64748b !important;
  font-size: 0.9rem !important;
  text-decoration: none !important;
  transition: color 0.3s ease !important;
}

.footer-legal a:hover {
  color: #ffffff !important;
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }
  .footer-bottom {
    flex-direction: column !important;
    gap: 16px !important;
    text-align: center !important;
  }
}


/* ── AUDIENCE PILLS ANTI-GRAVITY ────────────────────────────── */
@keyframes antiGravity {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}



.audience-left .audience-pill:nth-child(1) { animation-delay: 0s; }
.audience-left .audience-pill:nth-child(2) { animation-delay: -2s; }
.audience-left .audience-pill:nth-child(3) { animation-delay: -4s; }
.audience-right .audience-pill:nth-child(1) { animation-delay: -1s; }
.audience-right .audience-pill:nth-child(2) { animation-delay: -3s; }
.audience-right .audience-pill:nth-child(3) { animation-delay: -5s; }

.audience-highlight-text {
  letter-spacing: -0.04em !important;
  line-height: 1.3 !important;
}

/* ════════════════════════════════════════════════════════════
   FREE WEBINAR STRIP  (full-width, hero-anchored)
   ════════════════════════════════════════════════════════════ */

.webinar-strip {
  position: absolute;
  top: 88px; /* navbar top(20px) + navbar height(68px) = 88px, flush below navbar */
  left: 0;
  width: 100%;
  z-index: 5;
  padding: 0;
  background: linear-gradient(95deg, #0A1128 0%, #1B2D63 55%, #0A1128 100%);
  color: #fff;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
  isolation: isolate;
}

/* moving sheen layer */
.webinar-shimmer {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(
    100deg,
    transparent 0%,
    transparent 35%,
    rgba(56,189,248,0.10) 45%,
    rgba(56,189,248,0.16) 50%,
    rgba(56,189,248,0.10) 55%,
    transparent 65%,
    transparent 100%
  );
  background-size: 250% 100%;
  background-position: 100% 0;
  animation: webinarSheen 6s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  mix-blend-mode: screen;
}
@keyframes webinarSheen {
  0%   { background-position: 130% 0; }
  60%  { background-position: -30% 0; }
  100% { background-position: -30% 0; }
}

.webinar-strip-inner {
  position: relative;
  z-index: 1;
  max-width: var(--content-max);
  margin-inline: auto;
  padding: clamp(16px, 2vw, 22px) clamp(20px, 4vw, 48px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(20px, 3vw, 48px);
  flex-wrap: wrap;
}

.webinar-strip-left {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
  flex: 1 1 auto;
}

/* LIVE pulse pill */
.webinar-live-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px 7px 10px;
  background: #DC2626;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 0 0 0 rgba(220,38,38,0.6);
  animation: livePillPulse 2.4s ease-out infinite;
}
.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 8px rgba(255,255,255,0.8);
  animation: liveDotBlink 1.4s ease-in-out infinite;
}
@keyframes livePillPulse {
  0%   { box-shadow: 0 0 0 0 rgba(220,38,38,0.55); }
  70%  { box-shadow: 0 0 0 12px rgba(220,38,38,0); }
  100% { box-shadow: 0 0 0 0 rgba(220,38,38,0); }
}
@keyframes liveDotBlink {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.6; transform: scale(0.85); }
}

.webinar-strip-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.webinar-strip-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #7DD3FC;
}
.webinar-strip-headline {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.6vw, 1.4rem);
  font-weight: 600;
  letter-spacing: -0.015em;
  color: #fff;
  line-height: 1.25;
}
.webinar-strip-headline .dot-sep {
  display: inline-block;
  margin: 0 8px;
  color: rgba(255,255,255,0.45);
  font-weight: 400;
}
.webinar-strip-headline .webinar-when {
  font-family: var(--font-body);
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  font-size: 0.92em;
}

.webinar-strip-right {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-shrink: 0;
}

.webinar-seats {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  white-space: nowrap;
}
.webinar-seats strong {
  color: #FDE68A;
  font-weight: 700;
}

.webinar-strip-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  background: #F59E0B;
  color: #0A1128;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: -0.005em;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(245,158,11,0.25), 0 2px 6px rgba(0,0,0,0.18);
  transition: transform 220ms cubic-bezier(0.2, 0.8, 0.2, 1),
              background 220ms ease,
              box-shadow 220ms ease;
  white-space: nowrap;
}
.webinar-strip-cta:hover {
  transform: translateY(-2px);
  background: #FBBF24;
  box-shadow: 0 14px 32px rgba(245,158,11,0.38), 0 4px 10px rgba(0,0,0,0.22);
}
.webinar-strip-cta:active { transform: translateY(0); }
.webinar-strip-cta svg {
  transition: transform 220ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.webinar-strip-cta:hover svg { transform: translateX(3px); }

/* Mobile: stack the strip cleanly */
@media (max-width: 768px) {
  .webinar-strip-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 20px;
  }
  .webinar-strip-right {
    width: 100%;
    justify-content: space-between;
  }
  .webinar-strip-headline {
    font-size: 1rem;
  }
  .webinar-strip-headline .dot-sep { display: none; }
  .webinar-strip-headline .webinar-when {
    display: block;
    font-size: 0.85rem;
    margin-top: 2px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .webinar-shimmer { animation: none; }
  .webinar-live-pill, .live-dot { animation: none; }
}

/* ════════════════════════════════════════════════════════════
   BLOG — COMING SOON BANNER
   ════════════════════════════════════════════════════════════ */

.blog-section-coming-soon {
  background: var(--bg-canvas) !important;
  padding-block: 100px !important;
}

.coming-soon-card {
  position: relative;
  max-width: 980px;
  margin-inline: auto;
  background: linear-gradient(135deg, #0A1128 0%, #1B2D63 60%, #1e24c5 100%);
  border-radius: 32px;
  padding: clamp(48px, 7vw, 96px) clamp(28px, 5vw, 80px);
  overflow: hidden;
  isolation: isolate;
  color: #fff;
  text-align: center;
  box-shadow: 0 30px 80px -20px rgba(10, 17, 40, 0.45),
              0 8px 24px rgba(10, 17, 40, 0.25);
}

/* soft glow wash */
.coming-soon-card::before {
  content: '';
  position: absolute;
  inset: -50%;
  background:
    radial-gradient(ellipse 40% 35% at 30% 30%, rgba(56,189,248,0.22) 0%, transparent 60%),
    radial-gradient(ellipse 35% 30% at 75% 70%, rgba(245,158,11,0.18) 0%, transparent 60%);
  z-index: 0;
  animation: csWash 14s ease-in-out infinite alternate;
}
@keyframes csWash {
  0%   { transform: translate3d(-2%, -1%, 0) rotate(0deg); }
  100% { transform: translate3d(3%,  2%, 0) rotate(6deg); }
}

/* grid texture */
.coming-soon-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 30%, transparent 75%);
  z-index: 0;
  pointer-events: none;
}

/* ── Orbit decoration (concentric expanding rings) ── */
.cs-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 720px;
  height: 720px;
  z-index: 0;
  pointer-events: none;
}
.cs-orbit-ring {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.08);
}
.cs-ring-1 { width: 280px; height: 280px; animation: csRingPulse 6s ease-out infinite; }
.cs-ring-2 { width: 460px; height: 460px; animation: csRingPulse 6s ease-out infinite 2s; }
.cs-ring-3 { width: 640px; height: 640px; animation: csRingPulse 6s ease-out infinite 4s; }

@keyframes csRingPulse {
  0%   { opacity: 0; transform: translate(-50%, -50%) scale(0.85); }
  30%  { opacity: 1; }
  100% { opacity: 0; transform: translate(-50%, -50%) scale(1.15); }
}

.cs-orbit-dot {
  position: absolute;
  top: 50%; left: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #FBBF24;
  box-shadow: 0 0 12px rgba(251,191,36,0.7);
  transform-origin: 0 0;
}
.cs-dot-1 { animation: csOrbit1 14s linear infinite; }
.cs-dot-2 { animation: csOrbit2 22s linear infinite reverse; background: #38BDF8; box-shadow: 0 0 12px rgba(56,189,248,0.7); }
.cs-dot-3 { animation: csOrbit3 30s linear infinite; background: #fff; box-shadow: 0 0 14px rgba(255,255,255,0.6); width: 6px; height: 6px; }

@keyframes csOrbit1 { from { transform: rotate(0deg) translateX(140px) rotate(0deg); } to { transform: rotate(360deg) translateX(140px) rotate(-360deg); } }
@keyframes csOrbit2 { from { transform: rotate(0deg) translateX(230px) rotate(0deg); } to { transform: rotate(360deg) translateX(230px) rotate(-360deg); } }
@keyframes csOrbit3 { from { transform: rotate(0deg) translateX(320px) rotate(0deg); } to { transform: rotate(360deg) translateX(320px) rotate(-360deg); } }

/* candlestick accent */
.cs-chart-accent {
  position: absolute;
  bottom: 32px;
  right: 40px;
  width: 140px;
  height: 56px;
  color: #38BDF8;
  opacity: 0.5;
  z-index: 1;
}
.cs-candles rect {
  transform-origin: bottom;
  animation: csCandlePop 2.6s cubic-bezier(0.2, 0.8, 0.2, 1) infinite;
}
.cs-candles rect:nth-child(2)  { animation-delay: 0.2s; }
.cs-candles rect:nth-child(4)  { animation-delay: 0.4s; }
.cs-candles rect:nth-child(6)  { animation-delay: 0.6s; }
.cs-candles rect:nth-child(8)  { animation-delay: 0.8s; }
.cs-candles rect:nth-child(10) { animation-delay: 1.0s; }
@keyframes csCandlePop {
  0%, 70% { transform: scaleY(1); }
  85%     { transform: scaleY(1.15); }
  100%    { transform: scaleY(1); }
}

/* ── Content layer ── */
.coming-soon-body {
  position: relative;
  z-index: 2;
}

.cs-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 18px 7px 14px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-bottom: 32px;
  backdrop-filter: blur(6px);
}
.cs-eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #34D399;
  box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.7);
  animation: csEyebrowPulse 2.2s ease-out infinite;
}
@keyframes csEyebrowPulse {
  0%   { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.7); }
  70%  { box-shadow: 0 0 0 10px rgba(52, 211, 153, 0); }
  100% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0); }
}

.cs-headline {
  font-family: var(--font-display) !important;
  font-size: clamp(3.2rem, 8vw, 6rem) !important;
  font-weight: 500 !important;
  line-height: 1 !important;
  letter-spacing: -0.04em !important;
  color: #fff !important;
  margin: 0 0 24px !important;
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.3em;
}
.cs-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(28px);
  animation: csWordRise 900ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
.cs-word:nth-child(1) { animation-delay: 0.1s; }
.cs-word:nth-child(2) { animation-delay: 0.25s; }
.cs-word-accent {
  font-style: italic;
  color: #FBBF24;
}
@keyframes csWordRise {
  to { opacity: 1; transform: translateY(0); }
}

.cs-sub {
  font-family: var(--font-body) !important;
  font-size: clamp(1rem, 1.4vw, 1.125rem) !important;
  line-height: 1.65 !important;
  color: rgba(255,255,255,0.78) !important;
  max-width: 56ch;
  margin: 0 auto 36px !important;
}

.cs-actions {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}
.cs-cta {
  background: #F59E0B !important;
  color: #0A1128 !important;
  font-weight: 700 !important;
  padding: 14px 26px !important;
  border-radius: 999px !important;
  box-shadow: 0 10px 28px rgba(245,158,11,0.30), 0 2px 6px rgba(0,0,0,0.18) !important;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 220ms cubic-bezier(0.2, 0.8, 0.2, 1),
              background 220ms ease,
              box-shadow 220ms ease !important;
}
.cs-cta:hover {
  background: #FBBF24 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 16px 36px rgba(245,158,11,0.42), 0 4px 10px rgba(0,0,0,0.22) !important;
}
.cs-cta svg { transition: transform 220ms cubic-bezier(0.2, 0.8, 0.2, 1); }
.cs-cta:hover svg { transform: translateX(3px); }

.cs-meta {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.55);
}

/* breathing progress dots */
.cs-progress {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 36px;
}
.cs-progress span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  animation: csDotBreathe 1.6s ease-in-out infinite;
}
.cs-progress span:nth-child(2) { animation-delay: 0.2s; }
.cs-progress span:nth-child(3) { animation-delay: 0.4s; }
@keyframes csDotBreathe {
  0%, 100% { opacity: 0.3; transform: scale(0.85); }
  50%      { opacity: 1;   transform: scale(1.1); background: #FBBF24; }
}

@media (max-width: 640px) {
  .coming-soon-card { border-radius: 24px; }
  .cs-chart-accent { display: none; }
  .cs-orbit { width: 480px; height: 480px; }
  .cs-ring-1 { width: 200px; height: 200px; }
  .cs-ring-2 { width: 320px; height: 320px; }
  .cs-ring-3 { width: 440px; height: 440px; }
  @keyframes csOrbit1 { from { transform: rotate(0deg) translateX(100px) rotate(0deg); } to { transform: rotate(360deg) translateX(100px) rotate(-360deg); } }
  @keyframes csOrbit2 { from { transform: rotate(0deg) translateX(160px) rotate(0deg); } to { transform: rotate(360deg) translateX(160px) rotate(-360deg); } }
  @keyframes csOrbit3 { from { transform: rotate(0deg) translateX(220px) rotate(0deg); } to { transform: rotate(360deg) translateX(220px) rotate(-360deg); } }
}

@media (prefers-reduced-motion: reduce) {
  .coming-soon-card::before,
  .cs-orbit-ring,
  .cs-orbit-dot,
  .cs-candles rect,
  .cs-progress span,
  .cs-eyebrow-dot,
  .cs-word { animation: none; }
  .cs-word { opacity: 1; transform: none; }
}

/* ════════════════════════════════════════════════════════════
   FOOTER ENQUIRY FORM
   ════════════════════════════════════════════════════════════ */

.footer-enquiry {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(48px, 7vw, 96px); /* More space between intro and form */
  padding: clamp(48px, 6vw, 72px); /* More internal padding */
  margin-bottom: 64px;
  background: linear-gradient(140deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.015) 100%);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 28px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.footer-enquiry::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(37,99,235,0.18) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
  filter: blur(20px);
}

.footer-enquiry > * { position: relative; z-index: 1; }

.enquiry-intro { align-self: flex-start; }

.enquiry-eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #38BDF8;
  margin-bottom: 16px;
}

.enquiry-heading {
  font-family: var(--font-display) !important;
  font-size: clamp(1.6rem, 2.4vw, 2.1rem) !important;
  font-weight: 500 !important;
  line-height: 1.15 !important;
  letter-spacing: -0.025em !important;
  color: #fff !important;
  margin: 0 0 14px !important;
  text-wrap: balance;
}
.enquiry-heading em {
  font-style: italic;
  color: #38BDF8;
  font-weight: 500;
}

.enquiry-sub {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.62);
  margin: 0;
  max-width: 38ch;
}

/* form grid */
.enquiry-form {
  display: flex;
  flex-direction: column;
  gap: 24px; /* Increased from 18px */
}

.enquiry-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px; /* Increased from 16px to prevent overlapping */
}

.enquiry-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.enquiry-field label {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.78);
}

.enquiry-field input {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: #fff;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 12px;
  padding: 13px 16px;
  width: 100%;
  transition: border-color 200ms ease,
              background 200ms ease,
              box-shadow 200ms ease;
  outline: none;
}

.enquiry-field input::placeholder {
  color: rgba(255,255,255,0.40);
  font-weight: 400;
}

.enquiry-field input:hover {
  border-color: rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.06);
}

.enquiry-field input:focus,
.enquiry-field input:focus-visible {
  border-color: #38BDF8;
  background: rgba(56,189,248,0.06);
  box-shadow: 0 0 0 3px rgba(56,189,248,0.18);
}

.enquiry-field.has-error input {
  border-color: #F87171;
  background: rgba(248,113,113,0.06);
}
.enquiry-field.has-error input:focus {
  box-shadow: 0 0 0 3px rgba(248,113,113,0.18);
}

.enquiry-error {
  display: none;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  color: #FCA5A5;
  line-height: 1.3;
  min-height: 0;
}
.enquiry-field.has-error .enquiry-error {
  display: block;
}

/* WhatsApp input with +91 prefix */
.enquiry-input-prefix {
  display: flex;
  align-items: stretch;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 200ms ease,
              background 200ms ease,
              box-shadow 200ms ease;
}
.enquiry-input-prefix:hover {
  border-color: rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.06);
}
.enquiry-input-prefix:focus-within {
  border-color: #38BDF8;
  background: rgba(56,189,248,0.06);
  box-shadow: 0 0 0 3px rgba(56,189,248,0.18);
}
.enquiry-field.has-error .enquiry-input-prefix {
  border-color: #F87171;
  background: rgba(248,113,113,0.06);
}
.prefix-text {
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  font-family: var(--font-mono);
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  border-right: 1px solid rgba(255,255,255,0.10);
  letter-spacing: 0.02em;
  flex-shrink: 0;
}
.enquiry-input-prefix input {
  border: none !important;
  background: transparent !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  padding-left: 14px !important;
  letter-spacing: 0.04em;
}
.enquiry-input-prefix input:focus { box-shadow: none !important; }

/* submit row */
.enquiry-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 6px;
}

.enquiry-submit {
  background: #F59E0B !important;
  color: #0A1128 !important;
  font-weight: 700 !important;
  padding: 13px 24px !important;
  border-radius: 999px !important;
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 22px rgba(245,158,11,0.28), 0 2px 6px rgba(0,0,0,0.18) !important;
  transition: transform 220ms cubic-bezier(0.2, 0.8, 0.2, 1),
              background 220ms ease,
              box-shadow 220ms ease !important;
  cursor: pointer;
  border: none;
}
.enquiry-submit:hover:not(:disabled) {
  background: #FBBF24 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 14px 30px rgba(245,158,11,0.40), 0 4px 10px rgba(0,0,0,0.22) !important;
}
.enquiry-submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none !important;
}
.enquiry-submit svg { transition: transform 220ms cubic-bezier(0.2, 0.8, 0.2, 1); }
.enquiry-submit:hover:not(:disabled) svg { transform: translateX(3px); }

.enquiry-privacy {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  margin: 0;
}
.enquiry-privacy svg {
  color: #34D399;
  flex-shrink: 0;
}

/* status feedback */
.enquiry-status {
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.5;
  margin-top: 4px;
  min-height: 0;
}
.enquiry-status.is-success {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: rgba(52, 211, 153, 0.08);
  border: 1px solid rgba(52, 211, 153, 0.25);
  border-radius: 12px;
  color: #6EE7B7;
}
.enquiry-status.is-success::before {
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #10B981;
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.enquiry-status.is-error {
  color: #FCA5A5;
  padding: 12px 16px;
  background: rgba(248, 113, 113, 0.08);
  border: 1px solid rgba(248, 113, 113, 0.25);
  border-radius: 12px;
}

@media (max-width: 900px) {
  .footer-enquiry {
    grid-template-columns: 1fr;
    padding: 36px 28px;
    gap: 32px;
  }
  .enquiry-row { grid-template-columns: 1fr; gap: 16px; }
}

/* ════════════════════════════════════════════════════════════
   POLISH — micro-motion across the site
   ════════════════════════════════════════════════════════════ */

/* Hero mini-cards: gentle organic float (offset per card) */
@keyframes heroCardDrift1 {
  0%, 100% { transform: rotate(-1.2deg) translate3d(-4px, 0, 0); }
  50%      { transform: rotate(-1.4deg) translate3d(-4px, -6px, 0); }
}
@keyframes heroCardDrift2 {
  0%, 100% { transform: rotate(0.8deg) translate3d(4px, 0, 0); }
  50%      { transform: rotate(1deg)   translate3d(4px, -8px, 0); }
}
@keyframes heroCardDrift3 {
  0%, 100% { transform: rotate(-0.5deg) translate3d(0, 0, 0); }
  50%      { transform: rotate(-0.7deg) translate3d(0, -5px, 0); }
}

.hero-mini-card:nth-child(1) { animation: heroCardDrift1 7s ease-in-out infinite; }
.hero-mini-card:nth-child(2) { animation: heroCardDrift2 8s ease-in-out infinite 1s; }
.hero-mini-card:nth-child(3) { animation: heroCardDrift3 9s ease-in-out infinite 2s; }

.hero-mini-card:hover {
  animation-play-state: paused !important;
}

/* Webinar strip: fade up on first paint (no reveal-class gating) */
@keyframes webinarStripIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
.webinar-strip {
  animation: webinarStripIn 700ms cubic-bezier(0.2, 0.8, 0.2, 1) 200ms both;
}

/* Bento "ticker" tile: subtle blink on the change indicator */
.t-ticker .ticker-row .chg {
  position: relative;
}
.t-ticker .ticker-row .chg::before {
  content: '';
  position: absolute;
  left: -14px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  transform: translateY(-50%);
  opacity: 0.4;
  animation: tickerBlink 1.8s ease-in-out infinite;
}
@keyframes tickerBlink {
  0%, 100% { opacity: 0.3; transform: translateY(-50%) scale(0.85); }
  50%      { opacity: 1;   transform: translateY(-50%) scale(1.15); }
}

/* Hero CTA primary: subtle inner shimmer on hover */
#hero-cta-primary {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
#hero-cta-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    100deg,
    transparent 0%,
    rgba(255,255,255,0.18) 50%,
    transparent 100%
  );
  transform: skewX(-20deg);
  transition: left 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
  pointer-events: none;
  z-index: 1;
}
#hero-cta-primary:hover::before {
  left: 130%;
}

/* Course card image: subtle zoom + glow on hover (additive) */
.course-card {
  will-change: transform;
}
.course-card .card-hero-wrap {
  position: relative;
  overflow: hidden;
}
.course-card .card-hero-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 100%, rgba(59,64,252,0.45) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 400ms ease;
  pointer-events: none;
}
.course-card:hover .card-hero-wrap::after { opacity: 1; }

/* FAQ chevron: subtle nudge on item hover */
.faq-item:hover .faq-chevron {
  transform: translateY(2px);
}
.faq-item:hover .faq-question[aria-expanded="true"] .faq-chevron {
  transform: rotate(180deg) translateY(2px);
}

/* Footer columns: subtle stagger fade-in on link hover (already animates) */
/* Section header eyebrow: soft glow */
.section-header .eyebrow {
  position: relative;
  display: inline-block;
}

@media (prefers-reduced-motion: reduce) {
  .hero-mini-card:nth-child(1),
  .hero-mini-card:nth-child(2),
  .hero-mini-card:nth-child(3),
  .webinar-strip,
  .t-ticker .ticker-row .chg::before {
    animation: none !important;
  }
  #hero-cta-primary::before { display: none; }
}

