body {
  font-family: var(--font-ui);
  color: var(--charcoal);
  background: var(--white);
  overflow-x: hidden;
}

/* ── GRAPH PAPER TEXTURE ── */
.graph-bg {
  background-color: var(--off-white);
  background-image:
    linear-gradient(var(--rule) 1px, transparent 1px),
    linear-gradient(90deg, var(--rule) 1px, transparent 1px);
  background-size: 40px 40px;
}

/* ── CONTAINER ── */
.wrap { max-width: 1360px; margin: 0 auto; padding: 0 40px; }

/* ── MONO TAG ── */
.mtag {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.mtag::before {
  content: '';
  width: 28px; height: 1.5px;
  background: var(--orange);
}

/* ── REVEAL ── */
.rv {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s cubic-bezier(.22,1,.36,1), transform .6s cubic-bezier(.22,1,.36,1);
}
.rv.in { opacity: 1; transform: none; }
.rv.d1 { transition-delay:.08s; }
.rv.d2 { transition-delay:.16s; }
.rv.d3 { transition-delay:.24s; }
.rv.d4 { transition-delay:.32s; }
.rv.d5 { transition-delay:.40s; }
.rv.d6 { transition-delay:.48s; }
.rv.d7 { transition-delay:.56s; }
.rv.d8 { transition-delay:.64s; }

/* ══════════════════════
   §01 HERO
══════════════════════ */
.hero {
  position: relative;
  /* min-height: 100vh; */
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  background: var(--white);
}

/* Left column */
.hero__left {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px 64px;
  background: var(--white);
}

/* Ruled lines decoration — left */
.hero__rules {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.hero__rules::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: repeating-linear-gradient(
    transparent,
    transparent 47px,
    var(--rule) 47px,
    var(--rule) 48px
  );
}

.hero__left-inner { position: relative; z-index: 1; }

/* (status bar removed) */

.hero__eyebrow {
  margin-bottom: 20px;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.8vw, 72px);
  font-weight: 800;
  line-height: .9;
  text-transform: capitalize;
  color: var(--charcoal-dark);
  letter-spacing: -.01em;
  margin-bottom: 32px;
  text-wrap: balance;
}
.hero__title span {
  /* font-style: italic; */
  color: var(--orange);
  /* display: block; */
}

.hero__sub {
  font-size: 20px;
  line-height: 1.75;
  color: var(--charcoal-dark);
  opacity: 1;
  margin-bottom: 24px;
  font-weight: 400;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

/* Primary CTA */
.cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 15px 30px;
  border: 2px solid var(--orange);
  transition: background .2s, transform .18s;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}
.cta-primary:hover { background: var(--orange-dark); border-color: var(--orange-dark); transform: translateY(-2px); }

.cta-link {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--charcoal);
  text-decoration: none;
  opacity: .65;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  transition: opacity .2s, color .2s;
}
.cta-link:hover { opacity: 1; color: var(--orange); }

/* (stat strip removed) */

/* Right column — image */
.hero__right {
  position: relative;
  overflow: hidden;
}

/* Diagonal slash */
.hero__slash {
  position: absolute;
  top: 0; left: -60px;
  width: 120px; height: 100%;
  background: var(--white);
  transform: skewX(-4deg);
  z-index: 2;
}

.hero__img-placeholder {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #c9c1b7 0%, #9e978f 60%, #7d756c 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgba(255,255,255,.5);
  font-family: var(--font-mono);
  font-size: 12px;
}

.hero__img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Overlay tint on image */
.hero__img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(255,255,255,.08), transparent);
  z-index: 1;
}

/* Large section index on image */
.hero__index {
  position: absolute;
  bottom: 24px; right: 28px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--white);
  opacity: .7;
  z-index: 3;
  font-style: normal;
  background: rgba(34,34,34,.45);
  padding: 6px 14px;
  backdrop-filter: blur(4px);
}

/* Orange bar on far right edge */
.hero__edge {
  position: absolute;
  top: 0; right: 0;
  width: 5px; height: 100%;
  background: var(--orange);
  z-index: 4;
}


.pa-section {
    background: var(--off-white);
    padding: 60px 40px;
  }

  .pa-inner {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 40px;
  }

  /* ── Top label ── */
  .pa-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: .13em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 24px;
  }

  .pa-label::before {
    content: '';
    display: block;
    width: 28px;
    height: 1.5px;
    background: var(--orange);
    flex-shrink: 0;
  }

  /* ── Hero row ── */
  .pa-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: end;
    margin-bottom: 72px;
  }

  .pa-headline {
    font-family: var(--font-display);
    font-size: clamp(40px, 5vw, 68px);
    font-weight: 700;
    line-height: .95;
    letter-spacing: -.01em;
    color: var(--charcoal-dark);
  }

  .pa-headline em {
    font-style: normal;
    color: var(--orange);
  }

  .pa-intro {
    padding-bottom: 4px;
  }

  .pa-intro p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--charcoal-dark);
    opacity: 1;
  }

  .pa-intro p + p {
    margin-top: 20px;
  }

  /* ── Divider rule ── */
  .pa-rule {
    border: none;
    border-top: 1px solid var(--rule);
    margin-bottom: 64px;
  }

  /* ── Pillars grid ── */
  .pa-pillars {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border: 1px solid var(--gray-light);
    background: var(--white);
    position: relative;
  }

  /* Corner tick marks for blueprint feel */
  .pa-pillars::before,
  .pa-pillars::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    border-color: var(--orange);
    border-style: solid;
    z-index: 2;
  }

  .pa-pillars::before {
    top: -1px; left: -1px;
    border-width: 2px 0 0 2px;
  }

  .pa-pillars::after {
    bottom: -1px; right: -1px;
    border-width: 0 2px 2px 0;
  }

  .pa-pillar {
    padding: 40px 36px;
    border-right: 1px solid var(--gray-light);
    position: relative;
    transition: background .22s ease;
  }

  .pa-pillar:last-child {
    border-right: none;
  }

  .pa-pillar:hover {
    background: var(--gray-faint);
  }

  /* Pillar number */
  .pa-pillar-num {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: .12em;
    color: var(--gray-mid);
    margin-bottom: 24px;
  }

  /* Pillar icon bar */
  .pa-pillar-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .pa-pillar-icon svg {
    width: 36px;
    height: 36px;
    stroke: var(--orange);
    fill: none;
    stroke-width: 1.4;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .pa-pillar-title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    letter-spacing: .01em;
    text-transform: capitalize;
    color: var(--charcoal-dark);
    margin-bottom: 14px;
    line-height: 1.1;
  }

  .pa-pillar-body {
    font-family: var(--font-ui);
    font-size: 14.5px;
    line-height: 1.65;
    color: var(--charcoal);
    opacity: .75;
  }

  /* Orange accent line on hover */
  .pa-pillar::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0;
    height: 2px;
    background: var(--orange);
    transition: width .3s ease;
  }

  .pa-pillar:hover::after {
    width: 100%;
  }

  /* ── Bottom strip ── */
  .pa-strip {
    margin-top: 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
  }

  .pa-strip-text {
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--orange);
  }

  .pa-strip-dots {
    display: flex;
    gap: 6px;
    align-items: center;
  }

  .pa-strip-dots span {
    display: block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--gray-light);
  }

  .pa-strip-dots span:first-child {
    background: var(--orange);
  }

  .pa-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--orange);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    padding-bottom: 2px;
    transition: border-color .2s, color .2s;
  }

  .pa-cta:hover {
    color: var(--orange-dark);
    border-color: var(--orange-dark);
  }

  .pa-cta svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform .2s;
  }

  .pa-cta:hover svg {
    transform: translate(3px, -3px);
  }

  /* ── Responsive ── */
  @media (max-width: 1100px) {
    .pa-pillars {
      grid-template-columns: repeat(2, 1fr);
    }

    .pa-pillar:nth-child(2) {
      border-right: none;
    }

    .pa-pillar:nth-child(1),
    .pa-pillar:nth-child(2) {
      border-bottom: 1px solid var(--gray-light);
    }
  }

  @media (max-width: 800px) {
    .pa-hero {
      grid-template-columns: 1fr;
      gap: 32px;
    }

    .pa-section {
      padding: 72px 24px;
    }
  }

  @media (max-width: 600px) {
    .pa-pillars {
      grid-template-columns: 1fr;
    }

    .pa-pillar {
      border-right: none;
      border-bottom: 1px solid var(--gray-light);
    }

    .pa-pillar:last-child {
      border-bottom: none;
    }

    .pa-strip {
      flex-direction: column;
      align-items: flex-start;
      gap: 20px;
    }
  }

/* ══════════════════════
   §03 SERVICES MANIFEST
══════════════════════ */
.services {
  background: var(--white);
  padding: 60px 0 0;
}

.services__head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 0;
  padding-bottom: 40px;
  border-bottom: 2px solid var(--charcoal-dark);
}

.services__title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 800;
  /* text-transform: capitalize; */
  color: var(--charcoal-dark);
  line-height: .95;
  letter-spacing: -.01em;
}
.services__title span { color: var(--orange); }

.services__intro {
  font-size: 15px;
  line-height: 1.75;
  color: var(--charcoal);
  opacity: .75;
  font-weight: 300;
  padding-bottom: 6px;
}

/* Column headers */
.services__cols {
  display: grid;
  grid-template-columns: 1fr 200px 80px;
  gap: 0;
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-light);
}
.services__col-label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--orange);
  opacity: 1;
  padding: 8px 16px 8px 0;
}

/* Service rows */
.svc-row {
  display: grid;
  grid-template-columns: 1fr 200px 80px;
  gap: 0;
  border-bottom: 1px solid var(--gray-light);
  cursor: pointer;
  transition: background .18s;
  position: relative;
}
.svc-row:hover { background: var(--off-white); }
.svc-row.active { background: var(--off-white); }
.svc-row.active .svc-row__index { color: var(--orange); }
.svc-row.active .svc-row__chevron { transform: rotate(90deg); }

.svc-row__index {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--gray-mid);
  padding: 28px 16px 28px 0;
  transition: color .2s;
  display: flex;
  align-items: flex-start;
}

.svc-row__main {
  padding: 28px 24px 28px 0;
}

.svc-row__name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  text-transform: capitalize;
  letter-spacing: .02em;
  color: var(--charcoal-dark);
  margin-bottom: 6px;
  line-height: 1;
}

.svc-row__detail {
  font-size: 14px;
  line-height: 1.65;
  color: var(--charcoal-dark);
  opacity: 1;
  font-weight: 400;
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s cubic-bezier(.22,1,.36,1), opacity .3s;
  opacity: 0;
}
.svc-row.active .svc-row__detail {
  max-height: 120px;
  opacity: 1;
  margin-top: 10px;
}

.svc-row__category {
  padding: 28px 16px;
  display: flex;
  align-items: flex-start;
}
.svc-row__cat-tag {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 4px 10px;
    border: 1px solid var(--gray-light);
    color: var(--charcoal-dark);
    opacity: 1;
    white-space: nowrap;
}
.svc-row.active .svc-row__cat-tag {
  border-color: var(--orange);
  color: var(--orange);
  opacity: 1;
}

.svc-row__chevron {
  padding: 28px 0;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  color: var(--gray-mid);
  transition: transform .3s, color .2s;
}
.svc-row:hover .svc-row__chevron { color: var(--orange); }

/* Left orange bar on active */
.svc-row.active::before {
  content: '';
  position: absolute;
  left: -40px; top: 0;
  width: 4px; height: 100%;
  background: var(--orange);
}

/* ══════════════════════
   §04 COMPLIANCE / OPS
══════════════════════ */
.compliance {
      margin-top: 100px;
      position: relative;
    }

    .compliance__inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      min-height: 540px;
      /* max-width: 1400px; */
      margin: 0 auto;
    }

    /* ── Left panel ── */
    .compliance__left {
      background: var(--off-white);
      background-size: 32px 32px;
      padding: 72px 64px;
      position: relative;
    }

    .compliance__title {
      font-family: var(--font-display);
      font-size: clamp(40px, 5vw, 68px);
      font-weight: 800;
      text-transform: capitalize;
      color: var(--charcoal-dark);
      line-height: .95;
      letter-spacing: -.01em;
      margin-bottom: 24px;
      position: relative;
      z-index: 1;
    }
    .compliance__title span { color: var(--orange); }

    .compliance__body {
      font-size: 20px;
      line-height: 1.8;
      color: var(--charcoal-dark);
      font-weight: 400;
      position: relative;
      z-index: 1;
      margin-bottom: 40px;
      max-width: 700px;
  }

    .compliance__features {
      display: flex;
      flex-direction: column;
      gap: 12px;
      position: relative;
      z-index: 1;
    }
    .compliance__feat {
      display: flex;
      align-items: center;
      gap: 14px;
      font-size: 14.5px;
      color: var(--charcoal-dark);
      font-weight: 500;
    }
    .compliance__feat-check {
      width: 24px; height: 24px;
      background: var(--orange);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      color: var(--white);
    }

    /* ── Right panel: illustration ── */
    .compliance__right {
      background: var(--white);
      border-left: 1px solid var(--gray-light);
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: stretch;
    }

    /* Corner tick marks – blueprint accent */
    /* .compliance__right::before,
    .compliance__right::after {
      content: '';
      position: absolute;
      width: 14px;
      height: 14px;
      border-color: var(--orange);
      border-style: solid;
      z-index: 3;
    } */
    .compliance__right::before {
      top: 16px; left: 16px;
      border-width: 2px 0 0 2px;
    }
    .compliance__right::after {
      bottom: 16px; right: 16px;
      border-width: 0 2px 2px 0;
    }

    .compliance__illustration {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      display: block;
    }


    /* ── Responsive ── */
    @media (max-width: 860px) {
      .compliance__inner {
        grid-template-columns: 1fr;
      }
      .compliance__right {
        border-left: none;
        border-top: 1px solid var(--gray-light);
        min-height: 340px;
      }
      .compliance__left {
        padding: 56px 32px;
      }
    }

/* ══════════════════════
   PARTNER
══════════════════════ */
.partner {
  padding: 120px 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.partner__bg-text {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: clamp(120px, 16vw, 200px);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--gray-light);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  letter-spacing: -.04em;
  line-height: 1;
  opacity: .6;
}

.partner__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  max-width: 1360px;
  margin: 0 auto;
}

.partner__card {
  border: 1.5px solid var(--gray-light);
  background: var(--off-white);
  background-image:
    linear-gradient(var(--rule) 1px, transparent 1px),
    linear-gradient(90deg, var(--rule) 1px, transparent 1px);
  background-size: 32px 32px;
  box-shadow: 6px 6px 0 0 var(--gray-light);
  padding: 52px 48px 48px;
  position: relative;
}

.partner__card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--orange);
}

.partner__card-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.partner__card-tag::after { content: ''; flex: 1; height: 1px; background: var(--gray-light); }

.partner__title {
  font-family: var(--font-display);
  font-size: clamp(38px, 5vw, 62px);
  font-weight: 800;
  color: var(--charcoal-dark);
  line-height: .92;
  letter-spacing: -.02em;
  margin-bottom: 24px;
}
.partner__title span { color: var(--orange); }

.partner__body {
  font-size: 18px;
  line-height: 1.78;
  color: var(--charcoal-dark);
  opacity: 1;
  font-weight: 400;
  margin-bottom: 44px;
}

.partner__ctas {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.partner__card-email {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--charcoal-dark);
  font-family: var(--font-ui);
  font-size: 14.5px;
  font-weight: 500;
  padding: 14px 18px;
  border: 1.5px solid var(--gray-light);
  background: var(--white);
  transition: border-color .2s, color .2s;
}
.partner__card-email:hover { border-color: var(--orange); color: var(--orange); }

/* ══════════════════════
   RESPONSIVE
══════════════════════ */
@media (max-width: 1024px) {
  .partner__inner { max-width: 100%; }
  .partner__bg-text { display: none; }
}

@media (max-width: 768px) {
  .partner__card { padding: 36px 28px 32px; }
}

/* ══════════════════════
   RESPONSIVE
══════════════════════ */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero__right { height: 420px; }
  .hero__slash { display: none; }
  .hero__left { padding: 80px 40px 100px; }
  .services__head { grid-template-columns: 1fr; gap: 24px; }
  .compliance__inner { grid-template-columns: 1fr; }
  .intro-band__inner { grid-template-columns: 1fr; }
  .intro-band__num { display: none; }
  .intro-band__aside { border-left: none; border-top: 1px solid var(--gray-light); flex-direction: row; flex-wrap: wrap; }
  .svc-row__category { display: none; }
  .services__cols { grid-template-columns: 1fr 80px; }
  .svc-row { grid-template-columns: 1fr 80px; }
}

@media (max-width: 768px) {
  .wrap { padding: 0 20px; }
  .hero__left { padding: 60px 20px 80px; }
  .hero__strip-item:nth-child(3) { display: none; }
  /* .services__cols { grid-template-columns: 1fr 40px; } */
  .svc-row { grid-template-columns: 1fr 40px; }
  .compliance__left, .compliance__right { padding: 48px 28px; }
}