/**
 * Home page – layout, animations, hero
 * Uses design tokens from liquid-glass.css (--primary-mint = indigo, --secondary-purple = teal)
 */

/* Override smooth scroll for snappy native feel (liquid-glass sets scroll-behavior: smooth) */
html {
  scroll-behavior: auto;
}

/* ── Hero: gradient text (indigo → teal) ── */

html, body {
  overflow-x: hidden;
}
.home-hero-gradient-text {
  background: linear-gradient(
    110deg,
    #a5b4fc 0%,
    var(--primary-mint) 40%,
    var(--secondary-purple) 60%,
    #5eead4 100%
  );
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: home-gradient-text 10s ease-in-out infinite;
}

@keyframes home-gradient-text {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* ── Hero: subtle dot pattern overlay ── */
.home-hero-pattern {
  background-image: radial-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 32px 32px;
}

/* ── Hero: subheadline – improved legibility (feedback: text hard to read on glowing bg) ── */
.home-hero-subheadline {
  font-size: 1.3rem;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .home-hero-subheadline {
    font-size: 1.55rem;
  }
}
@media (min-width: 1024px) {
  .home-hero-subheadline {
    font-size: 1.8rem;
  }
}

/* ── Hero: badge pulse dot ── */
.home-badge-dot {
  animation: home-badge-pulse 2s ease-in-out infinite;
}

@keyframes home-badge-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.1); }
}

/* ── Nav: light text when over dark hero ── */
.home-nav-in-hero .nav-logo-text,
.home-nav-in-hero .nav-link-animated,
.home-nav-in-hero a:not(.btn-gradient) {
  color: rgba(255, 255, 255, 0.95);
}
.home-nav-in-hero .nav-logo-icon {
  color: var(--primary-mint);
}
.home-nav-in-hero .btn-gradient {
  color: #fff;
}
.home-nav.nav-scrolled .nav-logo-text,
.home-nav.nav-scrolled .nav-link-animated,
.home-nav.nav-scrolled a:not(.btn-gradient) {
  color: #0f172a;
}
.home-nav.nav-scrolled .nav-logo-icon {
  color: var(--primary-mint);
}
.home-nav.nav-scrolled #nav-menu-btn {
  color: #475569;
}
.home-nav.nav-scrolled #nav-menu-btn:hover {
  color: #0f172a;
  background: rgba(0, 0, 0, 0.06);
}
/* Dark mode scrolled nav: keep light text */
.dark .home-nav.nav-scrolled .nav-logo-text,
.dark .home-nav.nav-scrolled .nav-link-animated,
.dark .home-nav.nav-scrolled a:not(.btn-gradient) {
  color: rgba(255, 255, 255, 0.95);
}
.dark .home-nav.nav-scrolled #nav-menu-btn {
  color: #94a3b8;
}
.dark .home-nav.nav-scrolled #nav-menu-btn:hover {
  color: #f1f5f9;
  background: rgba(255, 255, 255, 0.1);
}

/* ── Mobile menu: home-specific (hero = dark, scrolled = light panel) ── */
.home-nav:not(.nav-scrolled) .public-nav-mobile-hero .nav-mobile-link {
  color: #e2e8f0;
}
.home-nav:not(.nav-scrolled) .public-nav-mobile-hero .nav-mobile-link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}
.home-nav:not(.nav-scrolled) .public-nav-mobile-hero {
  background: transparent;
  border-top-color: rgba(255, 255, 255, 0.1);
}
.home-nav:not(.nav-scrolled) .public-nav-mobile-hero .pt-2 {
  border-top-color: rgba(255, 255, 255, 0.1);
}
.home-nav.nav-scrolled .nav-mobile-menu {
  background: rgba(255, 255, 255, 0.98);
  border-top-color: rgba(0, 0, 0, 0.06);
}
.home-nav.nav-scrolled .nav-mobile-menu .nav-mobile-link {
  color: #334155;
}
.home-nav.nav-scrolled .nav-mobile-menu .nav-mobile-link:hover {
  color: #0f172a;
  background: rgba(0, 0, 0, 0.05);
}
.dark .home-nav.nav-scrolled .nav-mobile-menu {
  background: rgba(15, 23, 42, 0.98);
  border-top-color: rgba(255, 255, 255, 0.06);
}
.dark .home-nav.nav-scrolled .nav-mobile-menu .nav-mobile-link {
  color: #cbd5e1;
}
.dark .home-nav.nav-scrolled .nav-mobile-menu .nav-mobile-link:hover {
  color: #f1f5f9;
  background: rgba(255, 255, 255, 0.05);
}

/* ── Section: scroll-reveal with scale + fade ── */
.home-reveal {
  opacity: 0;
  transform: translateY(28px) scale(0.98);
  transition:
    opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.home-reveal.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.home-reveal-delay-1 { transition-delay: 0.1s; }
.home-reveal-delay-2 { transition-delay: 0.2s; }
.home-reveal-delay-3 { transition-delay: 0.3s; }
.home-reveal-delay-4 { transition-delay: 0.4s; }
.home-reveal-delay-5 { transition-delay: 0.5s; }

/* ── Glass cards: sleek glassmorphic style ── */
.home-glass-card {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem !important;
  border: 1px solid #e5e5e5 !important;
  background: rgba(255,255,255,0.7) !important;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 36px 120px -70px rgba(15,15,15,0.18) !important;
  transition: transform 0.5s, box-shadow 0.5s;
}
.home-glass-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 36px 140px -50px rgba(15,15,15,0.25) !important;
}
.dark .home-glass-card {
  border-color: rgba(255,255,255,0.1) !important;
  background: rgba(23,23,23,0.5) !important;
  box-shadow: 0 36px 140px -60px rgba(10,10,10,0.95) !important;
}
.home-glass-card > .sleek-glow {
  pointer-events: none;
  position: absolute;
  inset: 0;
  transition: opacity 0.5s;
  opacity: 0;
  background: radial-gradient(240px circle at var(--glow-x,50%) var(--glow-y,50%), rgba(15,15,15,0.08), transparent 70%);
}
.home-glass-card:hover > .sleek-glow { opacity: 1; }
.dark .home-glass-card > .sleek-glow {
  background: radial-gradient(240px circle at var(--glow-x,50%) var(--glow-y,50%), rgba(255,255,255,0.08), transparent 70%);
}

/* ── Icon box in cards: subtle accent glow on hover ── */
.home-glass-card .home-icon-box {
  transition: box-shadow 0.4s ease, transform 0.3s ease;
}
.home-glass-card:hover .home-icon-box {
  box-shadow: 0 0 24px -4px rgba(79, 70, 229, 0.25);
  transform: scale(1.02);
}

/* ── CTA buttons: primary dominates, secondary subdued (conversion hierarchy) ── */
.home-cta-primary {
  transition:
    transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.3s ease,
    background-position 0.4s ease;
  box-shadow: 0 4px 14px rgba(79, 70, 229, 0.4);
}
.home-cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px -8px rgba(79, 70, 229, 0.5);
}
.home-cta-primary:active {
  transform: translateY(-1px);
}

/* ── Hire Talent: colorful gradient button (inspired by Button Colorful) ── */
.btn-colorful {
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    #4f46e5 0%,
    #6366f1 35%,
    #7c3aed 65%,
    #0d9488 100%
  );
  background-size: 200% 200%;
  background-position: 0% 50%;
  transition:
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.35s ease,
    background-position 0.5s ease;
  box-shadow:
    0 4px 20px -4px rgba(79, 70, 229, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.1) inset;
}
.btn-colorful::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.15) 0%,
    transparent 50%,
    rgba(255, 255, 255, 0.05) 100%
  );
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}
.btn-colorful:hover {
  transform: translateY(-3px);
  background-position: 100% 50%;
  box-shadow:
    0 20px 40px -10px rgba(79, 70, 229, 0.55),
    0 8px 24px -8px rgba(13, 148, 136, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.15) inset;
}
.btn-colorful:hover::before {
  opacity: 1;
}
.btn-colorful:active {
  transform: translateY(-1px);
}
.btn-colorful .btn-colorful-arrow {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.btn-colorful:hover .btn-colorful-arrow {
  transform: translate(2px, -2px);
}

.home-cta-secondary {
  transition:
    transform 0.25s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}
.home-cta-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px -8px rgba(13, 148, 136, 0.3);
}

/* ── CTA strip: top accent line shimmer ── */
.home-cta-strip {
  position: relative;
  overflow: hidden;
}
.home-cta-strip::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--primary-mint),
    rgba(255, 255, 255, 0.6),
    var(--secondary-purple)
  );
  background-size: 200% 100%;
  animation: home-cta-shimmer 4s ease-in-out infinite;
}
@keyframes home-cta-shimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* ── For Students / For Businesses: link arrow slide ── */
.home-link-arrow {
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
a:hover .home-link-arrow {
  transform: translateX(4px);
}

/* ── Navbar: smooth scroll state (align with existing .nav-scrolled) ── */
.home-nav {
  transition:
    background 0.35s ease,
    backdrop-filter 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

/* ═══════════════════════════════════════════════════════════════════════════
   The 3-Step Sprint section – zig-zag layout, glassmorphism, flow
   ═══════════════════════════════════════════════════════════════════════════ */

.sprint-section {
  background: transparent;
}

/* Timeframe badges – tangible promise */
.sprint-timeframe {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.35rem 0.65rem;
  border-radius: 6px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
/* Step badges: darker hues for WCAG contrast on light backgrounds */
.sprint-timeframe--primary {
  color: #4338ca;
  background: rgba(79, 70, 229, 0.15);
  border: 1px solid rgba(79, 70, 229, 0.35);
}
.dark .sprint-timeframe--primary {
  color: #a5b4fc;
}
.sprint-timeframe--secondary {
  color: #0f766e;
  background: rgba(13, 148, 136, 0.15);
  border: 1px solid rgba(13, 148, 136, 0.35);
}
.dark .sprint-timeframe--secondary {
  color: #5eead4;
}
.sprint-timeframe--accent {
  color: #4338ca;
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.12), rgba(13, 148, 136, 0.12));
  border: 1px solid rgba(79, 70, 229, 0.25);
}
.dark .sprint-timeframe--accent {
  color: #a5b4fc;
}
.sprint-timeframe--review {
  color: #b45309;
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid rgba(245, 158, 11, 0.35);
}
.dark .sprint-timeframe--review {
  color: #fbbf24;
}

/* Glass wrap behind mock – premium glassmorphism gradient */
.sprint-glass-wrap {
  position: relative;
  padding: 1rem;
  border-radius: 1.5rem;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.12) 0%,
    rgba(255, 255, 255, 0.04) 50%,
    rgba(255, 255, 255, 0.08) 100%
  );
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow:
    0 20px 50px -12px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 0 rgba(255, 255, 255, 0.1);
}
.sprint-glass-wrap--energy {
  background: linear-gradient(
    135deg,
    rgba(79, 70, 229, 0.1) 0%,
    rgba(13, 148, 136, 0.1) 50%,
    rgba(79, 70, 229, 0.06) 100%
  );
  border-color: rgba(79, 70, 229, 0.2);
  box-shadow:
    0 20px 50px -12px rgba(0, 0, 0, 0.2),
    0 0 40px -10px rgba(79, 70, 229, 0.12),
    0 0 40px -10px rgba(13, 148, 136, 0.08);
}

/* Connector: dashed line + arrow (flow between steps) */
.sprint-connector {
  position: absolute;
  top: 50%;
  width: 60px;
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    var(--primary-mint) 0,
    var(--primary-mint) 6px,
    transparent 6px,
    transparent 12px
  );
  opacity: 0.6;
}
.sprint-connector--right {
  right: -40px;
  transform: translateY(-50%);
}
.sprint-connector--right::after {
  content: "";
  position: absolute;
  right: -4px;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: var(--primary-mint);
  border-right: none;
}
.sprint-connector--left {
  left: -40px;
  transform: translateY(-50%);
}
.sprint-connector--left::after {
  content: "";
  position: absolute;
  right: -4px;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: var(--primary-mint);
  border-right: none;
}

/* Mock cards – keep text high contrast */
.sprint-mock--form,
.sprint-mock--success {
  color: #0f172a;
}
.dark .sprint-mock--form,
.dark .sprint-mock--success {
  color: #f1f5f9;
}

/* Submit / Launch buttons – hover (decorative mockups) */
.sprint-btn-submit:hover,
.sprint-btn-launch:hover {
  box-shadow: 0 0 24px rgba(79, 70, 229, 0.4);
}

.sprint-badge {
  box-shadow: 0 0 12px rgba(79, 70, 229, 0.2);
}

/* Step content: ensure headings and body stay readable */
.sprint-step__content h3 {
  color: #171717;
}
.dark .sprint-step__content h3 {
  color: #ffffff;
}
.sprint-step__content p {
  color: #525252;
}
.dark .sprint-step__content p {
  color: #a3a3a3;
}

/* ── 4-Step: zig-zag layout (alternating content/visual sides) ── */
/* Odd steps (1, 3): content left, visual right. Even steps (2, 4): visual left, content right. */
.sprint-steps-flow {
  position: relative;
}
/* Prevent flex columns from shrinking; enforce zig-zag column widths */
@media (min-width: 1024px) {
  .sprint-panel .sprint-step__content {
    flex: 0 0 41.666667%; /* 5/12 */
    max-width: 41.666667%;
  }
  .sprint-panel .sprint-step__visual {
    flex: 0 0 58.333333%; /* 7/12 */
    max-width: 58.333333%;
  }
}
/* Step content: extra breathing room between text and visual */
.sprint-section .sprint-step__content {
  padding-right: 0.5rem;
}
@media (min-width: 1024px) {
  .sprint-section .sprint-step__content {
    padding-right: 1rem;
  }
}

/* Step 4 Review: graphic left (aligned with 03), text right; slightly smaller graphic */
#sprint-panel-4 .sprint-glass-wrap {
  max-width: 100%;
}
.sprint-mock--step4__body {
  min-width: 0;
}
.sprint-mock--step4__actions {
  flex-wrap: wrap;
}

/* ── Window frame for sprint mocks (premium tool look) ── */
.sprint-window-frame {
  border-radius: 12px 12px 0 0;
  overflow: hidden;
  box-shadow:
    0 25px 50px -12px rgba(0, 0, 0, 0.25),
    0 0 0 1px rgba(0, 0, 0, 0.05),
    inset 0 1px 0 0 rgba(255, 255, 255, 0.08);
}
.dark .sprint-window-frame {
  box-shadow:
    0 25px 50px -12px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.08),
    inset 0 1px 0 0 rgba(255, 255, 255, 0.05);
}
.sprint-window-frame__titlebar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0.75rem;
  background: #f1f5f9;
  border-bottom: 1px solid #e2e8f0;
}
.dark .sprint-window-frame__titlebar {
  background: #334155;
  border-bottom-color: #475569;
}
.sprint-window-frame__dots {
  display: flex;
  gap: 4px;
}
.sprint-window-frame__dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #94a3b8;
}
.sprint-window-frame__dots span:nth-child(1) { background: #ef4444; }
.sprint-window-frame__dots span:nth-child(2) { background: #eab308; }
.sprint-window-frame__dots span:nth-child(3) { background: #22c55e; }
.sprint-window-frame__title {
  font-size: 0.75rem;
  font-weight: 600;
  color: #64748b;
}
.dark .sprint-window-frame__title {
  color: #94a3b8;
}
.sprint-mock--window {
  border-top: none;
  border-radius: 0 0 1rem 1rem;
}

/* ── Comparison cards: sleek glassmorphic ── */
.home-comparison-card {
  position: relative;
  border-radius: 1.5rem !important;
  border: 1px solid #e5e5e5 !important;
  background: rgba(255,255,255,0.7) !important;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 36px 120px -70px rgba(15,15,15,0.18) !important;
  transition: transform 0.5s, box-shadow 0.5s;
}
.home-comparison-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 36px 140px -50px rgba(15,15,15,0.25) !important;
}
.dark .home-comparison-card {
  border-color: rgba(255,255,255,0.1) !important;
  background: rgba(23,23,23,0.5) !important;
  box-shadow: 0 36px 140px -60px rgba(10,10,10,0.95) !important;
}
.home-comparison-card > .sleek-glow {
  pointer-events: none;
  position: absolute;
  inset: 0;
  transition: opacity 0.5s;
  opacity: 0;
  background: radial-gradient(240px circle at var(--glow-x,50%) var(--glow-y,50%), rgba(15,15,15,0.08), transparent 70%);
}
.home-comparison-card:hover > .sleek-glow { opacity: 1; }
.dark .home-comparison-card > .sleek-glow {
  background: radial-gradient(240px circle at var(--glow-x,50%) var(--glow-y,50%), rgba(255,255,255,0.08), transparent 70%);
}

/* ── Review cards: sleek glassmorphic ── */
.home-review-card {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem !important;
  border: 1px solid #e5e5e5 !important;
  background: rgba(255,255,255,0.7) !important;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 36px 120px -70px rgba(15,15,15,0.18) !important;
  transition: transform 0.5s, box-shadow 0.5s;
  min-height: 220px;
}
.home-review-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 36px 140px -50px rgba(15,15,15,0.25) !important;
}
.dark .home-review-card {
  border-color: rgba(255,255,255,0.1) !important;
  background: rgba(23,23,23,0.5) !important;
  box-shadow: 0 36px 140px -60px rgba(10,10,10,0.95) !important;
}

/* ── Reviews marquee: velocity-scroll (JS-driven) ── */
@keyframes home-reviews-marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.home-reviews-row {
  will-change: transform;
}
.home-reviews-track {
  will-change: transform;
  display: inline-flex;
}
.home-comparison-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem !important;
  flex-shrink: 0;
}
.home-comparison-icon--student {
  background: rgba(13, 148, 136, 0.2);
  color: #0d9488;
  box-shadow: 0 0 20px -4px rgba(13, 148, 136, 0.35);
}
.home-comparison-icon--business {
  background: rgba(79, 70, 229, 0.2);
  color: var(--primary-mint);
  box-shadow: 0 0 20px -4px rgba(79, 70, 229, 0.35);
}
.home-comparison-check {
  font-size: 1.5rem !important;
  color: var(--secondary-purple);
  flex-shrink: 0;
  filter: drop-shadow(0 1px 2px rgba(13, 148, 136, 0.2));
}
.home-comparison-check--business {
  color: var(--primary-mint);
  filter: drop-shadow(0 1px 2px rgba(79, 70, 229, 0.2));
}

/* ── Trust section: video ── */
.home-video-placeholder {
  position: relative;
  min-height: 200px;
}
.home-video-play {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.home-video-play:hover {
  box-shadow: 0 12px 28px -8px rgba(79, 70, 229, 0.4);
}

@media (prefers-reduced-motion: reduce) {
  .sprint-step .fade-in,
  .sprint-timeframe,
  .sprint-glass-wrap,
  .sprint-mock,
  .home-video-play {
    transition: none;
  }
  .home-reviews-track {
    transform: none !important;
  }
}

/* ── FAQ Section ── */
@keyframes faq-beam-spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
@keyframes faq-pulse {
  0% { transform: scale(0.7); opacity: 0.55; }
  60% { opacity: 0.1; }
  100% { transform: scale(1.25); opacity: 0; }
}
@keyframes faq-meter {
  0%, 20% { transform: scaleX(0); transform-origin: left; }
  45%, 60% { transform: scaleX(1); transform-origin: left; }
  80%, 100% { transform: scaleX(0); transform-origin: right; }
}
@keyframes faq-tick {
  0%, 30% { transform: translateX(-6px); opacity: 0.4; }
  50% { transform: translateX(2px); opacity: 1; }
  100% { transform: translateX(20px); opacity: 0; }
}

/* Card shadow */
.faq-card {
  box-shadow: 0 36px 120px -70px rgba(15,15,15,0.18);
}
.dark .faq-card {
  box-shadow: 0 36px 140px -60px rgba(10,10,10,0.95);
}

/* Radial glow on hover */
.faq-glow {
  background: radial-gradient(240px circle at var(--faq-x, 50%) var(--faq-y, 50%), rgba(15, 15, 15, 0.08), transparent 70%);
}
.dark .faq-glow {
  background: radial-gradient(240px circle at var(--faq-x, 50%) var(--faq-y, 50%), rgba(255, 255, 255, 0.08), transparent 70%);
}

/* Intro pill */
.faq-intro {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem 1.4rem;
  border-radius: 9999px;
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, 0.12);
  background: rgba(248, 250, 252, 0.88);
  color: rgba(15, 23, 42, 0.78);
  text-transform: uppercase;
  letter-spacing: 0.35em;
  font-size: 0.65rem;
  width: 100%;
  max-width: 24rem;
  margin: 0 auto;
  mix-blend-mode: multiply;
  opacity: 0;
  transform: translate3d(0, 12px, 0);
  filter: blur(8px);
  transition: opacity 720ms ease, transform 720ms ease, filter 720ms ease;
  isolation: isolate;
  margin-bottom: 50px;
}
.dark .faq-intro {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(12, 12, 12, 0.42);
  color: rgba(248, 250, 252, 0.92);
  mix-blend-mode: screen;
}
.faq-intro--active {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  filter: blur(0);
}
.faq-intro__beam {
  position: absolute;
  inset: -110%;
  pointer-events: none;
  border-radius: 50%;
  background: conic-gradient(from 180deg, rgba(15, 23, 42, 0.18), transparent 30%, rgba(71, 85, 105, 0.18) 58%, transparent 80%, rgba(15, 23, 42, 0.14));
  animation: faq-beam-spin 18s linear infinite;
  opacity: 0.55;
}
.dark .faq-intro__beam {
  background: conic-gradient(from 160deg, rgba(226, 232, 240, 0.25), transparent 32%, rgba(148, 163, 184, 0.22) 58%, transparent 78%, rgba(148, 163, 184, 0.18));
}
.faq-intro__pulse {
  position: absolute;
  inset: -110%;
  pointer-events: none;
  border-radius: 50%;
  border: 1px solid currentColor;
  opacity: 0.25;
  animation: faq-pulse 3.4s ease-out infinite;
}
.faq-intro__label {
  position: relative;
  z-index: 1;
  font-weight: 600;
  letter-spacing: 0.4em;
}
.faq-intro__meter {
  position: relative;
  z-index: 1;
  flex: 1 1 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, currentColor 35%, transparent 85%);
  transform: scaleX(0);
  transform-origin: left;
  animation: faq-meter 5.8s ease-in-out infinite;
  opacity: 0.7;
}
.faq-intro__tick {
  position: relative;
  z-index: 1;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 9999px;
  background: currentColor;
  box-shadow: 0 0 0 4px rgba(15, 15, 15, 0.08);
  animation: faq-tick 3.2s ease-in-out infinite;
}
.dark .faq-intro__tick {
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.1);
}

@media (prefers-reduced-motion: reduce) {
  .faq-intro__beam,
  .faq-intro__pulse,
  .faq-intro__meter,
  .faq-intro__tick {
    animation: none;
  }
}

