/* =============================================================
   OXALIS HOMEPAGE — homepage.css
   Sections: Hero, Trusted By, Intro, Pillars, What We Do
   ============================================================= */

/* ── ox-wrap: scoped to homepage ─────────────────────────── */
.ox-homepage .ox-wrap {
  padding-left: clamp(24px, 11.8%, 179px) !important;
  padding-right: clamp(24px, 11.8%, 179px) !important;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .ox-homepage .ox-wrap {
    padding-left: 40px !important;
    padding-right: 40px !important;
  }
}

@media (max-width: 600px) {
  .ox-homepage .ox-wrap {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
}

/* ── Shared: fancy-stroke separator ───────────────────────── */
.ox-fancy-stroke {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
  height: 2px;
  margin: 80px 0;
}
.ox-fancy-stroke__cap {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--c-white, #F3F4F4);
  flex-shrink: 0;
}
.ox-fancy-stroke__line {
  display: block;
  flex: 1;
  height: 2px;
  background: var(--c-white, #F3F4F4);
  opacity: 0.2;
}

/* ── Shared: eyebrow ──────────────────────────────────────── */
.ox-eyebrow {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}
.ox-eyebrow__icon {
  display: inline-block;
  width: 14px;
  height: 14px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'%3E%3Crect x='0' y='0' width='4' height='4' fill='%23894615'/%3E%3Crect x='5' y='0' width='4' height='4' fill='%23894615'/%3E%3Crect x='10' y='0' width='4' height='4' fill='%23894615'/%3E%3Crect x='0' y='5' width='4' height='4' fill='%23894615'/%3E%3Crect x='5' y='5' width='4' height='4' fill='%23FF6600'/%3E%3Crect x='10' y='5' width='4' height='4' fill='%23894615'/%3E%3Crect x='0' y='10' width='4' height='4' fill='%23894615'/%3E%3Crect x='5' y='10' width='4' height='4' fill='%23894615'/%3E%3Crect x='10' y='10' width='4' height='4' fill='%23894615'/%3E%3C/svg%3E") no-repeat center / contain;
  flex-shrink: 0;
}
.ox-eyebrow__label {
  font-family: 'Figtree', sans-serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 1.05;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--c-white, #F3F4F4);
}

/* ── Shared: ghost-orange CTA button ─────────────────────── */
.ox-btn--ghost-orange {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--c-dark-mid, #1F3035);
  border: 1px solid #FF6600;
  text-decoration: none;
  cursor: pointer;
}
.ox-btn--ghost-orange .ox-btn__dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #FF6600;
  border: 4px solid #894615;
  border-radius: 50px;
  flex-shrink: 0;
}
.ox-btn--ghost-orange .ox-btn__label {
  font-family: 'Figtree', sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.2;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--c-white, #F3F4F4);
}
.ox-btn--ghost-orange .ox-btn__arrow {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-right: 1.6px solid var(--c-white, #F3F4F4);
  border-top: 1.6px solid var(--c-white, #F3F4F4);
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* ── Shared: solution pill button ────────────────────────── */
.ox-solution-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 8px 16px;
  background: transparent;
  border: none;
  text-decoration: none;
  transition: background 0.2s ease;
}
.ox-solution-btn:hover {
  background: rgba(255, 102, 0, 0.1);
}

.ox-solution-btn__label {
  font-family: 'Figtree', sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 170%;
  color: var(--c-white, #F3F4F4);
  flex: 1;
}
.ox-solution-btn__arrow {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-right: 1.6px solid var(--c-white, #F3F4F4);
  border-top: 1.6px solid var(--c-white, #F3F4F4);
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* ── Shared: ox-grid-block dot ───────────────────────────── */
.ox-grid-block {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #D05908;
  flex-shrink: 0;
}


/* =============================================================
   SECTION 1: HERO
   ============================================================= */
.ox-hero {
  position: relative;
  width: 100%;
  /* background: var(--c-dark, #13252A); */
  min-height: 1163px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  margin-top: -100px;
}

/* Background layers */
.ox-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.ox-hero__photo {
  position: absolute;
  left: 24.5%;
  top: 24px;
  width: 1768px;
  height: 1356px;
  object-fit: cover;
  opacity: 0.7;
  z-index: 0;
}
/* Gradient overlays */
.ox-hero__overlay {
  position: absolute;
  z-index: 1;
}
.ox-hero__overlay--top {
  top: 0; left: 0; right: 0;
  height: 530px;
  background: linear-gradient(180deg, #13252A 0%, rgba(19, 37, 42, 0) 100%);
}
.ox-hero__overlay--bottom {
  bottom: 0; left: 0; right: 0;
  height: 530px;
  background: linear-gradient(180deg, rgba(19, 37, 42, 0) 0%, #13252A 100%);
}
.ox-hero__overlay--left {
  top: 0; bottom: 0; left: 0;
  width: 600px;
  background: linear-gradient(90deg, #13252A 0%, rgba(19, 37, 42, 0) 100%);
}
/* Dots overlay */
.ox-hero__dots {
  position: absolute;
  left: -10%;
  top: -100px;
  width: 133.3%;
  height: 100%;
  z-index: 2;
  background-image: url('../img/Dots-full.png');
  background-size: 100% 100%;
  background-repeat: no-repeat;
  opacity: 1;
  pointer-events: none;
}

/* Hero content */
.ox-hero__content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
  padding-top: 160px;
  padding-left: 179px;
  padding-right: 179px;
  padding-bottom: 120px;
  width: 100%;
  box-sizing: border-box;
}
.ox-hero__inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
  width: 566px;
  max-width: 100%;
}
.ox-hero__heading {
  font-family: 'Tenez', serif;
  font-weight: 400;
  font-size: 68px;
  line-height: 105%;
  letter-spacing: -0.02em;
  color: var(--c-white, #F3F4F4);
  margin: 0;
}
/* Fancy stroke inside hero — narrower */
.ox-hero__content .ox-fancy-stroke {
  margin: 0;
  width: 100%;
}
.ox-hero__sub {
  font-family: 'Figtree', sans-serif;
  font-weight: 300;
  font-size: 24px;
  line-height: 160%;
  color: var(--c-white, #F3F4F4);
  margin: 0;
}

/* Orange pixel art figure */
.ox-hero__pixels {
  position: absolute;
  left: 62.2%;
  top: 429px;
  width: 440px;
  height: 544px;
  z-index: 3;
  pointer-events: none;
}




/* =============================================================
   SECTION 2: TRUSTED BY
   ============================================================= */
.ox-trusted {
  /* background: var(--c-dark, #13252A); */
  padding: 0;
  margin-top: -180px;
  position: relative;
}
.ox-trusted .ox-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.ox-trusted__heading {
  font-family: 'Tenez', serif;
  font-weight: 400;
  font-size: 46px;
  line-height: 105%;
  text-align: center;
  text-transform: capitalize;
  color: var(--c-white, #F3F4F4);
  margin: 0;
}
.ox-trusted__industries {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.ox-trusted__row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}
.ox-trusted__item {
  font-family: 'Figtree', sans-serif;
  font-weight: 300;
  font-size: 24px;
  line-height: 160%;
  text-align: center;
  color: var(--c-white, #F3F4F4);
}
.ox-trusted__divider {
  width: 744px;
  max-width: 100%;
  height: 1px;
  background: #717C7F;
}
.ox-trusted__partners {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 36px;
  padding-bottom: 40px;
}
/* Partner logo images — same height, auto width */
.ox-trusted__partner-img {
  height: 100px;
  width: auto;
  display: block;
  object-fit: contain;
  flex-shrink: 0;
}


/* =============================================================
   SECTION 3: INTRO (2-COL)
   ============================================================= */
.ox-intro {
  /* background: var(--c-dark, #13252A); */
  position: relative;
  overflow: hidden;
}
.ox-intro::before {
  content: '';
  position: absolute;
  left: -10%;
  top: 0;
  width: 133.3%;
  height: 100%;
  background-image: url('../img/Dots-full.png');
  background-size: 100% 100%;
  background-repeat: no-repeat;
  opacity: 1;
  pointer-events: none;
  z-index: 0;
}
.ox-intro .ox-wrap {
  position: relative;
  z-index: 1;
}
.ox-intro__inner {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 1px;
}
.ox-intro__text {
  width: 564px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ox-intro__heading {
  font-family: 'Tenez', serif;
  font-weight: 400;
  font-size: 46px;
  line-height: 105%;
  text-transform: capitalize;
  color: var(--c-white, #F3F4F4);
  margin: 0;
}
.ox-intro__body {
  font-family: 'Figtree', sans-serif;
  font-weight: 300;
  font-size: 18px;
  line-height: 160%;
  color: var(--c-white, #F3F4F4);
  margin: 0;
}
.ox-intro__graphic {
  flex: 1;
  min-height: 318px;
  display: flex;
  align-items: center;
  justify-content: center;
}



/* =============================================================
   SECTION 4: VALUE PILLARS (inside ox-intro section)
   ============================================================= */
.ox-pillars__grid {
  display: flex;
  flex-direction: row;
  align-items: stretch;
}
@media (max-width: 1100px) {
  .ox-pillars__grid { margin-left: -40px; margin-right: -40px; }
}
@media (max-width: 768px) {
  .ox-pillars__grid { flex-direction: column; margin-left: -20px; margin-right: -20px; }
}
@media (max-width: 600px) {
  .ox-pillars__grid { margin-left: -20px; margin-right: -20px; }
}
.ox-pillar-card {
  flex: 1;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  padding: 24px 16px 24px 24px;
  background: var(--c-dark-mid, #1F3035);
  border: 1px solid #717C7F;
  margin: 0 -1px 0 0;
}
.ox-pillar-card:last-child {
  margin-right: 0;
}
.ox-pillar-card__icon {
  display: block;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.ox-pillar-card__body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.ox-pillar-card__head {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.ox-pillar-card__title {
  font-family: 'Figtree', sans-serif;
  font-weight: 600;
  font-size: 22px;
  line-height: 120%;
  letter-spacing: -0.02em;
  color: var(--c-white, #F3F4F4);
  margin: 0;
}
.ox-pillar-card__stroke {
  width: 100%;
  height: 1px;
  background: #717C7F;
}
.ox-pillar-card__text {
  font-family: 'Figtree', sans-serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 21px;
  color: var(--c-white, #F3F4F4);
  margin: 0;
  flex: 1;
}


/* =============================================================
   SECTION 5: WHAT WE DO
   ============================================================= */
.ox-what-we-do {
  /* background: var(--c-dark, #13252A); */
  position: relative;
  overflow: hidden;
}
.ox-what-we-do .ox-wrap {
  position: relative;
  z-index: 1;
}
.ox-what-we-do__header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 64px;
}
.ox-what-we-do__heading {
  font-family: 'Tenez', serif;
  font-weight: 400;
  font-size: 46px;
  line-height: 105%;
  color: var(--c-white, #F3F4F4);
  margin: 0;
}
.ox-what-we-do__sub {
  font-family: 'Figtree', sans-serif;
  font-weight: 300;
  font-size: 18px;
  line-height: 160%;
  color: var(--c-white, #F3F4F4);
  margin: 0;
}
.ox-what-we-do__cols {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 1px;
}
.ox-what-we-do__col {
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex: 1;
}


/* =============================================================
   SECTION 5: INDUSTRIES / THE PROBLEM (light bg)
   ============================================================= */
.ox-industries {
  background: #FAF4E5;
  padding: 0;
}
.ox-industries .ox-wrap {
  display: flex;
  flex-direction: column;
}

/* Dark-themed fancy stroke for light bg */
.ox-fancy-stroke--dark .ox-fancy-stroke__cap {
  background: #13252A;
}
.ox-fancy-stroke--dark .ox-fancy-stroke__line {
  background: #13252A;
  opacity: 0.2;
}

/* Dark eyebrow */
.ox-eyebrow--dark .ox-eyebrow__label {
  color: #13252A;
}
.ox-eyebrow__icon--light {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'%3E%3Crect x='0' y='0' width='4' height='4' fill='%23FDAD73'/%3E%3Crect x='5' y='0' width='4' height='4' fill='%23FDAD73'/%3E%3Crect x='10' y='0' width='4' height='4' fill='%23FDAD73'/%3E%3Crect x='0' y='5' width='4' height='4' fill='%23FDAD73'/%3E%3Crect x='5' y='5' width='4' height='4' fill='%23FF6600'/%3E%3Crect x='10' y='5' width='4' height='4' fill='%23FDAD73'/%3E%3Crect x='0' y='10' width='4' height='4' fill='%23FDAD73'/%3E%3Crect x='5' y='10' width='4' height='4' fill='%23FDAD73'/%3E%3Crect x='10' y='10' width='4' height='4' fill='%23FDAD73'/%3E%3C/svg%3E");
}

/* Industries header */
.ox-industries__header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 32px;
}
.ox-industries__heading {
  font-family: 'Tenez', serif;
  font-weight: 400;
  font-size: 46px;
  line-height: 105%;
  color: #13252A;
  margin: 0;
}
.ox-industries__stroke {
  width: 100%;
  height: 1px;
  background: #717C7F;
}
.ox-industries__sub {
  font-family: 'Figtree', sans-serif;
  font-weight: 300;
  font-size: 18px;
  line-height: 160%;
  color: #13252A;
  margin: 0;
}

/* Industry card rows */
.ox-industry-row {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  margin: 0 0 -1px;
}
.ox-industry-card {
  flex: 1;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  padding: 24px 16px 24px 24px;
  background: #FAE6CE;
  border: 1px solid #717C7F;
  margin: 0 -1px 0 0;
}
.ox-industry-card:last-child { margin-right: 0; }
.ox-industry-card__icon {
  display: block;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.ox-industry-card__body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.ox-industry-card__head {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.ox-industry-card__title {
  font-family: 'Figtree', sans-serif;
  font-weight: 600;
  font-size: 22px;
  line-height: 120%;
  letter-spacing: -0.02em;
  color: #13252A;
  margin: 0;
}
.ox-industry-card__stroke {
  width: 100%;
  height: 1px;
  background: #717C7F;
}
.ox-industry-card__text {
  font-family: 'Figtree', sans-serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 21px;
  color: #13252A;
  margin: 0;
  flex: 1;
}

/* Row 2 cards are slightly lighter */
.ox-industry-row:nth-child(3) .ox-industry-card {
  background: #FAEDDA;
}

/* Text button (dark) */
.ox-text-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.ox-text-btn__label {
  font-family: 'Figtree', sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.2;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #13252A;
}
.ox-text-btn__arrow {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-right: 1.6px solid #13252A;
  border-top: 1.6px solid #13252A;
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* Solutions 3-col grid */
.ox-solutions-grid {
  display: flex;
  flex-direction: column;
  gap: 64px;
}
.ox-solutions-grid__heading {
  font-family: 'Tenez', serif;
  font-weight: 400;
  font-size: 46px;
  line-height: 105%;
  color: #13252A;
  margin: 0;
}
.ox-solutions-grid__sub {
  font-family: 'Figtree', sans-serif;
  font-weight: 300;
  font-size: 18px;
  line-height: 160%;
  color: #13252A;
  margin: -52px 0 0; /* pull up under heading */
}
.ox-solutions-grid__cols {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 24px;
}
.ox-solutions-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.ox-solutions-divider {
  width: 1px;
  align-self: stretch;
  background: #717C7F;
  flex-shrink: 0;
}
.ox-solution-type {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid #717C7F;
}
.ox-solution-type__dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #13252A;
  border-radius: 50%;
  opacity: 0.75;
  flex-shrink: 0;
}
.ox-solution-type__label {
  font-family: 'Figtree', sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 160%;
  color: #13252A;
}
.ox-solutions-col__title {
  font-family: 'Figtree', sans-serif;
  font-weight: 600;
  font-size: 22px;
  line-height: 120%;
  letter-spacing: -0.02em;
  color: #13252A;
  margin: 0;
}
.ox-solutions-col__body {
  font-family: 'Figtree', sans-serif;
  font-weight: 300;
  font-size: 18px;
  line-height: 160%;
  color: #13252A;
  margin: 0;
  flex: 1;
}

/* Outline dark button */
.ox-btn--outline-dark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: #FAE6CE;
  border: 1px solid #FF6600;
  text-decoration: none;
}
.ox-btn--outline-dark .ox-btn__dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #FF6600;
  border: 4px solid #FDAD73;
  border-radius: 50px;
  flex-shrink: 0;
}
.ox-btn--outline-dark .ox-btn__label {
  font-family: 'Figtree', sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #13252A;
}
.ox-btn--outline-dark .ox-btn__arrow {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-right: 1.6px solid #13252A;
  border-top: 1.6px solid #13252A;
  transform: rotate(45deg);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .ox-industry-row { flex-direction: column; }
  .ox-industry-card { margin: 0 0 -1px; }
  .ox-solutions-grid__cols { flex-direction: column; }
  .ox-solutions-divider { width: 100%; height: 1px; }
}


/* =============================================================
   RESPONSIVE
   ============================================================= */
@media (max-width: 1100px) {
  .ox-hero__content {
    padding-left: 40px;
    padding-right: 44%;
  }
  .ox-intro__inner {
    flex-direction: column;
  }
  .ox-intro__text {
    width: 100%;
  }
  .ox-intro__graphic {
    display: none;
  }
}

@media (max-width: 768px) {
  .ox-hero__content {
    padding: 120px 20px 80px;
    padding-right: 20px;
  }
  .ox-hero__heading {
    font-size: 42px;
  }
  .ox-hero__sub {
    font-size: 18px;
  }
  .ox-hero__grid-dots {
    display: none;
  }
  .ox-trusted__heading {
    font-size: 32px;
  }
  .ox-trusted__item {
    font-size: 18px;
  }
  .ox-pillars__grid {
    flex-direction: column;
  }
  .ox-pillar-card {
    margin: 0 0 -1px 0;
  }
  .ox-what-we-do__cols {
    flex-direction: column;
  }
  .ox-fancy-stroke {
    margin: 40px 0;
  }
}

@media (max-width: 600px) {
  .ox-hero__content {
    padding: 100px 20px 60px;
  }
  .ox-hero__heading {
    font-size: 36px;
  }
  .ox-trusted__divider {
    width: 100%;
  }
}

/* =============================================================
   SECTION 7: ABOUT US + STATS + CTA + ARTICLES (dark bg)
   ============================================================= */
.ox-about {
  /* background: var(--c-dark, #13252A); */
  padding: 0;
}
.ox-about .ox-wrap {
  display: flex;
  flex-direction: column;
}

/* About row */
.ox-about__row {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 0;
}
.ox-about__photo {
  width: 340px;
  flex-shrink: 0;
  min-height: 347px;
  border: 1px solid #717C7F;
  position: relative;
  overflow: hidden;
}
.ox-about__photo-img {
  position: absolute;
  inset: 0;
  width: 115%;
  height: 100%;
  object-fit: cover;
  object-position: 0% 0%;
  z-index: 0;
}
.ox-about__photo-svg {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
}
.ox-about__text {
  flex: 1;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 24px 0 24px 12px;
  border: 1px solid #717C7F;
  border-left: none;
}
.ox-about__heading {
  font-family: 'Tenez', serif;
  font-weight: 400;
  font-size: 46px;
  line-height: 105%;
  color: var(--c-white, #F3F4F4);
  margin: 0;
}
.ox-about__body {
  font-family: 'Figtree', sans-serif;
  font-weight: 300;
  font-size: 18px;
  line-height: 160%;
  color: var(--c-white, #F3F4F4);
  margin: 0;
}

/* Stats */
.ox-stats {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.ox-stats__heading {
  font-family: 'Tenez', serif;
  font-weight: 400;
  font-size: 46px;
  line-height: 105%;
  color: var(--c-white, #F3F4F4);
  margin: 0;
}
.ox-stats__sub {
  font-family: 'Figtree', sans-serif;
  font-weight: 300;
  font-size: 18px;
  line-height: 160%;
  color: var(--c-white, #F3F4F4);
  margin: 0 0 24px;
}
.ox-stats__row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 59px;
  width: 100%;
  margin-bottom: 32px;
}
.ox-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding-bottom: 16px;
}
.ox-stat__number {
  font-family: 'Tenez', serif;
  font-weight: 400;
  font-size: 77px;
  line-height: 105%;
  letter-spacing: -0.02em;
  color: #03D8D8;
  text-align: center;
  width: 100%;
}
.ox-stat__label {
  font-family: 'Figtree', sans-serif;
  font-weight: 300;
  font-size: 24px;
  line-height: 160%;
  color: var(--c-white, #F3F4F4);
  text-align: center;
  width: 100%;
}

/* CTA box */
.ox-cta-box {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  background: var(--c-dark-mid, #1F3035);
  border: 1px solid #717C7F;
}
.ox-cta-box__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  padding: 32px;
}
.ox-cta-box__heading {
  font-family: 'Tenez', serif;
  font-weight: 400;
  font-size: 46px;
  line-height: 105%;
  color: var(--c-white, #F3F4F4);
  margin: 0;
}
.ox-cta-box__body {
  font-family: 'Figtree', sans-serif;
  font-weight: 300;
  font-size: 18px;
  line-height: 160%;
  color: var(--c-white, #F3F4F4);
  margin: 0;
}
.ox-cta-box__buttons {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.ox-cta-box__graphic {
  width: 363px;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

/* Text link (white, for dark bg) */
.ox-text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.ox-text-link__label {
  font-family: 'Figtree', sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.2;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--c-white, #F3F4F4);
}
.ox-text-link__arrow {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-right: 1.6px solid var(--c-white, #F3F4F4);
  border-top: 1.6px solid var(--c-white, #F3F4F4);
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* Articles grid */
.ox-articles {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.ox-articles__header {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ox-articles__heading {
  font-family: 'Tenez', serif;
  font-weight: 400;
  font-size: 46px;
  line-height: 105%;
  color: var(--c-white, #F3F4F4);
  margin: 0;
}
.ox-articles__grid {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 24px;
}
.ox-article-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.ox-article-card__image {
  width: 100%;
  height: 270px;
  background: var(--c-dark-mid, #1F3035) center/cover no-repeat;
  border: 1px solid #1F3035;
  flex-shrink: 0;
}
.ox-article-card__body {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  padding: 32px;
  background: var(--c-dark-mid, #1F3035);
  border-bottom: 4px solid #03D8D8;
  flex: 1;
}
.ox-article-card__header {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.ox-article-card__meta {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}
.ox-article-card__meta-author,
.ox-article-card__meta-sep,
.ox-article-card__meta-date,
.ox-article-card__meta-read {
  font-family: 'Figtree', sans-serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 18px;
  color: var(--c-white, #F3F4F4);
}


.ox-article-card__tags {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
}
.ox-article-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  background: var(--c-dark, #13252A);
  border: 1px solid #717C7F;
  font-family: 'Figtree', sans-serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 18px;
  color: var(--c-white, #F3F4F4);
  margin-right: -1px;
}
.ox-article-card__title {
  font-family: 'Tenez', serif;
  font-weight: 400;
  font-size: 32px;
  line-height: 105%;
  text-transform: capitalize;
  color: var(--c-white, #F3F4F4);
  margin: 0;
  flex: 1;
}
.ox-article-card__excerpt {
  font-family: 'Figtree', sans-serif;
  font-weight: 300;
  font-size: 18px;
  line-height: 160%;
  color: var(--c-white, #F3F4F4);
  margin: 0;
}

/* Responsive */
@media (max-width: 1100px) {
  .ox-about__row { flex-direction: column; }
  .ox-about__photo { width: 100%; height: 240px; }
  .ox-about__text { border-left: 1px solid #717C7F; padding: 24px; }
  .ox-stats__row { gap: 32px; }
  .ox-cta-box__graphic { display: none; }
  .ox-articles__grid { flex-direction: column; }
}
@media (max-width: 768px) {
  .ox-stats__row { flex-direction: column; gap: 16px; }
  .ox-stat__number { font-size: 56px; text-align: left; }
  .ox-stat__label { text-align: left; font-size: 18px; }
}

/* =============================================================
   GLOBAL MOBILE OVERRIDES
   Prevent decorative hero overflows from creating page-wide
   horizontal scroll on phones/tablets.
   ============================================================= */
.ox-homepage { overflow-x: clip; }

@media (max-width: 1100px) {
  /* Hero — ease the giant 179px side padding and let content breathe */
  .ox-hero__content {
    padding-left: clamp(20px, 6vw, 80px);
    padding-right: clamp(20px, 6vw, 80px);
    padding-top: 120px;
    padding-bottom: 80px;
  }
  .ox-hero { min-height: 720px; margin-top: -80px; }
  .ox-hero__heading { font-size: 48px; }
  .ox-hero__sub { font-size: 18px; }
  .ox-hero__inner { width: 100%; }
  /* Decorative pixel art is anchored at 62.2% from left; on narrow screens
     it overlaps text / overflows. Pull it inboard and shrink. */
  .ox-hero__pixels { left: auto; right: -40px; top: 380px; width: 320px; height: 396px; opacity: 0.6; }
  .ox-hero__photo { width: 130%; left: 0; }
}

@media (max-width: 768px) {
  /* Hide the desktop dot field, but keep the orange pixel flare — re-position
     and shrink it so it sits over the upper photo area instead of overflowing. */
  .ox-hero__dots { display: none; }
  .ox-hero__pixels {
    display: block;
    left: auto;
    right: 50px;
    top: 70px;
    width: 220px;
    height: auto;
    aspect-ratio: 440 / 544;
  }
  /* Give the hero room: bring the photo inward (100% width, centered) so the
     ship reads as a focal element instead of bleeding off-screen, and push
     the headline+CTA toward the bottom so the visual draws the eye in. */
  .ox-hero { min-height: 720px; }
  .ox-hero__heading { font-size: 38px; }
  .ox-hero__sub { font-size: 16px; line-height: 1.5; }
  .ox-hero__photo {
    width: 100%;
    left: 0;
    top: 0;
    height: 60%;
    object-fit: cover;
    object-position: center 30%;
    opacity: 0.7;
  }
  /* Light header-bar fade at the top, then a softer fade-to-dark over the
     lower half so the headline stays legible without burying the photo. */
  .ox-hero__overlay--top { height: 100px; }
  .ox-hero__overlay--bottom {
    height: 55%;
    background: linear-gradient(180deg, rgba(19,37,42,0) 0%, #13252A 70%);
  }
  .ox-hero__overlay--left { display: none; }
  /* Push lockup down — text sits in the lower portion, image breathes above. */
  .ox-hero__content {
    padding-top: 340px;
    padding-bottom: 64px;
    padding-left: 24px;
    padding-right: 24px;
  }

  /* Give the hero CTA breathing room before Trusted-by — the desktop -180px overlap
     was designed for the tall hero photo and looks crammed on phones. */
  .ox-trusted { margin-top: 0; padding-top: 48px; }

  /* Trusted-by — stack each industry label on its own line with a bullet
     anchored next to the text instead of the desktop "label · label · label"
     row of separator dots. */
  .ox-trusted__heading { font-size: 32px; }
  /* Match the inter-row gap to the in-row gap so the seam between the two
     desktop rows disappears in the stacked mobile list. */
  .ox-trusted__industries { gap: 10px; }
  .ox-trusted__row {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  /* Drop the spacer dots — the markup pairs bullet/label as siblings; on
     mobile we render the bullet as a pseudo-element on the label itself so
     the dot always sits flush with its row. */
  .ox-trusted__row .ox-grid-block { display: none; }
  .ox-trusted__item {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    text-align: left;
  }
  .ox-trusted__item::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #FF6600;
    flex-shrink: 0;
  }

  /* Partner logos — stack vertically and shrink so neither logo is clipped */
  .ox-trusted__partners {
    flex-direction: column;
    gap: 24px;
    padding: 16px 0 32px;
  }
  .ox-trusted__partner-img { height: 72px; max-width: 100%; }
  /* Override the inline width:265px on the Atlassian SVG */
  svg.ox-trusted__partner-img { width: auto !important; max-width: 80%; }

  /* Overview / Pillars: keep the boxes inside the wrap (drop the negative side
     margins) and add space between the subtitle and the box grid */
  .ox-intro__inner { gap: 24px; }
  .ox-intro__body { margin-bottom: 0; }
  .ox-pillars__grid {
    margin-left: 0 !important;
    margin-right: 0 !important;
    margin-top: 24px;
  }

  /* Section headings */
  .ox-intro__heading,
  .ox-what-we-do__heading,
  .ox-industries__heading,
  .ox-about__heading,
  .ox-stats__heading,
  .ox-cta-box__heading,
  .ox-articles__heading { font-size: 32px !important; line-height: 1.1 !important; }

  /* What-we-do + Industries cards */
  .ox-pillars,
  .ox-what-we-do__grid,
  .ox-industries__grid { grid-template-columns: 1fr !important; gap: 12px !important; }

  /* About row stacks (already at 1100), tighten card padding */
  .ox-about__text { padding: 24px 20px; }
  .ox-about__heading { font-size: 32px !important; }
}

@media (max-width: 480px) {
  /* Keep the photo-on-top, text-pushed-down composition at phone widths.
     Slightly smaller hero, tighter padding, but text still anchors low. */
  .ox-hero { min-height: 640px; }
  .ox-hero__content { padding-top: 300px; padding-bottom: 56px; }
  .ox-hero__heading { font-size: 32px; }
  .ox-hero__sub { font-size: 15px; }
  .ox-trusted__heading { font-size: 26px; }
  .ox-stat__number { font-size: 44px; }
}