/* =====================================================================
   INEXUS — ABOUT US, PREMIUM REDESIGN
   Scoped under the "abx-" prefix so nothing here collides with the
   site-wide stylesheet. Brand colors kept consistent with the rest of
   the site: navy #0b2c3d + gold #cfa36a.
   Signature idea: the practice runs on case files & regulatory dossiers,
   so the leadership section is framed as numbered "partner dossiers"
   instead of a generic team grid.
   ===================================================================== */

:root{
  --abx-ink:        #071b26;
  --abx-navy:       #0b2c3d;
  --abx-navy-2:     #123a4e;
  --abx-navy-soft:  #1c4a61;
  --abx-gold:       #cfa36a;
  --abx-gold-light: #ecd3a4;
  --abx-gold-dim:   rgba(207,163,106,0.35);
  --abx-paper:      #faf7f1;
  --abx-paper-2:    #f1ebdd;
  --abx-ink-text:   #0f2733;
  --abx-slate:      #56666f;
  --abx-slate-soft: #8a9aa1;
  --abx-white:      #ffffff;
  --abx-line:       rgba(207,163,106,0.28);
  --abx-shadow-lg:  0 30px 70px -20px rgba(7,27,38,0.35);
  --abx-shadow-md:  0 18px 40px -18px rgba(7,27,38,0.28);
  --abx-radius-lg:  1.75rem;
  --abx-radius-md:  1.125rem;
  --abx-radius-sm:  0.6rem;
  --abx-ease:       cubic-bezier(0.16,1,0.3,1);
  --abx-font-display: 'Fraunces', Georgia, serif;
  --abx-font-mono:    'IBM Plex Mono', 'Courier New', monospace;
}

@media (prefers-reduced-motion: reduce){
  .abx-section, .abx-section *{ animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

.abx-section{ position: relative; }

.abx-container{
  width: 92%;
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
}

/* ---------- Reveal-on-scroll ---------- */
.abx-reveal{
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--abx-ease), transform 0.9s var(--abx-ease);
}
.abx-reveal.abx-inview{
  opacity: 1;
  transform: translateY(0);
}
.abx-reveal-1{ transition-delay: 0.05s; }
.abx-reveal-2{ transition-delay: 0.15s; }
.abx-reveal-3{ transition-delay: 0.25s; }
.abx-reveal-4{ transition-delay: 0.35s; }

/* ---------- Shared eyebrow / heading system ---------- */
.abx-eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--abx-font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--abx-gold);
  font-weight: 500;
  margin-bottom: 1.1rem;
}
.abx-eyebrow::before{
  content: "";
  width: 28px;
  height: 1px;
  background: var(--abx-gold);
  display: inline-block;
}
.abx-eyebrow.abx-on-light{ color: var(--abx-navy); }
.abx-eyebrow.abx-on-light::before{ background: var(--abx-navy); }

.abx-heading{
  font-family: var(--abx-font-display);
  font-weight: 600;
  color: var(--abx-ink-text);
  line-height: 1.12;
  letter-spacing: -0.01em;
  font-size: clamp(1.9rem, 3.4vw, 3.1rem);
  margin-bottom: 1.1rem;
}
.abx-heading em{
  font-style: italic;
  color: var(--abx-gold);
  font-weight: 500;
}
.abx-heading.abx-on-dark{ color: var(--abx-white); }

.abx-lede{
  font-size: 1.02rem;
  color: var(--abx-slate);
  line-height: 1.75;
  max-width: 46rem;
}
.abx-lede.abx-on-dark{ color: rgba(255,255,255,0.72); }

.abx-head-center{
  text-align: center;
  max-width: 46rem;
  margin: 0 auto 3.5rem;
}
.abx-head-center .abx-lede{ margin: 0 auto; }

/* =====================================================================
   HERO — blueprint / regulatory-ledger texture behind an editorial
   headline. No stat-card hero; the stats live in the intro section.
   ===================================================================== */
.abx-hero{
  position: relative;
  min-height: clamp(30rem, 78vh, 46rem);
  display: flex;
  align-items: center;
  background: var(--abx-ink);
  overflow: hidden;
  isolation: isolate;
}

/* Fine ledger/blueprint grid — evokes compliance paperwork, not decoration */
.abx-hero::before{
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(207,163,106,0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(207,163,106,0.09) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 75% 65% at 50% 30%, black 40%, transparent 85%);
  z-index: 0;
}
.abx-hero::after{
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 14% 18%, rgba(207,163,106,0.16), transparent 42%),
    radial-gradient(circle at 86% 78%, rgba(28,74,97,0.55), transparent 48%),
    linear-gradient(160deg, #071b26 0%, #0b2c3d 55%, #0e3547 100%);
  z-index: 0;
}

.abx-hero-inner{
  position: relative;
  z-index: 1;
  padding: clamp(8rem, 16vw, 10.5rem) 0 clamp(4.5rem, 8vw, 6rem);
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.abx-hero-tag{
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--abx-font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--abx-gold-light);
  border: 1px solid var(--abx-gold-dim);
  padding: 0.5rem 1rem;
  border-radius: 50rem;
  background: rgba(207,163,106,0.07);
  margin-bottom: 1.75rem;
}
.abx-hero-tag i{ font-size: 0.7rem; }

.abx-hero-title{
  font-family: var(--abx-font-display);
  font-weight: 600;
  color: var(--abx-white);
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  line-height: 1.06;
  letter-spacing: -0.01em;
  max-width: 58rem;
  margin-bottom: 1.6rem;
}
.abx-hero-title .abx-word-wrap{ display: inline-block; overflow: hidden; }
.abx-hero-title em{
  font-style: italic;
  font-weight: 500;
  background: linear-gradient(100deg, var(--abx-gold) 0%, var(--abx-gold-light) 55%, var(--abx-gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
}

.abx-hero-rule{
  width: 84px;
  height: 3px;
  background: var(--abx-gold);
  border-radius: 2px;
  margin-bottom: 1.6rem;
  transform-origin: left;
  animation: abxRuleGrow 1.1s var(--abx-ease) 0.3s both;
}
@keyframes abxRuleGrow{ from{ transform: scaleX(0); } to{ transform: scaleX(1); } }

.abx-hero-text{
  font-size: clamp(1rem, 1.3vw, 1.18rem);
  color: rgba(255,255,255,0.68);
  max-width: 46rem;
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

.abx-hero-actions{ display: flex; align-items: center; justify-content: center; gap: 1.75rem; flex-wrap: wrap; }

.abx-btn-gold{
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--abx-gold);
  color: var(--abx-ink);
  font-weight: 700;
  font-size: 0.94rem;
  padding: 0.95rem 1.85rem;
  border-radius: var(--abx-radius-sm);
  text-decoration: none;
  transition: transform 0.35s var(--abx-ease), box-shadow 0.35s var(--abx-ease), background 0.35s var(--abx-ease);
  box-shadow: 0 14px 30px -12px rgba(207,163,106,0.55);
}
.abx-btn-gold:hover{ transform: translateY(-3px); background: var(--abx-gold-light); box-shadow: 0 20px 40px -14px rgba(207,163,106,0.65); }

.abx-link-ghost{
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--abx-white);
  font-weight: 600;
  font-size: 0.94rem;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.28);
  padding-bottom: 3px;
  transition: border-color 0.3s var(--abx-ease), color 0.3s var(--abx-ease), gap 0.3s var(--abx-ease);
}
.abx-link-ghost:hover{ border-color: var(--abx-gold); color: var(--abx-gold-light); gap: 0.75rem; }

/* Trust strip: sectors served, not unverifiable client logos */
.abx-trust-strip{
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255,255,255,0.09);
  margin-top: clamp(2.5rem, 6vw, 4rem);
  padding-top: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.25rem, 3vw, 2.75rem);
  flex-wrap: wrap;
  width: 100%;
}
.abx-trust-label{
  font-family: var(--abx-font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  white-space: nowrap;
}
.abx-trust-items{ justify-content: center; }
.abx-trust-item{
  font-family: var(--abx-font-mono);
  font-size: 0.82rem;
  color: rgba(255,255,255,0.78);
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.abx-trust-item::before{ content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--abx-gold); display: inline-block; }

/* =====================================================================
   INTRO
   ===================================================================== */
.abx-intro{ background: var(--abx-white); padding: clamp(5rem, 9vw, 8.5rem) 0; }

.abx-intro-grid{
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}

.abx-intro-visual{ position: relative; }
.abx-frame{
  position: relative;
  border-radius: var(--abx-radius-lg);
  overflow: hidden;
  box-shadow: var(--abx-shadow-lg);
  aspect-ratio: 4 / 5;
}
.abx-frame img{
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(0.15) contrast(1.05);
  transition: transform 1.2s var(--abx-ease);
}
.abx-intro-visual:hover .abx-frame img{ transform: scale(1.045); }
.abx-frame::after{
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(200deg, rgba(11,44,61,0.02) 0%, rgba(11,44,61,0.55) 100%);
}
.abx-frame-border{
  position: absolute;
  top: 1.4rem; left: 1.4rem; right: -1.4rem; bottom: -1.4rem;
  border: 1.5px solid var(--abx-gold-dim);
  border-radius: var(--abx-radius-lg);
  z-index: -1;
}

.abx-experience-badge{
  position: absolute;
  bottom: -1.75rem;
  left: -1.5rem;
  background: var(--abx-navy);
  color: var(--abx-white);
  padding: 1.5rem 1.75rem;
  border-radius: var(--abx-radius-md);
  box-shadow: var(--abx-shadow-md);
  min-width: 9.5rem;
}
.abx-experience-badge h2{
  font-family: var(--abx-font-display);
  font-size: 2.3rem;
  color: var(--abx-gold);
  line-height: 1;
  margin-bottom: 0.35rem;
}
.abx-experience-badge p{
  font-size: 0.76rem;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.75);
}

.abx-intro-para{
  color: var(--abx-slate);
  line-height: 1.8;
  font-size: 1rem;
  margin-bottom: 1.1rem;
}

.abx-stat-row{
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: clamp(1.5rem, 3vw, 2.75rem);
  margin-top: 2.25rem;
  padding-top: 2.25rem;
  border-top: 1px solid #eee6d8;
}
.abx-stat{ }
.abx-stat h3{
  font-family: var(--abx-font-mono);
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  color: var(--abx-navy);
  font-weight: 600;
  display: flex;
  align-items: baseline;
  gap: 2px;
}
.abx-stat p{ font-size: 0.82rem; color: var(--abx-slate-soft); margin-top: 0.3rem; }

/* =====================================================================
   PHILOSOPHY — dark navy band
   ===================================================================== */
.abx-philosophy{
  background:
    radial-gradient(circle at 85% 20%, rgba(207,163,106,0.10), transparent 45%),
    linear-gradient(165deg, var(--abx-navy) 0%, var(--abx-ink) 100%);
  padding: clamp(5rem, 9vw, 8rem) 0;
}

.abx-phil-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.abx-phil-card{
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  backdrop-filter: blur(6px);
  border-radius: var(--abx-radius-md);
  padding: 2.5rem 2.1rem;
  transition: transform 0.45s var(--abx-ease), border-color 0.45s var(--abx-ease), background 0.45s var(--abx-ease);
}
.abx-phil-card:hover{
  transform: translateY(-6px);
  border-color: var(--abx-gold-dim);
  background: rgba(255,255,255,0.06);
}
.abx-phil-num{
  font-family: var(--abx-font-mono);
  color: var(--abx-gold);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  margin-bottom: 1.4rem;
  display: block;
}
.abx-phil-card h3{
  font-family: var(--abx-font-display);
  color: var(--abx-white);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.9rem;
}
.abx-phil-card p{ color: rgba(255,255,255,0.62); line-height: 1.7; font-size: 0.94rem; }

/* =====================================================================
   CORE VALUES — quiet pill grid
   ===================================================================== */
.abx-values{ background: var(--abx-paper); padding: clamp(4.5rem, 8vw, 7rem) 0; }
.abx-values-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.abx-value-pill{
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--abx-white);
  border: 1px solid #ece4d4;
  border-radius: var(--abx-radius-sm);
  padding: 1.4rem 1.5rem;
  transition: border-color 0.3s var(--abx-ease), transform 0.3s var(--abx-ease), box-shadow 0.3s var(--abx-ease);
}
.abx-value-pill:hover{ border-color: var(--abx-gold); transform: translateY(-3px); box-shadow: var(--abx-shadow-md); }
.abx-value-pill i{
  width: 2.6rem; height: 2.6rem; min-width: 2.6rem;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--abx-paper-2);
  color: var(--abx-navy);
  font-size: 1rem;
}
.abx-value-pill span{ font-weight: 600; color: var(--abx-ink-text); font-size: 0.96rem; }

/* =====================================================================
   FOUNDERS — signature section: "Partner Dossiers"
   ===================================================================== */
.abx-founders{
  background: var(--abx-ink);
  padding: clamp(5.5rem, 10vw, 9rem) 0;
  position: relative;
  overflow: hidden;
}
.abx-founders::before{
  content: "";
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(207,163,106,0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(207,163,106,0.06) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 0%, black 30%, transparent 80%);
}

.abx-founders-head{
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.abx-founders-head .abx-heading{ margin-bottom: 0.5rem; }
.abx-founders-caption{
  max-width: 22rem;
  color: rgba(255,255,255,0.55);
  font-size: 0.92rem;
  line-height: 1.7;
  text-align: right;
}

.abx-dossier-grid{
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.abx-dossier{
  position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--abx-radius-md);
  padding: 1.4rem 1.4rem 1.75rem;
  transition: transform 0.5s var(--abx-ease), border-color 0.5s var(--abx-ease), box-shadow 0.5s var(--abx-ease);
  display: flex;
  flex-direction: column;
  flex: 1 1 calc(25% - 1.125rem);
  min-width: 240px;
  max-width: 320px;
}

.abx-dossier:hover{
  transform: translateY(-10px);
  border-color: rgba(207,163,106,0.55);
  box-shadow: 0 30px 60px -22px rgba(0,0,0,0.55);
}

.abx-dossier-tab{
  position: absolute;
  top: -0.9rem;
  left: 1.4rem;
  background: var(--abx-gold);
  color: var(--abx-ink);
  font-family: var(--abx-font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.4rem 0.85rem;
  border-radius: 0.3rem;
  box-shadow: 0 8px 18px -6px rgba(207,163,106,0.55);
}

.abx-dossier-photo{
  position: relative;
  border-radius: var(--abx-radius-sm);
  overflow: hidden;
  aspect-ratio: 3 / 3.4;
  margin-bottom: 1.35rem;
  background: var(--abx-navy-2);
}
.abx-dossier-photo img{
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(1) brightness(0.92) contrast(1.05);
  transition: filter 0.7s var(--abx-ease), transform 0.7s var(--abx-ease);
}
.abx-dossier:hover .abx-dossier-photo img{ filter: grayscale(0) brightness(1) contrast(1.02); transform: scale(1.04); }

.abx-dossier-fallback{
  position: absolute; inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  font-family: var(--abx-font-display);
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--abx-gold-light);
  background: linear-gradient(155deg, var(--abx-navy-soft), var(--abx-navy));
}

.abx-dossier-photo::after{
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(7,27,38,0.75) 0%, transparent 45%);
}

.abx-dossier-name{
  font-family: var(--abx-font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--abx-white);
  margin-bottom: 0.2rem;
}
.abx-dossier-role{
  font-family: var(--abx-font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: var(--abx-gold);
  margin-bottom: 0.9rem;
  display: block;
}
.abx-dossier-bio{
  color: rgba(255,255,255,0.6);
  font-size: 0.87rem;
  line-height: 1.65;
  margin-bottom: 1.15rem;
  flex-grow: 1;
}
.abx-dossier-tags{
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.15rem;
}
.abx-dossier-tags span{
  font-size: 0.68rem;
  padding: 0.28rem 0.6rem;
  border-radius: 50rem;
  border: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.68);
  font-family: var(--abx-font-mono);
  letter-spacing: 0.02em;
}
.abx-dossier-foot{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.abx-dossier-social{ display: flex; gap: 0.6rem; }
.abx-dossier-social a{
  width: 2rem; height: 2rem;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.16);
  color: rgba(255,255,255,0.75);
  font-size: 0.78rem;
  transition: background 0.3s var(--abx-ease), color 0.3s var(--abx-ease), border-color 0.3s var(--abx-ease);
}
.abx-dossier-social a:hover{ background: var(--abx-gold); color: var(--abx-ink); border-color: var(--abx-gold); }
.abx-dossier-stamp{
  font-family: var(--abx-font-mono);
  font-size: 0.62rem;
  color: rgba(255,255,255,0.32);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* =====================================================================
   TEAM (existing "core team" band, refined)
   ===================================================================== */
.abx-team{ background: var(--abx-white); padding: clamp(5rem, 9vw, 8rem) 0; }
.abx-team-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.abx-team-card{
  position: relative;
  border-radius: var(--abx-radius-md);
  overflow: hidden;
  aspect-ratio: 4/4.6;
  box-shadow: var(--abx-shadow-md);
}
.abx-team-card img{
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s var(--abx-ease);
}
.abx-team-card:hover img{ transform: scale(1.06); }
.abx-team-overlay{
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(7,27,38,0.92) 0%, rgba(7,27,38,0.35) 55%, rgba(7,27,38,0) 75%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.75rem;
}
.abx-team-overlay h4{
  font-family: var(--abx-font-display);
  color: var(--abx-white);
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
}
.abx-team-overlay p{ color: rgba(255,255,255,0.68); font-size: 0.86rem; line-height: 1.55; }

/* =====================================================================
   REACH — nationwide band
   ===================================================================== */
.abx-reach{
  position: relative;
  padding: clamp(4.5rem, 8vw, 6.5rem) 0;
  background:
    linear-gradient(160deg, rgba(11,44,61,0.94), rgba(7,27,38,0.97)),
    url('https://images.unsplash.com/photo-1524661135-423995f22d0b?auto=format&fit=crop&w=1600&q=60') center/cover fixed;
  text-align: center;
}
.abx-reach-title{ color: var(--abx-white); margin: 0 auto 1rem; }
.abx-reach-desc{ color: rgba(255,255,255,0.68); max-width: 42rem; margin: 0 auto; line-height: 1.75; }
.abx-reach-cities{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 2.25rem;
}
.abx-reach-cities span{
  font-family: var(--abx-font-mono);
  font-size: 0.76rem;
  color: var(--abx-gold-light);
  border: 1px solid var(--abx-gold-dim);
  padding: 0.4rem 0.9rem;
  border-radius: 50rem;
}

/* =====================================================================
   INFRA — facility gallery
   ===================================================================== */
.abx-infra{ background: var(--abx-paper); padding: clamp(5rem, 9vw, 8rem) 0; }
.abx-infra-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}
.abx-infra-item{
  position: relative;
  border-radius: var(--abx-radius-md);
  overflow: hidden;
  aspect-ratio: 3/3.6;
  box-shadow: var(--abx-shadow-md);
}
.abx-infra-item img{ width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--abx-ease); }
.abx-infra-item:hover img{ transform: scale(1.07); }
.abx-infra-caption{
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(7,27,38,0.88) 0%, transparent 65%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.3rem;
}
.abx-infra-caption h4{ font-family: var(--abx-font-display); color: var(--abx-white); font-size: 1rem; margin-bottom: 0.3rem; }
.abx-infra-caption p{ color: rgba(255,255,255,0.65); font-size: 0.78rem; line-height: 1.5; }

/* =====================================================================
   CLOSING CTA BAND
   ===================================================================== */
.abx-cta{ background: var(--abx-white); padding: 0 0 clamp(5rem, 9vw, 7rem); }
.abx-cta-box{
  background: linear-gradient(135deg, var(--abx-navy) 0%, var(--abx-ink) 100%);
  border-radius: var(--abx-radius-lg);
  padding: clamp(2.75rem, 6vw, 4.5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.abx-cta-box::before{
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 90% 10%, rgba(207,163,106,0.18), transparent 45%);
}
.abx-cta-text{ position: relative; z-index: 1; max-width: 34rem; }
.abx-cta-text h2{
  font-family: var(--abx-font-display);
  color: var(--abx-white);
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  margin-bottom: 0.6rem;
}
.abx-cta-text p{ color: rgba(255,255,255,0.65); line-height: 1.7; }
.abx-cta-actions{ position: relative; z-index: 1; display: flex; gap: 1rem; flex-wrap: wrap; }
.abx-btn-outline{
  display: inline-flex; align-items: center; gap: 0.5rem;
  border: 1px solid rgba(255,255,255,0.28);
  color: var(--abx-white);
  padding: 0.95rem 1.7rem;
  border-radius: var(--abx-radius-sm);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.94rem;
  transition: border-color 0.3s var(--abx-ease), background 0.3s var(--abx-ease);
}
.abx-btn-outline:hover{ border-color: var(--abx-gold); background: rgba(207,163,106,0.08); }

/* =====================================================================
   RESPONSIVE
   ===================================================================== */

/* Large laptops / small desktops */
@media (max-width: 1200px){
  .abx-dossier-grid{ gap: 1.75rem; }
  .abx-dossier{ flex-basis: calc(50% - 0.875rem); max-width: 380px; }
  .abx-infra-grid{ grid-template-columns: repeat(3, 1fr); }
}

/* Laptops */
@media (max-width: 1024px){
  .abx-intro-grid{ grid-template-columns: 1fr; }
  .abx-intro-visual{ max-width: 26rem; margin: 0 auto 3rem; }
  .abx-phil-grid{ grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
  .abx-values-grid{ grid-template-columns: repeat(2, 1fr); }
  .abx-team-grid{ grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
}

/* Tablets */
@media (max-width: 900px){
  .abx-phil-grid{ grid-template-columns: 1fr; }
  .abx-founders-head{ flex-direction: column; align-items: flex-start; }
  .abx-founders-caption{ text-align: left; }
  .abx-infra-grid{ grid-template-columns: repeat(2, 1fr); }
}

/* Small tablets */
@media (max-width: 768px){
  .abx-hero{ background-attachment: scroll; }
  .abx-hero-inner{ padding-top: 15rem; }
  .abx-hero-actions{ gap: 1.25rem; }
  .abx-dossier-grid{ gap: 1.25rem; }
  .abx-dossier{ flex-basis: calc(50% - 0.625rem); max-width: 360px; }
  .abx-team-grid{ grid-template-columns: repeat(2, 1fr); }
  .abx-values-grid{ grid-template-columns: 1fr; }
  .abx-stat-row{ grid-template-columns: repeat(3, auto); gap: 1.25rem; }
  .abx-experience-badge{ left: 0; bottom: -1.25rem; padding: 1.1rem 1.3rem; }
  .abx-experience-badge h2{ font-size: 1.8rem; }
  .abx-cta-box{ flex-direction: column; align-items: flex-start; }
}

/* Large phones */
@media (max-width: 576px){
  .abx-container{ width: 90%; }
  .abx-dossier-grid{ grid-template-columns: 1fr; }
  .abx-dossier{ flex-basis: 100%; max-width: 420px; }
  .abx-infra-grid{ grid-template-columns: 1fr 1fr; }
  .abx-team-grid{ grid-template-columns: 1fr; }
  .abx-team-card{ aspect-ratio: 4/3.4; }
  .abx-stat-row{ grid-template-columns: 1fr 1fr; }
  .abx-trust-strip{ flex-direction: column; align-items: flex-start; }
  .abx-hero-title{ font-size: clamp(2rem, 8vw, 2.6rem); }
}

/* Small phones */
@media (max-width: 400px){
  .abx-infra-grid{ grid-template-columns: 1fr; }
  .abx-hero-actions{ flex-direction: column; align-items: center; }
  .abx-btn-gold, .abx-btn-outline{ width: 100%; justify-content: center; }
  .abx-cta-actions{ width: 100%; }
  .abx-cta-actions a{ width: 100%; justify-content: center; }
  .abx-dossier{ padding: 1.15rem 1.15rem 1.5rem; }
  .abx-trust-strip{ flex-direction: column; align-items: center; text-align: center; }
  
}
