/* ============================================================================
   About band 1 — hero.  Figma 705:332556 (1512 x 890) / 705:388860 (393x1222).
   Every value below is read out of the node JSON. Prefix: .abh-
   ========================================================================= */

.abh {
  position: relative;
  height: 890px;
  overflow: hidden;                 /* 705:332556 clipsContent: true */
  background: #000;
  isolation: isolate;
}

/* 705:332556 frame fill — IMAGE, scaleMode FILL */
.abh-bg {
  position: absolute; inset: 0;
  background: url('/assets/figma/ab-hero-bg.webp') center/cover no-repeat;
}

/* 705:332557 "Ellipse 473" — x -776, y 117, 1693x956, #051F1D,
   LAYER_BLUR 516 (Figma radius is ~2x the CSS blur value). The node also
   carries BACKGROUND_BLUR 316; stacking both renders opaque in Chrome, so
   only the layer blur ships. DECLARED DEVIATION. */
.abh-glow {
  position: absolute;
  left: 50%; margin-left: -1532px;  /* -756 + -776 */
  top: 117px; width: 1693px; height: 956px;
  border-radius: 50%;
  background: var(--af-hero-glow);
  filter: blur(258px);
}
.abh-glow--m { display: none; }

/* 705:332558 "Overlay" — 1512x900 at y 0 */
.abh-overlay {
  position: absolute; left: 0; right: 0; top: 0; height: 900px;
  background: linear-gradient(89.8deg,
    rgba(5,63,59,.62) 0%,
    rgba(194,213,213,0) 21.36%,
    rgba(194,213,213,0) 83.19%,
    rgba(5,63,59,.4) 100%);
}

/* the fixed 1512 stage that POSITIONS content: it must stay centred, or the
   whole design left-aligns above 1512. */
.abh-stage {
  position: absolute; left: 50%; margin-left: -756px;
  top: 0; width: 1512px; height: 890px;
}

/* navbar sits at x=10 y=10 inside the stage — same as the shared component */
.abh-stage .afx-nav { margin: 10px auto 0; }

/* ------------------------------------------------------------- left column
   705:332625 — 46,198, 1054x452, column, gap 32 */
.abh-left {
  position: absolute; left: 46px; top: 198px; width: 1054px;
  display: flex; flex-direction: column; gap: 32px; align-items: flex-start;
}

/* 705:332626 — DM Sans 500 / 14 / 21 */
.abh-eyebrow {
  margin: 0; width: 330px;
  font-family: var(--font-ui);
  font-weight: var(--w-medium);
  font-size: 14px; line-height: 21px;
  color: var(--af-white);
}

/* 705:332627 — SF Pro 510 / 110 / 99 / ls -3.3, fixed 760 so it wraps to two
   lines exactly as drawn. The node carries a solid white fill with a
   near-white gradient over it; the gradient is #F8F8F8 -> #FFFFFF, which is
   indistinguishable from white at this size, so it ships flat white. */
.abh-h1 {
  margin: 0; width: 760px;
  font-family: var(--font-display);
  font-weight: var(--w-medium);
  font-size: 110px; line-height: 99px; letter-spacing: -3.3px;
  color: var(--af-white);
}

/* 705:332628 — SF Pro 510 / 18 / 27 / ls -0.36, node opacity .8 */
.abh-lead {
  margin: 0; width: 536px;
  font-family: var(--font-sans);
  font-weight: var(--w-medium);
  font-size: 18px; line-height: 27px; letter-spacing: -.36px;
  color: var(--af-white); opacity: .8;
}

/* 705:332629 — row, gap 12 */
.abh-ctas { display: flex; flex-direction: row; gap: 12px; align-items: flex-start; }

/* 705:332630 — 293x56, radius 100, padding 18/32, gap 8, fill #E1FFA0,
   1.5px INSIDE gradient stroke at 60%, shadow 2 14 24 rgba(38,63,66,.12).
   Label 705:332630/194:75573 carries textCase TITLE. Ink #001D21 is set
   explicitly — never inherited. */
.abh-lime {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 56px; padding: 18px 32px;
  border-radius: var(--r-pill);
  background: var(--af-lime);
  box-shadow: 2px 14px 24px 0 rgba(38,63,66,.12);
  font-family: var(--font-sans);
  font-weight: var(--w-semi);
  font-size: 16px; line-height: 19.09px; letter-spacing: -.48px;
  text-transform: capitalize;
  color: var(--af-ink-teal);
  text-decoration: none; white-space: nowrap;
  transition: transform var(--t-instant) var(--e-out),
              box-shadow var(--t-base) var(--e-out);
}
.abh-lime::after {
  content: ''; position: absolute; inset: 0; border-radius: inherit;
  padding: 1.5px; opacity: .6;
  background: var(--af-card-g);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask-composite: exclude;
  pointer-events: none;
}
.abh-chev { width: 20px; height: 20px; display: block; flex: none;
  transition: transform var(--t-fast) var(--e-out); }

/* 705:332631 — 187x55, radius 50, padding 18/32, 1px rgba(255,255,255,.08),
   BACKGROUND_BLUR 28 -> blur(14px). Label textCase TITLE. */
.abh-ghost {
  display: inline-flex; align-items: center; justify-content: center;
  height: 55px; padding: 18px 32px;
  border-radius: var(--r-50);
  border: 1px solid var(--w-08);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  font-family: var(--font-sans);
  font-weight: var(--w-medium);
  font-size: 16px; line-height: 19.09px; letter-spacing: -.48px;
  text-transform: capitalize;
  color: var(--af-white);
  text-decoration: none; white-space: nowrap;
  transition: background-color var(--t-fast) var(--e-out),
              transform var(--t-instant) var(--e-out);
}

/* ------------------------------------------------------------- name marquee
   705:332560 is the 667x195 mask rectangle; its horizontal gradient becomes
   the mask, so the chip rows fade out at both ends exactly as drawn. */
.abh-marq {
  position: absolute; left: 799px; top: 455px; width: 667px; height: 195px;
  -webkit-mask-image: linear-gradient(270deg,
      rgba(0,0,0,0) 4.07%, rgba(0,0,0,.9598) 20.15%, #000 49.52%,
      rgba(0,0,0,.9598) 77.49%, rgba(0,0,0,0) 92.97%);
          mask-image: linear-gradient(270deg,
      rgba(0,0,0,0) 4.07%, rgba(0,0,0,.9598) 20.15%, #000 49.52%,
      rgba(0,0,0,.9598) 77.49%, rgba(0,0,0,0) 92.97%);
}
/* 705:332561 "Group 2147258033" — 947x177 at x 767 y 462, i.e. -32,7 inside
   the mask window. The three rows are absolutely placed, as drawn. */
.abh-marq__in { position: absolute; left: -32px; top: 7px; width: 947px; height: 177px; }
.abh-marq__row {
  position: absolute; height: 54px;
  display: flex; flex-direction: row; gap: 6px; align-items: center;
}
.abh-marq__row--a { left: 0;    top: 0;   width: 773px; }   /* 705:332591 */
.abh-marq__row--b { left: 123px; top: 63px; width: 775px; } /* 705:332562 */
.abh-marq__row--c { left: 0;    top: 123px; width: 947px; } /* 705:332575 */

/* chip — e.g. 705:332592: h 54, padding 4 24 4 4, gap 8, radius 63,
   fill linear-gradient(147.3deg,#C1CDCD,#F1F7F7), 2px gradient stroke. */
.abh-chip {
  position: relative; flex: none;
  display: inline-flex; align-items: center; gap: 8px;
  height: 54px; padding: 4px 24px 4px 4px;
  border-radius: 63px;
  background: linear-gradient(147.3deg, #C1CDCD 0%, #F1F7F7 100%);
  font-family: var(--font-sans);
  font-weight: var(--w-semi);
  font-size: 16px; line-height: 24px; letter-spacing: -.48px;
  color: #3A3A3A; white-space: nowrap;
}
.abh-chip::after {
  content: ''; position: absolute; inset: 0; border-radius: inherit;
  padding: 2px;
  background: linear-gradient(90deg, rgba(255,255,255,.2) 0%, rgba(255,255,255,.5) 100%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask-composite: exclude;
  pointer-events: none;
}
.abh-chip img {
  width: 46px; height: 46px; flex: none; display: block;
  border-radius: 50%; object-fit: cover;
}

/* ------------------------------------------------------------------- stats
   705:332604 — 46,781, 1420x90, row, gap 40, four FILL items of 325.
   Each item: 1px hairline (705:332606, rgba(255,255,255,.25)), 17px gap,
   then label + value at gap 4. */
.abh-stats {
  position: absolute; left: 46px; top: 781px; width: 1420px; height: 90px;
  margin: 0;
  display: flex; flex-direction: row; gap: 40px; align-items: center;
}
.abh-stat {
  position: relative;
  width: 325px; flex: none;
  padding-top: 17px;                /* 705:332605 column gap */
  display: flex; flex-direction: column; align-items: flex-start;
}
/* 705:332606 "Vector 3168" is a ZERO-height vector with a 1px CENTER stroke,
   so it must not occupy layout space — absolute, not a flex child. */
.abh-stat::before {
  content: ''; position: absolute; left: 0; top: 0; width: 100%; height: 1px;
  background: var(--w-25); border-radius: 4px;
}
.abh-stat__in {
  /* 705:332607 "Frame 2147259128" — column, gap 4. The hairline above is a
     0-height vector, so the 17px gap sits between it and THIS block only. */
  display: flex; flex-direction: column; gap: 4px; align-items: flex-start;
}
.abh-stat dt {
  margin: 0;
  font-family: var(--font-alt);
  font-weight: var(--w-regular);
  font-size: 14px; line-height: 21px;
  color: var(--af-white); opacity: .8;
}
.abh-stat dd {
  margin: 0;
  font-family: var(--font-alt);
  font-weight: var(--w-semi);
  font-size: 32px; line-height: 48px;
  color: var(--af-white);
}

/* RETIRED 3 Aug 2026 — the mobile burger + panel that used to live here
   were replaced by the one shared overlay in assets/atlas-mobilenav.css
   (Figma 774:58836). Markup: fragments/mobilenav.html. */

/* --------------------------------------------------------------- motion */
@media (hover: hover) and (pointer: fine) {
  .abh-lime:hover  { box-shadow: 2px 18px 30px 0 rgba(38,63,66,.22); }
  .abh-lime:hover .abh-chev { transform: translateX(3px); }
  .abh-ghost:hover { background-color: var(--w-06); }
}
.abh-lime:active, .abh-ghost:active { transform: scale(.97); }
.abh a:focus-visible, .abh button:focus-visible {
  outline: 2px solid var(--af-lime); outline-offset: 3px; border-radius: 4px;
}

/* ================================================================= mobile
   705:388860 — 393 x 1222. Never modifies a desktop rule.                 */
@media (max-width: 767px) {
  .abh { height: 1222px; }

  .abh-stage {
    left: 0; margin-left: 0; width: 100%; height: 1222px;
  }

  /* 705:388861 "Overlay" — starts at y 56, 393x1166, image + the same
     89.8deg wash. The image fill is STRETCH with an imageTransform; at this
     width `cover` centred is within a pixel of it. */
  .abh-bg { top: 56px; }
  .abh-overlay { top: 56px; height: 1166px; }

  /* 705:388862 / 705:388863 — two glows, 1311x740 */
  .abh-glow    { left: -624px; margin-left: 0; top: 146px; width: 1311px; height: 740px; filter: blur(258px); }
  .abh-glow--m { display: block; left: -588px; margin-left: 0; top: 852px; width: 1311px; height: 740px; }

  /* 705:388875 — 8,64, 377x64, radius 48, padding 8, SPACE_BETWEEN */
  .abh-stage .afx-nav--ab {
    position: absolute; left: 8px; top: 64px; right: auto;
    width: 377px; max-width: none; height: 64px;
    margin: 0; padding: 8px;
    justify-content: space-between;
  }
  .afx-nav--ab .afx-nav__brand { margin-left: 0; padding: 0 14.43px; }
  .afx-nav--ab .afx-nav__logo,
  .afx-nav--ab .afx-nav__logo img { width: 135.3px; height: 18px; }
  .afx-nav--ab .afx-nav__actions { gap: 8px; padding-right: 0; }
  .afx-nav--ab .afx-nav__globe { width: 48px; height: 48px; }
  .afx-nav--ab .afx-nav__cta { display: none; }

  /* 705:388864 — 24,188, 345x517, gap 24 */
  .abh-left { left: 24px; top: 188px; width: 345px; gap: 24px; }
  .abh-eyebrow { width: 330px; }
  /* 705:388869 — SF Pro 510 / 64 / 57.6 / ls -1.92, box 345x174 */
  .abh-h1 { width: 345px; font-size: 64px; line-height: 57.6px; letter-spacing: -1.92px; }
  /* 705:388870 — 345x135, same 18/27 */
  .abh-lead { width: 345px; }
  /* 705:388871 — column, gap 12, both buttons full width */
  .abh-ctas { flex-direction: column; gap: 12px; width: 345px; }
  .abh-lime, .abh-ghost { width: 345px; }

  /* 705:388918 — window 481x195 at x -44; group at -178,792 -> -134,7 */
  .abh-marq { left: -44px; top: 785px; width: 481px; height: 195px; }
  .abh-marq__in { left: -134px; top: 7px; }

  /* 705:388888 — 24,1060, 345x138: two rows of two 166.5 items, gaps 12 */
  .abh-stats {
    left: 24px; top: 1060px; width: 345px; height: 138px;
    flex-wrap: wrap; gap: 12px; align-content: flex-start;
  }
  .abh-stat { width: 166.5px; padding-top: 12px; }
  .abh-stat__in { gap: 0; }
  .abh-stat dd { margin: 0; font-size: 20px; line-height: 30px; }
}


/* ---------------------------------------------------------------------------
   MOBILE PERFORMANCE, 3 Aug 2026
   This decorative glow carries filter: blur(258px) over a box ~1693x956. Blur
   cost is O(area x radius), so on a phone GPU it is one of the most expensive
   things on the page — and because it sits in the backdrop root, anything that
   samples the backdrop (the mobile menu's overlay) had to resolve it first,
   which took ~15s. A 258px-blurred solid ellipse is, visually, a radial
   gradient; below 768 it is drawn as one, for nothing.
   ------------------------------------------------------------------------ */
@media (max-width: 767px) {
  .abh-glow {
    filter: none;
    background: radial-gradient(closest-side, var(--af-hero-glow) 0%, rgba(5,31,29,0) 100%);
  }
}
