/* My Other Mentor marketing styles */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  --purple: #7c3aed;
  --purple-hover: #6d28d9;
  --purple-light: #f5f3ff;
  --purple-mid: #ede9fe;
  --purple-border: #ddd6fe;
  --indigo: #4f46e5;
  --accent: #a855f7;
  --bg: #ffffff;
  --bg-soft: #faf9ff;
  --text: #111827;
  --text-sec: #4b5563;
  --text-muted: #6b7280;
  --border: #e5e7eb;
  --footer: #0f0a1e;
}

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

html { scroll-behavior: smooth; }

body.landing-body {
  font-family: 'Manrope', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
img { max-width: 100%; display: block; }

.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Glass ── */
.glass {
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(14px) saturate(1.6);
  -webkit-backdrop-filter: blur(14px) saturate(1.6);
  border: 1px solid rgba(255,255,255,0.75);
  box-shadow: 0 2px 24px rgba(124,58,237,0.10), inset 0 1px 0 rgba(255,255,255,0.9);
}

/* ── Animations ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.94); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes slideLeft {
  from { opacity: 0; transform: translateX(28px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes slideRight {
  from { opacity: 0; transform: translateX(-28px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
@keyframes shimmer {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}
@keyframes logoMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(124,58,237,0.35); }
  50% { box-shadow: 0 0 0 8px rgba(124,58,237,0); }
}

.anim-fade-up { animation: fadeUp 0.55s cubic-bezier(0.22,1,0.36,1) both; }
.anim-fade-up-d1 { animation: fadeUp 0.55s 0.08s cubic-bezier(0.22,1,0.36,1) both; }
.anim-fade-up-d2 { animation: fadeUp 0.55s 0.16s cubic-bezier(0.22,1,0.36,1) both; }
.anim-fade-up-d3 { animation: fadeUp 0.55s 0.24s cubic-bezier(0.22,1,0.36,1) both; }
.anim-fade-up-d4 { animation: fadeUp 0.55s 0.32s cubic-bezier(0.22,1,0.36,1) both; }
.float-card { animation: float 4s ease-in-out infinite; }
.float-card-slow { animation: float 5.5s ease-in-out infinite; }
.float-card-alt { animation: float 4.8s 0.8s ease-in-out infinite; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.55s cubic-bezier(0.22,1,0.36,1), transform 0.55s cubic-bezier(0.22,1,0.36,1); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }

/* ── Buttons ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--purple), var(--accent));
  box-shadow: 0 4px 20px rgba(124,58,237,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-primary:hover { transform: scale(1.05); box-shadow: 0 6px 28px rgba(124,58,237,0.5); }
.btn-primary:active { transform: scale(0.95); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 700;
  border-radius: 12px;
  background: #fff;
  color: var(--text);
  border: 1px solid var(--border);
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  transition: transform 0.2s;
}
.btn-secondary:hover { transform: scale(1.05); }

.btn-ghost-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 700;
  border-radius: 12px;
  color: #fff;
  background: rgba(124,58,237,0.12);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(124,58,237,0.25);
  transition: transform 0.2s;
}
.btn-ghost-dark:hover { transform: scale(1.05); }

/* ── Nav ── */
/* ── Top social bar ── */
.l-topbar {
  background: linear-gradient(90deg, #1e1033 0%, #3b1d6e 45%, #1e1033 100%);
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.l-topbar-inner {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 0;
  flex-wrap: wrap;
}
.l-topbar-fb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 14px;
  border-radius: 999px;
  background: #1877f2;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: -0.01em;
  box-shadow: 0 6px 18px rgba(24, 119, 242, 0.35);
  transition: transform 0.2s, background 0.2s, box-shadow 0.2s;
  max-width: 100%;
}
.l-topbar-fb:hover {
  background: #166fe5;
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(24, 119, 242, 0.45);
  color: #fff;
}
.l-topbar-fb ion-icon {
  font-size: 18px;
  flex-shrink: 0;
}
.l-topbar-fb-label {
  white-space: nowrap;
}
.l-topbar-fb-sub {
  display: none;
  font-weight: 600;
  opacity: 0.9;
  font-size: 12px;
}
.l-topbar-socials {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}
.l-topbar-socials a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.9);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.12);
  transition: background 0.2s, transform 0.2s, color 0.2s;
  font-size: 15px;
}
.l-topbar-socials a:hover {
  background: rgba(255,255,255,0.2);
  color: #fff;
  transform: scale(1.08);
}
@media (min-width: 720px) {
  .l-topbar-fb-sub { display: inline; }
  .l-topbar-fb-sub::before { content: "·"; margin: 0 8px; opacity: 0.7; }
}
@media (max-width: 560px) {
  .l-topbar-inner { justify-content: center; }
  .l-topbar-fb { font-size: 12px; padding: 7px 12px; }
  .l-topbar-socials { width: 100%; justify-content: center; }
}

.l-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 72px;
  background: #fff;
  border-bottom: 1px solid var(--border);
  transition: background 0.3s, box-shadow 0.3s, backdrop-filter 0.3s;
}
.l-nav.scrolled {
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(16px) saturate(1.6);
  -webkit-backdrop-filter: blur(16px) saturate(1.6);
  border-bottom: 1px solid rgba(221,214,254,0.6);
  box-shadow: 0 2px 24px rgba(124,58,237,0.08);
}
.l-nav-inner {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.l-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: -0.02em;
}
.l-brand img {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  object-fit: contain;
}
.l-nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.l-nav-links a {
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-sec);
  transition: color 0.2s, background 0.2s, transform 0.2s;
  white-space: nowrap;
}
.l-nav-links a:hover {
  color: var(--purple);
  background: var(--purple-light);
  transform: scale(1.05);
}
.l-nav-links a.active {
  color: var(--purple);
  background: var(--purple-light);
}
.l-nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.l-signin {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-sec);
  transition: color 0.2s;
}
.l-signin:hover { color: var(--purple); }
.l-menu-btn {
  display: none;
  padding: 8px;
  color: var(--text);
}
.l-mobile-menu {
  display: none;
  border-top: 1px solid var(--border);
  background: #fff;
  padding: 16px 24px;
  flex-direction: column;
  gap: 4px;
}
.l-mobile-menu.open { display: flex; }
.l-mobile-menu a {
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-sec);
}

/* ── Hero ── */
.l-hero {
  position: relative;
  overflow: hidden;
  background: #fff;
  padding: 64px 0 56px;
}
.l-hero-aurora {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 60% at 60% -20%, rgba(168,85,247,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 90% 80%, rgba(124,58,237,0.08) 0%, transparent 60%);
}
.l-hero-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
  position: relative;
}
.l-hero-copy { max-width: 540px; }
.l-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(124,58,237,0.1);
  border: 1px solid rgba(124,58,237,0.2);
}
.l-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: shimmer 2s ease-in-out infinite;
}
.l-badge span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--purple);
}
.l-hero h1 {
  font-size: clamp(40px, 5vw, 58px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  color: var(--text);
}
.l-hero h1 .grad {
  background: linear-gradient(135deg, var(--purple), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.l-hero-sub {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.65;
  color: var(--text-sec);
  margin-bottom: 32px;
}
.l-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
}
.l-hero-ctas .btn-primary,
.l-hero-ctas .btn-secondary {
  padding: 12px 20px;
  font-size: 14px;
}
.l-hero-micro {
  font-size: 13px;
  font-weight: 500;
  color: #9ca3af;
}

/* Hero mentor collage — Charles, Wit, Fred */
.l-hero-visual {
  position: relative;
  width: 420px;
  height: 500px;
  flex-shrink: 0;
}
.l-float-card {
  position: absolute;
  border-radius: 18px;
  overflow: hidden;
  --parallax-x: 0px;
  --parallax-y: 0px;
  translate: var(--parallax-x) var(--parallax-y);
  transition: translate 0.35s cubic-bezier(0.22, 1, 0.36, 1), scale 0.25s;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}
.l-float-card:hover { scale: 1.04; }
.l-float-card .photo {
  width: 100%;
  overflow: hidden;
  background: #f7f8fa;
  flex-shrink: 0;
  position: relative;
}
.l-float-card .photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.l-float-card .uni-tag {
  position: absolute;
  left: 12px;
  bottom: 12px;
  z-index: 2;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--purple), var(--accent));
  box-shadow: 0 4px 12px rgba(124,58,237,0.4);
  pointer-events: none;
}
.l-float-card .img-charles { object-position: center 18%; }
.l-float-card .img-faris { object-position: center 15%; }
.l-float-card .img-fred { object-position: center 12%; }
.l-float-card .meta { padding: 14px 16px 16px; }
.l-float-card .name { font-weight: 700; font-size: 15px; color: var(--text); }
.l-float-card .uni { font-size: 12px; font-weight: 500; color: var(--text-sec); margin-top: 2px; }
.l-float-card .course { font-size: 12px; color: var(--text-muted); }

/* Charles — large primary card */
.l-float-main {
  left: 0;
  top: 48px;
  width: 240px;
  z-index: 2;
  animation: float 4s ease-in-out infinite;
  box-shadow: 0 12px 40px rgba(124,58,237,0.18);
}
.l-float-main .photo { height: 220px; }

/* Faris — top right, kept clear of Fred */
.l-float-2 {
  right: 0;
  top: 0;
  width: 190px;
  z-index: 1;
  animation: float 5.5s ease-in-out infinite;
  box-shadow: 0 10px 32px rgba(124,58,237,0.14);
}
.l-float-2 .photo { height: 160px; }

/* Fred — bottom right, above Wit so fully visible */
.l-float-3 {
  right: 8px;
  bottom: 0;
  top: auto;
  width: 210px;
  z-index: 3;
  animation: float 4.8s 0.8s ease-in-out infinite;
  box-shadow: 0 10px 32px rgba(124,58,237,0.14);
}
.l-float-3 .photo { height: 190px; }
.stars { display: flex; align-items: center; gap: 2px; margin-top: 8px; }
.stars svg { width: 14px; height: 14px; }
.stars span { font-size: 13px; font-weight: 600; margin-left: 4px; }

/* ── Trust / logos ── */
.l-trust {
  border-top: 1px solid var(--purple-border);
  border-bottom: 1px solid var(--purple-border);
  padding: 28px 0;
  background: linear-gradient(90deg, #f5f3ff 0%, #faf5ff 50%, #f5f3ff 100%);
  overflow: hidden;
}
.l-trust-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 20px;
}
.l-logo-track {
  display: flex;
  width: max-content;
  gap: 48px;
  animation: logoMarquee 28s linear infinite;
}
.l-logo-track:hover { animation-play-state: paused; }
.l-logo-item {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  opacity: 0.75;
  transition: opacity 0.25s, transform 0.25s;
  filter: grayscale(0.3);
}
.l-logo-item:hover {
  opacity: 1;
  transform: scale(1.05);
  filter: none;
}
.l-logo-item img {
  height: 40px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
}
.l-logo-item span {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
}

/* ── Testimonials carousel ── */
.l-testimonials {
  position: relative;
  overflow: hidden;
  padding: 72px 0 80px;
  background: linear-gradient(135deg, #f5f3ff 0%, #ede9fe 50%, #faf5ff 100%);
  border-bottom: 1px solid var(--purple-border);
}
.l-testimonials-orb {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 200px;
  background: radial-gradient(ellipse, rgba(168,85,247,0.18) 0%, transparent 70%);
  filter: blur(24px);
  pointer-events: none;
}
.deck-head {
  text-align: center;
  margin-bottom: 36px;
}
.deck-head h2 {
  font-size: clamp(28px, 3.5vw, 36px);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.c3d-carousel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  max-width: 1100px;
  margin: 0 auto;
}

.deck-nav {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple);
  z-index: 5;
  transition: transform 0.2s;
}
.deck-nav ion-icon { font-size: 20px; }
.deck-nav:hover { transform: scale(1.08); }
.deck-nav:active { transform: scale(0.95); }

.c3d-viewport {
  position: relative;
  width: min(100%, 860px);
  height: 400px;
  perspective: 1600px;
  perspective-origin: 50% 42%;
  overflow: visible;
}

.c3d-ring {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
  transition: transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.c3d-card {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(210px, 58vw);
  height: 320px;
  margin-left: calc(min(210px, 58vw) / -2);
  margin-top: -160px;
  border-radius: 20px;
  padding: 20px 16px 18px;
  background: linear-gradient(165deg, #ffffff 0%, #faf9ff 100%);
  border: 1px solid rgba(124, 58, 237, 0.16);
  box-shadow: 0 14px 32px rgba(15, 10, 30, 0.12);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  backface-visibility: hidden;
  transform-style: preserve-3d;
  transition: box-shadow 0.4s, border-color 0.4s, filter 0.4s, opacity 0.4s;
  cursor: grab;
  user-select: none;
}
.c3d-card:active { cursor: grabbing; }
.c3d-card.is-front {
  box-shadow: 0 22px 48px rgba(124, 58, 237, 0.22);
  border-color: rgba(124, 58, 237, 0.4);
  z-index: 2;
}
.c3d-card.is-near {
  filter: saturate(0.95);
}

.c3d-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px rgba(124, 58, 237, 0.28), 0 6px 16px rgba(15, 10, 30, 0.12);
  margin-bottom: 12px;
  flex-shrink: 0;
}

.c3d-stars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  color: #f5a524;
  font-size: 15px;
  margin-bottom: 4px;
}
.c3d-rating {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.c3d-rating strong {
  color: var(--text);
  font-weight: 800;
}

.c3d-quote {
  font-size: 13px;
  font-weight: 600;
  font-style: italic;
  line-height: 1.45;
  color: var(--text);
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 9;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.c3d-who {
  margin-top: 14px;
  font-size: 13px;
  font-weight: 800;
  color: var(--text);
}
.c3d-target {
  font-size: 11px;
  font-weight: 600;
  color: var(--purple);
  margin-top: 2px;
}

.deck-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
}
.deck-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(124, 58, 237, 0.25);
  transition: transform 0.25s, background 0.25s, width 0.25s, border-radius 0.25s;
}
.deck-dots button.active {
  width: 22px;
  border-radius: 999px;
  background: var(--purple);
  transform: scale(1.05);
}

@media (max-width: 800px) {
  .c3d-viewport { height: 360px; width: min(100%, 520px); }
  .c3d-card { width: min(180px, 54vw); margin-left: calc(min(180px, 54vw) / -2); }
}
@media (max-width: 560px) {
  .c3d-viewport { height: 340px; width: min(100%, 100%); }
  .deck-nav { width: 34px; height: 34px; }
  .c3d-card { height: 270px; margin-top: -135px; padding: 16px 14px; }
  .c3d-avatar { width: 52px; height: 52px; }
}

@media (prefers-reduced-motion: reduce) {
  .c3d-ring { transition: none; }
}

/* ── Product area ── */
.l-product {
  padding: 64px 0 80px;
  background: #fff;
}
.l-product h2 {
  font-size: clamp(32px, 4vw, 42px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 8px;
}
.l-product > .wrap > .l-product-sub {
  font-size: 17px;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 40px;
}
.l-tabs {
  display: flex;
  gap: 4px;
  overflow-x: auto;
  border-bottom: 1px solid var(--border);
  margin-bottom: 40px;
  scrollbar-width: none;
}
.l-tabs::-webkit-scrollbar { display: none; }
.l-tab {
  padding: 12px 20px;
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
  color: var(--text-muted);
  position: relative;
  transition: color 0.2s;
}
.l-tab.active { color: var(--purple); }
.l-tab.active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  border-radius: 2px 2px 0 0;
  background: linear-gradient(90deg, var(--purple), var(--accent));
}
.l-tab-panel { display: none; animation: fadeIn 0.25s ease both; }
.l-tab-panel.active { display: block; }

.panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
}
.panel-head h3 {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.panel-head p {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-muted);
  margin-top: 4px;
}
.panel-link {
  display: none;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  font-weight: 700;
  color: var(--purple);
  white-space: nowrap;
  margin-top: 4px;
  transition: opacity 0.2s;
}
.panel-link:hover { opacity: 0.7; }
@media (min-width: 640px) {
  .panel-link { display: inline-flex; }
}

.card-grid-3 {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}
.card-grid-4 {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .card-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .card-grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .card-grid-3 { grid-template-columns: repeat(3, 1fr); }
  .card-grid-4 { grid-template-columns: repeat(4, 1fr); }
}

.type-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--purple);
  background: rgba(124, 58, 237, 0.08);
  width: fit-content;
}
.type-badge.soft-purple { color: #7c3aed; background: rgba(124, 58, 237, 0.1); }
.type-badge.soft-indigo { color: #4f46e5; background: rgba(79, 70, 229, 0.1); }
.type-badge.soft-violet { color: #9333ea; background: rgba(168, 85, 247, 0.12); }
.type-badge.on-ink { color: #fff; background: rgba(255, 255, 255, 0.16); }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--purple);
}
.link-arrow ion-icon { font-size: 16px; transition: transform 0.2s; }
.listing-row:hover .link-arrow ion-icon { transform: translateX(3px); }

/* Clean listing layout (events / mentors / resources) */
.listing {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--purple-border);
}
.listing-row {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 16px 20px;
  align-items: center;
  padding: 22px 4px;
  border-bottom: 1px solid var(--purple-border);
  color: inherit;
  transition: background 0.2s, padding-left 0.2s;
}
@media (min-width: 720px) {
  .listing-row {
    grid-template-columns: 88px 1fr auto;
    gap: 24px;
    padding: 28px 8px;
  }
}
a.listing-row:hover,
.listing-row:hover {
  background: linear-gradient(90deg, rgba(245, 243, 255, 0.85), transparent);
  padding-left: 14px;
}
.listing-photo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 2px solid var(--purple-border);
}
@media (min-width: 720px) {
  .listing-photo { width: 88px; height: 88px; }
}
.listing-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--purple-light);
  color: var(--purple);
  font-size: 28px;
}
@media (min-width: 720px) {
  .listing-icon { width: 88px; height: 88px; font-size: 32px; }
}
.listing-body { min-width: 0; }
.listing-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
}
.listing-body h3 {
  font-size: clamp(17px, 2vw, 20px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
  transition: color 0.2s;
}
a.listing-row:hover h3 { color: var(--purple); }
.listing-course {
  font-size: 13px;
  font-weight: 700;
  color: var(--purple);
  margin-bottom: 4px;
}
.listing-body p {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  line-height: 1.5;
}
.listing-host {
  margin-top: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-sec);
}
.listing-cta {
  grid-column: 2;
  justify-self: start;
}
@media (min-width: 720px) {
  .listing-cta {
    grid-column: auto;
    justify-self: end;
    align-self: center;
  }
  .listing-cta.btn-primary {
    padding: 10px 18px;
    font-size: 13px;
  }
}
.listing-row.is-filtered-out,
.mentor-tile.is-filtered-out {
  display: none !important;
}

.mentor-toolbar { margin-bottom: 32px; }
.mentor-search-wrap {
  max-width: 420px;
  margin-bottom: 16px;
}
.mentor-toolbar .filter-chips { margin-bottom: 0; }
.mentor-empty {
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-muted);
  padding: 48px 16px;
}

/* Superprof-style mentor cards */
.page-hero-compact {
  padding: 48px 0 28px;
}
.page-hero-center {
  text-align: center;
}
.page-hero-center .section-eyebrow {
  display: block;
}
.page-hero-center > .wrap > p {
  margin-left: auto;
  margin-right: auto;
}
.sp-section {
  padding-top: 28px;
  background: linear-gradient(180deg, #faf9ff 0%, #f4f4f7 100%);
}
.sp-toolbar {
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.sp-toolbar .mentor-search-wrap {
  width: 100%;
  max-width: 480px;
  margin-bottom: 14px;
}
.sp-toolbar .filter-chips {
  margin-bottom: 14px;
  justify-content: center;
}
.sp-count {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-muted);
  margin: 0;
}
.sp-count strong {
  color: var(--text);
  font-weight: 800;
}

.sp-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .sp-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .sp-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1200px) {
  .sp-grid { grid-template-columns: repeat(4, 1fr); }
}

.sp-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 28px 20px 22px;
  background: #fff;
  border: 1px solid #ebeaf0;
  border-radius: 16px;
  color: inherit;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s;
  height: 100%;
}
.sp-card:hover {
  transform: translateY(-4px);
  border-color: rgba(124, 58, 237, 0.25);
  box-shadow: 0 14px 36px rgba(124, 58, 237, 0.1);
}

.sp-photo-wrap {
  position: relative;
  width: 132px;
  height: 132px;
  margin-bottom: 16px;
}
.sp-photo {
  width: 132px;
  height: 132px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 4px solid #fff;
  box-shadow: 0 0 0 2px rgba(124, 58, 237, 0.18), 0 8px 20px rgba(15, 10, 30, 0.1);
  transition: transform 0.35s ease;
}
.sp-photo.img-wit { object-position: center 28%; }
.sp-photo.img-alec { object-position: center 24%; }
.sp-photo.img-javen { object-position: center 26%; }
.sp-photo.img-oliver { object-position: center 22%; }
.sp-card:hover .sp-photo { transform: scale(1.04); }

.sp-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  flex: 1;
  text-align: center;
}
.sp-body h3 {
  width: 100%;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
  color: var(--text);
  text-align: center;
}
.sp-card:hover h3 { color: var(--purple); }
.sp-subject {
  width: 100%;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-sec);
  margin-bottom: 8px;
  text-align: center;
}
.sp-stars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  margin-bottom: 10px;
  color: #f5a524;
  font-size: 14px;
}
.sp-stars span {
  margin-left: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
}
.sp-bio {
  width: 100%;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 14px;
  text-align: center;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}
.sp-badge {
  display: inline-flex;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  color: #047857;
  background: #ecfdf5;
  margin-bottom: 14px;
}
.sp-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 11px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  color: var(--purple);
  border: 1.5px solid rgba(124, 58, 237, 0.35);
  background: #fff;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.sp-card:hover .sp-cta {
  background: var(--purple);
  color: #fff;
  border-color: var(--purple);
}

.sp-card.is-filtered-out,
.mentor-tile.is-filtered-out {
  display: none !important;
}

/* Resource cards */
.resource-search, .mentor-search {
  position: relative;
  margin-bottom: 16px;
}
.resource-search svg, .mentor-search svg {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  color: #9ca3af;
  pointer-events: none;
}
.resource-search input, .mentor-search input {
  width: 100%;
  padding: 10px 16px 10px 36px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 500;
  font-family: inherit;
  color: var(--text);
  outline: none;
  transition: box-shadow 0.2s;
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(221,214,254,0.8);
  box-shadow: 0 2px 12px rgba(124,58,237,0.06);
}
.resource-search input:focus, .mentor-search input:focus {
  box-shadow: 0 0 0 3px rgba(124,58,237,0.15), 0 2px 12px rgba(124,58,237,0.1);
}
.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}
.filter-chip {
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-sec);
  transition: transform 0.2s;
}
.filter-chip:hover { transform: scale(1.05); }
.filter-chip.active {
  color: #fff;
  background: linear-gradient(135deg, var(--purple), var(--accent));
  box-shadow: 0 2px 10px rgba(124,58,237,0.35);
}
.resource-card {
  border-radius: 16px;
  overflow: hidden;
}
.resource-card .thumb {
  height: 160px;
  overflow: hidden;
  background: #f7f8fa;
}
.resource-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.resource-card:hover .thumb img { transform: scale(1.05); }
.resource-card .body { padding: 20px; }
.resource-card h4 {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
  margin: 12px 0 8px;
  transition: color 0.2s;
}
.resource-card:hover h4 { color: var(--purple-hover); }
.resource-card .desc {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 16px;
}
.resource-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.resource-foot .cat { font-size: 12px; font-weight: 600; color: #9ca3af; }
.resource-foot a { font-size: 13px; font-weight: 700; color: var(--purple); }

/* Mentor cards */
.mentor-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}
.mentor-filters .mentor-search { flex: 1; min-width: 200px; margin-bottom: 0; }
.filter-dd {
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-sec);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: transform 0.2s;
}
.filter-dd:hover { transform: scale(1.05); }
.mentor-card {
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.2s;
}
.mentor-card:hover { transform: scale(1.02) translateY(-4px); }
.mentor-card .photo {
  height: 180px;
  overflow: hidden;
  background: #f7f8fa;
}
.mentor-card .photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.5s;
}
.mentor-card:hover .photo img { transform: scale(1.05); }
.mentor-card .body { padding: 16px; }
.mentor-card .name { font-weight: 800; font-size: 15px; }
.mentor-card .uni { font-size: 13px; font-weight: 600; color: var(--text-sec); margin-top: 2px; }
.mentor-card .course { font-size: 12px; font-weight: 500; color: var(--text-muted); margin-bottom: 4px; }
.mentor-card .sessions { font-size: 11px; color: #9ca3af; margin: 2px 0 12px; }
.tags { display: flex; flex-wrap: wrap; gap: 4px; margin-bottom: 16px; }
.tag {
  display: inline-flex;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  background: var(--purple-light);
  color: var(--purple);
  border: 1px solid var(--purple-border);
}
.mentor-card .btn-primary { width: 100%; padding: 8px; font-size: 13px; }

/* ── Homepage explainer sections ── */
.section-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 12px;
}
.l-explain {
  padding: 80px 0;
  background: #fff;
}
.l-explain h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  letter-spacing: -0.02em;
  max-width: 640px;
  margin-bottom: 16px;
}
.l-explain-lead {
  font-size: 18px;
  font-weight: 500;
  color: var(--text-sec);
  max-width: 680px;
  line-height: 1.65;
  margin-bottom: 48px;
}
.l-explain-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .l-explain-grid { grid-template-columns: repeat(3, 1fr); }
}
.l-explain-card {
  border-radius: 16px;
  padding: 28px 24px;
}
.l-explain-card .ex-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--purple);
  background: var(--purple-light);
  margin-bottom: 16px;
}
.l-explain-card .ex-icon ion-icon {
  font-size: 24px;
}
.l-explain-card h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 10px;
}
.l-explain-card p {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 16px;
}
.l-explain-card a {
  font-size: 14px;
  font-weight: 700;
  color: var(--purple);
}

/* Stats + chart */
.l-stats {
  padding: 72px 0 80px;
  background: linear-gradient(180deg, #faf9ff 0%, #fff 100%);
  border-top: 1px solid var(--purple-border);
}
.l-stats-layout {
  display: grid;
  gap: 40px;
  align-items: center;
}
@media (min-width: 960px) {
  .l-stats-layout { grid-template-columns: 0.9fr 1.1fr; gap: 56px; }
}
.l-stats-copy h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.l-stats-copy > p {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-sec);
  line-height: 1.6;
  max-width: 420px;
  margin-bottom: 32px;
}
.l-stats-kpis {
  list-style: none;
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
}
@media (min-width: 480px) {
  .l-stats-kpis { grid-template-columns: repeat(3, 1fr); gap: 12px; }
}
@media (min-width: 960px) {
  .l-stats-kpis { grid-template-columns: 1fr; gap: 20px; }
}
.l-stats-kpis li {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-left: 14px;
  border-left: 3px solid var(--purple);
}
.l-stat-num {
  font-size: clamp(28px, 3.5vw, 36px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
  line-height: 1.1;
  font-variant-numeric: tabular-nums;
}
.l-stat-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
}

.l-stats-chart {
  border-radius: 28px;
  padding: 24px 20px 20px;
  background:
    radial-gradient(ellipse 70% 50% at 80% 0%, rgba(168, 85, 247, 0.12), transparent 60%),
    linear-gradient(180deg, #fff 0%, #faf9ff 100%);
  border: 1px solid rgba(124, 58, 237, 0.12);
  box-shadow: 0 16px 48px rgba(124, 58, 237, 0.08);
}
.l-stats-chart-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  padding: 0 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}
.l-stats-chart-tag {
  font-size: 12px;
  font-weight: 600;
  color: var(--purple);
  background: var(--purple-light);
  padding: 4px 10px;
  border-radius: 999px;
}
.l-chart-svg {
  width: 100%;
  height: auto;
  display: block;
}
.l-chart-grid line {
  stroke: rgba(124, 58, 237, 0.1);
  stroke-width: 1;
  stroke-dasharray: 4 6;
}
.l-chart-axis text {
  fill: #9ca3af;
  font-size: 11px;
  font-weight: 600;
  font-family: Manrope, system-ui, sans-serif;
  text-anchor: middle;
}
.l-chart-area {
  fill: url(#chartArea);
  opacity: 0;
  transform-origin: bottom;
}
.l-chart-line {
  stroke-dasharray: 700;
  stroke-dashoffset: 700;
}
.l-chart-points circle {
  fill: #fff;
  stroke: #7c3aed;
  stroke-width: 2.5;
  opacity: 0;
  transform-box: fill-box;
  transform-origin: center;
}
.l-stats-chart.is-on .l-chart-area {
  animation: chartAreaIn 0.9s 0.15s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.l-stats-chart.is-on .l-chart-line {
  animation: chartDraw 1.2s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.l-stats-chart.is-on .l-chart-points circle {
  animation: chartPointIn 0.4s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.l-stats-chart.is-on .l-chart-points circle:nth-child(1) { animation-delay: 0.15s; }
.l-stats-chart.is-on .l-chart-points circle:nth-child(2) { animation-delay: 0.3s; }
.l-stats-chart.is-on .l-chart-points circle:nth-child(3) { animation-delay: 0.45s; }
.l-stats-chart.is-on .l-chart-points circle:nth-child(4) { animation-delay: 0.6s; }
.l-stats-chart.is-on .l-chart-points circle:nth-child(5) { animation-delay: 0.75s; }
.l-stats-chart.is-on .l-chart-points circle:nth-child(6) { animation-delay: 0.9s; }

@keyframes chartDraw {
  to { stroke-dashoffset: 0; }
}
@keyframes chartAreaIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes chartPointIn {
  from { opacity: 0; transform: scale(0.4); }
  to { opacity: 1; transform: scale(1); }
}

.l-stats-bars {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
  padding: 12px 8px 4px;
  border-top: 1px solid rgba(124, 58, 237, 0.1);
}
.l-bar-row {
  display: grid;
  grid-template-columns: 28px 1fr 36px;
  gap: 10px;
  align-items: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
}
.l-bar-track {
  height: 8px;
  border-radius: 999px;
  background: rgba(124, 58, 237, 0.08);
  overflow: hidden;
}
.l-bar-fill {
  height: 100%;
  width: 0%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--purple), var(--accent));
  transition: width 1s cubic-bezier(0.22, 1, 0.36, 1);
}
.l-stats-chart.is-on .l-bar-fill { width: var(--bar-w, 0%); }

.l-how {
  padding: 80px 0;
  background: linear-gradient(180deg, #faf9ff 0%, #fff 100%);
}
.l-how h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  margin-bottom: 48px;
}
.l-steps {
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .l-steps { grid-template-columns: repeat(3, 1fr); }
}
.l-step .step-num {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, var(--purple), var(--accent));
  margin-bottom: 16px;
}
.l-step h3 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 8px;
}
.l-step p {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-muted);
  line-height: 1.55;
}

.l-parents {
  padding: 80px 0;
  background: #fff;
}
.l-parents-grid {
  display: grid;
  gap: 48px;
  align-items: start;
}
@media (min-width: 900px) {
  .l-parents-grid { grid-template-columns: 1.1fr 0.9fr; }
}
.l-parents-copy h2 {
  font-size: clamp(28px, 3.5vw, 36px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.l-parents-copy > p {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-sec);
  line-height: 1.65;
  margin-bottom: 28px;
}
.l-parents-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 28px;
}
.l-parents-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.l-parents-list .icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--purple-light);
  color: var(--purple);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}
.l-parents-list .icon ion-icon { font-size: 16px; }
.l-parents-list strong {
  display: block;
  font-size: 15px;
  margin-bottom: 2px;
}
.l-parents-list span {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
}
.l-parents-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.l-parents-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.l-parents-card {
  border-radius: 16px;
  padding: 20px 22px;
}
.l-parents-card .pc-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 8px;
}
.l-parents-card > p {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
}
.l-parents-card .pc-answer {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  line-height: 1.5;
}

.l-next {
  padding: 80px 0;
  background: linear-gradient(180deg, #faf9ff, #fff);
}
.l-next h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  margin-bottom: 12px;
}
.l-next-sub {
  font-size: 17px;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 560px;
}
.l-next-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .l-next-grid { grid-template-columns: repeat(3, 1fr); }
}
.l-next-card {
  display: block;
  border-radius: 16px;
  padding: 28px 24px;
}
.l-next-card h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 8px;
}
.l-next-card p {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.5;
}
.l-next-card span {
  font-size: 14px;
  font-weight: 700;
  color: var(--purple);
}

/* ── Inner pages ── */
.page-hero {
  padding: 64px 0 40px;
  background: linear-gradient(135deg, #faf9ff 0%, #fff 60%);
  border-bottom: 1px solid var(--purple-border);
}
.page-hero h1 {
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.page-hero > .wrap > p {
  font-size: 17px;
  font-weight: 500;
  color: var(--text-sec);
  max-width: 640px;
  line-height: 1.6;
}
.page-hero-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}
.page-content {
  padding: 56px 0 80px;
}
.page-content-alt {
  background: linear-gradient(180deg, #faf9ff, #fff);
  border-top: 1px solid var(--purple-border);
}

/* ── Final CTA ── */
.l-cta {
  position: relative;
  overflow: hidden;
  padding: 80px 0;
  background: var(--footer);
  text-align: center;
}
.l-cta-aurora {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 60% 70% at 50% 0%, rgba(124,58,237,0.35) 0%, transparent 65%),
    radial-gradient(ellipse 40% 50% at 80% 100%, rgba(168,85,247,0.2) 0%, transparent 60%);
}
.l-cta h2 {
  position: relative;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 16px;
}
.l-cta p {
  position: relative;
  font-size: 17px;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  max-width: 480px;
  margin: 0 auto 40px;
  line-height: 1.6;
}
.l-cta-btns {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-bottom: 20px;
}
.l-cta-micro {
  position: relative;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.35);
}

/* ── Footer ── */
.l-footer {
  padding: 56px 0 32px;
  background: var(--footer);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.l-footer-grid {
  display: grid;
  gap: 40px;
  margin-bottom: 48px;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .l-footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .l-footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
}
.l-footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
.l-footer-brand img {
  width: 28px;
  height: 28px;
  border-radius: 8px;
}
.l-footer-brand span {
  font-weight: 800;
  font-size: 14px;
  color: #fff;
}
.l-footer-blurb {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
}
.l-footer h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 16px;
}
.l-footer a {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  margin-bottom: 10px;
  transition: color 0.2s;
}
.l-footer a:hover { color: #fff; }
.l-socials {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}
.l-socials a {
  width: 32px;
  height: 32px;
  margin: 0;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.5);
  transition: transform 0.2s;
}
.l-socials a:hover { transform: scale(1.1); color: #fff; }
.l-footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 640px) {
  .l-footer-bottom { flex-direction: row; }
}
.l-footer-bottom p,
.l-footer-bottom a {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.3);
  margin: 0;
  display: inline;
}
.l-footer-bottom-links { display: flex; gap: 20px; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .l-hero-grid { grid-template-columns: 1fr; }
  .l-hero-visual { display: none; }
  .l-nav-links { display: none; }
  .l-signin,
  .l-nav-actions .btn-secondary,
  .l-nav-actions .btn-primary { display: none; }
  .l-menu-btn { display: block; }
  .l-hero { padding: 48px 0 40px; }
}

.duration-muted { font-size: 12px; font-weight: 500; color: #9ca3af; }
.event-top-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }

/* ── Dynamic UI ── */
.l-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 200;
  pointer-events: none;
  background: transparent;
}
.l-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--purple), var(--accent));
  box-shadow: 0 0 12px rgba(168, 85, 247, 0.45);
  transition: width 0.08s linear;
}

.l-hero-aurora {
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.l-explain-card,
.l-next-card,
.l-parents-card {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --lift-y: 0px;
  --lift-scale: 1;
  transform:
    perspective(900px)
    rotateX(var(--tilt-x))
    rotateY(var(--tilt-y))
    translateY(var(--lift-y))
    scale(var(--lift-scale));
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.25s,
    opacity 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  transform-style: preserve-3d;
  will-change: transform;
}
.l-explain-card.reveal,
.l-next-card.reveal,
.l-parents-card.reveal {
  --lift-y: 22px;
  opacity: 0;
  transform:
    perspective(900px)
    rotateX(var(--tilt-x))
    rotateY(var(--tilt-y))
    translateY(var(--lift-y))
    scale(var(--lift-scale));
}
.l-explain-card.reveal.in,
.l-next-card.reveal.in,
.l-parents-card.reveal.in {
  --lift-y: 0px;
  opacity: 1;
  transform:
    perspective(900px)
    rotateX(var(--tilt-x))
    rotateY(var(--tilt-y))
    translateY(var(--lift-y))
    scale(var(--lift-scale));
}
.l-explain-card:hover,
.l-explain-card.reveal.in:hover,
.l-next-card:hover,
.l-next-card.reveal.in:hover {
  --lift-y: -4px;
  --lift-scale: 1.015;
  box-shadow: 0 12px 36px rgba(124, 58, 237, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.page-hero {
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: -20% -10%;
  pointer-events: none;
  background:
    radial-gradient(ellipse 50% 60% at 15% 20%, rgba(168, 85, 247, 0.12) 0%, transparent 55%),
    radial-gradient(ellipse 45% 50% at 90% 70%, rgba(124, 58, 237, 0.1) 0%, transparent 55%);
  animation: pageHeroDrift 14s ease-in-out infinite alternate;
}
.page-hero > .wrap { position: relative; z-index: 1; }

@keyframes pageHeroDrift {
  from { transform: translate3d(-2%, -1%, 0) scale(1); }
  to { transform: translate3d(3%, 2%, 0) scale(1.06); }
}

.l-nav-links a {
  position: relative;
}
.l-nav-links a::after {
  content: '';
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 6px;
  height: 2px;
  border-radius: 2px;
  background: var(--purple);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}
.l-nav-links a:hover::after,
.l-nav-links a.active::after {
  transform: scaleX(1);
}

.filter-chip {
  position: relative;
  overflow: hidden;
}
.filter-chip.active {
  animation: chipPop 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
@keyframes chipPop {
  0% { transform: scale(1); }
  40% { transform: scale(1.08); }
  100% { transform: scale(1.05); }
}

.btn-primary {
  will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
  .l-progress { display: none; }
  .page-hero::before { animation: none; }
  .float-card,
  .float-card-slow,
  .float-card-alt,
  .l-float-card,
  .l-float-main,
  .l-float-2,
  .l-float-3 { animation: none !important; }
  .anim-fade-up,
  .anim-fade-up-d1,
  .anim-fade-up-d2,
  .anim-fade-up-d3,
  .anim-fade-up-d4 { animation: none !important; opacity: 1; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .l-explain-card,
  .l-next-card,
  .l-parents-card {
    transform: none !important;
  }
  .l-chart-line,
  .l-chart-area,
  .l-chart-points circle {
    animation: none !important;
    opacity: 1;
    stroke-dashoffset: 0;
  }
  .l-bar-fill { width: var(--bar-w, 0%) !important; transition: none; }
}

/* Mentor profile */
.mp-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--purple);
  margin-bottom: 28px;
}
.mp-hero {
  display: grid;
  gap: 32px;
  align-items: center;
  margin-bottom: 48px;
}
@media (min-width: 800px) {
  .mp-hero { grid-template-columns: 240px 1fr; }
}
.mp-photo {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 4px solid #fff;
  box-shadow: 0 0 0 2px rgba(124,58,237,0.2), 0 16px 40px rgba(15,10,30,0.12);
  margin: 0 auto;
  display: block;
}
.mp-photo.img-wit { object-position: center 28%; }
.mp-photo.img-alec { object-position: center 24%; }
.mp-photo.img-javen { object-position: center 26%; }
.mp-photo.img-oliver { object-position: center 22%; }
.mp-hero h1 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.mp-role {
  font-size: 16px;
  font-weight: 700;
  color: var(--purple);
  margin-bottom: 8px;
}
.mp-uni {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-sec);
  margin-bottom: 16px;
}
.mp-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.mp-chip {
  display: inline-flex;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  background: var(--purple-light);
  color: var(--purple);
}
.mp-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.mp-grid {
  display: grid;
  gap: 20px;
}
@media (min-width: 800px) {
  .mp-grid { grid-template-columns: 1fr 1fr; }
}
.mp-panel {
  padding: 24px;
  border-radius: 16px;
  border: 1px solid var(--purple-border);
  background: #fff;
}
.mp-panel h3 {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 12px;
}
.mp-panel p, .mp-panel li {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-sec);
  line-height: 1.6;
}
.mp-panel ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mp-panel li::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--purple);
  margin-right: 10px;
  vertical-align: middle;
}
.mp-panel.wide { grid-column: 1 / -1; }

/* Forms */
.l-form {
  max-width: 480px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.l-form label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text);
}
.l-form input,
.l-form select,
.l-form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--purple-border);
  font: inherit;
  font-size: 14px;
  font-weight: 500;
  background: #fff;
  outline: none;
}
.l-form input:focus,
.l-form select:focus,
.l-form textarea:focus {
  box-shadow: 0 0 0 3px rgba(124,58,237,0.15);
  border-color: var(--purple);
}
.l-form textarea { min-height: 110px; resize: vertical; }
.l-form .btn-primary { width: 100%; }
.l-form-note {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  text-align: center;
}
.l-form-card {
  max-width: 560px;
  margin: 0 auto;
  padding: 32px 28px;
  border-radius: 20px;
  border: 1px solid var(--purple-border);
  background: #fff;
  box-shadow: 0 12px 40px rgba(124,58,237,0.08);
}

/* FAQ */
.l-faq { display: flex; flex-direction: column; gap: 10px; max-width: 720px; margin: 0 auto; }
.l-faq details {
  border: 1px solid var(--purple-border);
  border-radius: 14px;
  background: #fff;
  padding: 16px 18px;
}
.l-faq summary {
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}
.l-faq summary::-webkit-details-marker { display: none; }
.l-faq details[open] summary { color: var(--purple); margin-bottom: 10px; }
.l-faq p {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  line-height: 1.55;
}

/* Team */
.team-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .team-grid { grid-template-columns: repeat(3, 1fr); } }
.team-card {
  text-align: center;
  padding: 28px 20px;
  border-radius: 16px;
  border: 1px solid var(--purple-border);
  background: #fff;
}
.team-card img {
  width: 112px;
  height: 112px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  margin: 0 auto 14px;
  border: 3px solid var(--purple-light);
}
.team-card h3 { font-size: 17px; font-weight: 800; margin-bottom: 4px; }
.team-card .role { font-size: 13px; font-weight: 700; color: var(--purple); margin-bottom: 10px; }
.team-card p { font-size: 13px; font-weight: 500; color: var(--text-muted); line-height: 1.5; }

.partner-logo {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 24px;
  display: block;
  border: 4px solid var(--purple-border);
  box-shadow: 0 12px 32px rgba(124,58,237,0.12);
}

.signup-gate {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 18px;
  padding: 12px 14px;
  border-radius: 12px;
  background: var(--purple-light);
  border: 1px solid var(--purple-border);
  color: var(--purple);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
}
.signup-gate ion-icon {
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Limited-preview supercurriculars / guides */
.limited-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--purple-light);
  border: 1px solid var(--purple-border);
  color: var(--purple);
  font-size: 13px;
  font-weight: 700;
}
.limited-note ion-icon { font-size: 16px; }
.sc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.sc-card {
  padding: 22px 20px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(15, 10, 30, 0.08);
  box-shadow: 0 8px 22px rgba(15, 10, 30, 0.05);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sc-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.sc-card .listing-icon {
  width: 48px;
  height: 48px;
  font-size: 22px;
}
.sc-card h3 {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.sc-card > p {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-sec);
  line-height: 1.5;
}
.sc-preview {
  margin: 4px 0 0;
  padding-left: 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.sc-preview li {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.45;
}
.sc-limited {
  margin-top: auto;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
}
.sc-card .btn-secondary {
  align-self: flex-start;
  margin-top: 4px;
  padding: 8px 14px;
  font-size: 13px;
}
.sc-footer-cta {
  margin-top: 36px;
  text-align: center;
  padding: 28px 20px;
  border-radius: 18px;
  background: linear-gradient(165deg, #faf9ff, #f3efff);
  border: 1px solid var(--purple-border);
}
.sc-footer-cta h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 8px;
}
.sc-footer-cta p {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-sec);
  margin-bottom: 16px;
}
@media (max-width: 800px) {
  .sc-grid { grid-template-columns: 1fr; }
}

.coming-soon-panel {
  max-width: 520px;
  margin: 8px auto 0;
  text-align: center;
  padding: 48px 28px;
  border-radius: 20px;
  background: linear-gradient(165deg, #ffffff, #faf9ff);
  border: 1px solid var(--purple-border);
  box-shadow: 0 12px 32px rgba(15, 10, 30, 0.06);
}
.coming-soon-panel ion-icon {
  font-size: 36px;
  color: var(--purple);
  margin-bottom: 12px;
}
.coming-soon-panel h3 {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.coming-soon-panel p {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-sec);
  line-height: 1.55;
  margin-bottom: 20px;
}

.soon-pill {
  display: inline-flex;
  align-items: center;
  padding: 3px 9px;
  border-radius: 999px;
  background: rgba(124, 58, 237, 0.1);
  color: var(--purple);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  width: fit-content;
}
.sc-card-soon {
  opacity: 0.92;
  position: relative;
}
.sc-card-soon::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 55%, rgba(250, 249, 255, 0.55) 100%);
}
.listing-row.is-coming-soon {
  opacity: 0.92;
  cursor: default;
}
.listing-row.is-coming-soon:hover {
  transform: none;
  box-shadow: none;
}

/* ── Eventbrite-style events ── */
.eb-featured {
  padding: 12px 0 36px;
}
.eb-browse {
  padding: 8px 0 56px;
}
.eb-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}
.eb-section-head h2 {
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.eb-section-head p {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
}
.eb-carousel-nav {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}
.eb-carousel-viewport {
  overflow: hidden;
  margin: 0 -4px;
  padding: 4px;
}
.eb-carousel-track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 8px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.eb-carousel-track::-webkit-scrollbar { display: none; }

.eb-feature-card {
  flex: 0 0 min(340px, 82vw);
  scroll-snap-align: start;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(15, 10, 30, 0.08);
  box-shadow: 0 8px 24px rgba(15, 10, 30, 0.06);
  transition: transform 0.25s, box-shadow 0.25s;
  color: inherit;
  text-decoration: none;
  display: flex;
  flex-direction: column;
}
.eb-feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(15, 10, 30, 0.1);
}
.eb-feature-body {
  flex: 1;
}
.eb-feature-media {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #1a1228;
}
.eb-feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0.92;
}
.eb-feature-media img.img-ari {
  object-position: center 36%;
}
.eb-feature-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 10px;
  border-radius: 6px;
  background: rgba(15, 10, 30, 0.72);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.eb-full-tag {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 4px 10px;
  border-radius: 6px;
  background: #b91c1c;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.eb-feature-card.is-full {
  opacity: 0.98;
}
button.eb-more {
  appearance: none;
  border: none;
  cursor: pointer;
  font: inherit;
}
button.eb-more:disabled {
  opacity: 0.65;
  cursor: default;
}
.eb-book-status {
  margin: 8px 0 0;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
}

.inq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}
.inq-item {
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid var(--purple-border);
  background: #faf8ff;
  text-align: left;
}
.inq-item h3 {
  margin: 6px 0 4px;
  font-size: 16px;
  font-weight: 800;
}
.inq-item p {
  margin: 0;
  font-size: 13px;
  color: var(--text-sec);
}
.inq-item-top {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  align-items: center;
}
.inq-action {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--purple);
}
.inq-status {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: capitalize;
}

.signup-role-toggle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 20px;
}
.signup-role-btn {
  appearance: none;
  border: 1px solid var(--purple-border);
  background: #fff;
  border-radius: 12px;
  padding: 12px 10px;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-sec);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.signup-role-btn.is-active {
  border-color: var(--purple);
  background: var(--purple-light);
  color: var(--purple);
}
.pending-banner {
  margin: 0 0 16px;
  padding: 12px 14px;
  border-radius: 12px;
  background: #fff7ed;
  border: 1px solid #fdba74;
  color: #9a3412;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.45;
}
.eb-feature-body,
.eb-card-body {
  display: flex;
  gap: 14px;
  padding: 14px 16px 16px;
  align-items: flex-start;
}
.eb-feature-copy {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.eb-feature-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 12px;
}
.eb-more {
  margin-left: auto;
  font-size: 13px;
  font-weight: 800;
  color: var(--purple);
  text-decoration: none;
}
.eb-more:hover { text-decoration: underline; }

.eb-date-stack {
  flex-shrink: 0;
  width: 44px;
  text-align: center;
  line-height: 1.1;
}
.eb-date-stack.eb-date-tbd {
  width: 52px;
}
.eb-month {
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #c2410c;
  text-transform: uppercase;
}
.eb-day {
  display: block;
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  margin-top: 2px;
}
.eb-day-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  margin-top: 4px;
  text-transform: none;
  letter-spacing: 0;
}
.eb-feature-body h3,
.eb-card-copy h3 {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
  line-height: 1.3;
}
.eb-when {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-sec);
  margin-bottom: 4px;
}
.eb-org {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
}
.eb-preview-note {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  margin: 6px 0 2px;
}
.eb-signup {
  display: inline-flex;
  align-items: center;
  margin-top: 10px;
  padding: 7px 12px;
  border-radius: 8px;
  background: var(--purple);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-decoration: none;
}
.eb-feature-card .eb-signup:hover {
  background: #6d28d9;
  color: #fff;
}
.eb-price {
  display: inline-block;
  font-size: 13px;
  font-weight: 800;
  color: var(--text);
}

.eb-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 20px;
  align-items: center;
  margin-bottom: 24px;
}
.eb-toolbar .resource-search {
  flex: 1 1 240px;
  max-width: 360px;
  margin: 0;
}

.eb-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.eb-card {
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(15, 10, 30, 0.08);
  box-shadow: 0 6px 18px rgba(15, 10, 30, 0.05);
  color: inherit;
  text-decoration: none;
  transition: transform 0.25s, box-shadow 0.25s;
}
.eb-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(15, 10, 30, 0.1);
}
.eb-card-media {
  aspect-ratio: 16 / 10;
  background: #1a1228;
  overflow: hidden;
}
.eb-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.eb-card.is-filtered-out { display: none; }

@media (max-width: 960px) {
  .eb-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .eb-grid { grid-template-columns: 1fr; }
  .eb-feature-card { flex-basis: min(300px, 88vw); }
}

/* ── Phone / auth polish ── */
@media (max-width: 640px) {
  .wrap { padding-left: 16px; padding-right: 16px; }

  .l-nav-inner { padding-left: 4px; padding-right: 4px; }
  .l-brand span { font-size: 15px; }
  .l-brand img { width: 32px; height: 32px; }

  .l-mobile-menu {
    padding: 12px 16px 20px;
    max-height: min(70vh, 480px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .l-mobile-menu a {
    padding: 14px 12px;
    font-size: 16px;
    min-height: 48px;
    display: flex;
    align-items: center;
  }

  .page-hero {
    padding: 28px 0 12px;
  }
  .page-hero h1 {
    font-size: clamp(28px, 8vw, 36px);
    margin-bottom: 8px;
  }
  .page-hero > .wrap > p {
    font-size: 15px;
    margin-bottom: 0;
  }

  .page-content {
    padding: 20px 0 48px;
  }

  .auth-page .page-hero {
    padding-top: 20px;
  }
  .auth-page .l-form-card {
    padding: 20px 16px;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(124, 58, 237, 0.06);
  }
  .auth-page .l-form-card > ul {
    margin-bottom: 16px !important;
    gap: 8px !important;
    font-size: 13px !important;
  }
  .l-form {
    gap: 14px;
  }
  .l-form input,
  .l-form select,
  .l-form textarea {
    font-size: 16px; /* avoid iOS zoom on focus */
    padding: 14px 14px;
    min-height: 48px;
    border-radius: 12px;
  }
  .l-form .btn-primary,
  .auth-page .btn-primary {
    min-height: 48px;
    font-size: 16px;
    padding: 14px 18px;
  }

  .l-faq details { padding: 14px 14px; }
  .l-faq summary { font-size: 14px; min-height: 44px; }

  .l-cta-btns { flex-direction: column; align-items: stretch; }
  .l-cta-btns .btn-primary,
  .l-cta-btns .btn-secondary,
  .l-cta-btns .btn-ghost-dark { width: 100%; text-align: center; }

  .page-hero-links {
    flex-direction: column;
    align-items: stretch;
  }
  .page-hero-links .btn-primary,
  .page-hero-links .btn-secondary { width: 100%; text-align: center; }
}
