@font-face {
  font-family: "Space Grotesk";
  src: url("fonts/SpaceGrotesk-Variable.woff2") format("woff2");
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "ZT Nature";
  src: url("fonts/ZTNature-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --charcoal: #191919;
  --cloud: #ebf0f0;
  --azure: #08a0ff;
  --mint: #bef9c0;
  --max-width: 1680px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cloud);
  color: var(--charcoal);
  font-family: "Space Grotesk", sans-serif;
  font-size: 16px;
  line-height: 1.4;
  text-rendering: optimizeLegibility;
}

a { color: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  min-height: 76px;
  display: flex;
  align-items: center;
  padding: 18px clamp(24px, 4vw, 72px);
  background: rgba(235, 240, 240, .88);
  backdrop-filter: blur(12px);
}

.brand-lockup { display: inline-flex; align-items: center; }
.brand-lockup img { display: block; width: 156px; height: auto; }

.hero {
  min-height: calc(100svh - 76px);
  overflow: hidden;
  background:
    radial-gradient(ellipse 78% 82% at 52% -12%, #08a0ff 0%, #48c2e7 28%, rgba(133, 221, 211, .78) 52%, rgba(190, 249, 192, 0) 80%),
    linear-gradient(180deg, #bef9c0 0%, #bef9c0 44%, #d7f3db 76%, #ebf0f0 100%);
}

.hero-inner {
  width: min(100%, var(--max-width));
  min-height: inherit;
  margin: 0 auto;
  padding: clamp(84px, 13vh, 136px) clamp(32px, 4vw, 72px);
  display: grid;
  grid-template-columns: minmax(0, .58fr) minmax(0, .42fr);
  align-items: stretch;
  gap: clamp(24px, 2.4vw, 40px);
}

.hero-copy {
  width: min(760px, 100%);
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}

h1, h2, h3 { font-family: "ZT Nature", "Space Grotesk", sans-serif; }

.hero h1 {
  max-width: 14ch;
  margin: 0;
  font-size: 48px;
  line-height: 1.03;
  letter-spacing: -.035em;
}

.hero p {
  max-width: 58ch;
  margin: clamp(34px, 5vh, 58px) 0 0;
  font-size: clamp(20px, 1.8vw, 24px);
  line-height: 1.3;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  min-width: min(320px, 100%);
  min-height: 58px;
  margin-top: clamp(84px, 18vh, 176px);
  padding: 15px 32px;
  border: 1px solid var(--charcoal);
  background: var(--charcoal);
  color: #fff;
  font-family: "ZT Nature", "Space Grotesk", sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: .01em;
  text-decoration: none;
  transition: background-color .2s ease, color .2s ease, transform .2s ease;
}

.cta:hover, .cta:focus-visible {
  background: var(--mint);
  color: var(--charcoal);
  transform: translateY(-2px);
}

.cta:focus-visible { outline: 3px solid var(--azure); outline-offset: 4px; }

.hero-art { display: grid; place-items: center; min-width: 0; }
.hero-art img { display: block; width: min(106%, 820px); height: auto; opacity: .58; }

.trust-section {
  min-height: calc(100svh - 76px);
  padding: clamp(48px, 7vh, 86px) clamp(22px, 4vw, 62px);
  display: grid;
  place-items: center;
}

.trust-mosaic {
  position: relative;
  width: min(1120px, 100%);
  aspect-ratio: 822 / 527;
}

.tile {
  position: absolute;
  overflow: hidden;
  opacity: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transform: translateY(12px);
}

.is-visible .tile { animation: tile-in .7s cubic-bezier(.6, 0, 1, 1) var(--delay) both; }
.tile-1 { left: 10.34%; top: 10.44%; width: 21.05%; height: 31.88%; --delay: 0ms; background-image: url("home/faces/face-1.png"); }
.tile-2 { left: 32.60%; top: 4.74%; width: 37.35%; height: 62.81%; --delay: 120ms; background-image: url("home/faces/face-2.png"); }
.tile-3 { left: 71.41%; top: 4.74%; width: 10.83%; height: 18.98%; --delay: 240ms; background-image: url("home/faces/face-3.png"); }
.tile-4 { left: 3.65%; top: 44.59%; width: 27.86%; height: 20.68%; --delay: 360ms; background-image: url("home/faces/face-4.png"); }
.tile-5 { left: 71.41%; top: 25.43%; width: 24.82%; height: 42.12%; --delay: 480ms; background-image: url("home/faces/face-5.png"); }
.tile-6 { left: 16.54%; top: 67.36%; width: 14.96%; height: 28.46%; --delay: 600ms; background-image: url("home/faces/face-6.png"); }
.tile-7 { left: 32.60%; top: 69.26%; width: 43.07%; height: 26.57%; --delay: 720ms; background-image: url("home/faces/face-7.png"); }
.tile-8 { left: 76.76%; top: 69.26%; width: 14.72%; height: 22.77%; --delay: 840ms; background-image: url("home/faces/face-8.png"); }

.trust-mosaic h2 {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  width: min(860px, 92%);
  margin: 0;
  transform: translate(-50%, -50%);
  font-size: clamp(42px, 6vw, 72px);
  line-height: .95;
  letter-spacing: -.04em;
  text-align: center;
}

@keyframes tile-in { to { opacity: .72; transform: translateY(0); } }

.capabilities {
  min-height: min(780px, calc(100svh - 76px));
  padding: clamp(62px, 8vh, 94px) clamp(24px, 4vw, 64px) 40px;
  background:
    radial-gradient(ellipse 78% 82% at 52% 112%, #08a0ff 0%, #48c2e7 28%, rgba(133, 221, 211, .78) 52%, rgba(190, 249, 192, 0) 80%),
    linear-gradient(0deg, #bef9c0 0%, #bef9c0 44%, #d7f3db 76%, #ebf0f0 100%);
}

.capabilities > h2 { margin: 0 0 clamp(58px, 10vh, 110px); font-size: 36px; line-height: 1; text-align: center; }
.capabilities-grid { width: min(980px, 100%); margin: 0 auto; display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 58px; }
.capabilities article { padding: 28px 0 32px; border-top: 1px solid rgba(25, 25, 25, .18); }
.capabilities article:nth-child(-n + 2) { border-top: 0; }
.capabilities h3 { margin: 0; font-size: clamp(36px, 4vw, 48px); line-height: 1; }
.capabilities p { max-width: 34ch; margin: 14px 0 0; font-size: 20px; font-weight: 600; line-height: 1.18; }

.site-footer { padding: 32px 24px 44px; background: var(--cloud); font-size: 14px; text-align: center; }

.coming-soon-page { min-height: 100svh; display: grid; place-items: center; }
.coming-soon { display: grid; justify-items: center; padding: 24px; transform: translateY(-3%); }
.coming-soon h1 { margin: 0; font-family: "Space Grotesk", sans-serif; font-size: clamp(34px, 5.4vw, 56px); font-weight: 500; line-height: .98; letter-spacing: -.055em; text-align: center; }
.coming-soon img { width: 38px; height: auto; margin-top: 48px; }
.ellipsis { display: inline-flex; width: 1.05em; text-align: left; }
.ellipsis i { opacity: 0; font-style: normal; animation: dot-cycle 1.5s steps(1, end) infinite; }
.ellipsis i:nth-child(2) { animation-delay: .25s; }
.ellipsis i:nth-child(3) { animation-delay: .5s; }
@keyframes dot-cycle { 0%, 20% { opacity: 0; } 35%, 100% { opacity: 1; } }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }

@media (max-width: 720px) {
  .site-header { min-height: 68px; padding: 16px 24px; }
  .brand-lockup img { width: 132px; }
  .hero { min-height: calc(100svh - 68px); }
  .hero-inner { grid-template-columns: 1fr; align-content: center; padding: 54px 24px 72px; }
  .hero h1 { max-width: 13ch; font-size: 48px; }
  .hero p { max-width: 34ch; margin-top: 30px; font-size: 19px; }
  .cta { margin-top: 50px; }
  .hero-art { position: absolute; right: -28%; bottom: 3%; width: 90%; opacity: .42; }
  .trust-section { min-height: 700px; padding: 42px 12px; }
  .trust-mosaic { height: 620px; aspect-ratio: auto; display: grid; grid-template-columns: repeat(6, 1fr); grid-template-rows: repeat(9, 1fr); gap: 7px; }
  .tile { position: relative; left: auto; top: auto; width: auto; height: auto; transform: none; background-size: contain; }
  .tile-1 { grid-column: 1 / span 2; grid-row: 2 / span 2; }
  .tile-2 { grid-column: 2 / span 4; grid-row: 2 / span 4; }
  .tile-3 { grid-column: 6; grid-row: 1 / span 2; }
  .tile-4 { grid-column: 1 / span 2; grid-row: 5 / span 2; }
  .tile-5 { grid-column: 5 / span 2; grid-row: 6 / span 2; }
  .tile-6 { grid-column: 1; grid-row: 7 / span 2; }
  .tile-7 { grid-column: 2 / span 3; grid-row: 7 / span 3; }
  .tile-8 { grid-column: 5 / span 2; grid-row: 8 / span 2; }
  .trust-mosaic h2 { width: 94%; font-size: clamp(35px, 10.8vw, 50px); }
  .capabilities { padding-inline: 18px; }
  .capabilities-grid { grid-template-columns: 1fr; max-width: 480px; }
  .capabilities article:nth-child(-n + 2) { border-top: 1px solid rgba(25, 25, 25, .18); }
  .capabilities article:first-child { border-top: 0; }
  .capabilities p { font-size: 19px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .is-visible .tile { animation: none; opacity: .72; }
  .cta { transition: none; }
}
