/* cmsms stylesheet: FoxtrotV2 modified: Friday, June 5, 2026 2:58:28 PM */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 767.98px) {
  .fx-parallax-left,
  .fx-parallax-right {
    transform: translateY(42px);
  }

  .fx-parallax-left.fx-in-view,
  .fx-parallax-right.fx-in-view {
    transform: translateY(0);
  }
}

/* =========================================================
   FOXTROT HEADING UTILITIES
   ========================================================= */

/* =========================================================
   GLOBAL HEADING DEFAULTS
   ========================================================= */

h1, h2, h3 {
  margin-left: auto;
  margin-right: auto;
  color: #fff;
  letter-spacing: -0.02em;
}

/* Keep hierarchy intact */
h1 {
  font-weight: 600;
  line-height: 1.1;
}

h2 {
  font-weight: 600;
  line-height: 1.15;
}

h3 {
  font-weight: 500;
  line-height: 1.2;
}

/* Red H Titles */
.foxtrot-title {
  text-align: left;
  color: var(--foxtrot-red);
  margin-right: 0;
}


/* =========================================================
   FOXTROT THEME STYLES
   Organized for easier maintenance
   ---------------------------------------------------------
   Sections:
   1. Header / Navbar shell
   2. Desktop navigation
   3. Search form
   4. Mobile offcanvas navigation
   5. Footer
   6. Responsive adjustments
   ========================================================= */


/* =========================================================
   1. HEADER / NAVBAR SHELL
   ========================================================= */

.foxtrot-navbar {
  min-height: 88px;
}

.foxtrot-logo {
  max-height: 42px;
  width: auto;
}

.foxtrot-nav-wrap {
  display: flex;
  align-items: center;
}


/* =========================================================
   2. DESKTOP NAVIGATION
   ---------------------------------------------------------
   - Main link styling
   - Dropdown menu styling
   - Hover/active behavior
   - Underline on all nav links
   ========================================================= */

.foxtrot-primary-nav .nav-link {
  position: relative;
  padding: 0.5rem 0.75rem;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.2;
  white-space: nowrap;
  color: #1f1f1f;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.foxtrot-primary-nav .nav-link:hover,
.foxtrot-primary-nav .nav-link.active {
  color: #ff4a43;
}

/* Underline effect for ALL nav items */
.foxtrot-primary-nav .nav-link::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: #ff4a43;
  border-radius: 999px;
  transform: translateX(-50%);
  transition: width 0.25s ease;
}

.foxtrot-primary-nav .nav-link:hover::before,
.foxtrot-primary-nav .nav-link.active::before,
.foxtrot-primary-nav .dropdown:hover .dropdown-toggle::before,
.foxtrot-primary-nav .dropdown .dropdown-toggle.show::before {
  width: 60%;
}

/* Dropdown toggle behavior */
.foxtrot-primary-nav .dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  border-radius: 999px;
  transition: color 0.2s ease, background-color 0.2s ease;
}

/* Replace default Bootstrap caret with + on the RIGHT */
.foxtrot-primary-nav .dropdown-toggle::after {
  content: "+";
  border: none;
  display: inline-block;
  margin-left: 0.35rem;
  font-size: 1rem;
  line-height: 1;
  vertical-align: middle;
  transition: transform 0.25s ease;
}

/* Spin + to X on hover/open */
.foxtrot-primary-nav .dropdown:hover .dropdown-toggle::after,
.foxtrot-primary-nav .dropdown .dropdown-toggle.show::after {
  transform: rotate(45deg);
}

/* Desktop dropdown panel */
.foxtrot-primary-nav .dropdown-menu {
  min-width: 280px;
}

.foxtrot-primary-nav .dropdown-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.foxtrot-primary-nav .dropdown-item:last-child {
  border-bottom: 0;
}

/* Make the nav wrapper a 3-zone flex system */
.foxtrot-nav-wrap {
  display: flex;
  align-items: center;
  width: 100%;
}

@media (min-width: 992px) {
  #foxtrotDesktopNav {
    display: flex !important;
    align-items: center;
    width: 100%;
  }

  .foxtrot-nav-wrap {
    flex: 1 1 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 0;
  }

  .foxtrot-primary-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    margin: 0;
    padding: 0;
  }

  .foxtrot-primary-nav .nav-link {
    white-space: nowrap;
    padding-left: 0;
    padding-right: 0;
  }

  .foxtrot-search-form {
    flex: 0 0 240px;
    width: 240px;
    max-width: 240px;
    margin-left: 2rem;
  }
}

/* =========================================================
   3. SEARCH FORM
   ---------------------------------------------------------
   Shared styling for desktop/mobile search input
   ========================================================= */

.foxtrot-search-form {
  max-width: 240px;
  width: 100%;
}

.foxtrot-search-form .form-control,
.foxtrot-search-form .input-group-text {
  border-radius: 999px;
}

.foxtrot-search-form .input-group-text {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.foxtrot-search-form .form-control {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}


/* =========================================================
   4. MOBILE OFFCANVAS NAVIGATION
   ---------------------------------------------------------
   - Right-side slide-in menu
   - Mobile menu items and nested links
   ========================================================= */

.foxtrot-mobile-offcanvas {
  width: min(88vw, 360px);
}

.foxtrot-mobile-nav {
  gap: 0;
}

.foxtrot-mobile-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.foxtrot-mobile-item details {
  display: block;
}

.foxtrot-mobile-link,
.foxtrot-mobile-sublink {
  display: block;
  text-decoration: none;
}

.foxtrot-mobile-link {
  padding: 1rem 0;
  font-weight: 600;
  color: #222;
}

.foxtrot-mobile-sublink {
  padding: 0.65rem 0;
  color: #555;
}

.foxtrot-mobile-link.active,
.foxtrot-mobile-sublink.active {
  color: #c93b3b;
}

/* Clickable summary row for expandable items */
.foxtrot-mobile-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  font-weight: 600;
  list-style: none;
  cursor: pointer;
}

.foxtrot-mobile-summary::-webkit-details-marker {
  display: none;
}

.foxtrot-mobile-chevron {
  font-size: 1.25rem;
  line-height: 1;
  transition: transform 0.2s ease;
}

.foxtrot-mobile-item details[open] .foxtrot-mobile-chevron {
  transform: rotate(45deg);
}


/* =========================================================
   5. FOOTER
   ---------------------------------------------------------
   - Main footer area
   - Branding
   - Links/contact/social
   - Bottom legal bar
   ========================================================= */

.foxtrot-footer-main {
  background: #f4ecec;
  padding: 3.5rem 0 3rem;
}

.foxtrot-footer-bottom {
  background: #efe3e3;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding: 0.85rem 0;
  font-size: 0.9rem;
}

.foxtrot-footer-logo {
  max-width: 260px;
  width: auto;
  height: auto;
}

.foxtrot-footer-tagline {
  max-width: 28rem;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.5;
}

.foxtrot-footer-trademark {
  font-size: 0.9rem;
  color: #444;
}

/* Footer section headings */
.foxtrot-footer-heading {
  position: relative;
  margin-bottom: 1.25rem;
  font-size: 1.25rem;
  font-weight: 400;
color:#000;
}

.foxtrot-footer-heading::after {
  content: "";
  display: block;
  width: 22px;
  height: 2px;
  margin-top: 6px;
  background: #ff4a43;
}

/* Footer quick links */
.foxtrot-footer-links li + li {
  margin-top: 0.6rem;
}

.foxtrot-footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: #1f1f1f;
  text-decoration: none;
}

.foxtrot-footer-links a::before {
  content: "›";
  color: #ff4a43;
}

.foxtrot-footer-links a:hover {
  color: #ff4a43;
}

/* Contact list */
.foxtrot-footer-contact li + li {
  margin-top: 0.75rem;
}

.foxtrot-contact-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: #1f1f1f;
  text-decoration: none;
}

.foxtrot-contact-link:hover {
  color: #ff4a43;
}

.foxtrot-contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #f1dede;
  color: #ff4a43;
  font-size: 0.8rem;
}

/* Social icons */
.foxtrot-footer-social {
  display: flex;
  gap: 0.6rem;
}

.foxtrot-social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #e5dada;
  color: #333;
  font-size: 0.85rem;
  text-decoration: none;
  transition: 0.2s;
}

.foxtrot-social-btn:hover {
  background: #ff4a43;
  color: #fff;
}

/* Bottom legal links */
.foxtrot-footer-bottom a {
  color: #333;
  text-decoration: none;
}

.foxtrot-footer-bottom a:hover {
  color: #ff4a43;
}


/* =========================================================
   6. RESPONSIVE ADJUSTMENTS
   ---------------------------------------------------------
   - Mobile navbar toggler
   - Hide mobile offcanvas on desktop
   - Footer spacing/logo adjustments for smaller screens
   ========================================================= */

@media (max-width: 991.98px) {
  .navbar-toggler {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .foxtrot-footer-main {
    padding: 2.75rem 0 2.5rem;
  }

  .foxtrot-footer-logo {
    max-width: 200px;
  }
}

@media (min-width: 992px) {
  .navbar-toggler,
  .foxtrot-mobile-offcanvas {
    display: none !important;
  }

  .foxtrot-nav-wrap {
    display: flex;
    align-items: center;
  }
}

/* Typography */
.foxtrot-hr {
  border: none;
  height: 2px;
  width: 300px;
  margin: 2rem auto 2rem;
  background: linear-gradient(
    to right,
    transparent,
    #ff4a43,
    transparent
  );
  border-radius: 999px;
}

/* Parrallax */
.fx-parallax-in {
  opacity: 0;
  transform: translateY(54px);
  transition:
    opacity .85s ease,
    transform .95s cubic-bezier(.22, 1, .36, 1);
  will-change: opacity, transform;
}

.fx-parallax-in.fx-in-view {
  opacity: 1;
  transform: translateY(0);
}

.fx-parallax-left {
  transform: translateX(-64px);
}

.fx-parallax-right {
  transform: translateX(64px);
}

.fx-parallax-left.fx-in-view,
.fx-parallax-right.fx-in-view {
  transform: translateX(0);
}

.fx-delay-1 { transition-delay: .12s; }
.fx-delay-2 { transition-delay: .24s; }
.fx-delay-3 { transition-delay: .36s; }

@media (prefers-reduced-motion: reduce) {
  .fx-parallax-in,
  .fx-parallax-left,
  .fx-parallax-right,
  .fx-parallax-in.fx-in-view {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* =========================================================
   7. SHARED FOXTROT CONTENT COMPONENTS
   ========================================================= */

:root {
  --foxtrot-red: #ef3f3f;
  --foxtrot-red-dark: #c8102e;
  --foxtrot-dark: #0b0f14;
  --foxtrot-glass: rgba(10,15,25,.30);
  --foxtrot-radius-lg: 1.9rem;
  --foxtrot-radius-md: 1.55rem;
  --foxtrot-shadow-lg: 0 20px 52px rgba(0,0,0,.2);
  --foxtrot-shadow-card:
    0 2px 6px rgba(0,0,0,.08),
    0 18px 30px rgba(0,0,0,.12);
}

/* Shared glass panel */
.foxtrot-glass-card,
.fx-build-card,
.foxtrot-industries-hero-glass,
.foxtrot-industry-feature-glass {
  background: var(--foxtrot-glass);
  backdrop-filter: blur(10px) saturate(135%);
  -webkit-backdrop-filter: blur(5px) saturate(135%);
  border: 1px solid rgba(255,255,255,.16);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.16),
    0 18px 42px rgba(0,0,0,.18);
}

.foxtrot-industry-feature-title {
  text-align: left;
  color: #fff;
  margin-left: 0;
  margin-right: 0;
}

/* Kill the global underline */
.foxtrot-industry-feature-title::after {
  display: none;
}

/* =========================================================
   HOME HERO VIDEO
   ========================================================= */

.foxtrot-hero {
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  min-height: 640px;
  height: 78vh;
  overflow: hidden;
  background: #000;
}

.foxtrot-hero-video,
.fx-build-hero-img,
.fx-banner img,
.foxtrot-industries-hero-img,
.foxtrot-industry-feature-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.foxtrot-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.42) 0%, rgba(0,0,0,.18) 40%, rgba(0,0,0,.28) 100%),
    linear-gradient(180deg, rgba(0,0,0,.20) 0%, rgba(0,0,0,.45) 100%);
  z-index: 1;
}

.foxtrot-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(380px, 600px);
  gap: 3rem;
  align-items: center;
  height: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 5rem 4rem 7.5rem;
}

.foxtrot-hero-left h1 {
  margin: 0;
  max-width: 620px;
  color: #fff;
  font-size: clamp(1.5rem, 4vw, 3rem);
  line-height: 1.05;
  font-weight: 600;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 16px rgba(0,0,0,.28);
}

.foxtrot-hero-right {
  display: flex;
  justify-content: flex-end;
}

.foxtrot-glass-card {
  width: 100%;
  padding: 2.25rem 2rem;
  border-radius: 22px;
  color: #fff;
}

.foxtrot-glass-card h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.15rem, 1.7vw, 1.7rem);
  line-height: 1.25;
  font-weight: 700;
  color: #fff;
}

.foxtrot-glass-card p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(255,255,255,.92);
}

.foxtrot-hero-actions {
  position: absolute;
  left: 50%;
  bottom: 2rem;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* =========================================================
   SHARED BUTTONS
   ========================================================= */

.foxtrot-pill-btn,
.foxtrot-cta-pill,
.foxtrot-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  text-decoration: none;
  transition: all .22s ease;
}

.foxtrot-pill-btn {
  min-width: 180px;
  padding: .8rem 1.5rem;
  background: rgba(255,255,255,.92);
  color: #111;
  font-weight: 600;
  font-size: .95rem;
  box-shadow: 0 10px 24px rgba(0,0,0,.18);
}

.foxtrot-pill-btn:hover {
  transform: translateY(-1px);
  background: #fff;
  color: #000;
}

/* =========================================================
   PROOF STRIP
   ========================================================= */

.foxtrot-proof-strip {
  background: #fff;
}

.foxtrot-proof-copy {
  margin: 0 auto;
  text-align: center;
  font-size: 1.1rem;
  line-height: 1.75;
  color: #333;
  max-width: 800px;
  font-weight: 600;
}

/* =========================================================
   DIFFERENCE BANNER
   ========================================================= */

.fx-banner {
  position: relative;
  height: 420px;
  overflow: hidden;
  color: #fff;
  border-radius: 28px;
  background: #111;
  box-shadow: 0 22px 60px rgba(0,0,0,.22);
  isolation: isolate;
}

.fx-banner-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 22% 45%, rgba(255,255,255,.12), transparent 32%),
    linear-gradient(
      to right,
      rgba(0,0,0,.72) 0%,
      rgba(0,0,0,.48) 50%,
      rgba(137,18,28,.68) 50%,
      rgba(137,18,28,.94) 100%
    );
}

.fx-banner-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 2.25rem;
  padding: 2.5rem 3rem;
}

.fx-left {
  max-width: 520px;
}

.fx-eyebrow {
  display: inline-flex;
  margin-bottom: .85rem;
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.78);
}

.fx-left h1 {
  font-size: clamp(2.3rem, 4vw, 3.65rem);
  font-weight: 600;
  margin: 0 0 .75rem;
  line-height: .96;
  text-shadow: 0 10px 28px rgba(0,0,0,.5);
}

.fx-left p {
  font-size: clamp(1.05rem, 1.5vw, 1.35rem);
  font-weight: 400;
  line-height: 1.25;
  margin: 0;
  color: rgba(255,255,255,.9);
}

.fx-right {
  display: flex;
  flex-direction: column;
  gap: .9rem;
}

.fx-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: .9rem;
  align-items: start;
  padding: .85rem .95rem;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 18px;
  background: rgba(255,255,255,.075);
  backdrop-filter: blur(7px);
  box-shadow: 0 12px 26px rgba(0,0,0,.16);
  transition: transform .22s ease, background .22s ease, border-color .22s ease;
}

.fx-item:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.28);
}

.fx-icon {
  width: 48px;
  height: 48px;
  border: 2px solid rgba(255,255,255,.82);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.1);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.16);
}

.fx-icon svg {
  width: 22px;
  height: 22px;
  fill: #fff;
}

.fx-item h3 {
  font-size: 1.05rem;
  line-height: 1.1;
  margin: 0 0 .25rem;
  font-weight: 600;
  letter-spacing: -.025em;
}

.fx-item p {
  font-size: .88rem;
  line-height: 1.28;
  margin: 0;
  color: rgba(255,255,255,.9);
}

/* =========================================================
   KPI / CTA CARDS
   ========================================================= */

.foxtrot-kpi-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 2.5rem 0;
}

.foxtrot-kpi-card {
  position: relative;
  overflow: hidden;
  padding: 1.8rem 1.5rem;
  border-radius: 18px;
  background: linear-gradient(180deg, #fff 0%, #f5f5f5 100%);
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: var(--foxtrot-shadow-card);
  text-align: center;
  transition: all .25s ease;
}

.foxtrot-kpi-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 8px 16px rgba(0,0,0,.12),
    0 22px 38px rgba(0,0,0,.18);
}

.foxtrot-kpi-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  background: radial-gradient(circle at top, rgba(239,63,63,.08), transparent 65%);
  opacity: 0;
  transition: opacity .25s ease;
}

.foxtrot-kpi-card:hover::after {
  opacity: 1;
}

.foxtrot-kpi-value,
.foxtrot-cta-title {
  color: var(--foxtrot-red);
}

.foxtrot-kpi-value {
  font-size: clamp(1.6rem, 2vw, 2.2rem);
  font-weight: 700;
  margin-bottom: .35rem;
  letter-spacing: .2px;
}

.foxtrot-kpi-label {
  color: #6a6a6a;
  font-size: clamp(1rem, 1.2vw, 1.2rem);
  font-weight: 500;
  line-height: 1.25;
}

.foxtrot-cta-row {
  align-items: stretch;
}

.foxtrot-cta-card {
  padding: 2.5rem 1.75rem 2.15rem;
}

.foxtrot-cta-title {
  font-size: clamp(1.35rem, 1.8vw, 1.75rem);
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: .25rem;
}

.foxtrot-cta-subtitle {
  color: #000;
  font-size: clamp(1rem, 1.25vw, 1.25rem);
  font-weight: 400;
  line-height: 1.25;
  margin-bottom: 1.55rem;
}

.foxtrot-cta-btn {
  min-width: 165px;
  padding: .52rem 1.3rem;
  background: #df4042;
  color: #fff;
  font-size: .95rem;
  font-weight: 650;
  line-height: 1;
  box-shadow:
    0 2px 4px rgba(0,0,0,.16),
    0 8px 14px rgba(223,64,66,.22);
}

.foxtrot-cta-btn:hover {
  color: #fff;
  background: #c93335;
  transform: translateY(-2px);
}

/* =========================================================
   WHAT WE BUILD HERO
   ========================================================= */

.fx-build-hero {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  border-radius: var(--foxtrot-radius-lg);
  background: var(--foxtrot-dark);
  box-shadow: var(--foxtrot-shadow-lg);
  color: #fff;
}

.fx-build-hero-img {
  transform: scale(1.04);
  transition: transform .9s ease, filter .9s ease;
}

.fx-build-hero:hover .fx-build-hero-img {
  transform: scale(1.10);
  filter: brightness(1.04);
}

.fx-build-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.22);
}

.fx-build-content {
  position: relative;
  z-index: 2;
  min-height: 470px;
  display: grid;
  grid-template-columns: 1fr 460px;
  align-items: center;
  gap: 56px;
  padding: 60px 62px;
}

.fx-build-left h1 {
  font-size: clamp(34px, 4vw, 42px);
  font-weight: 600;
  line-height: 1.1;
  margin: 0 0 12px;
  letter-spacing: -0.02em;
}

.fx-build-left p {
  max-width: 480px;
  font-size: clamp(19px, 2vw, 23px);
  font-weight: 500;
  line-height: 1.35;
  margin: 0;
}

.fx-build-card {
  border-radius: var(--foxtrot-radius-md);
  padding: 1.5rem 2rem;
}

.fx-build-intro {
  font-size: 17px;
  font-weight: 500;
  line-height: 1.28;
  margin: 0 0 22px;
}

.fx-build-intro,
.fx-build-card li {
  color: rgba(255,255,255,.9);
}

.fx-build-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.fx-build-card li {
  position: relative;
  padding-left: 25px;
  margin: 0 0 18px;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.25;
}

.fx-build-card li:last-child {
  margin-bottom: 0;
}

.fx-build-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -1px;
  color: #fff;
  font-weight: 700;
}

/* =========================================================
   BUILDER / STRENGTH CARDS
   ========================================================= */

.foxtrot-strength-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(160px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}

.foxtrot-strength-card {
  display: flex;
  flex-direction: column;
  min-height: 300px;
  padding: 1.3rem 1rem 1.2rem;
  border-radius: 18px;
  background: linear-gradient(180deg, #fff 0%, #f6f6f6 100%);
  border: 1px solid rgba(0,0,0,.08);
  box-shadow:
    0 2px 5px rgba(0,0,0,.08),
    0 14px 22px rgba(0,0,0,.12);
  transition: all .25s ease;
}

.foxtrot-strength-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 8px 16px rgba(0,0,0,.12),
    0 18px 30px rgba(0,0,0,.18);
  border-color: rgba(239,63,63,.25);
}

.foxtrot-strength-header {
  min-height: 130px;
  display: flex;
  flex-direction: column;
}

.foxtrot-strength-icon {
  width: 34px;
  height: 34px;
  margin-bottom: .9rem;
  color: var(--foxtrot-red);
  display: flex;
  align-items: center;
}

.foxtrot-strength-icon svg {
  width: 34px;
  height: 34px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.foxtrot-strength-title {
  margin: 0;
  color: var(--foxtrot-red);
  font-size: clamp(1rem, 1.1vw, 1.2rem);
  line-height: 1.15;
  font-weight: 600;
}

.foxtrot-strength-body {
  font-size: .88rem;
  line-height: 1.25;
  color: #1a1a1a;
}

.foxtrot-strength-label {
  margin: 0 0 .35rem;
  color: #6a6a6a;
  font-size: .82rem;
  font-weight: 600;
}

.foxtrot-strength-body ul {
  margin: 0;
  padding-left: 1rem;
}

.foxtrot-strength-body li {
  margin-bottom: .15rem;
}

/* =========================================================
   FINAL CTA BAND
   ========================================================= */

.foxtrot-cta-band {
  background: var(--foxtrot-red);
  padding: 4rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.foxtrot-cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(255,255,255,.08), transparent 60%);
  opacity: .5;
  pointer-events: none;
}

.foxtrot-cta-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('/uploads/images/foxtrot-lines.png');
  background-size: cover;
  opacity: 0.08;
  pointer-events: none;
}

.foxtrot-cta-inner {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.foxtrot-cta-headline {
  color: #fff;
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.foxtrot-cta-description {
  color: rgba(255,255,255,.9);
  font-size: clamp(1.05rem, 1.3vw, 1.2rem);
  line-height: 1.5;
  margin-bottom: 2rem;
}

.foxtrot-cta-actions {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.foxtrot-cta-pill {
  padding: .65rem 1.6rem;
  background: #fff;
  color: #555;
  font-weight: 600;
  font-size: .95rem;
  box-shadow:
    0 2px 4px rgba(0,0,0,.2),
    0 10px 18px rgba(0,0,0,.18);
}

.foxtrot-cta-pill:hover {
  transform: translateY(-2px);
  color: #555;
}

.foxtrot-cta-pill-light {
  background: rgba(255,255,255,.85);
}

/* =========================================================
   RESPONSIVE CONTENT COMPONENTS
   ========================================================= */

@media (max-width: 1200px) {
  .foxtrot-strength-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 991.98px) {
  .foxtrot-hero {
    height: auto;
    min-height: 0;
  }

  .foxtrot-hero-inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 4rem 1.5rem 2rem;
    align-items: start;
    height: auto;
  }

  .foxtrot-hero-left h1 {
    max-width: 100%;
  }

  .foxtrot-hero-right {
    justify-content: flex-start;
  }

  .foxtrot-glass-card {
    max-width: 100%;
  }

  .foxtrot-hero-actions {
    position: relative;
    left: auto;
    bottom: auto;
    transform: none;
    width: calc(100% - 3rem);
    margin: 0 auto 2rem;
  }
}

@media (max-width: 900px) {
  .foxtrot-kpi-row {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .fx-build-content {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 50px 24px;
  }

  .fx-build-card {
    max-width: 560px;
  }
}

@media (max-width: 768px) {
  .fx-banner {
    height: auto;
    border-radius: 22px;
  }

  .fx-banner-content {
    grid-template-columns: 1fr;
    padding: 2rem 1.25rem;
  }

  .fx-banner-overlay {
    background:
      linear-gradient(
        to bottom,
        rgba(0,0,0,.78) 0%,
        rgba(0,0,0,.6) 42%,
        rgba(137,18,28,.92) 100%
      );
  }

  .fx-item {
    grid-template-columns: 44px 1fr;
  }

  .fx-icon {
    width: 44px;
    height: 44px;
  }

  .foxtrot-strength-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .foxtrot-proof-strip {
    padding: 1.75rem 0 2rem;
  }

  .foxtrot-proof-copy {
    font-size: 1.1rem;
    line-height: 1.65;
  }
}

@media (max-width: 600px) {
  .foxtrot-cta-headline {
    font-size: 1.75rem;
  }

  .foxtrot-cta-actions {
    flex-direction: column;
    gap: 1rem;
  }
}

@media (max-width: 575.98px) {
  .foxtrot-hero-inner {
    padding: 3rem 1rem 1.5rem;
  }

  .foxtrot-glass-card {
    padding: 1.4rem 1.2rem;
    border-radius: 18px;
  }

  .foxtrot-hero-actions {
    width: calc(100% - 2rem);
    margin-bottom: 1.5rem;
    flex-direction: column;
    gap: .75rem;
  }

  .foxtrot-pill-btn {
    width: 100%;
  }
}

@media (max-width: 520px) {
  .foxtrot-strength-grid {
    grid-template-columns: 1fr;
  }
}
/* cmsms stylesheet: FoxtrotV2_About modified: Friday, June 5, 2026 2:04:01 PM */
/* =========================================================
   ABOUT PAGE HERO
   Extends the existing beta/home .foxtrot-hero pattern
   ========================================================= */

.foxtrot-about-hero {
  background: #000;
}

.foxtrot-about-hero-img {
  object-fit: cover;
  object-position: center center;
  filter: brightness(0.82) contrast(1.08) saturate(0.92);
  transform: scale(1.01);
}

.foxtrot-about-hero .foxtrot-hero-overlay {
  background:
    linear-gradient(
      90deg,
      rgba(0,0,0,.52) 0%,
      rgba(0,0,0,.26) 40%,
      rgba(0,0,0,.34) 100%
    ),
    linear-gradient(
      180deg,
      rgba(0,0,0,.24) 0%,
      rgba(0,0,0,.52) 100%
    );
}

.fx-about-eyebrow {
  display: inline-flex;
  margin-bottom: 1rem;
  color: var(--foxtrot-red);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.foxtrot-about-hero .foxtrot-hero-left h1 {
  font-weight: 500;
  line-height: 1.04;
}

.foxtrot-about-hero .foxtrot-glass-card h2 {
  font-weight: 600;
  line-height: 1.34;
  font-size:1.2rem;
}

.foxtrot-about-hero .foxtrot-glass-card p {
  padding-top: 1rem;
  margin-top: 1rem;
  border-top: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.84);
}

/* Center headline on mobile */
@media (max-width: 991.98px) {
  .foxtrot-about-hero .foxtrot-hero-left {
    text-align: center;
    margin: 0 auto;
  }

  .foxtrot-about-hero .foxtrot-hero-left h1 {
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
  }

  .foxtrot-about-hero .fx-about-eyebrow {
    justify-content: center;
  }
}

/* =========================================================
   ABOUT PAGE - KPI STRIP
   Uses existing .foxtrot-kpi-card styling from beta/home
   ========================================================= */

.foxtrot-kpi-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.foxtrot-kpi-intro {
  margin: 0 auto;
  text-align: center;
  color: #111;
  font-size: clamp(1.15rem, 1.6vw, 1.45rem);
  font-weight: 600;
  line-height: 1.35;
}

.foxtrot-kpi-row-five {
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.foxtrot-kpi-row-five .foxtrot-kpi-card {
  padding: 1.55rem 1rem 1.4rem;
}

.foxtrot-kpi-row-five .foxtrot-kpi-value {
  font-size: clamp(1.75rem, 2.2vw, 2.45rem);
  line-height: 1;
}

.foxtrot-kpi-row-five .foxtrot-kpi-label {
  margin-top: .55rem;
  font-size: clamp(.78rem, .9vw, .95rem);
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: .04em;
}

@media (max-width: 1100px) {
  .foxtrot-kpi-row-five {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767.98px) {
  .foxtrot-kpi-row-five {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .foxtrot-kpi-section {
    padding: 0 1rem;
  }
}


/* =========================================================
   ABOUT PAGE - BUILT FOR WHAT COMES NEXT
   Styled to match the premium red treatment used in .fx-banner
   and the Foxtrot Difference section. :contentReference[oaicite:0]{index=0}
   ========================================================= */

/* =========================================================
   ABOUT PAGE - BUILT FOR WHAT COMES NEXT
   Styled to match the premium red treatment used in .fx-banner
   ========================================================= */

.fx-about-next-hero .fx-build-hero-img {
  object-position: center center;
  filter: brightness(0.84) contrast(1.08) saturate(0.95);
}

.fx-about-next-hero .fx-build-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 22% 45%,
      rgba(255,255,255,.12),
      transparent 32%
    ),
    linear-gradient(
      to right,
      rgba(0,0,0,.72) 0%,
      rgba(0,0,0,.48) 50%,
      rgba(247,60,60,.66) 50%,
      rgba(247,60,60,.92) 100%
    );
}

/* =========================================================
   LAYOUT
   ========================================================= */

.fx-about-next-hero .fx-build-content {
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.fx-about-next-hero .fx-build-left {
  max-width: 520px;
}

.fx-about-next-hero .fx-build-left h1 {
  max-width: 520px;
  font-size: clamp(2rem, 3.25vw, 3rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.fx-about-next-hero .fx-build-left p {
  max-width: 520px;
  margin: 0;
  font-size: clamp(1rem, 1.45vw, 1.25rem);
  font-weight: 500;
  line-height: 1.35;
  color: rgba(255,255,255,.92);
}

/* =========================================================
   RIGHT PANEL
   ========================================================= */

.fx-about-next-hero .fx-build-card.fx-then-now-panel {
  width: 100%;
  max-width: none;
  padding: 0 0 0 1.25rem; /* Keeps rows clear of the 50% split */
  margin: 0;
  background: none;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  align-self: center;
}

/* =========================================================
   THEN / NOW LABELS (SUBTLE VERSION)
   ========================================================= */

.fx-then-now-header {
  display: grid;
  grid-template-columns: 1fr 40px 1fr;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 0.7rem;
  padding: 0 1.1rem;
}

.fx-then-now-label {
  display: inline-block;
  color: rgba(255,255,255,.68);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  line-height: 1;
}

.fx-then-now-label--then {
  justify-self: start;
}

.fx-then-now-label--now {
  justify-self: start;
  color: rgba(255,255,255,.82);
}

/* =========================================================
   TRANSITION ROWS
   ========================================================= */

.fx-shift-row {
  display: grid;
  grid-template-columns: minmax(150px, 0.82fr) 40px minmax(230px, 1.18fr);
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 0.8rem;
  padding: 0.95rem 1.1rem;
  border-radius: 18px;
  background: rgba(12,12,12,.28);
  border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
  box-shadow: 0 12px 26px rgba(0,0,0,.22);
  transition:
    transform .22s ease,
    background .22s ease,
    border-color .22s ease;
}

.fx-shift-row:hover {
  transform: translateY(-2px);
  background: rgba(12,12,12,.38);
  border-color: rgba(255,255,255,.30);
}

.fx-shift-then,
.fx-shift-now {
  font-size: 0.94rem;
  line-height: 1.3;
  font-weight: 500;
}

.fx-shift-then {
  color: rgba(255,255,255,.72);
}

.fx-shift-now {
  color: rgba(255,255,255,.96);
}

.fx-shift-arrow {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255,255,255,.16);
  color: #fff;
  font-size: 1.25rem;
  line-height: 1;
  font-weight: 600;
}

/* =========================================================
   SUPPORTING COPY
   ========================================================= */

.fx-then-now-support {
  margin: 1rem 0 0;
  padding: 1rem 0 0;
  border-top: 1px solid rgba(255,255,255,.18);
  color: #fff;
  font-size: 0.93rem;
  line-height: 1.55;
font-weight:500;
}

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

@media (max-width: 900px) {
  .fx-about-next-hero .fx-build-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .fx-about-next-hero .fx-build-card.fx-then-now-panel {
    padding-left: 0;
  }

  .fx-then-now-header {
    display: none;
  }

  .fx-shift-row {
    grid-template-columns: 1fr;
    gap: 0.65rem;
    text-align: center;
  }

  .fx-shift-arrow {
    margin: 0 auto;
    transform: rotate(90deg);
  }
}

/* =========================================================
   MOBILE OVERLAY ADJUSTMENT
   Remove the 50/50 split on mobile so the red does not cut
   horizontally through the section.
   ========================================================= */

@media (max-width: 768px) {
  .fx-about-next-hero .fx-build-overlay {
    background:
      linear-gradient(
        to bottom,
        rgba(0,0,0,.78) 0%,
        rgba(0,0,0,.58) 50%,
        rgba(247,60,60,.92) 100%
      );
  }
}

/* =========================================================
   ABOUT PAGE - CULTURE MODULE
   Cinematic dark overlay with liquid-glass cards
   (No red gradient; similar to the top About hero)
   ========================================================= */

.fx-culture-banner {
  height: 520px;
}

.fx-culture-banner img {
  object-position: center center;
  filter: brightness(0.82) contrast(1.08) saturate(0.92);
  transform: scale(1.01);
}

.fx-culture-banner .fx-banner-overlay {
  background:
    linear-gradient(
      90deg,
      rgba(0,0,0,.52) 0%,
      rgba(0,0,0,.26) 40%,
      rgba(0,0,0,.34) 100%
    ),
    linear-gradient(
      180deg,
      rgba(0,0,0,.24) 0%,
      rgba(0,0,0,.52) 100%
    );
}

.fx-culture-banner .fx-banner-content {
  grid-template-columns: 0.92fr 1.08fr;
  gap: 2.5rem;
}

.fx-culture-banner .fx-left h1 {
  font-weight: 500;
}

.fx-culture-banner .fx-left p {
  max-width: 560px;
  line-height: 1.45;
}

/* =========================================================
   RIGHT COLUMN - LIQUID GLASS STACK
   ========================================================= */

.fx-culture-banner .fx-right {
  gap: 1rem;
}

.fx-culture-banner .fx-item {
  grid-template-columns: 56px 1fr;
  gap: 1rem;
  padding: 1rem 1.15rem;
  border-radius: 22px;

  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.12),
    0 12px 28px rgba(0,0,0,.20);

  transition:
    transform .25s ease,
    background .25s ease,
    border-color .25s ease;
}

.fx-culture-banner .fx-item:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,.14);
  border-color: rgba(255,255,255,.30);
}

.fx-culture-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;

  background: rgba(255,255,255,.12);
  border: 2px solid rgba(255,255,255,.82);

  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.15),
    0 6px 14px rgba(0,0,0,.18);
}

.fx-culture-banner .fx-item h3 {
  margin-bottom: .25rem;
  color: #fff;
  font-size: 1rem;
  font-weight: 650;
  line-height: 1.2;
}

.fx-culture-banner .fx-item p {
  margin: 0;
  color: rgba(255,255,255,.92);
  font-size: .86rem;
  line-height: 1.35;
}

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

@media (max-width: 768px) {
  .fx-culture-banner {
    height: auto;
  }

  .fx-culture-banner .fx-banner-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .fx-culture-banner .fx-item {
    grid-template-columns: 48px 1fr;
    padding: .95rem 1rem;
    border-radius: 18px;
  }

  .fx-culture-number {
    width: 42px;
    height: 42px;
    font-size: .66rem;
  }
}

/* =========================================================
   ABOUT PAGE - AUTHORITY MODULE
   Liquid glass design with cinematic overlay
   ========================================================= */

.fx-authority-banner {
  height: 560px;
}

.fx-authority-banner img {
  object-position: center center;
  filter: brightness(0.82) contrast(1.08) saturate(0.92);
  transform: scale(1.01);
}

.fx-authority-banner .fx-banner-overlay {
  background:
    linear-gradient(
      90deg,
      rgba(0,0,0,.58) 0%,
      rgba(0,0,0,.34) 42%,
      rgba(0,0,0,.44) 100%
    ),
    linear-gradient(
      180deg,
      rgba(0,0,0,.18) 0%,
      rgba(0,0,0,.56) 100%
    );
}

.fx-authority-banner .fx-banner-content {
  grid-template-columns: 0.95fr 1.05fr;
  gap: 2.75rem;
}

.fx-authority-banner .fx-left h1 {
  font-weight: 500;
}

.fx-authority-banner .fx-left p {
  max-width: 560px;
  line-height: 1.5;
}

/* Replace the right-side liquid glass stack styles with this */

.fx-authority-glass-panel {
  padding: 2rem;
  border-radius: 26px;
  background: rgba(255,255,255,.11);
  border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(16px) saturate(135%);
  -webkit-backdrop-filter: blur(16px) saturate(135%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.14),
    0 18px 42px rgba(0,0,0,.22);
}

.fx-authority-checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 1.4rem;
}

.fx-authority-checklist li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1rem;
  color: #fff;
  font-size: clamp(1.05rem, 1.25vw, 1.2rem);
  font-weight: 600;
  line-height: 1.35;
}

.fx-authority-checklist li:last-child {
  margin-bottom: 0;
}

.fx-authority-checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: .02rem;
  width: 1.35rem;
  height: 1.35rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(247,60,60,.92);
  color: #fff;
  font-size: .82rem;
  font-weight: 800;
}

.fx-authority-support {
  margin: 0;
  padding-top: 1.35rem;
  border-top: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.92);
  font-size: .95rem;
  line-height: 1.65;
}

@media (max-width: 768px) {
  .fx-authority-glass-panel {
    padding: 1.4rem;
    border-radius: 20px;
  }

  .fx-authority-checklist li {
    font-size: 1rem;
  }
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 768px) {
  .fx-authority-banner {
    height: auto;
  }

  .fx-authority-banner .fx-banner-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .fx-authority-banner .fx-item {
    grid-template-columns: 48px 1fr;
    padding: .95rem 1rem;
    border-radius: 18px;
  }

  .fx-authority-banner .fx-icon {
    width: 42px;
    height: 42px;
    font-size: .66rem;
  }

  .fx-authority-support {
    margin-top: .75rem;
    padding: 1rem 1.1rem;
    border-radius: 18px;
  }
}


/* =========================================================
   ABOUT PAGE - ADOPTION TRIANGLE MODULE
   ========================================================= */

.fx-adoption-section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.fx-adoption-visual {
  text-align: center;
}

.fx-adoption-visual h3 {
  margin: 0 0 1.5rem;
  color: #000;
  font-size: 1.05rem;
  font-weight: 600;
}

.fx-adoption-diagram {
  position: relative;
  width: min(100%, 520px);
  aspect-ratio: 1 / .86;
  margin: 0 auto;
}

.fx-adoption-triangle {
  position: absolute;
  left: 50%;
  top: 12%;
  width: 70%;
  height: 76%;
  transform: translateX(-50%);
  background: var(--foxtrot-red);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  opacity: .95;
}

.fx-adoption-triangle::after {
  content: "";
  position: absolute;
  inset: 28% 25% 16%;
  background: rgba(120,0,0,.18);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

.fx-adoption-circle {
  position: absolute;
  width: 42%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(0,0,0,.12);
  box-shadow:
    0 2px 8px rgba(0,0,0,.08),
    0 18px 30px rgba(0,0,0,.10);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.25rem;
}

.fx-adoption-circle h4 {
  margin: 0 0 .45rem;
  color: var(--foxtrot-red);
  font-size: .95rem;
  font-weight: 700;
}

.fx-adoption-circle p {
  margin: 0;
  color: #333;
  font-size: .72rem;
  line-height: 1.25;
}

.fx-adoption-builders {
  left: 1%;
  top: 9%;
}

.fx-adoption-users {
  right: 1%;
  top: 9%;
}

.fx-adoption-leaders {
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}

.fx-adoption-copy {
  max-width: 540px;
text-align:center;
}

.fx-adoption-copy h2 {
  margin: 0 0 1rem;
  color: #111;
  font-size: clamp(2rem, 3.2vw, 3.35rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.fx-adoption-copy p {
  margin: 0 0 1rem;
  color: #222;
  font-size: clamp(1.1rem, 1.4vw, 1.3rem);
  font-weight: 500;
  line-height: 1.5;
}

.fx-adoption-copy p:last-child {
  margin-bottom: 0;
  color: var(--foxtrot-red);
  font-weight: 650;
}

@media (max-width: 900px) {
  .fx-adoption-section {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 1rem 1rem;
  }

  .fx-adoption-copy {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
  }
}

@media (max-width: 575.98px) {
  .fx-adoption-circle {
    width: 45%;
    padding: .85rem;
  }

  .fx-adoption-circle h4 {
    font-size: .8rem;
  }

  .fx-adoption-circle p {
    font-size: .58rem;
  }
}

/* Minimal CSS additions */

.foxtrot-about-cta-title {
  color: #111;
  font-size: clamp(1.6rem, 4vw, 3rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.035em;
  margin: 0.5rem 0 1rem;
}

.btn-foxtrot {
  background: var(--foxtrot-red);
  border: 1px solid var(--foxtrot-red);
  color: #fff;
  font-weight: 600;
  border-radius: 999px;
  padding: 0.7rem 1.8rem;
  box-shadow: 0 10px 24px rgba(247,60,60,.22);
  transition: all .3s ease;
}

.btn-foxtrot:hover,
.btn-foxtrot:focus {
  background: #d73434;
  border-color: #d73434;
  color: #fff;
  transform: translateY(-2px);
}

/* ==========================================================
   FOXTROT ADOPTION STACK
   White cards, darker text, tighter spacing to reduce height
   ========================================================== */

/* Remove the dark panel background and extra padding */
.fx-adoption-visual {
  background: transparent;
  padding: 0;
  border-radius: 0;
  color: inherit;
  overflow: visible;
}

/* Section heading */
.fx-adoption-visual h3 {
  color: var(--foxtrot-navy, #000);
  margin-bottom: 1rem;
  font-weight: 600;
}

/* Stack container */
.fx-adoption-stack {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1rem;
}

/* Compact horizontal cards */
.fx-adoption-stack-card {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 0.85rem;
  align-items: center;

  padding: 0.75rem 0.9rem;
  border-radius: 18px;

  background: #ffffff;
  border: 1px solid rgba(11, 31, 59, 0.08);

  box-shadow:
    0 8px 24px rgba(11, 31, 59, 0.06),
    0 2px 8px rgba(11, 31, 59, 0.04);
}

/* Image */
.fx-adoption-stack-img {
  width: 72px;
  height: 72px;
  border-radius: 14px;
  overflow: hidden;
  flex-shrink: 0;
}

.fx-adoption-stack-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Content */
.fx-adoption-stack-content {
  min-width: 0;
}

.fx-adoption-stack-card h4 {
  margin: 0 0 0.2rem;
  color: #000);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2;
}

.fx-adoption-stack-card p {
  margin: 0;
  color: rgba(11, 31, 59, 0.78);
  font-size: 0.9rem;
  line-height: 1.4;
}

/* Tablet */
@media (max-width: 991px) {
  .fx-adoption-stack-card {
    grid-template-columns: 68px 1fr;
    gap: 0.8rem;
    padding: 0.7rem 0.85rem;
  }

  .fx-adoption-stack-img {
    width: 68px;
    height: 68px;
  }

  .fx-adoption-stack-card p {
    font-size: 0.875rem;
  }
}

/* Mobile */
@media (max-width: 575px) {
  .fx-adoption-stack {
    gap: 0.75rem;
  }

  .fx-adoption-stack-card {
    grid-template-columns: 64px 1fr;
    gap: 0.75rem;
    padding: 0.75rem;
    border-radius: 16px;
  }

  .fx-adoption-stack-img {
    width: 64px;
    height: 64px;
    border-radius: 12px;
  }

  .fx-adoption-stack-card h4 {
    font-size: 0.95rem;
  }

  .fx-adoption-stack-card p {
    font-size: 0.84rem;
    line-height: 1.4;
  }
}

/* ==========================================================
   FOXTROT SYSTEMS SECTION — toned down to match page
   ========================================================== */

.fx-systems-section {
  display: grid;
  grid-template-columns: 0.95fr 1.15fr;
  gap: 3.25rem;
  align-items: center;
  padding: 3.5rem 0;
}

/* Left copy */
.fx-systems-copy h2 {
  margin: 0;
  color: var(--foxtrot-navy, #08152f);
  font-size: clamp(2.4rem, 4vw, 3.75rem);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.035em;
}

.fx-systems-copy h2 span {
  color: var(--foxtrot-red, #f73c3c);
}

.fx-systems-redline {
  width: 56px;
  height: 4px;
  margin: 1.5rem 0 1.75rem;
  border-radius: 999px;
  background: var(--foxtrot-red, #f73c3c);
}

.fx-systems-copy p {
  max-width: 460px;
  margin: 0 0 1rem;
  color: rgba(8, 21, 47, 0.72);
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 400;
}

.fx-systems-copy h3 {
  margin: 2rem 0 0;
  color: var(--foxtrot-navy, #08152f);
  font-size: 1.05rem;
  line-height: 1.35;
  font-weight: 800;
}

/* Right graphic */
.fx-systems-graphic {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.fx-system-row {
  display: grid;
  grid-template-columns: 74px 18px 1fr;
  align-items: center;
}

.fx-system-icon {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  justify-self: center;
  border-radius: 18px;
  background: var(--foxtrot-navy, #08152f);
  box-shadow: 0 10px 24px rgba(8, 21, 47, 0.10);
  clip-path: none;
}

.fx-system-icon span {
  width: auto;
  height: auto;
  display: block;
  background: transparent;
  color: #ffffff;
  font-size: 1.35rem;
  line-height: 1;
  font-weight: 800;
  border-radius: 0;
}

.fx-system-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--foxtrot-red, #f73c3c);
  box-shadow: 0 0 0 6px rgba(247, 60, 60, 0.10);
}

.fx-system-card {
  position: relative;
  min-height: 82px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1rem 1.5rem;
  background: #ffffff;
  border: 1px solid rgba(8, 21, 47, 0.07);
  border-right: 3px solid var(--foxtrot-red, #f73c3c);
  border-radius: 14px;
  box-shadow: 0 10px 28px rgba(8, 21, 47, 0.06);
}

.fx-system-card::before {
  content: "";
  position: absolute;
  left: -24px;
  top: 50%;
  width: 24px;
  border-top: 1px dashed rgba(8, 21, 47, 0.12);
}

.fx-system-card h4 {
  margin: 0 0 0.25rem;
  color: var(--foxtrot-navy, #08152f);
  font-size: 1.25rem;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.015em;
}

.fx-system-card p {
  margin: 0;
  color: rgba(8, 21, 47, 0.7);
  font-size: 0.95rem;
  line-height: 1.45;
}

/* Tablet */
@media (max-width: 991px) {
  .fx-systems-section {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 3rem 0;
  }

  .fx-systems-copy p {
    max-width: none;
  }
}

/* Mobile */
@media (max-width: 575px) {
  .fx-systems-section {
    gap: 2rem;
    padding: 2.5rem 0;
  }

  .fx-systems-copy h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .fx-system-row {
    grid-template-columns: 58px 14px 1fr;
  }

  .fx-system-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
  }

  .fx-system-icon span {
    font-size: 1rem;
  }

  .fx-system-card {
    min-height: 72px;
    padding: 0.85rem 1rem;
  }

  .fx-system-card h4 {
    font-size: 1.05rem;
  }

  .fx-system-card p {
    font-size: 0.88rem;
  }
}

/* 2x2 layout ONLY for What Foxtrot Builds */
.fx-builds-section .fx-adoption-visual .fx-adoption-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.fx-builds-section .fx-adoption-visual .fx-adoption-stack-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  padding: 0;
  overflow: hidden;
  align-items: stretch;
  height: 100%;
  box-shadow:
    0 14px 36px rgba(8, 21, 47, 0.10),
    0 4px 12px rgba(8, 21, 47, 0.06);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.fx-builds-section .fx-adoption-visual .fx-adoption-stack-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 24px 56px rgba(8, 21, 47, 0.14),
    0 8px 20px rgba(8, 21, 47, 0.08);
}

.fx-builds-section .fx-adoption-visual .fx-adoption-stack-img {
  width: 100%;
  height: 160px;
  min-height: 160px;
  border-radius: 0;
  overflow: hidden;
}

.fx-builds-section .fx-adoption-visual .fx-adoption-stack-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.fx-builds-section .fx-adoption-visual .fx-adoption-stack-card:hover .fx-adoption-stack-img img {
  transform: scale(1.05);
}

.fx-builds-section .fx-adoption-visual .fx-adoption-stack-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1rem 1.1rem 1.15rem;
  text-align: center;
}

@media (max-width: 575px) {
  .fx-builds-section .fx-adoption-visual .fx-adoption-stack {
    grid-template-columns: 1fr;
  }

  .fx-builds-section .fx-adoption-visual .fx-adoption-stack-img {
    height: 180px;
    min-height: 180px;
  }

  .fx-builds-section .fx-adoption-visual .fx-adoption-stack-content {
    text-align: left;
  }
}
