/*
 * ============================================================
 *  LaFamilia Capital — CUSTOM CSS OVERRIDES
 *  File: css/custom.css
 *  Loaded AFTER: lafamiliacapital.webflow.shared.css
 * ============================================================
 *
 *  ✅ Write ALL your custom style changes here.
 *  ✅ This file overrides Webflow's generator CSS safely.
 *  ✅ Webflow's CSS will never be overwritten when they
 *     republish — your changes here are preserved.
 *
 *  ❌ Do NOT modify lafamiliacapital.webflow.shared.*.css
 *     (it gets replaced on every Webflow publish).
 *
 *  HOW SPECIFICITY WORKS:
 *  Since this file loads after Webflow's CSS, rules with
 *  equal or higher specificity will win. Use !important
 *  only as a last resort.
 *
 *  USEFUL WEBFLOW CSS VARIABLES / CLASSES:
 *  - .page-wrapper          — wraps the entire page
 *  - .container-default     — main content container
 *  - .section               — generic section padding
 *  - .card                  — card component base
 *  - .display-1 to .display-10 — typography scale
 *  - .text-light            — white text
 *  - .text-neutral          — grey text
 *  - .mg-top-*              — margin-top utilities
 *  - .w-nav                 — Webflow navbar
 *  - .w-slider              — Webflow slider
 *
 * ============================================================
 */

/* ──────────────────────────────────────────────────────────── */
/*  GLOBAL OVERRIDES                                           */
/* ──────────────────────────────────────────────────────────── */

/* Remove Webflow "Made in Webflow" badge from all pages */
.w-webflow-badge {
  display: none !important;
}

/* ──────────────────────────────────────────────────────────── */
/*  ARROW ICON FONT RESTORATION                                 */
/*  Restores the "actual arrows" from the local fonts directory */
/* ──────────────────────────────────────────────────────────── */
@font-face {
  font-family: 'Arrows Capital X Webflow Template';
  src: url('../main/fonts/arrows.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Icon Squared';
  src: url('../main/fonts/icon-squared.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'X Integration Capital X Webflow Template';
  src: url('../main/fonts/x-integration.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Icon Rounded';
  src: url('../main/fonts/icon-rounded.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Social Media Icon Font BRIX';
  src: url('../main/fonts/social.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Filled Icons';
  src: url('../main/fonts/filled.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* Example: Change the primary accent/text color */
/* :root {
  --color-accent: #1a1a1a;
} */

/* ──────────────────────────────────────────────────────────── */
/*  BUILT BY OPERATORS SECTION (CAREERS PAGE)                 */
/*  Modern bento grid layout inspired by the template         */
/* ──────────────────────────────────────────────────────────── */

.lf-operators-section {
  background: #ffffff;
  padding: 120px 0;
  position: relative;
}

/* Header */
.lf-operators-header {
  margin-bottom: 48px;
}

.lf-operators-header .lf-benefits-label-row {
  margin-bottom: 32px;
}

.lf-operators-header .display-9 {
  max-width: 800px;
}

.lf-operators-body {
  max-width: 800px;
  margin-top: 24px;
}

.lf-operators-eyebrow {
  font-size: 14px;
  font-weight: 400;
  color: rgba(26, 26, 26, 0.5);
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.lf-operators-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 500;
  line-height: 1.1;
  color: #1a1a1a;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.lf-operators-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.lf-operators-body p {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(26, 26, 26, 0.7);
  margin: 0;
}

/* Grid Layout */
.lf-operators-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Card Base */
.lf-operators-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 24px;
  padding: 32px;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.lf-operators-card:hover {
  border-color: rgba(26, 26, 26, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

/* Large Card (spans 2 columns, 2 rows) */
.lf-operators-card-large {
  grid-column: span 2;
  grid-row: span 2;
  padding: 40px;
}

/* Small Cards */
.lf-operators-card-small {
  grid-column: span 1;
}

/* Badge */
.lf-operators-card-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.lf-operators-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  background: rgba(26, 26, 26, 0.05);
  border: 1px solid rgba(26, 26, 26, 0.12);
  border-radius: 100px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(26, 26, 26, 0.6);
}

.lf-operators-card-label {
  font-size: 12px;
  font-weight: 400;
  color: rgba(26, 26, 26, 0.5);
}

/* Card Titles */
.lf-operators-card-title {
  font-size: 32px;
  font-weight: 500;
  line-height: 1.2;
  color: #1a1a1a;
  margin-bottom: 16px;
}

.lf-operators-card-title-sm {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.3;
  color: #1a1a1a;
  margin-bottom: 12px;
}

/* Card Text */
.lf-operators-card-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(26, 26, 26, 0.7);
  margin-bottom: 24px;
}

.lf-operators-card-text-sm {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(26, 26, 26, 0.7);
  margin-bottom: 16px;
}

/* Card Images */
.lf-operators-card-image {
  margin-top: auto;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(26, 26, 26, 0.08);
}

.lf-operators-card-image-sm {
  margin-top: auto;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(26, 26, 26, 0.08);
}

.lf-operators-img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.lf-operators-card:hover .lf-operators-img {
  transform: scale(1.05);
}

/* Responsive: Tablet */
@media (max-width: 991px) {
  .lf-operators-section {
    padding: 80px 0;
  }

  .lf-operators-title {
    font-size: clamp(2rem, 4vw, 3rem);
  }

  .lf-operators-body p {
    font-size: 16px;
  }

  .lf-operators-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .lf-operators-card-large {
    grid-column: span 2;
    grid-row: span 1;
  }

  .lf-operators-card-small {
    grid-column: span 1;
  }

  /* Make last card span full width if odd number */
  .lf-operators-card-small:last-child:nth-child(odd) {
    grid-column: span 2;
  }
}

/* Responsive: Mobile */
@media (max-width: 767px) {
  .lf-operators-section {
    padding: 60px 0;
  }

  .lf-operators-header {
    margin-bottom: 32px;
  }

  .lf-operators-title {
    font-size: 2rem;
    margin-bottom: 16px;
  }

  .lf-operators-body p {
    font-size: 15px;
  }

  .lf-operators-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .lf-operators-card-large,
  .lf-operators-card-small {
    grid-column: span 1;
    grid-row: span 1;
  }

  .lf-operators-card {
    padding: 24px;
  }

  .lf-operators-card-large {
    padding: 28px;
  }

  .lf-operators-card-title {
    font-size: 24px;
  }

  .lf-operators-card-title-sm {
    font-size: 18px;
  }
}

/* ──────────────────────────────────────────────────────────── */
/*  BENEFITS SECTION (CAREERS PAGE)                            */
/*  Visually harmonized with the operators section above       */
/*  Same card DNA: 24px radii · #e5e7eb borders · neutral dark */
/* ──────────────────────────────────────────────────────────── */

.lf-benefits-section {
  background: #ffffff;
  padding: 0 0 120px;
  position: relative;
}

.lf-benefits-container {
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
  background: transparent;
  border-radius: 0;
  border: none;
  position: relative;
}

/* ── Header Section ── */
.lf-benefits-header-section {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 48px;
}

.lf-benefits-label-row {
  display: flex;
  align-items: center;
  gap: 24px;
}

.lf-benefits-number {
  font-family: "Onest", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: rgba(26, 26, 26, 0.5);
  letter-spacing: 0.05em;
}

.lf-benefits-divider {
  flex: 1;
  height: 1px;
  background: #e5e7eb;
}

.lf-benefits-subtitle {
  font-family: "Onest", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: rgba(26, 26, 26, 0.5);
  letter-spacing: 0.05em;
  text-transform: none;
}

.lf-benefits-title-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.lf-benefits-title-wrapper {
  max-width: 800px;
  flex: 1;
}

.lf-benefits-title-wrapper h2 {
  font-family: "Onest", sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 500;
  line-height: 1.1;
  color: #1a1a1a;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.lf-benefits-description {
  font-family: "Onest", sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(26, 26, 26, 0.7);
  max-width: 600px;
}

.lf-benefits-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 12px;
  background: rgba(26, 26, 26, 0.05);
  border: 1px solid rgba(26, 26, 26, 0.12);
  border-radius: 100px;
  color: rgba(26, 26, 26, 0.6);
  font-family: "Onest", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}

.lf-benefits-cta:hover {
  background: rgba(26, 26, 26, 0.08);
  border-color: rgba(26, 26, 26, 0.2);
  color: #1a1a1a;
}

.lf-benefits-cta svg {
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  stroke: currentColor;
}

.lf-benefits-cta:hover svg {
  transform: translateX(4px);
}

/* ── Bento Grid ── */
.lf-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ── Card Base — matches .lf-operators-card exactly ── */
.lf-benefits-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 24px;
  padding: 32px;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.lf-benefits-card:hover {
  border-color: rgba(26, 26, 26, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

/* ── Bento Grid Spans ── */
.lf-benefits-card-1 {
  grid-column: span 1;
}

.lf-benefits-card-2 {
  grid-column: span 2;
}

.lf-benefits-card-3 {
  grid-column: span 2;
}

.lf-benefits-card-4 {
  grid-column: span 1;
}

.lf-benefits-card-5 {
  grid-column: span 1;
}

.lf-benefits-card-6 {
  grid-column: span 2;
}

/* ── Icon — neutral dark accent, matching operator badges ── */
.lf-benefits-icon-wrapper {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(26, 26, 26, 0.04);
  border: 1px solid rgba(26, 26, 26, 0.1);
  border-radius: 14px;
  margin-bottom: 24px;
  color: #1a1a1a;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
}

.lf-benefits-icon-wrapper svg {
  width: 22px;
  height: 22px;
}

.lf-benefits-card:hover .lf-benefits-icon-wrapper {
  background: rgba(26, 26, 26, 0.08);
  border-color: rgba(26, 26, 26, 0.18);
  transform: scale(1.06);
}

/* ── Card Content ── */
.lf-benefits-card-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lf-benefits-card-title {
  font-family: "Onest", sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: #1a1a1a;
  line-height: 1.3;
  margin: 0 0 12px 0;
}

.lf-benefits-card-text {
  font-family: "Onest", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(26, 26, 26, 0.7);
  margin: 0;
}

/* ── Responsive: Tablet ── */
@media (max-width: 991px) {
  .lf-benefits-section {
    padding: 0 0 80px;
  }

  .lf-benefits-header-section {
    gap: 24px;
    margin-bottom: 32px;
  }

  .lf-benefits-title-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .lf-benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .lf-benefits-card-1 {
    grid-column: span 1;
  }
  .lf-benefits-card-2 {
    grid-column: span 2;
  }
  .lf-benefits-card-3 {
    grid-column: span 2;
  }
  .lf-benefits-card-4 {
    grid-column: span 1;
  }
  .lf-benefits-card-5 {
    grid-column: span 1;
  }
  .lf-benefits-card-6 {
    grid-column: span 2;
  }

  .lf-benefits-card {
    padding: 28px;
  }
}

/* ── Responsive: Mobile ── */
@media (max-width: 767px) {
  .lf-benefits-section {
    padding: 0 0 60px;
  }

  .lf-benefits-header-section {
    margin-bottom: 24px;
  }

  .lf-benefits-label-row {
    gap: 16px;
  }

  .lf-benefits-title-wrapper h2 {
    font-size: 2rem;
    margin-bottom: 16px;
  }

  .lf-benefits-description {
    font-size: 15px;
  }

  .lf-benefits-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .lf-benefits-card-1,
  .lf-benefits-card-2,
  .lf-benefits-card-3,
  .lf-benefits-card-4,
  .lf-benefits-card-5,
  .lf-benefits-card-6 {
    grid-column: span 1;
  }

  .lf-benefits-card {
    padding: 24px;
  }

  .lf-benefits-card-title {
    font-size: 18px;
  }

  .lf-benefits-icon-wrapper {
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }

  .lf-benefits-icon-wrapper svg {
    width: 20px;
    height: 20px;
  }
}

/* ──────────────────────────────────────────────────────────── */
/*  PORTFOLIO LOGO MARQUEE SPACING                             */
/* ──────────────────────────────────────────────────────────── */

.logo-marquee-image-wrapper {
  margin-right: 80px !important;
  min-width: 200px !important;
}

.logo-strip---wrapper {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-strip---wrapper img {
  max-width: 180px !important;
  height: auto !important;
  object-fit: contain !important;
}

/* Slow down the marquee animation for elegance */
.flex-horizontal.logo-strip-wrapper---horizontal.marquee {
  animation-duration: 90s !important;
}

/* ──────────────────────────────────────────────────────────── */
/*  NAVIGATION                                                 */
/* ──────────────────────────────────────────────────────────── */

/* Sticky navbar with hide/show on scroll direction */
.header-wrapper.v3.w-nav {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 9999 !important;
  background: #ffffff !important;
  transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1) !important;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05) !important;
}

/* Hide navbar when scrolling down */
.header-wrapper.v3.w-nav.nav-hidden {
  transform: translateY(-100%) !important;
}

/* Show navbar when scrolling up */
.header-wrapper.v3.w-nav.nav-visible {
  transform: translateY(0) !important;
}

/* Hide navbar when burger overlay is open */
body.burger-open .header-wrapper.v3.w-nav {
  transform: translateY(-100%) !important;
}

/* ──────────────────────────────────────────────────────────── */
/*  HERO SECTION                                               */
/* ──────────────────────────────────────────────────────────── */

/* Collection-page hero (v6): the fixed navbar (60px, white)   */
/* sits over the section top, exposing ~90px of the dark       */
/* half-bg-top background as a visible "black bar".            */
/* Fix: paint the section itself dark so the transition from   */
/* navbar → hero is seamless — no gap, no flash.               */
.section.hero.v6 {
  background-color: var(--components--sections--backgrounds--bg-color-tertiary) !important;
}

/* Prevent white/blank flash while hero image loads */
.image-wrapper.hero-full-image-section {
  background-color: #000;
}

/* Force hero section visible immediately — no fade, no delay */
/* Hero reveal now handled by loading bar animation in index.html */

/* Wider hero headline container for "Audacity Rewards Conviction" */
.hero.v1 .inner-container._680px {
  max-width: 100% !important;
}

/* Example: Adjust hero headline sizing on mobile */
/* @media (max-width: 767px) {
  .display-10 {
    font-size: 2.5rem;
  }
} */

/* Isolated class: hero CTA readability over bright hero images */
.hero-cta-glow {
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.6), 0 0 20px rgba(0, 0, 0, 0.35);
  position: relative;
}

.hero-cta-glow .link-underline.dark-mode {
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.4);
}

/* Careers page — extra breathing room at top of hero */
[data-wf-page="66764791affb8ee8cd21a1c9"] .section.hero.v3 {
  padding-top: 510px;
}
@media (max-width: 991px) {
  [data-wf-page="66764791affb8ee8cd21a1c9"] .section.hero.v3 {
    padding-top: 410px;
  }
}
@media (max-width: 479px) {
  [data-wf-page="66764791affb8ee8cd21a1c9"] .section.hero.v3 {
    padding-top: 310px;
  }
}

/* ──────────────────────────────────────────────────────────── */
/*  HERO SECTION — Mobile Height & Weight Enhancement          */
/*                                                              */
/*  PROBLEM:                                                    */
/*  Webflow progressively shrinks hero v1 padding on mobile:    */
/*    Desktop:  padding-top 109px / bottom 78px                */
/*    Tablet:   padding-top 86px                               */
/*    ≤767px:   padding-top ~pd-large / bottom 64px            */
/*    ≤479px:   padding-top ~pd-medium (~24px) / bottom 54px   */
/*  This makes the hero feel collapsed and lightweight on       */
/*  mobile — no commanding presence, content jammed at top.     */
/*                                                              */
/*  FIX:                                                        */
/*  Override each breakpoint with generous spacing that gives   */
/*  the hero section real stature on mobile. The 60px fixed     */
/*  navbar overlaps the top, so padding-top must compensate.    */
/*  Also increase the headline font-size for visual weight      */
/*  and add breathing room to the partner logo strip.           */
/* ──────────────────────────────────────────────────────────── */

/* --- Tablet (≤991px) --- */
@media screen and (max-width: 991px) {
  /* Full screen hero */
  .section.hero.v1 {
    min-height: 96svh !important;
    display: flex !important;
    flex-direction: column !important;
    padding-top: 140px !important;
    padding-bottom: 50px !important;
  }

  /* Ensure containers stretch to fill height */
  .section.hero.v1 > .container-default {
    display: flex !important;
    flex-direction: column !important;
    flex: 1 !important;
  }

  /* Convert grid to full-height flex column */
  .section.hero.v1 .hero-v1-grid {
    display: flex !important;
    flex-direction: column !important;
    flex: 1 !important;
    gap: 0 !important;
  }
  
  /* ── Flex-order: Title (1) → Paragraph (2) → Buttons (3) ── */
  .hero.v1 .hero-v1-grid > .inner-container._680px {
    order: 1 !important;
    margin-bottom: 16px !important;
  }

  .hero.v1 .hero-v1-grid > .inner-container._512px {
    order: 2 !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  /* Push buttons to the absolute bottom and render last */
  .hero.v1 .hero-v1-grid > .mg-top-32px---mbl {
    order: 3 !important;
    margin-top: auto !important;
    padding-top: 40px !important;
  }

  /* Kill centering on the paragraph's nested wrapper */
  .hero.v1 .inner-container._400px---mbl.center {
    text-align: left !important;
    margin-left: 0 !important;
    margin-right: auto !important;
  }

  /* Force left alignment on hero text and containers */
  .hero.v1 .hero-v1-grid {
    text-align: left !important;
    justify-items: start !important;
    align-items: flex-start !important;
  }

  .hero.v1 .center,
  .hero.v1 .text-center,
  .hero.v1 .inner-container,
  .hero.v1 .mg-top-32px---mbl {
    text-align: left !important;
    margin-left: 0 !important;
    margin-right: auto !important;
    align-items: flex-start !important;
  }

  /* Force left alignment on CTA buttons */
  .hero.v1 .buttons-row {
    justify-content: flex-start !important;
  }

  /* Give the partner logo strip more vertical breathing room */
  .section.logo-strip-section {
    padding-top: 48px !important;
    padding-bottom: 48px !important;
  }
}

/* --- Mobile landscape (≤767px) --- */
@media screen and (max-width: 767px) {
  .section.hero.v1 {
    padding-top: 120px !important;
    padding-bottom: 40px !important;
  }

  /* ── Force left-alignment at this breakpoint (Webflow sets center) ── */
  .grid-2-columns.hero-v1-grid,
  .section.hero.v1 .hero-v1-grid,
  .hero.v1 .hero-v1-grid {
    text-align: left !important;
    justify-items: start !important;
    align-items: flex-start !important;
  }

  /* Title — flush left, no centering anywhere in the chain */
  .hero.v1 .hero-v1-grid .display-10,
  .hero.v1 .hero-v1-grid h1 {
    text-align: left !important;
    margin-left: 0 !important;
    margin-right: auto !important;
  }

  /* All inner-containers — kill max-width and centering on mobile */
  .hero.v1 .inner-container {
    max-width: 100% !important;
    width: 100% !important;
    text-align: left !important;
    margin-left: 0 !important;
    margin-right: auto !important;
  }

  /* Paragraph — left-aligned, full width */
  .hero.v1 .text-neutral-light {
    text-align: left !important;
    font-size: 1.05rem !important;
    line-height: 1.6 !important;
  }

  /* Stronger headline for visual weight on mobile */
  .hero.v1 .display-10.mid {
    font-size: clamp(3rem, 11vw, 4rem) !important;
    line-height: 1 !important;
    letter-spacing: -0.03em !important;
  }

  /* More breathing room for the logo strip */
  .section.logo-strip-section {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }

  /* Partner logo grid: tight 2 × 2 on mobile */
  .logo-strip-section .logo-strip-grid-v1 {
    grid-template-columns: 1fr 1fr !important;
    gap: 12px 24px !important;
  }
}

/* --- Small mobile (≤479px) --- */
@media screen and (max-width: 479px) {
  .section.hero.v1 {
    padding-top: 110px !important;
    padding-bottom: 30px !important;
  }

  /* Bolder headline presence on small screens */
  .hero.v1 .display-10.mid {
    font-size: clamp(2.5rem, 10vw, 3rem) !important;
    line-height: 1 !important;
    letter-spacing: -0.03em !important;
  }

  /* CTA buttons — slightly tighter spacing on small screens */
  .hero.v1 .buttons-row.alt---mbp {
    gap: 16px !important;
  }

  .section.logo-strip-section {
    padding-top: 32px !important;
    padding-bottom: 36px !important;
  }
}

/* ──────────────────────────────────────────────────────────── */
/*  OUR BASES SECTION  (fully custom — easiest to restyle)    */
/* ──────────────────────────────────────────────────────────── */

/* Example: Change city card hover background */
/* .bases-city-card:hover {
  background: #f0f0f0 !important;
} */

/* ─── Global: stack header + left-align description ─── */
.section-2 .grid-2-columns.title-left---content-right.bases-animate {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  gap: 24px !important;
}

.section-2 .grid-2-columns.title-left---content-right.bases-animate .inner-container._500px {
  margin-left: 0 !important;
  max-width: 600px !important;
}

/* Give "Our Bases" badge more breathing room below */
.section-2 .bases-animate .mg-top-small {
  margin-top: 32px !important;
}

/* ─── Mobile specific overrides ─── */
@media screen and (max-width: 767px) {
  .section-2 .grid-2-columns.title-left---content-right.bases-animate {
    margin-bottom: 40px !important;
  }

  /* City cards: single column on mobile */
  .bases-city-card {
    border-right: none !important;
    padding: 40px 28px !important;
  }

  /* Override the inline grid-template-columns on the city cards wrapper */
  .bases-animate > div {
    grid-template-columns: 1fr !important;
  }
}

/* ──────────────────────────────────────────────────────────── */
/*  WHAT WE PROVIDE SECTION  (fully custom — easiest section) */
/* ──────────────────────────────────────────────────────────── */

/* Example: Override feature card border */
/* .card[style*="border: 1px solid #e5e7eb"] {
  border-color: #d1d5db !important;
} */

/* ──────────────────────────────────────────────────────────── */
/*  FOOTER                                                     */
/* ──────────────────────────────────────────────────────────── */

/* Footer logo - bigger and more powerful */
.footer-wrapper .inner-container._130px {
  max-width: 280px !important;
}

.footer-wrapper .logo-link img {
  width: 100% !important;
  max-width: 280px !important;
  height: auto !important;
}

/* Responsive adjustments */
@media screen and (max-width: 991px) {
  .footer-wrapper .inner-container._130px {
    max-width: 240px !important;
  }

  .footer-wrapper .logo-link img {
    max-width: 240px !important;
  }
}

@media screen and (max-width: 767px) {
  .footer-wrapper .inner-container._130px {
    max-width: 200px !important;
  }

  .footer-wrapper .logo-link img {
    max-width: 200px !important;
  }
}

/* ──────────────────────────────────────────────────────────── */
/*  RESPONSIVE BREAKPOINTS (Webflow defaults)                  */
/*  Desktop:  > 991px                                          */
/*  Tablet:   768px – 991px                                    */
/*  Mobile L: 480px – 767px                                    */
/*  Mobile S: < 479px                                          */
/* ──────────────────────────────────────────────────────────── */

/* @media screen and (max-width: 991px) { } */
/* @media screen and (max-width: 767px) { } */
/* @media screen and (max-width: 479px) { } */

/* ──────────────────────────────────────────────────────────── */
/*  WEBFLOW ANIMATION FIX — static pages                       */
/*  Webflow sets opacity:0 + transform inline for scroll       */
/*  animations. On static/local pages the Webflow JS may not   */
/*  fire, leaving entire sections invisible.                   */
/*  Target only elements with data-w-id that are NOT part of   */
/*  nav/dropdown/cart/modal UI (those use display:none).       */
/* ──────────────────────────────────────────────────────────── */
.page-wrapper
  [data-w-id]:not(.w-nav):not(.w-dropdown):not(.w-dropdown-list):not(
    .w-nav-menu
  ):not(.w-commerce-commercecartwrapper):not(
    .w-commerce-commercecartcontainerwrapper
  ) {
  opacity: 1 !important;
  transform: none !important;
}

/* ──────────────────────────────────────────────────────────── */
/*  PUBLIC RELATIONS SLIDER — arrow visibility fix             */
/*  The icon font renders white by default (for dark cards).   */
/*  The PR section sits on a white bg, so we force dark icons. */
/* ──────────────────────────────────────────────────────────── */
#pr-slider-section .line-square-arrow,
#pr-slider-section .w-slider-arrow-left,
#pr-slider-section .w-slider-arrow-right {
  color: #111111 !important;
  border-color: #111111 !important;
  opacity: 1 !important;
}
#pr-slider-section .line-square-arrow .icon-arrows,
#pr-slider-section .icon-arrows {
  color: #111111 !important;
}
#pr-slider-section .icon-arrows::before {
  color: #111111 !important;
}

/* ──────────────────────────────────────────────────────────── */
/*  PORTFOLIO SLIDER (Companies section) — arrow visibility    */
/*  The .icon-arrows divs are empty; Webflow JS normally       */
/*  injects the glyph at runtime. We use ::before to inject    */
/*  the arrow characters from the icon font, plus add a border */
/*  so the 37×37px containers are visible on a white bg.       */
/* ──────────────────────────────────────────────────────────── */
.slider-bottom---arrow-left,
.slider-bottom---arrow-right {
  border: none !important;
  opacity: 1 !important;
  z-index: 5;
  width: auto !important;
  height: auto !important;
  background-color: transparent !important;
  box-shadow: none !important;
}

.slider-wrapper .slider-bottom---arrow-left {
  inset: auto auto 0px 0px !important;
}

.slider-wrapper .slider-bottom---arrow-right {
  inset: auto 0px 0px auto !important;
}

/* Inject the arrow glyphs when .icon-arrows is empty */
.slider-bottom---arrow-left .icon-arrows:empty::before {
  content: "\e801";
  font-family: "Arrows Capital X Webflow Template", sans-serif;
  color: #111111;
  font-size: 28px;
  font-weight: 100;
  line-height: 1em;
}
.slider-bottom---arrow-right .icon-arrows:empty::before {
  content: "\e800";
  font-family: "Arrows Capital X Webflow Template", sans-serif;
  color: #111111;
  font-size: 28px;
  font-weight: 100;
  line-height: 1em;
}

/* ──────────────────────────────────────────────────────────── */
/*  SITE-WIDE SLIDER — arrow visibility fix for                */
/*  slider-button-right---top-left / top-right                 */
/*  Same pattern as slider-bottom---arrow fix above.           */
/* ──────────────────────────────────────────────────────────── */
.slider-button-right---top-left,
.slider-button-right---top-right {
  border: none !important;
  opacity: 1 !important;
  z-index: 5;
}

.slider-button-right---top-left .icon-arrows:empty::before {
  content: "\e801";
  font-family: "Arrows Capital X Webflow Template", sans-serif;
  color: #111111;
  font-size: 28px;
  font-weight: 100;
  line-height: 1em;
}
.slider-button-right---top-right .icon-arrows:empty::before {
  content: "\e800";
  font-family: "Arrows Capital X Webflow Template", sans-serif;
  color: #111111;
  font-size: 28px;
  font-weight: 100;
  line-height: 1em;
}

/* ──────────────────────────────────────────────────────────── */
/*  COMPANIES SLIDER — heading width fix                       */
/*  The _536px inner-container + flex-wrap: wrap on the parent */
/*  forces "Some of the companies we believe in" onto 3 lines. */
/*  We widen the container and prevent flex-wrap collapse.     */
/* ──────────────────────────────────────────────────────────── */
#companies-slider-section .title-left---content-right {
  flex-wrap: nowrap !important;
}
#companies-slider-section .title-left---content-right > .inner-container {
  max-width: none !important;
}

/* ──────────────────────────────────────────────────────────── */
/*  STAT CARDS — "10 years" alignment fix                      */
/*                                                              */
/*  ROOT CAUSE (verified via browser DevTools):                */
/*  .card.stat-card-v1 is defined in Webflow's CDN CSS as:     */
/*    display: flex;                                           */
/*    flex-flow: column;                                       */
/*    justify-content: space-between;  <-- distributes space   */
/*    height: 100%;   <-- fills full grid row height           */
/*    min-height: 318px;                                       */
/*                                                             */
/*  The "10 years" card lands in row 2 next to the dark CTA   */
/*  card which is ~362px tall. CSS Grid stretches the row,     */
/*  and height:100% makes the card fill that stretched height. */
/*  justify-content:space-between then pushes the number,      */
/*  label, and description apart to fill the excess space —    */
/*  creating the large visible gap between "10" and "years".   */
/*                                                             */
/*  FIX:                                                       */
/*  1. align-self: start   — grid places card at row top       */
/*  2. height: auto        — overrides height:100% so the card */
/*     sizes to its OWN content (not the row's stretched height)*/
/*  Together these make the card behave identically to the     */
/*  top-row cards (which have no tall neighbour to stretch to). */
/* ──────────────────────────────────────────────────────────── */
#w-node-_5d5fae89-2c64-5f40-f693-22a7d63fccd0-60f64be6 {
  align-self: start !important;
  height: auto !important;
}

/* Add extra spacing to match the visual gap in other stat cards.
   The top-row cards use space-between with height:100%, creating
   ~120-140px gap. We replicate that here with explicit margin. */
#w-node-_5d5fae89-2c64-5f40-f693-22a7d63fccd0-60f64be6 .mg-top-large {
  margin-top: 120px !important;
}

/* ──────────────────────────────────────────────────────────── */
/*  HIDE WEBFLOW BADGE                                         */
/* ──────────────────────────────────────────────────────────── */
.w-webflow-badge {
  display: none !important;
}

/* ──────────────────────────────────────────────────────────── */
/*  PR SLIDER CARD HOVER ANIMATION                             */
/* ──────────────────────────────────────────────────────────── */
#pr-slider-section .project-link-wrapper .card-image,
#companies-slider-section .project-link-wrapper .card-image,
#programs-slider-section .project-link-wrapper .card-image {
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1) !important;
  transform: scale3d(1, 1, 1) !important;
}

#pr-slider-section .project-link-wrapper:hover .card-image,
#companies-slider-section .project-link-wrapper:hover .card-image,
#programs-slider-section .project-link-wrapper:hover .card-image {
  transform: scale3d(1.06, 1.06, 1.06) !important;
}

/* ──────────────────────────────────────────────────────────── */
/*  PORTFOLIO SLIDER — full-height card fix                    */
/*                                                              */
/*  PROBLEM:                                                    */
/*  Webflow's .w-slider-mask uses display: block with           */
/*  white-space: nowrap, and .w-slide uses display: inline-     */
/*  block. Inline-block elements size to their CONTENT — they   */
/*  do NOT stretch to fill their parent's height. This causes   */
/*  a height gap between the mask and the slides/cards.         */
/*                                                              */
/*  FIX:                                                        */
/*  1. Convert the mask to flexbox so slides stretch to fill    */
/*     the full available height.                               */
/*  2. Propagate height through ALL intermediate wrappers       */
/*     (_w-h-100 / w-dyn-list / w-dyn-items / w-dyn-item).     */
/*  3. Let the card's grid layout determine natural height,     */
/*     then stretch everything to match.                        */
/* ──────────────────────────────────────────────────────────── */

/* --- 1. Slider container: auto-height, not fixed 300px --- */
.slider-wrapper.buttons-bottom-slider.w-slider {
  height: auto !important;
}

/* --- 2. Mask: flexbox replaces inline-block layout --- */
/*    This eliminates the whitespace gap that inline-block     */
/*    creates and lets slides stretch to full mask height.      */
.slider-mask.portfolio-slider.v2.w-slider-mask {
  display: flex !important;
  flex-wrap: nowrap !important;
  align-items: stretch !important;
  height: auto !important;
  white-space: normal !important;
}

/* --- 3. Slides: flex children that stretch to fill mask --- */
.portfolio-slider.v2 .w-slide {
  display: flex !important;
  flex-direction: column !important;
  flex-shrink: 0 !important;
  width: 100% !important;
  height: auto !important;
  min-height: 400px !important;
  margin-right: 16px !important;
}

/* --- 4. Propagate height through Webflow CMS wrappers ---  */
/*    _w-h-100 sets width/height: 100%, but height: 100%     */
/*    requires the parent to have an explicit height. Using    */
/*    flex layout ensures these wrappers stretch instead.      */
.portfolio-slider.v2 .w-slide > ._w-h-100.w-dyn-list,
.portfolio-slider.v2 .w-slide ._w-h-100.w-dyn-items,
.portfolio-slider.v2 .w-slide ._w-h-100.w-dyn-item {
  display: flex !important;
  flex-direction: column !important;
  flex: 1 1 auto !important;
  height: auto !important;
  min-height: 0 !important;
}

/* --- 5. Card: fill the slide completely --- */
.card.portfolio-horizontal-card {
  width: 100% !important;
  flex: 1 1 auto !important;
  min-height: 400px !important;
  height: 100% !important;
  align-items: stretch !important;
  grid-template-rows: 1fr !important;
  padding: 0 !important;
}

/* --- 6. Image wrapper: fill the card grid row height --- */
.image-wrapper.portfolio-horizontal-card---image-wrapper {
  width: 100% !important;
  max-width: none !important;
  height: 100% !important;
  min-height: 400px !important;
  display: flex !important;
  align-items: stretch !important;
  align-self: stretch !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* --- 7. Image: fill wrapper, respect aspect ratio --- */
.card-image._w-h-100.portfolio-horizontal-card---image {
  width: 100% !important;
  height: 100% !important;
  min-height: 400px !important;
  object-fit: cover !important;
  object-position: center !important;
}

/* ──────────────────────────────────────────────────────────── */
/*  RIGHT CONTENT AREA: Ensure consistent height distribution  */
/* ──────────────────────────────────────────────────────────── */
.pd---portfolio-card-right-content {
  height: 100% !important;
  min-height: 400px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  align-self: stretch !important;
  padding: 70px 48px !important;
}

/* ──────────────────────────────────────────────────────────── */
/*  RESPONSIVE ADJUSTMENTS                                      */
/* ──────────────────────────────────────────────────────────── */
@media screen and (max-width: 991px) {
  .portfolio-slider.v2 .w-slide {
    min-height: 350px !important;
  }

  .card.portfolio-horizontal-card {
    min-height: 350px !important;
  }

  .image-wrapper.portfolio-horizontal-card---image-wrapper {
    min-height: 350px !important;
  }

  .card-image._w-h-100.portfolio-horizontal-card---image {
    min-height: 350px !important;
  }

  .pd---portfolio-card-right-content {
    min-height: 350px !important;
  }
}

@media screen and (max-width: 767px) {
  .portfolio-slider.v2 .w-slide {
    min-height: 300px !important;
  }

  .card.portfolio-horizontal-card {
    min-height: 300px !important;
  }

  .image-wrapper.portfolio-horizontal-card---image-wrapper {
    min-height: 300px !important;
  }

  .card-image._w-h-100.portfolio-horizontal-card---image {
    min-height: 300px !important;
  }

  .pd---portfolio-card-right-content {
    min-height: 300px !important;
  }
}

/* ──────────────────────────────────────────────────────────── */
/*  APPROACH ACCORDION — title alignment fix                    */
/*  Scoped to #approach-accordion only.                        */
/*  Keeps the original 3-column grid (title | paragraph | icon)*/
/*  but removes the 202px cap so the first column sizes        */
/*  consistently across all cards.                             */
/* ──────────────────────────────────────────────────────────── */

#approach-accordion .card.number-left-card-content .inner-container._202px {
  max-width: none !important;
  width: 100% !important;
}

#approach-accordion .number-left-card---main {
  width: auto !important;
  flex-wrap: nowrap !important;
  align-items: baseline !important;
  gap: 32px !important;
}

#approach-accordion .number-left-card---main .number-card---left {
  flex-shrink: 0 !important;
}

#approach-accordion .number-left-card---main h3 {
  margin: 0 !important;
  white-space: nowrap !important;
}

/* ──────────────────────────────────────────────────────────── */
/*  PRINCIPLES ACCORDION — inline number + title               */
/*  Scoped to #principles-accordion only so other sections     */
/*  using the same Webflow classes are not affected.           */
/* ──────────────────────────────────────────────────────────── */

/* ---- Card grid: collapse to 2 columns (content + icon) ---- */
#principles-accordion .card.number-left-card-content {
  grid-template-columns: 1fr auto !important;
  grid-template-rows: auto auto !important;
}

/* ---- Mobile: taller accordion cards with more breathing room ---- */
@media screen and (max-width: 767px) {
  .card.number-left-card-content {
    padding-top: 56px !important;
    padding-bottom: 56px !important;
    min-height: 140px !important;
  }
}

/* Title area: column 1, row 1 */
#principles-accordion .card.number-left-card-content .inner-container._202px {
  max-width: none !important;
  width: 100% !important;
  grid-column: 1 / 2 !important;
  grid-row: 1 / 2 !important;
}

/* Accordion paragraph: column 1, row 2 (below title) */
#principles-accordion .card.number-left-card-content .accordion-bottom {
  grid-column: 1 / 2 !important;
  grid-row: 2 / 3 !important;
  overflow: hidden !important;
}

/* +/- icon: column 2, spans both rows */
#principles-accordion .card.number-left-card-content .accordion-icon-wrapper {
  grid-column: 2 / 3 !important;
  grid-row: 1 / 3 !important;
  align-self: center !important;
}

/* ---- Number + title inline on one line ---- */
#principles-accordion .number-left-card---main {
  width: auto !important;
  flex-wrap: nowrap !important;
  align-items: baseline !important;
  gap: 32px !important;
}

#principles-accordion .number-left-card---main .number-card---left {
  flex-shrink: 0 !important;
}

#principles-accordion .number-left-card---main h3 {
  margin: 0 !important;
  white-space: nowrap !important;
}

/* ---- Paragraph indented to align with title text ---- */
/* 74px (number width) + 16px (gap) = 90px indent        */
#principles-accordion .number-left-card---paragraph-wrapper {
  padding-top: 12px !important;
  padding-left: 90px !important;
}

/* ---- Responsive ---- */
@media screen and (max-width: 991px) {
  #principles-accordion .number-left-card---paragraph-wrapper {
    padding-left: 62px !important;
  }
}

@media screen and (max-width: 767px) {
  #principles-accordion .number-left-card---main h3 {
    white-space: normal !important;
  }
  #principles-accordion .number-left-card---paragraph-wrapper {
    padding-left: 0 !important;
  }
}

/* ──────────────────────────────────────────────────────────── */
/*  NAVBAR DROPDOWN — proportional multi-column layout         */
/*                                                              */
/*  Webflow defaults:                                          */
/*    .main-menu-wrapper  → grid, 1fr auto auto (3 cols max)   */
/*    .card.dropdown-pd   → width: 811px                       */
/*    .dropdown-list      → overflow: hidden; translate(-36%)  */
/*                                                              */
/*  We size each dropdown card proportionally to its column    */
/*  count so 2-col dropdowns are narrower than 4-col ones.    */
/* ──────────────────────────────────────────────────────────── */

/* Base card: auto-width, let grid content decide */
.header-wrapper .card.dropdown-pd {
  width: auto !important;
  max-width: 92vw !important;
  box-sizing: border-box !important;
}

/* Grid: single row, columns size to their content */
.header-wrapper .dropdown-list .main-menu-wrapper {
  display: grid !important;
  grid-auto-flow: column !important;
  grid-auto-columns: minmax(140px, auto) !important;
  gap: 32px !important;
}

/* Prevent clipping and reposition for wider dropdown */
.header-wrapper .dropdown-list.dropdown-v1 {
  overflow: visible !important;
  transform: translate(-28%) !important;
}

/* Each column: consistent min-width for readability */
.header-wrapper .dropdown-list .menu-wrapper {
  min-width: 160px !important;
  white-space: normal !important;
}

/* Learn dropdown: wider columns since it only has 2 */
[data-w-id="2e9207b3-2b99-c605-880f-2ff7a5ec3f15"] .card.dropdown-pd {
  min-width: 520px !important;
}
[data-w-id="2e9207b3-2b99-c605-880f-2ff7a5ec3f15"] .menu-wrapper {
  min-width: 220px !important;
}

/* ──────────────────────────────────────────────────────────── */
/*  MANIFESTO PAGE — Bento Grid for Market Context Stats       */
/* ──────────────────────────────────────────────────────────── */

/* Bento grid: first stat card spans 2 columns */
#w-node-stat1 {
  grid-column: 1 / 3 !important;
}

/* Ensure stats grid uses proper column layout */
.stats-grid-v1 {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 24px !important;
}

/* Responsive: collapse to 2 columns on tablet */
@media screen and (max-width: 991px) {
  .stats-grid-v1 {
    grid-template-columns: repeat(2, 1fr) !important;
    grid-template-rows: 1fr 1fr auto !important;
    align-items: stretch !important;
  }
  #w-node-stat1 {
    grid-column: 1 / 3 !important;
  }

  /* Tablet: make all stat cards equal height and vertically stacked */
  .stats-grid-v1 .card.stat-card-v1 {
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    height: 100% !important;
    align-self: stretch !important;
  }

  /* Tablet: generous spacing between number line and label */
  .stats-grid-v1 .card.stat-card-v1 .line---title-flex-v1 {
    margin-bottom: 16px !important;
  }

  /* Tablet: breathing room above the label text */
  .stats-grid-v1 .card.stat-card-v1 > .display-8.mid.text-neutral {
    margin-top: 8px !important;
  }

  /* Tablet: push description to bottom for equal visual weight */
  .stats-grid-v1 .card.stat-card-v1 .mg-top-large {
    margin-top: auto !important;
  }
}

/* Responsive: collapse to 2 columns on mobile */
@media screen and (max-width: 767px) {
  .stats-grid-v1 {
    grid-template-columns: repeat(2, 1fr) !important;
    grid-template-rows: 1fr 1fr auto !important;
    align-items: stretch !important;
  }
  #w-node-stat1 {
    grid-column: 1 / 2 !important;
  }

  /* Mobile: make all stat cards equal height and properly aligned */
  .stats-grid-v1 .card.stat-card-v1 {
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    min-height: 220px !important;
    height: 100% !important;
    align-self: stretch !important;
  }

  /* Mobile: generous spacing between number line and label */
  .stats-grid-v1 .card.stat-card-v1 .line---title-flex-v1 {
    margin-bottom: 14px !important;
  }

  /* Mobile: breathing room above the label text */
  .stats-grid-v1 .card.stat-card-v1 > .display-8.mid.text-neutral {
    margin-top: 6px !important;
    padding-top: 0 !important;
  }

  /* Mobile: push description to bottom */
  .stats-grid-v1 .card.stat-card-v1 .mg-top-large {
    margin-top: auto !important;
  }
}

/* ──────────────────────────────────────────────────────────── */
/*  MANIFESTO PAGE — Generous Spacing                          */
/* ──────────────────────────────────────────────────────────── */

/* Section spacing - generous vertical rhythm */
[data-wf-page="6958131bf82d902860f64f6e"] .section.pd-top-120px {
  padding-top: 200px !important;
}

[data-wf-page="6958131bf82d902860f64f6e"] .section.pd-bottom-160px {
  padding-bottom: 200px !important;
}

/* Title spacing - comfortable breathing room */
[data-wf-page="6958131bf82d902860f64f6e"] .mg-bottom-33px {
  margin-bottom: 48px !important;
}

/* Increase default margins for better readability */
[data-wf-page="6958131bf82d902860f64f6e"] .section .mg-top-extra-large {
  margin-top: 56px !important;
}

[data-wf-page="6958131bf82d902860f64f6e"] .section .mg-top-medium {
  margin-top: 40px !important;
}

[data-wf-page="6958131bf82d902860f64f6e"] .section .mg-top-large {
  margin-top: 64px !important;
}

/* Stats grid - more space between cards */
[data-wf-page="6958131bf82d902860f64f6e"] .stats-grid-v1 {
  gap: 32px !important;
}

/* Inner containers - slightly wider for comfort */
[data-wf-page="6958131bf82d902860f64f6e"] .inner-container._500px {
  max-width: 560px !important;
}

/* ──────────────────────────────────────────────────────────── */
/*  MANIFESTO PAGE — Dark Card Link Fix                         */
/* ──────────────────────────────────────────────────────────── */

/* Ensure links in dark mode cards display in white with visible underline */
.card-dark-mode .link-underline-container {
  color: #ffffff !important;
}

.card-dark-mode .link-underline-container div {
  color: #ffffff !important;
}

.card-dark-mode .link-underline-wrapper {
  background-color: rgba(255, 255, 255, 0.2) !important;
  height: 1px !important;
}

.card-dark-mode .link-underline {
  background-color: #ffffff !important;
  height: 1px !important;
}

.card-dark-mode .link-underline-container:hover {
  color: rgba(255, 255, 255, 0.8) !important;
}

/* ──────────────────────────────────────────────────────────── */
/*  MANIFESTO PAGE — Our Approach Accordion Alignment           */
/* ──────────────────────────────────────────────────────────── */

/* Fix alignment for "Our Approach" accordion - ensure all titles align */
.card.number-left-card-content .inner-container._202px {
  max-width: none !important;
  width: auto !important;
}

/* Fixed first column so paragraph text starts at the same position across all cards */
.card.number-left-card-content {
  grid-template-columns: 280px 1fr auto !important;
  align-items: start !important;
}

.number-left-card---main {
  display: flex !important;
  flex-wrap: nowrap !important;
  flex-flow: row nowrap !important;
  align-items: baseline !important;
  gap: 32px !important;
  width: auto !important;
}

.number-left-card---main .number-card---left {
  flex-shrink: 0 !important;
  width: 74px !important;
}

.number-left-card---main h3 {
  flex: 1 !important;
  margin: 0 !important;
  white-space: nowrap !important;
}

/* ──────────────────────────────────────────────────────────── */
/*  MANIFESTO PAGE — Stat Card Adjustments                      */
/* ──────────────────────────────────────────────────────────── */

/* Add spacing between number and gray text label */
[data-wf-page="6958131bf82d902860f64f6e"]
  .card.stat-card-v1
  .line---title-flex-v1 {
  margin-bottom: 20px !important;
}

/* Reduce spacing between number/label and description */
[data-wf-page="6958131bf82d902860f64f6e"] .card.stat-card-v1 .mg-top-large {
  margin-top: 32px !important;
}

/* Smaller text for dark CTA card */
.stat-card-cta-text {
  font-size: 32px !important;
  line-height: 1.3 !important;
}

/* Responsive adjustments */
@media screen and (max-width: 991px) {
  .stat-card-cta-text {
    font-size: 28px !important;
  }
}

@media screen and (max-width: 767px) {
  [data-wf-page="6958131bf82d902860f64f6e"]
    .card.stat-card-v1
    .line---title-flex-v1 {
    margin-bottom: 8px !important;
  }

  [data-wf-page="6958131bf82d902860f64f6e"] .card.stat-card-v1 .mg-top-large {
    margin-top: 24px !important;
  }

  .stat-card-cta-text {
    font-size: 24px !important;
  }
}

/* ══════════════════════════════════════════════════════════════ */
/*  FULLSCREEN HAMBURGER OVERLAY                                 */
/*  100% custom — independent of Webflow's nav system.           */
/*  #lf-burger-toggle : custom open button (fixed, viewport)     */
/*  .burger-overlay__close : custom close button (inside overlay) */
/* ══════════════════════════════════════════════════════════════ */

/* --- 1. Hide Webflow's hamburger entirely --- */
.hamburger-menu.w-nav-button {
  display: none !important;
}

/* --- 2. Hide dropdown nav + right-side items + all dividers --- */
.header-wrapper .nav-menu-middle,
.header-wrapper .nav-menu-right-side,
.header-wrapper .divider-vertical {
  display: none !important;
}

/* --- 3. Custom burger toggle (open button) --- */
#lf-burger-toggle {
  position: fixed;
  top: 22px;
  right: 77px;
  z-index: 10001;
  width: 22px;
  height: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  transition:
    opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Hide burger button in sync with navbar */
#lf-burger-toggle.nav-hidden {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}
#lf-burger-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: #090909;
  border-radius: 1px;
  transition:
    transform 0.35s cubic-bezier(0.77, 0, 0.175, 1),
    opacity 0.25s ease;
}

/* Hide the open button when the overlay is active */
body.burger-open #lf-burger-toggle {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

/* --- 4. Custom close button (inside overlay) --- */
/* Position matches #lf-burger-toggle exactly for seamless swap */
.burger-overlay__close {
  position: fixed;
  top: 22px;
  right: 77px;
  z-index: 10;
  width: 32px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  opacity: 0;
  transform: scale(0.5);
  transition:
    opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.5s,
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.5s;
}
.burger-overlay.is-open .burger-overlay__close {
  opacity: 1;
  transform: scale(1);
}
.burger-overlay__close-line {
  position: absolute;
  width: 22px;
  height: 1.5px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 1px;
  transition: background 0.3s ease;
}
.burger-overlay__close-line:first-child {
  transform: rotate(45deg);
}
.burger-overlay__close-line:last-child {
  transform: rotate(-45deg);
}
.burger-overlay__close:hover .burger-overlay__close-line {
  background: #fff;
}

/* --- 2. Body scroll lock when overlay is open --- */
body.burger-open {
  overflow: hidden !important;
}

/* --- 3. Overlay container --- */
.burger-overlay {
  position: fixed;
  inset: 0;
  z-index: 9998;
  background: #0a0a0a;
  overflow-y: auto;
  overflow-x: hidden;
  visibility: hidden;
  opacity: 0;
  clip-path: circle(0% at calc(100% - 88px) 36px);
  transition:
    clip-path 1.4s cubic-bezier(0.65, 0, 0.35, 1),
    opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1),
    visibility 0s 1.4s;
}

.burger-overlay.is-open {
  visibility: visible;
  opacity: 1;
  clip-path: circle(150% at calc(100% - 88px) 36px);
  transition:
    clip-path 1.1s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s 0s;
}

/* --- 5. Inner container --- */
.burger-overlay__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 48px 80px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

/* --- 6. Navigation grid: 4 columns × 2 rows (flat) --- */
.burger-overlay__nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 56px 40px;
  margin-bottom: 96px;
}

/* --- 8. Category titles --- */
.burger-overlay__title {
  font-family: "Onest", sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* --- 9. Links --- */
.burger-overlay__links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.burger-overlay__link {
  font-family: "Onest", sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  padding: 6px 0;
  transition: color 0.25s ease;
  display: inline-block;
}
.burger-overlay__link:hover {
  color: #fff;
}

/* --big variant removed: all links use the same refined size */
.burger-overlay__link--big {
  font-size: 0.9rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  text-transform: none;
  letter-spacing: normal;
  padding: 6px 0;
}
.burger-overlay__link--big:hover {
  color: #fff;
}

/* --- 10. Section vertical alignment (handled by grid rows) --- */
/* No min-height hacks needed — sections are flat grid children  */
/* so row 2 (Connect, Sectors, Strategy, Learn) auto-aligns.     */

/* --- 11. Bottom bar (legal + search) --- */
.burger-overlay__bottom {
  margin-top: auto;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px 32px;
}

.burger-overlay__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
}

.burger-overlay__legal a {
  font-family: "Onest", sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.35);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: color 0.25s ease;
}
.burger-overlay__legal a:hover {
  color: #fff;
}

/* --- 12. Staggered entrance — cinematic reveal --- */
/* Heavy deceleration curve: elements glide in like they carry weight */
.burger-overlay__section {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Row 1: sections 1–4 */
.burger-overlay.is-open .burger-overlay__section:nth-child(1) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}
.burger-overlay.is-open .burger-overlay__section:nth-child(2) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.28s;
}
.burger-overlay.is-open .burger-overlay__section:nth-child(3) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.36s;
}
.burger-overlay.is-open .burger-overlay__section:nth-child(4) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.44s;
}
/* Row 2: sections 5–8 */
.burger-overlay.is-open .burger-overlay__section:nth-child(5) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.32s;
}
.burger-overlay.is-open .burger-overlay__section:nth-child(6) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.4s;
}
.burger-overlay.is-open .burger-overlay__section:nth-child(7) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.48s;
}
.burger-overlay.is-open .burger-overlay__section:nth-child(8) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.56s;
}

.burger-overlay__bottom {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.65s,
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.65s;
}
.burger-overlay.is-open .burger-overlay__bottom {
  opacity: 1;
  transform: translateY(0);
}

/* Reset when closed (instant snap back) */
.burger-overlay:not(.is-open) .burger-overlay__section,
.burger-overlay:not(.is-open) .burger-overlay__bottom {
  transition-delay: 0s;
  transition-duration: 0.15s;
}

/* ──────────────────────────────────────────────────────────── */
/*  LOGO STRIP SECTION — missing class definitions             */
/*                                                              */
/*  ROOT CAUSE:                                                 */
/*  The HTML references several CSS classes that were never     */
/*  defined in the Webflow shared stylesheet:                   */
/*    - grid-2-columns-copy / grid-2-columns-v2                */
/*    - logo-strip-hero-v1-copy / logo-strip-hero-v2           */
/*    - logo-strip-wrap-copy / logo-strip-wrap-silverlake      */
/*                                                              */
/*  Without these, the outer 2-column grid (title + logos)      */
/*  has no column template, and individual logo wrappers have   */
/*  no max-width — causing logos to render disorganized.        */
/*                                                              */
/*  FIX:                                                        */
/*  Define proper grid layouts matching the existing patterns   */
/*  (.logo-strip-grid-v1 uses 4 × auto columns). The outer     */
/*  grid splits into [title column] [logos column] on desktop   */
/*  and stacks on tablet/mobile.                                */
/* ──────────────────────────────────────────────────────────── */

/* --- Outer grid: Row 1 (OUR PARTNERS + 4 logos) --- */
.grid-2-columns-copy.logo-strip-hero-v1-copy {
  grid-template-rows: auto;
  grid-template-columns: auto 1fr;
  grid-column-gap: 40px;
  grid-row-gap: 24px;
  align-items: center;
}

/* --- Outer grid: Row 2 (empty title + 4 logos) --- */
.grid-2-columns-v2.logo-strip-hero-v2 {
  grid-template-rows: auto;
  grid-template-columns: auto 1fr;
  grid-column-gap: 40px;
  grid-row-gap: 24px;
  align-items: center;
  margin-top: 0px;
}

/* --- Make the empty title cell in row 2 match row 1 title width --- */
.logo-strip-hero-v1-copy > .text-center-tablet,
.logo-strip-hero-v2 > .text-center-tablet {
  width: 220px;
  min-width: 220px;
}

/* --- Logo wrapper variants: match existing .logo-strip-wrap sizes --- */
.logo-strip-wrap-copy._01 {
  max-width: 152px;
}

.logo-strip-wrap-copy._02-copy {
  max-width: 144px;
}

.logo-strip-wrap-copy._03-copy {
  max-width: 190px;
}

.logo-strip-wrap-silverlake {
  max-width: 157px;
}

/* --- Images inside logo wrappers: contain properly --- */
.logo-strip-wrap-copy img,
.logo-strip-wrap-silverlake img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* --- Fix: Force equal-width columns so logos align vertically --- */
.logo-strip-section .logo-strip-grid-v1 {
  grid-template-columns: 1fr 1fr 1fr 1fr !important;
  justify-items: center;
}

/* --- Responsive: Tablet (≤991px) --- */
@media screen and (max-width: 991px) {
  /* Match the hero container's width-100 so edges line up */
  .logo-strip-section .container-default {
    max-width: 100% !important;
  }

  /* Left-align outer grids so "OUR PARTNERS" sits flush left */
  .grid-2-columns-copy.logo-strip-hero-v1-copy,
  .grid-2-columns-v2.logo-strip-hero-v2 {
    grid-template-columns: 1fr;
    justify-items: start;
    text-align: left;
    grid-row-gap: 16px;
  }

  /* Override .text-center-tablet centering within logo strip */
  .logo-strip-section .text-center-tablet {
    text-align: left !important;
    justify-self: start !important;
  }

  /* Hide the empty title spacer in row 2 to collapse the gap */
  .logo-strip-hero-v2 > .text-center-tablet {
    display: none !important;
  }

  /* Remove gap between the two logo rows */
  .grid-2-columns-v2.logo-strip-hero-v2 {
    margin-top: 0 !important;
  }

  /* Hide the entire partner logo strip on tablet and mobile */
  .section.logo-strip-section {
    display: none !important;
  }
}

/* --- Responsive: Mobile (≤767px) --- */
@media screen and (max-width: 767px) {
  .logo-strip-section .logo-strip-grid-v1 {
    grid-template-columns: 1fr 1fr !important;
    justify-items: start !important;
    place-content: start !important;
    gap: 12px 24px;
  }

  .logo-strip-wrap-copy,
  .logo-strip-wrap-silverlake,
  .logo-strip-wrap {
    max-width: 160px;
    width: 100%;
  }
}

/* --- 13. Responsive: tablet & mobile --- */
@media screen and (max-width: 991px) {
  .burger-overlay__inner {
    padding: 100px 32px 60px;
  }
  .burger-overlay__nav {
    grid-template-columns: 1fr 1fr;
    gap: 48px 36px;
  }
}

@media screen and (max-width: 767px) {
  .burger-overlay__inner {
    padding: 90px 24px 48px;
  }
  .burger-overlay__nav {
    grid-template-columns: 1fr 1fr;
    gap: 40px 16px;
  }
  .burger-overlay__close,
  #lf-burger-toggle {
    top: 14px;
    right: 20px;
  }
  .burger-overlay__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ============================================================================
   CONTACT FORM FIXES
   Define 2-column grid layout for contact form
   ============================================================================ */

/* Set up 2-column grid for form */
.grid-form {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  grid-auto-rows: auto !important;
}

/* Name field - column 1, row 1 */
#w-node-_0eae7245-bfa8-83b1-3fb0-77ebbc4c6c93-cd21a1f0 {
  grid-area: 1 / 1 / 2 / 2;
}

/* Email field - column 2, row 1 */
#w-node-_0eae7245-bfa8-83b1-3fb0-77ebbc4c6c97-cd21a1f0 {
  grid-area: 1 / 2 / 2 / 3;
}

/* Phone field - column 1, row 2 */
#w-node-_0eae7245-bfa8-83b1-3fb0-77ebbc4c6c9b-cd21a1f0 {
  grid-area: 2 / 1 / 3 / 2;
}

/* Company field - column 2, row 2 */
#w-node-_0eae7245-bfa8-83b1-3fb0-77ebbc4c6c9f-cd21a1f0 {
  grid-area: 2 / 2 / 3 / 3;
}

/* Message textarea - spans both columns, row 3 */
#w-node-_0eae7245-bfa8-83b1-3fb0-77ebbc4c6ca3-cd21a1f0 {
  grid-area: 3 / 1 / 4 / 3;
}

/* Submit button - column 1 only, row 4 */
#w-node-_0eae7245-bfa8-83b1-3fb0-77ebbc4c6ca7-cd21a1f0 {
  grid-area: 4 / 1 / 5 / 2;
}

/* Mobile: single column layout */
@media screen and (max-width: 767px) {
  .grid-form {
    grid-template-columns: 1fr !important;
  }

  #w-node-_0eae7245-bfa8-83b1-3fb0-77ebbc4c6c93-cd21a1f0,
  #w-node-_0eae7245-bfa8-83b1-3fb0-77ebbc4c6c97-cd21a1f0,
  #w-node-_0eae7245-bfa8-83b1-3fb0-77ebbc4c6c9b-cd21a1f0,
  #w-node-_0eae7245-bfa8-83b1-3fb0-77ebbc4c6c9f-cd21a1f0,
  #w-node-_0eae7245-bfa8-83b1-3fb0-77ebbc4c6ca3-cd21a1f0,
  #w-node-_0eae7245-bfa8-83b1-3fb0-77ebbc4c6ca7-cd21a1f0 {
    grid-column: 1 / 2 !important;
  }
}

/* ============================================================================
   CONTACT PAGE — Layout adjustments
   ============================================================================ */

/* Reduce space between "Get in touch" and email */
.contact-hero-colum-left---top .mg-top-medium {
  margin-top: 24px !important;
}

/* Align form with "No rush. We're here." */
.contact-form-block {
  margin-top: 80px !important;
}

/* Add vertical line through contact section */
.contact-hero-grid {
  position: relative;
}

.contact-hero-grid::after {
  content: "";
  position: absolute;
  left: 50%;
  top: -200px;
  height: calc(100% + 200px);
  width: 1px;
  background-color: var(--components--divider--border-color--border-default);
  transform: translateX(-50%);
  z-index: 0;
  pointer-events: none;
}

/* ============================================================================ */
/* Manifesto Market Reality Section
/* ============================================================================ */

.manifesto-market-section {
  padding-top: 280px;
  padding-bottom: 120px;
  position: relative;
}

.manifesto-market-content {
  width: 100%;
}

.manifesto-market-subtitle-wrap {
  display: flex;
  align-items: center;
  margin-bottom: 32px;
}

.manifesto-market-title-wrap {
  width: 100%;
  max-width: 850px;
  margin-bottom: 40px;
}

.manifesto-market-paragraph-wrap {
  width: 100%;
  max-width: 650px;
}

@media screen and (max-width: 991px) {
  .manifesto-market-section {
    padding-top: 200px;
    padding-bottom: 80px;
  }
  .manifesto-market-title-wrap {
    margin-bottom: 32px;
  }
}

@media screen and (max-width: 479px) {
  .manifesto-market-section {
    padding-top: 150px;
    padding-bottom: 60px;
  }
}

/* ============================================================================ */
/* Manifesto Capital Efficiency Section (Performance Data)
/* ============================================================================ */
#capital-efficiency .title-and-paragraph-grid {
  grid-template-columns: 380px 1fr !important;
  column-gap: 60px !important; /* Push the paragraph text further to the right */
}

@media screen and (max-width: 991px) {
  #capital-efficiency .title-and-paragraph-grid {
    grid-template-columns: 1fr 1fr !important;
    column-gap: 60px !important;
  }
}

@media screen and (max-width: 767px) {
  #capital-efficiency .title-and-paragraph-grid {
    grid-template-columns: 1fr !important;
    column-gap: 32px !important;
  }
}

/* ============================================================================ */
/* Manifesto "Who We Are" Section - Match HOW WE BUILD layout
/* ============================================================================ */
[data-wf-page="6958131bf82d902860f64f6e"]
  .section.pd-bottom-230px
  .title-and-paragraph-grid {
  grid-template-columns: 380px 1fr !important;
  column-gap: 60px !important;
}

/* Push paragraph containers to the right edge — mirroring the
   justify-self:end Webflow applies to the Strategy/Access/Velocity nodes */
#w-node-_3a81e832-9f9c-5d4d-384a-2fcb5d6eecb5-60f64f6e,
#w-node-_3a81e832-9f9c-5d4d-384a-2fcb5d6eecbe-60f64f6e,
#w-node-_3a81e832-9f9c-5d4d-384a-2fcb5d6eecc7-60f64f6e {
  justify-self: end !important;
}

/* Keep the 482px max-width so there is empty space between
   the title and paragraph — justify-self:end handles the right alignment */

@media screen and (max-width: 991px) {
  [data-wf-page="6958131bf82d902860f64f6e"]
    .section.pd-bottom-230px
    .title-and-paragraph-grid {
    grid-template-columns: 1fr 1fr !important;
    column-gap: 60px !important;
  }
}

@media screen and (max-width: 767px) {
  [data-wf-page="6958131bf82d902860f64f6e"]
    .section.pd-bottom-230px
    .title-and-paragraph-grid {
    grid-template-columns: 1fr !important;
    column-gap: 32px !important;
  }
  #w-node-_3a81e832-9f9c-5d4d-384a-2fcb5d6eecb5-60f64f6e,
  #w-node-_3a81e832-9f9c-5d4d-384a-2fcb5d6eecbe-60f64f6e,
  #w-node-_3a81e832-9f9c-5d4d-384a-2fcb5d6eecc7-60f64f6e {
    justify-self: stretch !important;
  }
}

.manifesto-approach-title-wrap {
  display: flex !important;
  justify-content: flex-start !important;
  align-items: center !important;
  gap: 40px !important;
}

@media screen and (max-width: 767px) {
  .manifesto-approach-title-wrap {
    gap: 24px !important;
  }
}

/* ============================================================================ */
/* About Page — Investments Section: match founders.html grid spacing
/* ============================================================================ */
[data-wf-page="6958131af82d902860f64be6"]
  .section.pd-bottom-230px
  .title-and-paragraph-grid {
  grid-template-columns: 380px 1fr !important;
  column-gap: 60px !important;
}

[data-wf-page="6958131af82d902860f64be6"]
  .section.pd-bottom-230px
  .title-and-paragraph-grid
  .inner-container._482px {
  justify-self: end !important;
}

@media screen and (max-width: 991px) {
  [data-wf-page="6958131af82d902860f64be6"]
    .section.pd-bottom-230px
    .title-and-paragraph-grid {
    grid-template-columns: 1fr 1fr !important;
    column-gap: 60px !important;
  }
}

@media screen and (max-width: 767px) {
  [data-wf-page="6958131af82d902860f64be6"]
    .section.pd-bottom-230px
    .title-and-paragraph-grid {
    grid-template-columns: 1fr !important;
    column-gap: 32px !important;
  }
  [data-wf-page="6958131af82d902860f64be6"]
    .section.pd-bottom-230px
    .title-and-paragraph-grid
    .inner-container._482px {
    justify-self: stretch !important;
  }
}

/* ──────────────────────────────────────────────────────────── */
/*  WHY FOUNDERS SECTION — Stat Card Alignment                  */
/*                                                              */
/*  TWO ROOT CAUSES:                                            */
/*                                                              */
/*  1. HORIZONTAL: Webflow's w-node IDs apply different         */
/*     justify-self values per card (start / center / end),     */
/*     so each column pushes its card to a different edge.      */
/*                                                              */
/*  2. VERTICAL: The .inner-container wrapper between the grid  */
/*     cell and .stat-item-v2 doesn't relay height, so cards    */
/*     can't stretch to match the tallest card in each row.     */
/*     Additionally, top labels vary in line count.             */
/*                                                              */
/*  FIX:                                                        */
/*  A. Force all grid children to justify-self: start + full    */
/*     width so every card left-aligns identically.             */
/*  B. Make inner-container a flex column to relay height.       */
/*  C. Normalise top label height for 1-line vs 2-line titles.  */
/*  D. Push descriptions to bottom so borders align.            */
/* ──────────────────────────────────────────────────────────── */

/* A. Horizontal fix: all cards left-aligned, full-width */
.stats-grid-v2 > .inner-container {
  justify-self: start !important;
  max-width: 100% !important;
  width: 100% !important;
  display: flex !important;
  flex-direction: column !important;
}

/* B. Grid rows stretch to tallest card */
.grid-3-columns.stats-grid-v2 {
  align-items: stretch !important;
}

/* C. Stat card fills parent height */
.stats-grid-v2 .stat-item-v2 {
  flex: 1 !important;
  justify-content: flex-start !important;
}

/* D. Normalise top label to 2-line height */
.stats-grid-v2 .stat-item-v2 > .inner-container:first-child .strong {
  min-height: 3.2em !important;
  line-height: 1.5 !important;
}

/* E. Push description to bottom, consistent gap above it */
.stats-grid-v2 .stat-item-v2 > .mg-top-default {
  margin-top: auto !important;
  padding-top: 24px !important;
}

/* ══════════════════════════════════════════════════════════════ */
/*  STRATEGY PAGE — HERO (v2 — Modern & Powerful)                */
/* ══════════════════════════════════════════════════════════════ */

/* --- 1. Full-viewport section --- */
.strategy-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #060606;
  padding: 160px 40px 100px;
  box-sizing: border-box;
}

/* --- 2. Animated grain --- */
.strategy-hero__grain {
  position: absolute;
  inset: -50%;
  z-index: 1;
  opacity: 0.03;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  animation: strategy-grain 6s steps(8) infinite;
}

@keyframes strategy-grain {
  0%,
  100% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(-5%, -8%);
  }
  50% {
    transform: translate(5%, 5%);
  }
  75% {
    transform: translate(-3%, 8%);
  }
}

/* --- 3. Aurora gradient blobs --- */
.strategy-hero__aurora {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 1;
  will-change: transform, opacity;
}

.strategy-hero__aurora--1 {
  width: 700px;
  height: 700px;
  top: -10%;
  left: -10%;
  background: radial-gradient(
    circle,
    rgba(100, 130, 200, 0.12) 0%,
    transparent 70%
  );
  animation: aurora-drift-1 16s ease-in-out infinite;
}

.strategy-hero__aurora--2 {
  width: 600px;
  height: 600px;
  top: 20%;
  right: -5%;
  background: radial-gradient(
    circle,
    rgba(180, 160, 120, 0.1) 0%,
    transparent 70%
  );
  animation: aurora-drift-2 20s ease-in-out infinite;
}

.strategy-hero__aurora--3 {
  width: 500px;
  height: 500px;
  bottom: -5%;
  left: 30%;
  background: radial-gradient(
    circle,
    rgba(140, 100, 180, 0.08) 0%,
    transparent 70%
  );
  animation: aurora-drift-3 18s ease-in-out infinite;
}

@keyframes aurora-drift-1 {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.8;
  }
  33% {
    transform: translate(8%, 12%) scale(1.15);
    opacity: 1;
  }
  66% {
    transform: translate(-5%, 5%) scale(0.95);
    opacity: 0.7;
  }
}

@keyframes aurora-drift-2 {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.7;
  }
  40% {
    transform: translate(-10%, -8%) scale(1.1);
    opacity: 1;
  }
  70% {
    transform: translate(5%, 10%) scale(0.9);
    opacity: 0.6;
  }
}

@keyframes aurora-drift-3 {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.6;
  }
  50% {
    transform: translate(12%, -10%) scale(1.2);
    opacity: 0.9;
  }
}

/* --- 4. Content container --- */
.strategy-hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 960px;
  width: 100%;
}

/* --- 5. Eyebrow --- */
.strategy-hero__eyebrow {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}

.strategy-hero__eyebrow-text {
  font-family: "Onest", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  padding: 10px 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* --- 6. Main headline --- */
.strategy-hero__title {
  font-family: "Onest", sans-serif;
  font-size: clamp(3.2rem, 7vw, 6rem);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #ffffff;
  margin: 0 0 36px;
}

/* --- 7. Accent line --- */
.strategy-hero__accent-line {
  width: 64px;
  height: 3px;
  background: linear-gradient(
    90deg,
    rgba(120, 140, 200, 0.8),
    rgba(200, 170, 120, 0.8)
  );
  border-radius: 2px;
  margin-bottom: 36px;
  animation: accent-pulse 4s ease-in-out infinite;
}

@keyframes accent-pulse {
  0%,
  100% {
    opacity: 0.7;
    width: 64px;
  }
  50% {
    opacity: 1;
    width: 80px;
  }
}

/* --- 8. Subtitle paragraph --- */
.strategy-hero__subtitle {
  font-family: "Onest", sans-serif;
  font-size: 17px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.5);
  max-width: 620px;
  margin: 0 0 48px;
  letter-spacing: 0.005em;
}

/* --- 9. CTAs row --- */
.strategy-hero__ctas {
  display: flex;
  gap: 48px;
  margin-bottom: 72px;
}

/* --- 10. Stats wrapper with rule --- */
.strategy-hero__stats-wrapper {
  width: 100%;
  max-width: 680px;
}

.strategy-hero__stats-rule {
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.1) 20%,
    rgba(255, 255, 255, 0.1) 80%,
    transparent 100%
  );
  margin-bottom: 40px;
}

.strategy-hero__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.strategy-hero__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 48px;
}

.strategy-hero__stat-number {
  font-family: "Onest", sans-serif;
  font-size: 42px;
  font-weight: 300;
  color: #ffffff;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 10px;
}

.strategy-hero__stat-label {
  font-family: "Onest", sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
}

.strategy-hero__stat-divider {
  display: block;
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

/* --- 11. Bottom fade --- */
.strategy-hero__bottom-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to top, #060606 0%, transparent 100%);
  pointer-events: none;
  z-index: 2;
}

/* --- 12. Hide old hero overlays & clip wrapper --- */
.position-relative:has(#strategy-hero) {
  overflow: hidden !important;
}

.position-relative:has(#strategy-hero) > .bg-image-gradient-overlay {
  display: none !important;
}

/* --- 13b. Clip ALL .position-relative hero wrappers so bg image stays inside ---
   This is the root cause fix: without overflow:hidden the absolutely-positioned
   bg image can render on top of sibling sections below. */
.position-relative:has(.hero-full-image-section) {
  overflow: hidden !important;
}

/* --- 13c. Section immediately after a hero wrapper: always on top with white bg --- */
.position-relative ~ .section.pd-top-120px {
  position: relative !important;
  z-index: 2 !important;
  background: #ffffff !important;
}

/* On mobile the hero is taller (stacked content), reset the desktop 320px inline override */
@media (max-width: 767px) {
  .position-relative ~ .section.pd-top-120px {
    padding-top: 80px !important;
  }
}

/* Ensure cards in the section after hero have proper background */
.position-relative:has(#strategy-hero)
  ~ .section.pd-top-230px:first-of-type
  .card.stat-card-v1 {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.position-relative:has(#strategy-hero)
  ~ .section.pd-top-230px:first-of-type
  .card.stat-card-v1.card-dark-mode {
  background: rgba(255, 255, 255, 0.05);
}

/* ── RESPONSIVE: TABLET ── */
@media screen and (max-width: 991px) {
  .strategy-hero {
    padding: 140px 32px 80px;
    min-height: 92vh;
  }

  .strategy-hero__title {
    font-size: clamp(2.8rem, 6vw, 4.5rem);
  }

  .strategy-hero__stat {
    padding: 0 32px;
  }

  .strategy-hero__stat-number {
    font-size: 34px;
  }

  .strategy-hero__ctas {
    margin-bottom: 56px;
  }

  .strategy-hero__aurora--1 {
    width: 500px;
    height: 500px;
  }
  .strategy-hero__aurora--2 {
    width: 400px;
    height: 400px;
  }
  .strategy-hero__aurora--3 {
    width: 350px;
    height: 350px;
  }

  .position-relative:has(#strategy-hero) ~ .section.pd-top-230px:first-of-type {
    padding-top: 280px !important;
    margin-top: -80px;
  }
}

/* ── RESPONSIVE: MOBILE ── */
@media screen and (max-width: 767px) {
  .strategy-hero {
    padding: 120px 24px 60px;
    min-height: auto;
  }

  .strategy-hero__eyebrow {
    margin-bottom: 28px;
  }

  .strategy-hero__eyebrow-text {
    font-size: 10px;
    letter-spacing: 0.3em;
    padding: 8px 18px;
  }

  .strategy-hero__title {
    font-size: clamp(2.2rem, 9vw, 3.2rem);
    margin-bottom: 24px;
  }

  .strategy-hero__accent-line {
    margin-bottom: 24px;
  }

  .strategy-hero__subtitle {
    font-size: 15px;
    margin-bottom: 36px;
  }

  .strategy-hero__ctas {
    gap: 32px;
    margin-bottom: 48px;
  }

  .strategy-hero__stats {
    flex-direction: column;
    gap: 0;
  }

  .strategy-hero__stat {
    padding: 20px 0;
  }

  .strategy-hero__stat-number {
    font-size: 36px;
  }

  .strategy-hero__stat-divider {
    width: 48px;
    height: 1px;
  }

  .strategy-hero__stats-rule {
    margin-bottom: 24px;
  }

  .strategy-hero__aurora--1 {
    width: 300px;
    height: 300px;
    filter: blur(80px);
  }
  .strategy-hero__aurora--2 {
    width: 250px;
    height: 250px;
    filter: blur(80px);
  }
  .strategy-hero__aurora--3 {
    display: none;
  }
}

/* ── RESPONSIVE: SMALL MOBILE ── */
@media screen and (max-width: 479px) {
  .strategy-hero__title {
    font-size: 2.2rem;
  }

  .strategy-hero__stat-number {
    font-size: 30px;
  }
}

/* ──────────────────────────────────────────────────────────── */
/*  SLIDER ARROW BUTTONS — elegant hover & press animations    */
/*                                                              */
/*  Replaces the default abrupt Webflow hover with smooth,     */
/*  premium-feeling transitions using cubic-bezier easing.     */
/*  Scoped to .line-square-arrow only — no global side effects.*/
/* ──────────────────────────────────────────────────────────── */

.line-square-arrow {
  transition:
    transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    background-color 0.4s ease,
    border-color 0.4s ease,
    box-shadow 0.4s ease !important;
  will-change: transform, background-color, box-shadow;
  cursor: pointer;
}

/* Elegant hover: gentle lift + subtle shadow */
.line-square-arrow:hover {
  transform: scale(1.08) !important;
  background-color: rgba(0, 0, 0, 0.04) !important;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08) !important;
}

/* Active/pressed: compact press-down feel */
.line-square-arrow:active {
  transform: scale(0.95) !important;
  transition-duration: 0.12s !important;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06) !important;
}

/* Arrow icon inside: smooth directional nudge on hover */
.line-square-arrow .icon-arrows {
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

.line-square-arrow.w-slider-arrow-left:hover .icon-arrows {
  transform: translateX(-2px) !important;
}

.line-square-arrow.w-slider-arrow-right:hover .icon-arrows {
  transform: translateX(2px) !important;
}

/* Dark-mode slider arrows (on dark card backgrounds) */
.card-dark-mode .line-square-arrow:hover,
.section[style*="background"] .line-square-arrow:hover {
  background-color: rgba(255, 255, 255, 0.08) !important;
  box-shadow: 0 2px 12px rgba(255, 255, 255, 0.06) !important;
}

/* ──────────────────────────────────────────────────────────── */
/*  TEAM ITEM HOVER ANIMATION                                   */
/* ──────────────────────────────────────────────────────────── */

/* Team item wrapper: smooth hover lift effect */
.team-item-wrapper {
  transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.team-item-wrapper:hover {
  transform: translateY(-12px);
}

/* Team item image: smooth scale on hover */
.team-item---image-wrapper {
  overflow: hidden;
}

.team-item---image {
  transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.team-item-wrapper:hover .team-item---image {
  transform: scale(1.08);
}

/* Card content: subtle shadow lift on hover */
.card.partners-content {
  transition: box-shadow 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: box-shadow;
}

.team-item-wrapper:hover .card.partners-content {
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

/* ──────────────────────────────────────────────────────────── */
/*  PORTFOLIO SLIDER — CARD HEIGHT FIX                         */
/*                                                              */
/*  ROOT CAUSE:                                                 */
/*  Webflow's .w-slider-mask uses display:block with            */
/*  white-space:nowrap, and .w-slide uses display:inline-block. */
/*  inline-block elements size to their CONTENT height, NOT     */
/*  their parent's height — creating a 9px gap between the mask */
/*  (426px) and slide (417px). The card can never reach full    */
/*  height because its parent slide is capped at 417px.         */
/*                                                              */
/*  FIX: Convert mask → flex, slides → flex children, and       */
/*  propagate flex through CMS wrappers so height flows cleanly */
/*  from mask → slide → dyn-list → dyn-items → dyn-item → card. */
/* ──────────────────────────────────────────────────────────── */

/* Rule 1 — Slider Container: Auto Height */
.slider-wrapper.buttons-bottom-slider.w-slider {
  height: auto !important;
}

/* Rule 2 — Mask: Flexbox Replaces Block Layout */
.slider-mask.portfolio-slider.v2.w-slider-mask {
  display: flex !important;
  flex-wrap: nowrap !important;
  align-items: stretch !important;
  height: auto !important;
  white-space: normal !important;
}

/* Rule 3 — Slides: Flex Children */
.portfolio-slider.v2 .w-slide {
  display: flex !important;
  flex-direction: column !important;
  flex-shrink: 0 !important;
  width: 100% !important;
  height: auto !important;
  min-height: 400px !important;
  margin-right: 16px !important;
}

/* Rule 4 — CMS Wrapper Propagation */
.portfolio-slider.v2 .w-slide > ._w-h-100.w-dyn-list,
.portfolio-slider.v2 .w-slide ._w-h-100.w-dyn-items,
.portfolio-slider.v2 .w-slide ._w-h-100.w-dyn-item {
  display: flex !important;
  flex-direction: column !important;
  flex: 1 1 auto !important;
  height: auto !important;
  min-height: 0 !important;
}

/* Rule 5 — Card: Fill the Slide */
.card.portfolio-horizontal-card {
  width: 100% !important;
  flex: 1 1 auto !important;
  min-height: 400px !important;
  overflow: hidden !important;
}

/* Rule 6 — Image Wrapper */
.image-wrapper.portfolio-horizontal-card---image-wrapper {
  width: 100% !important;
  max-width: 415px !important;
  height: 100% !important;
  min-height: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: stretch !important;
  justify-content: stretch !important;
}

/* Rule 7 — Image Element */
.card-image._w-h-100.portfolio-horizontal-card---image {
  width: 100% !important;
  height: 100% !important;
  flex-grow: 1 !important;
  object-fit: cover !important;
  object-position: center !important;
  display: block !important;
  margin: 0 !important;
}

/* ── Portfolio Slider: Responsive Breakpoints ── */
@media (max-width: 991px) {
  .portfolio-slider.v2 .w-slide {
    min-height: 350px !important;
  }

  .card.portfolio-horizontal-card {
    min-height: 350px !important;
  }

  .card-image._w-h-100.portfolio-horizontal-card---image {
    max-height: 400px !important;
  }
}

@media (max-width: 767px) {
  .portfolio-slider.v2 .w-slide {
    min-height: 300px !important;
  }

  .card.portfolio-horizontal-card {
    min-height: 300px !important;
  }

  .card-image._w-h-100.portfolio-horizontal-card---image {
    max-height: 350px !important;
  }
}

/* ── Stat card: gap fix for the 57% card only ── */
#w-node-_5d5fae89-2c64-5f40-f693-22a7d63fccd0-60f64be6 .line---title-flex-v1 {
  margin-bottom: 12px !important;
}

/* ── Steps grid: always keep 3 columns at every breakpoint ── */
.grid-3-columns.steps-grid-3-col {
  grid-template-columns: 1fr 1fr 1fr !important;
  grid-column-gap: 24px !important;
  grid-row-gap: 52px !important;
  justify-content: space-between !important;
}

.steps-grid-3-col > .steps-line-wrapper {
  grid-column: 1 / -1 !important;
  flex-flow: column !important;
  justify-content: center !important;
  display: flex !important;
  position: relative !important;
  overflow: hidden !important;
}

/* Keep the progress line horizontal at all sizes */
.scroll-bar-line-wrapper.steps-line {
  width: 100% !important;
  height: 1px !important;
  position: absolute !important;
  flex-flow: row !important;
  display: block !important;
}

.scroll-bar-line-wrapper.steps-line .scroll-bar-line {
  width: 33% !important;
  height: 100% !important;
  min-width: auto !important;
  min-height: auto !important;
}

/* Keep the dot small and left-aligned */
.steps-line-wrapper .dot-decoration-text.extra-small {
  align-self: flex-start !important;
}

@media (max-width: 767px) {
  .grid-3-columns.steps-grid-3-col {
    grid-column-gap: 16px !important;
    grid-row-gap: 32px !important;
  }
}

/* ── Hide Webflow badge (injected at runtime by Webflow JS) ── */
.w-webflow-badge {
  display: none !important;
}

/* ── Approach accordion: add top spacing & clean background ── */
#approach-accordion {
  padding-top: 190px !important;
  background: #ffffff !important;
  position: relative !important;
  z-index: 1 !important;
}

/* ──────────────────────────────────────────────────────────── */
/*  PROGRAMS SLIDER — arrow visibility fix                     */
/*  Force slider navigation arrows to be visible on white bg   */
/* ──────────────────────────────────────────────────────────── */
#programs-slider-section .line-square-arrow,
#programs-slider-section .w-slider-arrow-left,
#programs-slider-section .w-slider-arrow-right {
  color: #111111 !important;
  border-color: #111111 !important;
  opacity: 1 !important;
  visibility: visible !important;
  display: flex !important;
  pointer-events: auto !important;
}

#programs-slider-section .line-square-arrow .icon-arrows,
#programs-slider-section .icon-arrows {
  color: #111111 !important;
  opacity: 1 !important;
}

#programs-slider-section .icon-arrows::before {
  color: #111111 !important;
  opacity: 1 !important;
}

/* ──────────────────────────────────────────────────────────── */
/*  INTEL GRIDS — Intelligence sector stat cards               */
/*  Isolated from grid-2-columns so edits don't cascade        */
/* ──────────────────────────────────────────────────────────── */
.intel-market-grid,
.intel-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

@media (max-width: 767px) {
  .intel-market-grid,
  .intel-about-grid {
    grid-template-columns: 1fr;
  }
}

/* ──────────────────────────────────────────────────────────── */
/*  SLIDER ARROWS — below heading, centered pair (← →)         */
/*                                                              */
/*  ROOT CAUSE OF PREVIOUS BUG:                                 */
/*  Webflow's .w-slider-arrow-left/right apply:                 */
/*    position: absolute; inset: 0;                             */
/*  This overrides the flex layout and collapses both arrows    */
/*  on top of each other. FIX: force position: static and       */
/*  reset inset so the flex gap/alignment actually works.       */
/* ──────────────────────────────────────────────────────────── */

/* Container: normal flow, below the h2, with breathing room   */
.slider-arrows-container {
  display: flex !important;
  gap: 12px;
  align-items: center;
  margin-top: 40px;
  /* Ensure no absolute positioning leaks from parent context   */
  position: static;
}

/* ── CRITICAL: override Webflow's absolute positioning ──      */
/* Without these overrides the arrows stack on top of each      */
/* other because .w-slider-arrow-left/right set inset: 0.      */
.slider-arrows-container .line-square-arrow,
.slider-arrows-container .w-slider-arrow-left,
.slider-arrows-container .w-slider-arrow-right {
  position: static !important;
  inset: auto !important;
  top: auto !important;
  right: auto !important;
  bottom: auto !important;
  left: auto !important;
  margin: 0 !important;
  overflow: visible !important;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none !important;
  opacity: 1 !important;
  visibility: visible !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 37px !important;
  height: 37px !important;
  flex-shrink: 0;
  background: transparent !important;
  color: #111111 !important;
}

.slider-arrows-container .line-square-arrow:hover {
  opacity: 0.6 !important;
  transform: scale(1.08);
}

/* ── Arrow glyphs via icon font ──                             */
/* \e801 = left-pointing ←   \e800 = right-pointing →           */
.slider-arrows-container .line-square-arrow.w-slider-arrow-left .icon-arrows:empty::before {
  content: "\e801";
  font-family: "Arrows Capital X Webflow Template", sans-serif;
  color: #111111;
  font-size: 28px;
  font-weight: 100;
  line-height: 1em;
}

.slider-arrows-container .line-square-arrow.w-slider-arrow-right .icon-arrows:empty::before {
  content: "\e800";
  font-family: "Arrows Capital X Webflow Template", sans-serif;
  color: #111111;
  font-size: 28px;
  font-weight: 100;
  line-height: 1em;
}

/* Hide the default Webflow slider arrows (direct children of  */
/* .w-slider) to avoid duplicate arrow controls                */
.content-and-arrow-left---slider-right > .line-square-arrow {
  display: none !important;
}

/* ── Responsive: mobile ── */
@media (max-width: 767px) {
  .slider-arrows-container {
    gap: 8px;
    margin-top: 24px;
  }
}

/* ──────────────────────────────────────────────────────────── */
/*  PORTFOLIO COMPANY DETAILS — EVEN 4-COLUMN GRID            */
/* ──────────────────────────────────────────────────────────── */

.details-portfolio-single-grid {
  grid-template-columns: repeat(4, 1fr) !important;
}

@media (max-width: 767px) {
  .details-portfolio-single-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

/* ──────────────────────────────────────────────────────────── */
/*  DIMENSION PAGE — CATEGORY BADGES SINGLE LINE FIX           */
/* ──────────────────────────────────────────────────────────── */

/* Ensure category badges stay on one line without wrapping */
.categories-badges-wrapper.center {
  flex-wrap: nowrap !important;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

/* Hide scrollbar for Chrome/Safari/Opera */
.categories-badges-wrapper.center::-webkit-scrollbar {
  display: none;
}

/* Prevent badge items from shrinking */
.categories-badges-item-wrapper.center {
  flex-shrink: 0;
}

/* Ensure link text doesn't wrap */
.link---line-bottom---button-category {
  white-space: nowrap;
}

/* ──────────────────────────────────────────────────────────── */
/*  FOOTER CTA — Left align on mobile                          */
/* ──────────────────────────────────────────────────────────── */
@media screen and (max-width: 991px) {
  .footer-colum-left---top {
    text-align: left !important;
    align-items: flex-start !important;
  }

  .footer-colum-left---top---title-wrapper {
    text-align: left !important;
    max-width: none !important;
  }

  .footer-colum-left---top .flex-horizontal.justify-start.justify-center-mbl {
    justify-content: flex-start !important;
  }

  .footer-colum-left---top .buttons-row.alt---mbp {
    justify-content: flex-start !important;
  }
}

/* ──────────────────────────────────────────────────────────── */
/*  PARTNERS GRID — Single column on mobile                     */
/* ──────────────────────────────────────────────────────────── */
@media screen and (max-width: 767px) {
  .grid-3-columns.gap-col-10px---row-42px._1-col-mbl {
    grid-template-columns: 1fr !important;
    gap: 48px !important;
  }
}

/* ──────────────────────────────────────────────────────────── */
/*  BEYOND CAPITAL GRID — Responsive columns                    */
/* ──────────────────────────────────────────────────────────── */
.beyond-capital-grid-responsive {
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media screen and (max-width: 991px) {
  .beyond-capital-grid-responsive {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media screen and (max-width: 767px) {
  .beyond-capital-grid-responsive {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
}
