/* ============================================================
   FeeLynx — Section transitions v2
   Replaces the hard-edged SVG mask cuts with continuous gradient
   fades so backgrounds blend organically while keeping each
   section's identity. Palette-strict: every blend stop is a
   brand token at varying alpha.
   ============================================================ */

/* Disable the legacy organic-blob masks on hero + feature showcase
   — they create hard cuts at certain viewport sizes. We replace with
   gradient overlays below. */
section[style*="background: var(--dark-green)"][style*="100vh"],
section[style*="background: var(--pale-blue)"]:not([data-screen-label]) {
  -webkit-mask-image: none !important;
  mask-image: none !important;
}

/* ---------------- Bottom-fade overlay ----------------
   Each section gets a soft gradient at its bottom that fades into
   the next section's color. We layer it via ::after so it sits above
   content without affecting layout. */

/* Hero (dark) → next section: fade dark-lynx down to transparent at bottom 120px */
section[style*="background: var(--dark-green)"][style*="100vh"]::after {
  /* Override the existing aurora ::after — keep both effects layered */
  background:
    radial-gradient(ellipse 40% 30% at 85% 15%, rgba(116, 193, 173, 0.18), transparent 60%),
    radial-gradient(ellipse 35% 25% at 12% 85%, rgba(117, 181, 223, 0.16), transparent 60%) !important;
}

/* ============================================================
   FEATURE SHOWCASE v2 — sticky scroll
   ============================================================ */
.fl-fs2 {
  background: var(--pale-blue);
  position: relative;
  overflow: clip;
}

.fl-fs2::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 0% 0%, rgba(116, 193, 173, 0.22), transparent 65%),
    radial-gradient(ellipse 60% 40% at 100% 100%, rgba(0, 73, 157, 0.05), transparent 75%);
  pointer-events: none;
  z-index: 0;
}

.fl-fs2-inner {
  position: relative;
  z-index: 1;
  max-width: 1320px;
  margin: 0 auto;
  padding: 126px 48px;
}

@media (max-width: 768px) {
  .fl-fs2-inner {
    padding: 72px 20px;
  }
}

.fl-fs2-stage {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

@media (max-width: 1023px) {
  .fl-fs2-stage {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

.fl-fs2-pin {
  position: sticky;
  top: 100px;
  height: clamp(520px, 80vh, 720px);
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 1023px) {
  .fl-fs2-pin {
    display: none;
  }
}

.fl-fs2-stack {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.fl-fs2-panel {
  min-height: 90vh;
  padding: 80px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (max-width: 1023px) {
  .fl-fs2-panel {
    min-height: auto;
    padding: 24px 0;
  }
}

.fl-fs2-phone {
  width: 100%;
  max-width: 360px;
  aspect-ratio: 9/19.5;
  border-radius: 44px;
  background: var(--dark-lynx);
  position: relative;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.08) inset,
    0 60px 120px -30px rgba(0, 73, 157, 0.45),
    0 30px 60px -20px rgba(20, 26, 59, 0.40),
    0 8px 16px rgba(20, 26, 59, 0.10);
  padding: 12px;
  transition: transform 700ms cubic-bezier(.22, 1, .36, 1);
}

.fl-fs2-phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 32px;
  background: var(--white-lynx);
  position: relative;
  overflow: hidden;
}

.fl-fs2-phone-notch {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 96px;
  height: 26px;
  border-radius: 999px;
  background: var(--dark-lynx);
  z-index: 3;
}

/* Each phone-screen state */
.fl-fs2-screen {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 600ms cubic-bezier(.22, 1, .36, 1), transform 700ms cubic-bezier(.22, 1, .36, 1);
  transform: translateY(16px) scale(0.98);
}

.fl-fs2-screen.is-active {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Panel reveal as it enters viewport */
.fl-fs2-panel-content {
  opacity: 0.35;
  transform: translateY(20px);
  transition: opacity 600ms cubic-bezier(.22, 1, .36, 1), transform 600ms cubic-bezier(.22, 1, .36, 1);
}

.fl-fs2-panel.is-active .fl-fs2-panel-content {
  opacity: 1;
  transform: translateY(0);
}

/* Step indicator */
.fl-fs2-step {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Saira', system-ui, sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dark-blue);
  margin-bottom: 18px;
}

.fl-fs2-step-num {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: var(--dark-lynx);
  color: var(--white-lynx);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Expletus Sans', serif;
  font-size: 13px;
  letter-spacing: -0.01em;
  font-style: italic;
}

/* ============================================================
   PARTNERS v2 — marquee
   ============================================================ */
.fl-pb2 {
  background: var(--green-lynx);
  position: relative;
  /* overflow: visible so the pill lift (translateY) isn't clipped;
     horizontal edge fade is handled by .fl-pb2-track-wrap mask-image */
  overflow: visible;
}

.fl-pb2::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(255, 255, 255, 0.12), transparent 50%),
    radial-gradient(ellipse 70% 50% at 100% 100%, rgba(0, 73, 157, 0.12), transparent 60%),
    radial-gradient(ellipse 60% 40% at 0% 100%, rgba(20, 26, 59, 0.06), transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.fl-pb2-inner {
  position: relative;
  z-index: 1;
  padding: 90px 0;
}

@media (max-width: 768px) {
  .fl-pb2-inner {
    padding: 54px 0;
  }
}

.fl-pb2-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
  padding: 0 48px;
}

@media (max-width: 768px) {
  .fl-pb2-head {
    padding: 0 20px;
    margin-bottom: 36px;
  }
}

.fl-pb2-track-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 16px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
}

.fl-pb2-track {
  display: flex;
  gap: 56px;
  width: max-content;
  animation: fl-pb2-scroll 40s linear infinite;
}

@media (max-width: 768px) {
  .fl-pb2-track {
    gap: 32px;
    animation-duration: 28s;
  }
}

.fl-pb2-track:hover {
  animation-play-state: paused;
}

@keyframes fl-pb2-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .fl-pb2-track {
    animation: none;
  }
}

.fl-pb2-pill {
  flex-shrink: 0;
  background: var(--white-lynx);
  border-radius: 28px;
  padding: 36px 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 240px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.6) inset,
    0 12px 28px -10px rgba(20, 26, 59, 0.20),
    0 2px 6px rgba(20, 26, 59, 0.06);
  transition: transform 300ms cubic-bezier(.22, 1, .36, 1), box-shadow 300ms;
  text-decoration: none;
}

@media (max-width: 768px) {
  .fl-pb2-pill {
    padding: 24px 36px;
    min-width: 180px;
  }
}

.fl-pb2-pill:hover {
  transform: translateY(-4px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.7) inset,
    0 24px 48px -14px rgba(20, 26, 59, 0.30),
    0 4px 12px rgba(20, 26, 59, 0.10);
}

.fl-pb2-pill img {
  height: 80px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
  display: block;
  transition: transform 300ms cubic-bezier(.22, 1, .36, 1);
}

@media (max-width: 768px) {
  .fl-pb2-pill img {
    height: 60px;
    max-width: 200px;
  }
}

.fl-pb2-pill:hover img {
  transform: scale(1.05);
}

/* ============================================================
   TESTIMONIALS v2 — stacked carousel
   ============================================================ */
.fl-tc2 {
  background: var(--bg-muted);
  position: relative;
  overflow: hidden;
  padding: 126px 48px;
}

@media (max-width: 768px) {
  .fl-tc2 {
    padding: 72px 20px;
  }
}

.fl-tc2::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 0% 0%, rgba(116, 193, 173, 0.18), transparent 60%),
    radial-gradient(ellipse 60% 40% at 100% 100%, rgba(117, 181, 223, 0.20), transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.fl-tc2-inner {
  position: relative;
  z-index: 1;
  max-width: 1320px;
  margin: 0 auto;
}

.fl-tc2-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 72px;
}

@media (max-width: 768px) {
  .fl-tc2-head {
    margin-bottom: 48px;
  }
}

.fl-tc2-stage {
  position: relative;
  height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1600px;
  user-select: none;
  touch-action: pan-y;
}

@media (max-width: 768px) {
  .fl-tc2-stage {
    height: 520px;
  }
}

.fl-tc2-card {
  position: absolute;
  width: min(560px, 90vw);
  background: var(--bg-elevated);
  border-radius: 28px;
  padding: 44px;
  border: 1px solid var(--border);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.7) inset,
    0 30px 60px -20px rgba(20, 26, 59, 0.20),
    0 8px 18px rgba(20, 26, 59, 0.06);
  transition: transform 700ms cubic-bezier(.22, 1, .36, 1),
    opacity 500ms cubic-bezier(.22, 1, .36, 1),
    filter 500ms;
  cursor: grab;
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0.2) 100%);
  background-color: var(--bg-elevated);
}

.fl-tc2-card:active {
  cursor: grabbing;
}

@media (max-width: 768px) {
  .fl-tc2-card {
    padding: 32px;
  }
}

.fl-tc2-card-quote {
  font-family: 'Expletus Sans', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(20px, 2.4vw, 28px);
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: var(--dark-lynx);
  margin: 18px 0 32px;
  text-wrap: pretty;
}

.fl-tc2-card-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
}

.fl-tc2-card-avatar {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  background: var(--green-lynx);
  color: var(--dark-lynx);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Expletus Sans', serif;
  font-weight: 500;
  font-size: 20px;
  letter-spacing: -0.01em;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(116, 193, 173, 0.30);
}

.fl-tc2-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 48px;
}

.fl-tc2-btn {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--dark-lynx);
  transition: transform 220ms cubic-bezier(.22, 1, .36, 1),
    box-shadow 220ms,
    background 220ms;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.6) inset,
    0 6px 14px -4px rgba(20, 26, 59, 0.16);
}

.fl-tc2-btn:hover {
  transform: translateY(-2px);
  background: var(--dark-lynx);
  color: var(--white-lynx);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1) inset, 0 12px 24px -6px rgba(20, 26, 59, 0.30);
}

.fl-tc2-dots {
  display: flex;
  gap: 8px;
}

.fl-tc2-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--border-strong);
  cursor: pointer;
  transition: width 300ms cubic-bezier(.22, 1, .36, 1), background 300ms;
  border: 0;
  padding: 0;
}

.fl-tc2-dot.is-active {
  width: 28px;
  background: var(--dark-lynx);
}

/* ============================================================
   ABOUT v2 — narrative scroll
   ============================================================ */
.fl-ab2 {
  background: var(--white-lynx);
  position: relative;
  display: block;
  width: 100%;
}

.fl-ab2>section {
  display: block;
  width: 100%;
}

/* Mission opening */
.fl-ab2-mission {
  padding: 140px 48px 120px;
  position: relative;
  overflow: hidden;
  width: 100%;
  box-sizing: border-box;
}

.fl-ab2-mission>* {
  box-sizing: border-box;
}

.fl-ab2-mission-content {
  position: relative;
  z-index: 1;
  max-width: 1320px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  .fl-ab2-mission {
    padding: 90px 20px 60px;
  }
}

.fl-ab2-mission-bloom {
  position: absolute;
  width: 1200px;
  height: 1200px;
  left: -200px;
  top: 20%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(116, 193, 173, 0.55) 0%, rgba(116, 193, 173, 0.20) 40%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
  animation: fl-about-bloom-drift 18s ease-in-out infinite;
}

.fl-ab2-mission-bloom-2 {
  position: absolute;
  width: 900px;
  height: 900px;
  right: -150px;
  top: -25%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.55) 0%, rgba(255, 255, 255, 0.18) 40%, transparent 70%);
  filter: blur(70px);
  pointer-events: none;
  z-index: 0;
}

.fl-ab2-chapter-num {
  font-family: 'Expletus Sans', serif;
  font-style: italic;
  font-size: 96px;
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--dark-blue);
  margin-bottom: 24px;
  display: block;
}

@media (max-width: 768px) {
  .fl-ab2-chapter-num {
    font-size: 64px;
  }
}

/* Chapter wrapper — sticky chapter label on scroll */
.fl-ab2-chapter {
  position: relative;
  padding: 120px 48px;
}

@media (max-width: 768px) {
  .fl-ab2-chapter {
    padding: 60px 20px;
  }
}

.fl-ab2-chapter-grid {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 80px;
  align-items: start;
}

@media (max-width: 1023px) {
  .fl-ab2-chapter-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.fl-ab2-chapter-aside {
  position: sticky;
  top: 120px;
}

@media (max-width: 1023px) {
  .fl-ab2-chapter-aside {
    position: relative;
    top: auto;
  }
}

/* Founders chapter — green-tinted ambient */
.fl-ab2-founders {
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(116, 193, 173, 0.20), transparent 60%),
    radial-gradient(ellipse 70% 50% at 100% 100%, rgba(117, 181, 223, 0.16), transparent 60%),
    var(--white-lynx);
}

/* Founder card with portrait — editorial */
.fl-ab2-founder {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 32px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.55) 0%, rgba(255, 255, 255, 0.20) 100%), var(--bg-elevated);
  border-radius: 28px;
  padding: 24px;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.7) inset,
    0 30px 70px -22px rgba(20, 26, 59, 0.22),
    0 8px 20px rgba(20, 26, 59, 0.06);
  text-decoration: none;
  color: inherit;
  margin-bottom: 32px;
  transition: transform 480ms cubic-bezier(.22, 1, .36, 1), box-shadow 480ms;
}

.fl-ab2-founder:hover {
  transform: translateY(-4px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.7) inset,
    0 40px 90px -24px rgba(20, 26, 59, 0.30),
    0 12px 24px rgba(20, 26, 59, 0.08);
}

@media (max-width: 1023px) {
  .fl-ab2-founder {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 20px;
  }

  .fl-ab2-founder-portrait {
    max-width: 200px;
    margin: 0 auto 12px;
  }
}

.fl-ab2-founder-portrait {
  aspect-ratio: 4/5;
  border-radius: 20px;
  overflow: hidden;
  background: var(--green-lynx);
  position: relative;
  box-shadow: 0 12px 24px -8px rgba(20, 26, 59, 0.30);
}

.fl-ab2-founder-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 700ms cubic-bezier(.22, 1, .36, 1);
}

.fl-ab2-founder:hover .fl-ab2-founder-portrait img {
  transform: scale(1.04);
}

.fl-ab2-founder-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Advisors grid */
.fl-ab2-advisor {
  background: var(--bg-elevated);
  border-radius: 22px;
  padding: 28px;
  border: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
  display: block;
  transition: transform 360ms cubic-bezier(.22, 1, .36, 1), box-shadow 360ms;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.55) inset,
    0 8px 20px -6px rgba(20, 26, 59, 0.10);
}

.fl-ab2-advisor:hover {
  transform: translateY(-4px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.6) inset,
    0 24px 48px -16px rgba(20, 26, 59, 0.25),
    0 6px 14px rgba(20, 26, 59, 0.06);
}

.fl-ab2-advisor-photo {
  width: 80px;
  height: 80px;
  border-radius: 999px;
  background: var(--bg-muted);
  overflow: hidden;
  margin-bottom: 18px;
  box-shadow: 0 6px 14px -4px rgba(20, 26, 59, 0.20);
}

.fl-ab2-advisor-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ============================================================
   FAQ v2 — search-first
   ============================================================ */
.fl-faq2 {
  background: var(--white-lynx);
  position: relative;
}

.fl-faq2-hero {
  padding: 160px 48px 80px;
  position: relative;
  overflow: hidden;
}

@media (max-width: 768px) {
  .fl-faq2-hero {
    padding: 100px 20px 48px;
  }
}

.fl-faq2-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 100% 0%, rgba(116, 193, 173, 0.22), transparent 60%),
    radial-gradient(ellipse 70% 50% at 0% 100%, rgba(117, 181, 223, 0.18), transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.fl-faq2-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}

.fl-faq2-search {
  position: relative;
  margin: 36px auto 32px;
  max-width: 640px;
}

.fl-faq2-search-input {
  width: 100%;
  font-family: 'Saira', system-ui, sans-serif;
  font-size: 18px;
  padding: 22px 24px 22px 60px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  color: var(--dark-lynx);
  outline: none;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.6) inset,
    0 16px 36px -12px rgba(20, 26, 59, 0.15),
    0 4px 10px rgba(20, 26, 59, 0.04);
  transition: box-shadow 220ms, border-color 220ms, transform 220ms;
}

.fl-faq2-search-input::placeholder {
  color: var(--fg-subtle);
}

.fl-faq2-search-input:focus {
  border-color: var(--green-lynx);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.7) inset,
    0 24px 48px -16px rgba(20, 26, 59, 0.22),
    0 0 0 4px rgba(116, 193, 173, 0.20);
  transform: translateY(-1px);
}

.fl-faq2-search-icon {
  position: absolute;
  left: 22px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--fg-subtle);
  pointer-events: none;
}

.fl-faq2-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: 24px auto 0;
  max-width: 720px;
}

.fl-faq2-chip {
  font-family: 'Saira', system-ui, sans-serif;
  font-size: 13px;
  font-weight: 500;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--bg-elevated);
  color: var(--dark-lynx);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: transform 220ms, background 220ms, color 220ms, box-shadow 220ms;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5) inset, 0 2px 6px rgba(20, 26, 59, 0.05);
}

.fl-faq2-chip:hover {
  background: var(--green-lynx);
  color: var(--dark-lynx);
  transform: translateY(-2px);
}

.fl-faq2-chip.is-active {
  background: var(--dark-lynx);
  color: var(--white-lynx);
  border-color: var(--dark-lynx);
}

.fl-faq2-list {
  max-width: 880px;
  margin: 0 auto;
  padding: 24px 48px 140px;
}

@media (max-width: 768px) {
  .fl-faq2-list {
    padding: 16px 20px 80px;
  }
}

.fl-faq2-group {
  margin-bottom: 64px;
}

.fl-faq2-group-head {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}

.fl-faq2-group-num {
  font-family: 'Expletus Sans', serif;
  font-style: italic;
  font-size: 24px;
  color: var(--green-lynx);
  font-weight: 500;
  background: linear-gradient(180deg, #74c1ad 0%, #4a9b87 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.fl-faq2-group-title {
  font-family: 'Expletus Sans', serif;
  font-weight: 500;
  font-size: 26px;
  letter-spacing: -0.01em;
  color: var(--dark-lynx);
  margin: 0;
}

.fl-faq2-item {
  background: var(--bg-elevated);
  border-radius: 18px;
  border: 1px solid var(--border);
  margin-bottom: 12px;
  overflow: hidden;
  transition: box-shadow 320ms cubic-bezier(.22, 1, .36, 1), transform 320ms;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5) inset, 0 2px 8px rgba(20, 26, 59, 0.04);
}

.fl-faq2-item.is-open {
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.6) inset,
    0 18px 40px -14px rgba(20, 26, 59, 0.18),
    0 4px 10px rgba(20, 26, 59, 0.04);
}

.fl-faq2-q {
  width: 100%;
  background: transparent;
  border: 0;
  padding: 22px 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  font-family: 'Saira', system-ui, sans-serif;
  gap: 18px;
}

.fl-faq2-q-text {
  font-family: 'Expletus Sans', serif;
  font-weight: 500;
  font-size: 19px;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--dark-lynx);
}

.fl-faq2-q-icon {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: var(--green-lynx);
  color: var(--dark-lynx);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 320ms cubic-bezier(.22, 1, .36, 1), background 220ms, color 220ms;
}

.fl-faq2-item.is-open .fl-faq2-q-icon {
  background: var(--dark-lynx);
  color: var(--white-lynx);
  transform: rotate(45deg);
}

.fl-faq2-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 380ms cubic-bezier(.22, 1, .36, 1);
}

.fl-faq2-item.is-open .fl-faq2-a {
  max-height: 400px;
}

.fl-faq2-a-inner {
  padding: 0 24px 24px;
  font-size: 16px;
  line-height: 1.65;
  color: var(--fg-muted);
  max-width: 760px;
}

.fl-faq2-empty {
  text-align: center;
  padding: 60px 0;
  color: var(--fg-muted);
  font-size: 16px;
}

.fl-faq2-highlight {
  background: rgba(116, 193, 173, 0.30);
  padding: 0 2px;
  border-radius: 3px;
}

/* ============================================================
   PRESS — keep on green-lynx, override SVG mask interference
   ============================================================ */
section[style*="background: var(--green-lynx)"] {
  -webkit-mask-image: none !important;
  mask-image: none !important;
}

/* ============================================================
   VALUE PROPS v2 — connected step journey
   ============================================================ */
.fl-vp2 {
  position: relative;
  background: var(--white-lynx);
  padding: 126px 48px;
  overflow: hidden;
}

@media (max-width: 768px) {
  .fl-vp2 {
    padding: 72px 20px;
  }
}

.fl-vp2-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.fl-vp2-bloom {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.65;
}

.fl-vp2-bloom-1 {
  width: 700px;
  height: 700px;
  left: -180px;
  top: -250px;
  background: radial-gradient(circle, rgba(116, 193, 173, 0.55) 0%, transparent 65%);
}

.fl-vp2-bloom-2 {
  width: 600px;
  height: 600px;
  right: -120px;
  bottom: -200px;
  background: radial-gradient(circle, rgba(117, 181, 223, 0.45) 0%, transparent 65%);
}

.fl-vp2-inner {
  position: relative;
  z-index: 1;
  max-width: 1320px;
  margin: 0 auto;
}

.fl-vp2-head {
  max-width: 880px;
  margin: 0 auto 72px;
  text-align: center;
}

@media (max-width: 768px) {
  .fl-vp2-head {
    margin-bottom: 44px;
  }
}

.fl-vp2-title {
  font-family: 'Expletus Sans', serif;
  font-weight: 500;
  font-size: clamp(36px, 5vw, 68px);
  line-height: 1.04;
  letter-spacing: -0.025em;
  margin: 18px 0 20px;
  color: var(--dark-lynx);
  text-wrap: balance;
}

.fl-vp2-lede {
  font-size: 18px;
  line-height: 1.55;
  color: var(--fg-muted);
  max-width: 640px;
  margin: 0 auto;
}

.fl-vp2-journey {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: stretch;
}

@media (max-width: 1023px) {
  .fl-vp2-journey {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.fl-vp2-track {
  position: absolute;
  top: 60px;
  left: 0;
  right: 0;
  width: 100%;
  height: 40px;
  pointer-events: none;
  z-index: 0;
  display: block;
}

@media (max-width: 1023px) {
  .fl-vp2-track {
    display: none;
  }
}

.fl-vp2-step {
  position: relative;
  z-index: 1;
  background: var(--bg-elevated);
  border-radius: 28px;
  padding: 32px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 24px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.55) inset,
    0 14px 28px -10px rgba(20, 26, 59, 0.10),
    0 4px 10px rgba(20, 26, 59, 0.04);
}

.fl-vp2-journey.fl-stagger>.fl-vp2-step,
.fl-vp2-journey.fl-stagger.is-visible>.fl-vp2-step {
  transition:
    opacity 850ms var(--ease-out),
    transform 260ms cubic-bezier(.22, 1, .36, 1),
    box-shadow 260ms cubic-bezier(.22, 1, .36, 1),
    border-color 260ms;
}

/* Clear stagger delay once user interacts */
.fl-vp2-journey.fl-stagger>.fl-vp2-step:hover,
.fl-vp2-journey.fl-stagger>.fl-vp2-step.is-hover {
  transition-delay: 0ms;
}

.fl-vp2-step:hover,
.fl-vp2-step.is-hover {
  transform: translateY(-6px);
  border-color: rgba(116, 193, 173, 0.5);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.6) inset,
    0 32px 60px -18px rgba(20, 26, 59, 0.22),
    0 8px 18px rgba(20, 26, 59, 0.08),
    0 0 0 4px rgba(116, 193, 173, 0.12);
}

@media (max-width: 768px) {
  .fl-vp2-step {
    padding: 24px;
    gap: 18px;
  }
}

.fl-vp2-step-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.fl-vp2-step-icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: linear-gradient(140deg, var(--dark-lynx) 0%, var(--dark-blue) 100%);
  color: var(--white-lynx);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.15) inset,
    0 10px 22px -8px rgba(20, 26, 59, 0.45);
  transition: transform 380ms cubic-bezier(.22, 1, .36, 1);
}

.fl-vp2-step:hover .fl-vp2-step-icon {
  transform: rotate(-4deg) scale(1.05);
}

.fl-vp2-step-num {
  font-family: 'Expletus Sans', serif;
  font-size: 56px;
  font-weight: 500;
  font-style: italic;
  line-height: 0.9;
  letter-spacing: -0.03em;
  color: var(--dark-blue);
}

@media (max-width: 768px) {
  .fl-vp2-step-num {
    font-size: 44px;
  }
}

.fl-vp2-step-preview {
  position: relative;
  background: var(--bg-muted);
  border-radius: 18px;
  padding: 16px;
  min-height: 140px;
  border: 1px solid var(--border);
  overflow: hidden;
}

.fl-vp2-step-kicker {
  font-family: 'Saira', system-ui, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dark-blue);
}

.fl-vp2-step-title {
  font-family: 'Expletus Sans', serif;
  font-weight: 500;
  font-size: 26px;
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--dark-lynx);
  margin: 8px 0 12px;
}

.fl-vp2-step-text {
  font-size: 15px;
  line-height: 1.6;
  color: var(--fg-muted);
  margin: 0 0 18px;
}

.fl-vp2-step-tags {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.fl-vp2-step-tags li {
  font-family: 'Saira', system-ui, sans-serif;
  font-size: 11px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--bg-muted);
  color: var(--dark-lynx);
  border: 1px solid var(--border);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Preview — Scan */
.fl-vp2-prev-scan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 12px;
}

.fl-vp2-prev-tile {
  aspect-ratio: 1;
  background: var(--bg-elevated);
  border-radius: 12px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  position: relative;
  transition: transform 220ms;
}

.fl-vp2-prev-tile-ic {
  color: var(--dark-lynx);
}

.fl-vp2-prev-tile-l {
  font-size: 10px;
  font-weight: 600;
  color: var(--fg-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.fl-vp2-prev-tile.is-pulse {
  background: linear-gradient(135deg, var(--dark-lynx), var(--dark-blue));
  border-color: transparent;
  box-shadow: 0 4px 14px rgba(20, 26, 59, 0.30);
}

.fl-vp2-prev-tile.is-pulse .fl-vp2-prev-tile-ic,
.fl-vp2-prev-tile.is-pulse .fl-vp2-prev-tile-l {
  color: var(--white-lynx);
}

.fl-vp2-prev-tile.is-pulse::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 14px;
  border: 2px solid var(--green-lynx);
  animation: fl-vp2-pulse-ring 1.6s ease-out infinite;
}

@keyframes fl-vp2-pulse-ring {
  0% {
    opacity: 1;
    transform: scale(0.96);
  }

  100% {
    opacity: 0;
    transform: scale(1.10);
  }
}

.fl-vp2-prev-result {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  background: var(--bg-elevated);
  border-radius: 10px;
  border: 1px solid var(--border);
}

.fl-vp2-prev-result-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--green-lynx);
  box-shadow: 0 0 0 3px rgba(116, 193, 173, 0.25);
  flex-shrink: 0;
}

.fl-vp2-prev-result-text {
  font-family: 'Expletus Sans', serif;
  font-size: 12px;
  color: var(--dark-lynx);
  letter-spacing: -0.01em;
}

/* Preview — Directory */
.fl-vp2-prev-dir {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.fl-vp2-prev-doc {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  background: var(--bg-elevated);
  border-radius: 10px;
  border: 1px solid var(--border);
  transition: all 320ms cubic-bezier(.22, 1, .36, 1);
}

.fl-vp2-prev-doc.is-pulse {
  background: linear-gradient(135deg, var(--dark-lynx), var(--dark-blue));
  border-color: transparent;
}

.fl-vp2-prev-doc-av {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: var(--green-lynx);
  color: var(--dark-lynx);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Expletus Sans', serif;
  font-size: 10px;
  font-weight: 500;
  flex-shrink: 0;
}

.fl-vp2-prev-doc.is-pulse .fl-vp2-prev-doc-av {
  background: var(--green-lynx);
}

.fl-vp2-prev-doc-info {
  flex: 1;
  min-width: 0;
}

.fl-vp2-prev-doc-n {
  font-family: 'Expletus Sans', serif;
  font-size: 11px;
  color: var(--dark-lynx);
  letter-spacing: -0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.fl-vp2-prev-doc.is-pulse .fl-vp2-prev-doc-n {
  color: var(--white-lynx);
}

.fl-vp2-prev-doc-s {
  font-size: 9px;
  color: var(--fg-subtle);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 600;
}

.fl-vp2-prev-doc.is-pulse .fl-vp2-prev-doc-s {
  color: rgba(255, 255, 255, 0.65);
}

.fl-vp2-prev-doc-d {
  font-family: 'Saira', system-ui, sans-serif;
  font-size: 10px;
  color: var(--fg-subtle);
  font-weight: 600;
}

.fl-vp2-prev-doc.is-pulse .fl-vp2-prev-doc-d {
  color: rgba(255, 255, 255, 0.85);
}

/* Preview — Plan */
.fl-vp2-prev-plan-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 6px;
}

.fl-vp2-prev-plan-title {
  font-family: 'Expletus Sans', serif;
  font-size: 12px;
  color: var(--dark-lynx);
  letter-spacing: -0.01em;
}

.fl-vp2-prev-plan-stat {
  font-family: 'Expletus Sans', serif;
  font-style: italic;
  font-size: 18px;
  font-weight: 500;
  color: var(--green-lynx);
  background: linear-gradient(180deg, #74c1ad 0%, #4a9b87 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.fl-vp2-prev-plan-bar {
  height: 6px;
  background: var(--bg-elevated);
  border-radius: 999px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.fl-vp2-prev-plan-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--green-lynx) 0%, var(--dark-blue) 100%);
  border-radius: 999px;
  transition: width 600ms cubic-bezier(.22, 1, .36, 1);
}

.fl-vp2-prev-plan-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin: 10px 0 8px;
}

.fl-vp2-prev-plan-day {
  aspect-ratio: 1;
  border-radius: 6px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Saira', system-ui, sans-serif;
  font-size: 10px;
  font-weight: 600;
  color: var(--fg-subtle);
}

.fl-vp2-prev-plan-day.is-done {
  background: var(--green-lynx);
  color: var(--dark-lynx);
  border-color: var(--green-lynx);
}

.fl-vp2-prev-plan-day.is-today {
  background: var(--dark-lynx);
  color: var(--white-lynx);
  border-color: var(--dark-lynx);
  box-shadow: 0 0 0 2px rgba(20, 26, 59, 0.15);
}

.fl-vp2-prev-plan-meal {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  background: var(--bg-elevated);
  border-radius: 8px;
  border: 1px solid var(--border);
}

.fl-vp2-prev-plan-meal-ic {
  color: var(--green-lynx);
}

.fl-vp2-prev-plan-meal-l {
  font-size: 10px;
  font-weight: 600;
  color: var(--dark-lynx);
  letter-spacing: 0.02em;
}

/* Connector flow animation */
.fl-vp2-track path {
  stroke-dashoffset: 200;
  transition: stroke-dashoffset 1800ms cubic-bezier(.22, 1, .36, 1) 200ms;
}

.fl-vp2-track path.is-animated {
  stroke-dashoffset: 0;
  animation: fl-vp2-flow 24s linear infinite 2000ms;
}

@keyframes fl-vp2-flow {
  from {
    stroke-dashoffset: 0;
  }

  to {
    stroke-dashoffset: -280;
    /* Multiplier of 14 (8+6) */
  }
}

/* ============================================================
   PRESS MENTIONS v2 — editorial featured + grid
   ============================================================ */
.fl-pm2 {
  position: relative;
  background: var(--green-lynx);
  padding: 120px 48px;
  overflow: hidden;
}

@media (max-width: 768px) {
  .fl-pm2 {
    padding: 72px 20px;
  }
}

.fl-pm2-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.fl-pm2-bloom {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
}

.fl-pm2-bloom-1 {
  width: 800px;
  height: 800px;
  left: -180px;
  top: -300px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.55) 0%, transparent 65%);
}

.fl-pm2-bloom-2 {
  width: 700px;
  height: 700px;
  right: -120px;
  bottom: -260px;
  background: radial-gradient(circle, rgba(0, 73, 157, 0.30) 0%, transparent 65%);
}

.fl-pm2-inner {
  position: relative;
  z-index: 1;
  max-width: 1320px;
  margin: 0 auto;
}

.fl-pm2-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}

@media (max-width: 768px) {
  .fl-pm2-head {
    margin-bottom: 36px;
  }
}

.fl-pm2-title {
  font-family: 'Expletus Sans', serif;
  font-weight: 500;
  font-size: clamp(32px, 4.8vw, 60px);
  line-height: 1.04;
  letter-spacing: -0.025em;
  margin: 18px 0 16px;
  color: var(--dark-lynx);
  text-wrap: balance;
}

.fl-pm2-lede {
  font-size: 17px;
  line-height: 1.55;
  color: var(--dark-lynx);
  opacity: 0.78;
  max-width: 580px;
  margin: 0 auto;
}

/* Featured layout */
.fl-pm2-featured {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 24px;
  align-items: stretch;
}

@media (max-width: 1023px) {
  .fl-pm2-featured {
    grid-template-columns: 1fr;
  }
}

/* When there's only the featured card (no aside), center it at a comfortable width */
.fl-pm2-featured-solo {
  grid-template-columns: 1fr;
  max-width: 1080px;
  margin: 0 auto;
}

.fl-pm2-featured-card {
  display: grid;
  grid-template-columns: 380px 1fr;
  background: var(--bg-elevated);
  border-radius: 28px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.7) inset,
    0 30px 60px -20px rgba(20, 26, 59, 0.30),
    0 8px 18px rgba(20, 26, 59, 0.08);
  transition: transform 480ms cubic-bezier(.22, 1, .36, 1), box-shadow 480ms;
  min-height: 380px;
}

@media (max-width: 1023px) {
  .fl-pm2-featured-card {
    grid-template-columns: 1fr;
    min-height: auto;
  }
}

.fl-pm2-featured-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.7) inset,
    0 44px 90px -22px rgba(20, 26, 59, 0.40),
    0 16px 30px rgba(20, 26, 59, 0.12);
}

.fl-pm2-featured-cover {
  position: relative;
  background: linear-gradient(160deg, var(--dark-lynx) 0%, var(--dark-blue) 100%);
  overflow: hidden;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 380px;
}

@media (max-width: 1023px) {
  .fl-pm2-featured-cover {
    min-height: 280px;
  }
}

.fl-pm2-featured-cover-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 0% 100%, rgba(116, 193, 173, 0.45), transparent 60%),
    radial-gradient(ellipse 50% 40% at 100% 0%, rgba(117, 181, 223, 0.30), transparent 60%);
  pointer-events: none;
}

.fl-pm2-featured-cover-grid {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  grid-template-rows: repeat(5, 1fr);
  padding: 32px;
  pointer-events: none;
}

.fl-pm2-featured-cover-dot {
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  align-self: center;
  justify-self: center;
}

.fl-pm2-featured-cover-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--green-lynx);
  font-family: 'Saira', system-ui, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.22);
  width: fit-content;
}

.fl-pm2-featured-cover-quote {
  position: relative;
  font-family: 'Expletus Sans', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 22px;
  line-height: 1.3;
  letter-spacing: -0.015em;
  color: var(--white-lynx);
  margin: 32px 0;
  text-wrap: pretty;
}

@media (max-width: 1023px) {
  .fl-pm2-featured-cover-quote {
    font-size: 18px;
    margin: 24px 0;
  }
}

.fl-pm2-featured-cover-quote::before {
  content: "“";
  font-size: 56px;
  line-height: 0;
  color: var(--green-lynx);
  vertical-align: -0.4em;
  margin-right: 8px;
  font-style: normal;
}

.fl-pm2-featured-cover-logo {
  position: relative;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  padding: 14px 18px;
  width: fit-content;
}

.fl-pm2-featured-body {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (max-width: 768px) {
  .fl-pm2-featured-body {
    padding: 28px;
  }
}

.fl-pm2-featured-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Saira', system-ui, sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-subtle);
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.fl-pm2-featured-source {
  color: var(--dark-blue);
}

.fl-pm2-featured-dot {
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: var(--border-strong);
}

.fl-pm2-featured-time {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.fl-pm2-featured-title {
  font-family: 'Expletus Sans', serif;
  font-weight: 500;
  font-size: clamp(24px, 2.6vw, 32px);
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--dark-lynx);
  margin: 0 0 18px;
  text-wrap: balance;
}

.fl-pm2-featured-excerpt {
  font-size: 16px;
  line-height: 1.6;
  color: var(--fg-muted);
  margin: 0 0 28px;
  text-wrap: pretty;
}

.fl-pm2-featured-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Saira', system-ui, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark-lynx);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  width: fit-content;
}

.fl-pm2-featured-cta-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: var(--green-lynx);
  color: var(--dark-lynx);
  transition: transform 320ms cubic-bezier(.22, 1, .36, 1), background 320ms;
}

.fl-pm2-featured-card:hover .fl-pm2-featured-cta-arrow {
  background: var(--dark-lynx);
  color: var(--white-lynx);
  transform: translate(3px, -3px);
}

/* Side panel — press kit + stats */
.fl-pm2-aside {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.fl-pm2-aside-card {
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 24px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.7) inset,
    0 14px 30px -10px rgba(20, 26, 59, 0.18);
  flex: 1;
}

.fl-pm2-aside-ic {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--dark-lynx);
  color: var(--green-lynx);
  display: flex;
  align-items: center;
  justify-content: center;
}

.fl-pm2-aside-title {
  font-family: 'Expletus Sans', serif;
  font-weight: 500;
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--dark-lynx);
  margin: 4px 0 0;
}

.fl-pm2-aside-text {
  font-size: 14px;
  line-height: 1.55;
  color: var(--fg-muted);
  margin: 0 0 8px;
}

.fl-pm2-aside-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--dark-lynx);
  color: var(--white-lynx);
  font-family: 'Saira', system-ui, sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  width: fit-content;
  transition: transform 220ms, background 220ms;
}

.fl-pm2-aside-cta:hover {
  background: var(--dark-blue);
  transform: translateY(-2px);
}

.fl-pm2-aside-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.fl-pm2-aside-stat {
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  text-align: left;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.7) inset, 0 8px 20px -8px rgba(20, 26, 59, 0.14);
}

.fl-pm2-aside-stat-n {
  font-family: 'Expletus Sans', serif;
  font-style: italic;
  font-size: 36px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.02em;
  background: linear-gradient(180deg, var(--dark-lynx) 0%, var(--dark-blue) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 6px;
}

.fl-pm2-aside-stat-l {
  font-family: 'Saira', system-ui, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

/* Grid layout (2+ articles) */
.fl-pm2-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.fl-pm2-card {
  background: var(--bg-elevated);
  border-radius: 24px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 240px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.7) inset,
    0 14px 30px -12px rgba(20, 26, 59, 0.20);
  transition: transform 380ms cubic-bezier(.22, 1, .36, 1), box-shadow 380ms;
}

.fl-pm2-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.7) inset,
    0 28px 56px -16px rgba(20, 26, 59, 0.30);
}

.fl-pm2-card-logo {
  height: 32px;
  display: flex;
  align-items: center;
}

.fl-pm2-card-title {
  font-family: 'Expletus Sans', serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--dark-lynx);
  margin: 0;
  flex: 1;
  text-wrap: balance;
}

.fl-pm2-card-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

.fl-pm2-card-date {
  font-family: 'Saira', system-ui, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-subtle);
}

.fl-pm2-card-arrow {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: var(--bg-muted);
  color: var(--dark-lynx);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 320ms cubic-bezier(.22, 1, .36, 1), background 220ms, color 220ms;
}

.fl-pm2-card:hover .fl-pm2-card-arrow {
  background: var(--dark-lynx);
  color: var(--white-lynx);
  transform: translate(3px, -3px);
}

.fl-anim-ellipsis {
  display: inline-block;
}

.fl-anim-ellipsis>span {
  opacity: 0;
  animation: fl-ellipsis-pulse 1.4s infinite ease-in-out;
}

.fl-anim-ellipsis>span:nth-child(2) {
  animation-delay: 0.2s;
}

.fl-anim-ellipsis>span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes fl-ellipsis-pulse {

  0%,
  60%,
  100% {
    opacity: 0.2;
  }

  30% {
    opacity: 1;
  }
}



/* ============================================================
   Task 3.2 — FAQ search clear (×) button
   ============================================================ */
.fl-faq2-search-clear {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--bg-muted);
  border: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--fg-muted);
  transition: background 160ms, color 160ms;
}

.fl-faq2-search-clear:hover {
  background: var(--dark-blue);
  color: var(--white-lynx);
}

/* ============================================================
   CTA store buttons — equal sizing on mobile
   ============================================================ */
@media (max-width: 768px) {
  .fl-cta-store-row {
    display: flex;
    gap: 12px;
  }

  .fl-cta-store {
    flex: 1 1 0;
    min-width: 0;
    justify-content: center;
  }
}