:root {
  --blue-gray: #272f5d;
  --blue: #202b97;
  --mint: #c8f7c9;
  --module: #1e2128;
  --off-black: #0a0a0a;
  --slate: #6b758e;
  --lavender: #d2d5e4;
  --med-gray: #c5c5c5;
  --dark-gray: #4f4f4f;
  --very-light-gray: #f4f4f4;
  --white: #ffffff;
  --ease-tile: cubic-bezier(0.77, 0, 0.18, 1);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

a {
  text-decoration-thickness: 0.03em;
  text-underline-position: from-font;
}

html {
  scrollbar-width: none;
}
/* desktop scroll locks: hero, WHO WE ARE fully revealed, WHAT WE DO
   statement over the globe, and the two-part statement frame */
@media (min-width: 768px) {
  html { scroll-snap-type: y proximity; }
  .hero,
  .founders,
  #statement-a { scroll-snap-align: start; }
  /* the WHAT WE DO lock is a JS smooth-scroll assist instead of a CSS
     snap point, so settling there eases in rather than jumping */
  /* rest deep enough into the pin that lines, bios and stats are all in */
  .founders { scroll-margin-top: -28vh; }
  /* both statements share one locked frame around the globe */
  #statement-a { height: 100vh; }
  #statement-b { height: 0; }
  #statement-a .statement-1 { top: 20%; }
  #statement-b .statement-2 { top: -14vh; }
  .operate { margin-top: 12vh; }
}
html::-webkit-scrollbar { display: none; }

body {
  background: var(--blue-gray);
  font-family: "NB International Pro", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  font-weight: 300;
  color: var(--lavender);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: background-color 1s ease;
}
body.footer-active { background: var(--off-black); }

.svg-defs { position: absolute; width: 0; height: 0; overflow: hidden; }

/* ---------- frame ---------- */

.frame {
  position: fixed;
  inset: 0;
  border: 4px solid var(--blue-gray);
  border-radius: 7px;
  pointer-events: none;
  z-index: 60;
  transition: border-color 1s ease;
}
body.footer-active .frame { border-color: var(--off-black); }

/* ---------- module ---------- */

.module {
  position: relative;
  margin: 4px;
  border-radius: 4px;
  background: var(--module);
  overflow: hidden;
  /* clip instead of hidden so position:sticky keeps working inside */
  overflow: clip;
}

/* ---------- globe ---------- */

.globe { position: relative; }
.globe svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  overflow: visible;
}
.globe .globe-base { mix-blend-mode: luminosity; }
.globe .globe-sheen {
  color: #ffffff;
  opacity: 0.35;
  -webkit-mask-image: linear-gradient(115deg, transparent 42%, #000 50%, transparent 58%);
  mask-image: linear-gradient(115deg, transparent 42%, #000 50%, transparent 58%);
  -webkit-mask-size: 260% 260%;
  mask-size: 260% 260%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: 120% 120%;
  mask-position: 120% 120%;
  animation: sheen 7s ease-in-out infinite;
}
@keyframes sheen {
  0%   { -webkit-mask-position: 120% 120%; mask-position: 120% 120%; }
  45%  { -webkit-mask-position: -20% -20%; mask-position: -20% -20%; }
  100% { -webkit-mask-position: -20% -20%; mask-position: -20% -20%; }
}

/* ---------- blue tile ---------- */

.blue-tile {
  position: absolute;
  width: 600px;
  height: 440px;
  background: var(--blue);
  overflow: hidden;
  z-index: 30;
}

.hero-tile {
  top: 0;
  left: 0;
  transform: translateY(-101%);
  transition: transform 1.1s var(--ease-tile);
}
body.ready .hero-tile { transform: translateY(0); }

.tile-globe {
  position: absolute;
  width: 1340px;
  height: 670px;
  bottom: 105px;
  left: calc(50% + 420px);
  transform: translateX(-50%);
  color: var(--module);
}

.tile-copy {
  position: absolute;
  left: 16px;
  bottom: 16px;
  width: 310px;
  font-size: 14px;
  line-height: 1.2;
  color: var(--mint);
}

/* ---------- hero ---------- */

.hero { height: 100vh; height: 100svh; }

/* ---------- founders ---------- */

.founders {
  position: relative;
  height: 190vh;
  height: 190svh;
}
.founders-pin {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100svh;
  /* above the fixed globe so the overlaid stats always sit over it */
  z-index: 5;
}
.founders-strip {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-template-rows: auto 1px 1fr;
  column-gap: 10px;
  padding: 24px 16px 16px;
  transform: translate3d(0, calc((1 - var(--strip, 0)) * 100%), 0);
  will-change: transform;
  z-index: 2;
}
.founders-head {
  grid-column: 1;
  grid-row: 1;
  padding: 64px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.founders-lead-body {
  grid-column: 1;
  grid-row: 3;
  padding: 16px 16px 64px;
}
.founders-head,
.founders-lead-body {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.founders-head.line-in,
.founders-lead-body.line-in { opacity: 1; transform: translateY(0); }
.founders-lead-body.line-in { transition-delay: 0.15s; }
.founders-bio {
  position: relative;
  grid-row: 3;
  align-self: start;
  padding: 64px 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.founders-bio.line-in { opacity: 1; transform: translateY(0); }
#bio-chad { grid-column: 2; }
#bio-brandon { grid-column: 3; }

/* connected lines: lead vertical runs off the page (clearing the docked
   logo by 16px), the rule runs from it off the right edge, and the bio
   verticals hang flush from the rule */
.lead-line {
  position: absolute;
  left: 16px;
  top: 67px;
  bottom: 15vh;
  width: 1px;
  z-index: 3;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
/* the streets never intersect the globe: they fade out the moment the
   pin releases and the globe starts rising */
.founders.lines-out .lead-line,
.founders.lines-out .founders-rule { opacity: 0; }
.founders.lines-out .founders-bio::before,
.founders.lines-out .founders-bio.line-in::after { opacity: 0; }
/* the strip copy goes with them so it never bleeds into the next frame
   on short viewports */
.founders.lines-out .founders-head,
.founders.lines-out .founders-lead-body,
.founders.lines-out .founders-bio {
  opacity: 0;
  transition: opacity 0.4s ease;
}
.lead-line::before,
.founders-bio::before {
  content: "";
  position: absolute;
  background: rgba(244, 244, 244, 0.28);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 1.4s var(--ease-out);
}
.lead-line::before { inset: 0; }
.founders-bio::before {
  left: 0;
  top: 0;
  width: 1px;
  height: 52vh;
}
.lead-line.line-in::before,
.founders-bio.line-in::before { transform: scaleY(1); }
.lead-line::after,
.founders-bio::after {
  content: "";
  position: absolute;
  background:
    radial-gradient(circle closest-side, var(--mint) 0 60%, transparent 62%),
    linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.6) 50%, transparent);
  background-size: 7px 7px, 1px 220px;
  background-repeat: no-repeat, no-repeat;
  background-position: 0 -8px, 3px -220px;
  opacity: 0;
}
.lead-line::after { inset: 0 -3px; }
.founders-bio::after {
  left: -3px;
  top: 0;
  width: 7px;
  height: 52vh;
}
.lead-line.line-in::after,
.founders-bio.line-in::after {
  opacity: 1;
  animation: line-pulse 6s linear 0.2s infinite;
}
#bio-chad.line-in::after { animation-delay: 1.1s; }
#bio-brandon.line-in::after { animation-delay: 1.3s; }
@keyframes line-pulse {
  0%   { background-position: 0 -8px, 3px -220px; }
  45%  { background-position: 0 calc(100% + 8px), 3px calc(100% + 220px); }
  100% { background-position: 0 calc(100% + 8px), 3px calc(100% + 220px); }
}

.founders-headline {
  font-size: 24px;
  font-weight: 300;
  line-height: 1.09;
  letter-spacing: -0.04em;
  color: var(--mint);
}
.founders-body {
  font-size: 14px;
  line-height: 1.2;
  color: var(--med-gray);
}
.founders-bio-lede {
  font-size: 14px;
  line-height: 1.2;
  color: var(--white);
}

/* rule under the founding headline: from the lead line off the right edge */
.founders-rule {
  grid-column: 1 / -1;
  grid-row: 2;
  position: relative;
  height: 1px;
  margin-right: -16px;
  z-index: 3;
  transition: opacity 0.4s ease;
}
.founders-rule-fill {
  position: absolute;
  inset: 0;
  background: rgba(244, 244, 244, 0.28);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.8s var(--ease-out);
}
.founders-rule.line-in .founders-rule-fill { transform: scaleX(1); }
.founders-rule-sheen {
  position: absolute;
  inset: -3px 0;
  background:
    radial-gradient(circle closest-side, var(--mint) 0 60%, transparent 62%),
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6) 50%, transparent);
  background-size: 7px 7px, 220px 1px;
  background-position: -8px 0, -220px 3px;
  background-repeat: no-repeat, no-repeat;
  opacity: 0;
}
.founders-rule.line-in .founders-rule-sheen {
  opacity: 1;
  animation: rule-pulse 6s linear 0.6s infinite;
}
@keyframes rule-pulse {
  0%   { background-position: -8px 0, -220px 3px; }
  45%  { background-position: calc(100% + 8px) 0, calc(100% + 220px) 3px; }
  100% { background-position: calc(100% + 8px) 0, calc(100% + 220px) 3px; }
}

/* desktop: line growth is scrubbed by scroll (vars set from JS),
   classes only drive the sheen and the bio rise */
@media (min-width: 768px) {
  .lead-line::before,
  .lead-line.line-in::before {
    transition: none;
    transform-origin: top;
    transform: scaleY(var(--ll, 0));
  }
  .lead-line::after,
  .lead-line.line-in::after {
    clip-path: inset(0 0 calc((1 - var(--ll, 0)) * 100%) 0);
  }
  .founders-bio::before,
  .founders-bio.line-in::before {
    height: var(--bio-line-h, 52vh);
    transition: opacity 0.4s ease;
    transform-origin: top;
    transform: scaleY(var(--bl, 0));
  }
  .founders-bio::after,
  .founders-bio.line-in::after {
    height: var(--bio-line-h, 52vh);
    transition: opacity 0.4s ease;
    clip-path: inset(0 0 calc((1 - var(--bl, 0)) * 100%) 0);
  }
  .founders-rule-fill,
  .founders-rule.line-in .founders-rule-fill {
    transition: none;
    transform: scaleX(var(--rl, 0));
  }
  .founders-rule-sheen,
  .founders-rule.line-in .founders-rule-sheen {
    clip-path: inset(0 calc((1 - var(--rl, 0)) * 100%) 0 0);
  }
}

/* gray stat boxes: fixed so they stay overlaid past the founders section */
.stats {
  position: fixed;
  top: 0;
  right: 4px;
  width: 332px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  z-index: 30;
}
.stat-box {
  position: relative;
  overflow: hidden;
  background: var(--dark-gray);
  padding: 20px 16px 64px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transform: translateX(calc(100% + 16px));
  transition: transform 0.9s var(--ease-tile);
}
.stats.stats-in .stat-box { transform: translateX(0); transition-delay: 0.4s; }
.stats.stats-in .stat-box:nth-child(2) { transition-delay: 0.52s; }
.stats.stats-out .stat-box { transform: translateX(calc(100% + 16px)); transition-delay: 0s; }
.stat-value {
  font-size: 32px;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--white);
  transition: color 0.4s ease;
}
.stat-value.collapsed { color: var(--mint); }
.stat-label {
  font-size: 10px;
  line-height: 1.2;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--med-gray);
}
.stat-sheen {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 42%, rgba(255, 255, 255, 0.35) 50%, transparent 58%);
  background-size: 260% 260%;
  background-position: 130% 130%;
  background-repeat: no-repeat;
  opacity: 0;
}
.stats.stats-in .stat-sheen { animation: stat-sheen 1s ease-in-out 1.35s 1; }
.stats.stats-in .stat-box:nth-child(2) .stat-sheen { animation-delay: 1.5s; }
@media (min-width: 768px) {
  /* the stack ends flush on the founders rule (--stats-h measured in JS) */
  .stats { height: var(--stats-h); }
  .stat-box { padding-bottom: 48px; flex: 1; min-height: 0; }
}
@keyframes stat-sheen {
  0%   { opacity: 1; background-position: 130% 130%; }
  100% { opacity: 1; background-position: -30% -30%; }
}

/* ---------- intro ---------- */

.intro {
  height: 100vh;
  height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
@media (min-width: 768px) {
  /* overlap the founders release so the viewport is never empty */
  .intro { margin-top: -50vh; }
}
.intro-inner {
  position: relative;
  z-index: 2;
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.9s ease, transform 0.9s var(--ease-out);
  will-change: opacity, transform;
  width: 600px;
  max-width: calc(100% - 32px);
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: center;
}
.intro-inner.in { opacity: 1; transform: translateY(0); }

.eyebrow {
  font-size: 10px;
  line-height: 1.2;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--lavender);
}

.headline {
  font-size: 48px;
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.03em;
  background-image: linear-gradient(128deg, #ffffff 58%, #999999 94%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  background-size: 250% 250%;
  background-position: 100% 100%;
  transition: background-size 1.8s var(--ease-out), background-position 1.8s var(--ease-out);
}
.headline.lit {
  background-size: 100% 100%;
  background-position: 0% 0%;
}

/* ---------- fixed globe ---------- */

.globe-fixed {
  position: fixed;
  top: 50%;
  left: 50%;
  width: min(1340px, 96vw);
  aspect-ratio: 1342 / 672;
  z-index: 1;
  mix-blend-mode: luminosity;
  pointer-events: none;
  color: var(--blue);
  opacity: 0;
  transform: translate(-50%, calc(-50% + 65vh));
  transition: transform 1.5s var(--ease-tile), opacity 1s ease;
}
body.globe-in .globe-fixed { opacity: 1; transform: translate(-50%, -50%); }
@media (min-width: 768px) {
  .globe-fixed { transition: transform 1.1s var(--ease-tile), opacity 0.8s ease; }
}
body.globe-out .globe-fixed { opacity: 0; }
body.footer-active .globe-fixed { opacity: 0; transform: translate(-50%, calc(-50% + 80vh)); }
.globe-fixed .globe-base { mix-blend-mode: normal; }

/* ---------- statements ---------- */

.statement-sec {
  position: relative;
  height: 100vh;
  height: 100svh;
}
#statement-a {
  height: 84vh;
  height: 84svh;
}
.statement {
  position: absolute;
  width: 600px;
  max-width: calc(100vw - 72px);
  font-size: 32px;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--very-light-gray);
  z-index: 2;
}
.statement-1 { top: 26%; left: 36px; }
.statement-2 { top: 14%; right: 32px; text-align: right; }

/* ---------- rise-up effect ---------- */

.rise {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.rise.in { opacity: 1; transform: translateY(0); }

/* ---------- operate ---------- */

.operate {
  position: relative;
  min-height: 100vh;
}
.pillar {
  position: absolute;
  inset: 0 auto 0 0;
  width: 55%;
  min-width: 340px;
  z-index: 2;
}
@media (min-width: 768px) {
  /* content-sized, centered on the page */
  .operate { min-height: 0; }
  .pillar { position: static; width: 100%; }
  .operate .pillar-inner {
    padding: 16px 16px 0;
    justify-content: center;
  }
}
.pillar-inner {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px;
}

.vertical-label {
  font-size: 10px;
  line-height: 1.2;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--med-gray);
  writing-mode: vertical-rl;
  text-orientation: sideways;
  transform: rotate(180deg);
  white-space: nowrap;
}

.steps {
  list-style: none;
  position: relative;
  padding: 64px 16px;
  width: 283px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.steps-heading {
  font-size: 10px;
  line-height: 1.2;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--med-gray);
  white-space: nowrap;
}
.pillar .vertical-label { display: none; }

.steps::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(244, 244, 244, 0.28);
  transform: scaleY(var(--line, 0));
  transform-origin: top;
  will-change: transform;
}
.steps::after {
  content: "";
  position: absolute;
  left: -3px;
  top: 0;
  bottom: 0;
  width: 7px;
  background:
    radial-gradient(circle closest-side, var(--mint) 0 60%, transparent 62%),
    linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.6) 50%, transparent);
  background-size: 7px 7px, 1px 220px;
  background-repeat: no-repeat, no-repeat;
  background-position: 0 -8px, 3px -220px;
  clip-path: inset(0 0 calc((1 - var(--line, 0)) * 100%) 0);
  opacity: 0;
  pointer-events: none;
}
.steps.line-live::after {
  opacity: 1;
  animation: line-pulse 6s linear 0.3s infinite;
}

.step {
  width: 250px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  opacity: 0.1;
  transition: opacity 1.1s ease;
}
.step.in { opacity: 1; }
.step-num {
  font-size: 10px;
  line-height: 1.2;
  letter-spacing: 1px;
  color: var(--med-gray);
}
.step-title {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.2;
  color: var(--white);
}
.step-body {
  font-size: 14px;
  line-height: 1.2;
  color: var(--med-gray);
}

/* ---------- clients ---------- */

.clients {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-template-rows: auto 1px auto;
  align-content: start;
  column-gap: 10px;
  padding: 24px 16px 16px;
  z-index: 2;
}
.clients-head {
  grid-column: 1 / -1;
  grid-row: 1;
  padding: 64px 16px 16px;
}
.clients-services {
  grid-column: 1 / -1;
  grid-row: 2;
  padding: 16px 16px 64px;
}
.clients-services p {
  font-size: 24px;
  font-weight: 300;
  line-height: 1.09;
  letter-spacing: -0.04em;
  color: var(--mint);
}
.clients-head,
.clients-services {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.clients.line-in .clients-head,
.clients.line-in .clients-services { opacity: 1; transform: translateY(0); }
.clients.line-in .clients-services { transition-delay: 0.15s; }

.clients-line {
  position: absolute;
  left: 16px;
  top: 0;
  height: var(--clients-line-h, 280px);
  width: 1px;
  z-index: 3;
  pointer-events: none;
}
.clients-line::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(244, 244, 244, 0.28);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 1.4s var(--ease-out);
}
.clients.line-in .clients-line::before { transform: scaleY(1); }
.clients-line::after {
  content: "";
  position: absolute;
  inset: 0 -3px;
  background:
    radial-gradient(circle closest-side, var(--mint) 0 60%, transparent 62%),
    linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.6) 50%, transparent);
  background-size: 7px 7px, 1px 220px;
  background-repeat: no-repeat, no-repeat;
  background-position: 0 -8px, 3px -220px;
  opacity: 0;
}
.clients.line-in .clients-line::after {
  opacity: 1;
  animation: line-pulse 6s linear 1s infinite;
}

.clients-rule {
  grid-column: 1 / -1;
  grid-row: 3;
  position: relative;
  height: 1px;
  margin-right: -16px;
  z-index: 3;
}
.clients-rule-fill {
  position: absolute;
  inset: 0;
  background: rgba(244, 244, 244, 0.28);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.8s var(--ease-out);
}
.clients.line-in .clients-rule-fill { transform: scaleX(1); }
.clients-rule-sheen {
  position: absolute;
  inset: -3px 0;
  background:
    radial-gradient(circle closest-side, var(--mint) 0 60%, transparent 62%),
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6) 50%, transparent);
  background-size: 7px 7px, 220px 1px;
  background-position: -8px 0, -220px 3px;
  background-repeat: no-repeat, no-repeat;
  opacity: 0;
}
.clients.line-in .clients-rule-sheen {
  opacity: 1;
  animation: rule-pulse 6s linear 1.4s infinite;
}

.logo-grid {
  grid-column: 1 / -1;
  grid-row: 4;
  align-self: start;
  position: relative;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-right: -16px;
}

/* traveling pulses on the grid lines */
.grid-pulse {
  position: absolute;
  pointer-events: none;
  opacity: 0;
}
.grid-pulse-h {
  left: 0;
  right: 0;
  height: 7px;
  margin-top: -3px;
  background:
    radial-gradient(circle closest-side, var(--mint) 0 60%, transparent 62%),
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6) 50%, transparent);
  background-size: 7px 7px, 220px 1px;
  background-position: -8px 0, -220px 3px;
  background-repeat: no-repeat, no-repeat;
}
.gp-h1 { top: 160px; }
.gp-h2 { top: 320px; }
.grid-pulse-v {
  top: 0;
  bottom: 0;
  width: 7px;
  margin-left: -3px;
  background:
    radial-gradient(circle closest-side, var(--mint) 0 60%, transparent 62%),
    linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.6) 50%, transparent);
  background-size: 7px 7px, 1px 220px;
  background-position: 0 -8px, 3px -220px;
  background-repeat: no-repeat, no-repeat;
}
.gp-v1 { left: 33.333%; }
.gp-v2 { left: 66.666%; }
.clients.line-in .grid-pulse-h {
  opacity: 1;
  animation: rule-pulse 6s linear infinite;
}
.clients.line-in .gp-h1 { animation-delay: 0.5s; }
.clients.line-in .gp-h2 { animation-delay: 2.4s; }
.clients.line-in .grid-pulse-v {
  opacity: 1;
  animation: line-pulse 6s linear infinite;
}
.clients.line-in .gp-v1 { animation-delay: 1.6s; }
.clients.line-in .gp-v2 { animation-delay: 3.3s; }
.logo-cell {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  border-left: 1px solid rgba(244, 244, 244, 0.28);
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.logo-cell img {
  display: block;
  transform: scale(0.75);
}
.logo-cell:nth-child(n + 4) { border-top: 1px solid rgba(244, 244, 244, 0.28); }
/* shown on mobile only, to keep the 2-column grid even */
@media (min-width: 768px) {
  .logo-cell-mobile { display: none; }
  /* centered header over a full-width grid; no left rail — the
     horizontal lines run the full viewport width */
  .clients {
    grid-template-rows: auto auto 1px auto;
    padding-top: 10vh;
  }
  .clients-line { display: none; }
  .clients-rule { margin-left: -16px; }
  .logo-grid { margin-left: -16px; }
  .logo-cell:nth-child(3n + 1) { border-left: 0; }
  .clients-head {
    text-align: center;
    padding: 64px 16px 0;
  }
  .clients-services {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px 24px;
    padding: 16px;
  }
  .clients-services p + p::before {
    content: "\2022";
    font-size: 14px;
    margin-right: 24px;
    vertical-align: 5px;
  }
}
.clients.line-in .logo-cell { opacity: 1; transform: translateY(0); }
.clients.line-in .logo-cell:nth-child(-n + 3) { transition-delay: 0.1s; }
.clients.line-in .logo-cell:nth-child(n + 4):nth-child(-n + 6) { transition-delay: 0.25s; }
.clients.line-in .logo-cell:nth-child(n + 7):nth-child(-n + 9) { transition-delay: 0.4s; }
.clients.line-in .logo-cell:nth-child(n + 10) { transition-delay: 0.55s; }

/* ---------- footer ---------- */

.footer {
  position: relative;
  height: 100vh;
  height: 100svh;
}

.disclaimer {
  position: absolute;
  z-index: 2;
  top: 16px;
  left: 24px;
  width: 600px;
  max-width: calc(100% - 48px);
  font-size: 10px;
  line-height: 1.2;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--med-gray);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 1s ease 0.3s, transform 1s var(--ease-out) 0.3s;
}
.disclaimer a { color: inherit; }
body.footer-active .disclaimer { opacity: 1; transform: translateY(0); }

.copyright {
  position: absolute;
  z-index: 2;
  top: 50%;
  right: 28px;
  transform: rotate(180deg) translateY(50%);
  color: var(--dark-gray);
  opacity: 0;
  transition: opacity 1s ease 0.5s;
}
body.footer-active .copyright { opacity: 1; }

.footer-tile {
  bottom: 0;
  left: 0;
  transform: translateY(101%);
  transition: transform 1.1s var(--ease-tile) 0.15s;
}
body.footer-active .footer-tile { transform: translateY(0); }

.footer-globe {
  left: auto;
  right: 0;
  transform: none;
}

/* ---------- hud ---------- */

.hud { z-index: 40; }

.logo {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 42;
  transform: translate(calc(50vw - 50%), calc(50vh - 50%));
  transition: transform 0.9s var(--ease-tile), opacity 0.8s ease;
  opacity: 0;
}
body.loaded .logo { opacity: 1; }
body.docked:not(.footer-active) .logo { transform: translate(calc(50vw - 50%), 20px); }
.logo {
  display: flex;
  align-items: center;
  gap: 24px;
}
.logo img { display: block; }
.logo .logo-dream { width: 92.275px; height: 24px; }
.logo .logo-street { width: 84.231px; height: 23.986px; }
.logo .logo-mark { display: block; width: 31px; height: 31px; }

.icon-mark {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 20px;
  height: 20px;
  z-index: 44;
  opacity: 0;
  transition: opacity 0.8s ease 0.2s;
}
body.ready .icon-mark { opacity: 1; }
.icon-mark-lottie { display: block; width: 100%; height: 100%; }

.hud-bottom-left {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 44;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.8s ease, transform 0.8s var(--ease-out);
}
body.ready .hud-bottom-left { opacity: 1; transform: translateY(0); }

.times { display: flex; gap: 16px; }
.clock {
  font-size: 10px;
  line-height: 1.2;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--med-gray);
}
.clock span { display: block; }

.hud-mail {
  font-size: 14px;
  line-height: 1.2;
  color: var(--lavender);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.8s ease;
}
.hud-mail .mail-addr { text-decoration: underline; text-decoration-thickness: 0.03em; text-underline-position: from-font; }
.hud-mail .mail-prefix {
  display: inline-block;
  max-width: 0;
  opacity: 0;
  overflow: hidden;
  vertical-align: bottom;
  white-space: nowrap;
  transition: max-width 0.8s var(--ease-tile), opacity 0.6s ease;
}
body.footer-active .hud-mail { color: var(--mint); }
body.footer-active .hud-mail .mail-prefix { max-width: 130px; opacity: 1; }

.hud-tagline {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 44;
  font-size: 14px;
  line-height: 1.2;
  color: var(--lavender);
  text-align: right;
  opacity: 0;
  transition: opacity 0.8s ease 0.1s;
}
body.ready .hud-tagline { opacity: 1; }

/* ---------- mobile ---------- */

@media (max-width: 767px) {
  .blue-tile { width: 240px; height: 460px; }

  .tile-globe {
    width: 878px;
    height: 439px;
    bottom: 299px;
    left: calc(50% + 162px);
    transform: translateX(-50%);
  }
  .tile-copy { left: 12px; bottom: auto; top: 177px; width: 204px; }

  .logo { gap: 21.7px; }
  .logo .logo-dream { width: 83.345px; height: 21.677px; }
  .logo .logo-street { width: 76.079px; height: 21.665px; }
  .logo .logo-mark { width: 28px; height: 28px; }
  body.docked:not(.footer-active) .logo { transform: translate(calc(50vw - 50%), 20px); }

  .icon-mark { top: 16px; right: 16px; }

  .headline { font-size: 32px; }

  .founders { height: auto; }
  .founders-pin {
    position: static;
    height: auto;
    overflow: visible;
  }
  .founders-strip {
    position: static;
    display: block;
    padding: 12vh 16px 4vh 8px;
    opacity: 0;
    transform: translate3d(0, 9vh, 0);
    transition: transform 1.1s var(--ease-tile), opacity 0.9s ease;
  }
  .founders.strip-in .founders-strip { opacity: 1; transform: translate3d(0, 0, 0); }
  /* left of the fixed footer info; runs past the strip's bottom padding
     to meet the first stat box */
  .lead-line { left: 8px; top: 0; bottom: -6vh; }
  .founders-head { padding: 0 0 16px 16px; }
  /* bottom padding matches the gap the centered bios leave between
     each other, so lead → Chad reads the same as Chad → Brandon */
  .founders-lead-body { padding: 16px 0 64px 16px; }
  .founders-bio {
    min-height: 40svh;
    justify-content: center;
    padding: 32px 0 32px 16px;
  }
  .founders-bio::before,
  .founders-bio::after { display: none; }
  .stats {
    position: relative;
    top: auto;
    right: auto;
    left: -4px;
    width: calc(100% + 8px);
    margin: 3vh 0 18vh;
  }

  .globe-fixed { width: 670px; }

  .statement {
    font-size: 20px;
    line-height: 1.1;
    width: 300px;
    max-width: calc(100vw - 40px);
  }
  .statement-1 { top: 22%; left: 20px; }
  .statement-2 { right: 20px; }
  /* both halves of the sentence share one viewport, statement-2 low */
  #statement-b { height: 0; }
  #statement-b .statement-2 { top: -20vh; }

  .pillar { width: 100%; min-width: 0; }
  .pillar .vertical-label { display: none; }
  .pillar-inner {
    height: 100%;
    padding: 16px 16px 0 8px;
  }
  .steps {
    width: 100%;
    height: 100%;
  }

  .clients {
    display: block;
    min-height: 0;
    padding: 12vh 16px 8vh 8px;
  }
  .clients-head { padding: 0 0 16px 16px; }
  .clients-line {
    left: 8px;
    top: 0;
  }
  .clients-services { padding: 16px 0 6vh 16px; }
  .clients-services p::before { content: "\2014\00a0"; }
  .logo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    /* left edge stops at the rail; only the right edge bleeds to the screen */
    margin: 4vh -16px 0 0;
  }
  .logo-cell { border-left: 0; }
  .logo-cell:nth-child(even) { border-left: 1px solid rgba(244, 244, 244, 0.28); }
  .logo-cell:nth-child(n + 3) { border-top: 1px solid rgba(244, 244, 244, 0.28); }
  .logo-cell img { transform: scale(0.64); }
  .clients.line-in .logo-cell { transition-delay: 0s; }
  .gp-v1 { left: 50%; }
  .gp-v2 { display: none; }

  .disclaimer { width: 300px; }
  .copyright { display: none; }

  .footer-tile { left: -25px; }

  .hud-bottom-left { left: 16px; bottom: 16px; }
  .hud-tagline { right: 16px; bottom: 16px; width: 153px; }
  .hud-mail { white-space: normal; max-width: 170px; }
  .hud-mail .mail-prefix {
    display: block;
    max-width: none;
    max-height: 0;
    transition: max-height 0.8s var(--ease-tile), opacity 0.6s ease;
  }
  body.footer-active .hud-mail .mail-prefix { max-width: none; max-height: 20px; opacity: 1; }
}

/* ---------- reduced motion ---------- */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
