:root {
  --bg: #090909;
  --ink: #f1efe9;
  --muted: rgba(241, 239, 233, 0.63);
  --faint: rgba(241, 239, 233, 0.34);
  --hairline: rgba(241, 239, 233, 0.16);
  --pad-x: clamp(1.35rem, 4vw, 4.75rem);
  --pad-y: clamp(1.25rem, 3.2vw, 3.1rem);
}

* { box-sizing: border-box; }

html,
body {
  width: 100%;
  min-height: 100%;
  margin: 0;
  background: var(--bg);
  color: var(--ink);
}

html { color-scheme: dark; }

body {
  min-height: 100svh;
  overflow: hidden;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

button,
a { -webkit-tap-highlight-color: transparent; }

a { color: inherit; }

.site-shell {
  position: relative;
  width: 100%;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  background: var(--bg);
}

.ambient {
  position: absolute;
  inset: -18%;
  z-index: -3;
  pointer-events: none;
  background:
    radial-gradient(circle at 49% 46%, rgba(255,255,255,0.055), rgba(255,255,255,0.014) 24%, transparent 49%),
    radial-gradient(circle at 14% 20%, rgba(255,255,255,0.025), transparent 34%),
    radial-gradient(circle at 84% 80%, rgba(255,255,255,0.02), transparent 38%);
  transform: scale(1.06);
}

.grain {
  position: absolute;
  inset: 0;
  z-index: 8;
  opacity: 0.035;
  pointer-events: none;
  mix-blend-mode: screen;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}

.experience {
  position: relative;
  width: 100%;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: var(--pad-y) var(--pad-x);
}

.capability-field {
  position: absolute;
  inset: 8vh 5vw 11vh;
  pointer-events: none;
}

.capability {
  --size: clamp(1rem, 1.65vw, 1.65rem);
  position: absolute;
  display: block;
  margin: 0;
  white-space: nowrap;
  font-size: var(--size);
  font-weight: 400;
  letter-spacing: 0.035em;
  line-height: 1;
  color: rgba(241, 239, 233, 0.78);
  opacity: 0;
  will-change: transform, opacity, filter;
  text-shadow: 0 0 28px rgba(255,255,255,0.025);
}

.c1 { left: 8%;  top: 19%; }
.c2 { left: 66%; top: 13%; --size: clamp(.95rem, 1.25vw, 1.35rem); }
.c3 { left: 24%; top: 66%; --size: clamp(.95rem, 1.28vw, 1.35rem); }
.c4 { left: 71%; top: 57%; --size: clamp(1rem, 1.55vw, 1.55rem); }
.c5 { left: 14%; top: 43%; --size: clamp(.9rem, 1.1vw, 1.2rem); }
.c6 { left: 53%; top: 34%; --size: clamp(1rem, 1.55vw, 1.6rem); }
.c7 { left: 47%; top: 75%; --size: clamp(.9rem, 1.15vw, 1.25rem); }
.c8 { left: 75%; top: 78%; --size: clamp(1rem, 1.4vw, 1.45rem); }

.brand-lockup {
  position: relative;
  z-index: 4;
  width: min(980px, 88vw);
  text-align: center;
  transform: translateY(-1.2vh);
}

.brand-kicker,
#brand-title,
.positioning,
.partner-email {
  opacity: 0;
  visibility: hidden;
  will-change: transform, opacity, filter;
}

.brand-kicker {
  margin: 0 0 1.25rem;
  font-size: clamp(.62rem, .78vw, .78rem);
  font-weight: 500;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--faint);
}

#brand-title {
  margin: 0;
  font-size: clamp(3rem, 7.15vw, 7.4rem);
  line-height: .94;
  font-weight: 400;
  letter-spacing: -.055em;
  text-wrap: balance;
}

.positioning {
  width: min(720px, 86vw);
  margin: 2.15rem auto 0;
  font-size: clamp(.94rem, 1.25vw, 1.18rem);
  font-weight: 400;
  line-height: 1.65;
  letter-spacing: .015em;
  color: var(--muted);
  text-wrap: balance;
}

.partner-email {
  position: relative;
  display: inline-block;
  margin-top: 2.2rem;
  padding: .3rem .05rem .55rem;
  text-decoration: none;
  font-size: clamp(.78rem, .92vw, .92rem);
  font-weight: 400;
  letter-spacing: .075em;
  color: rgba(241, 239, 233, .78);
}

.partner-email::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(.18);
  transform-origin: center;
  opacity: .35;
  transition: transform 420ms cubic-bezier(.16,1,.3,1), opacity 420ms ease;
}

.partner-email:hover::after,
.partner-email:focus-visible::after {
  transform: scaleX(1);
  opacity: .75;
}

.partner-email:focus-visible,
.site-footer a:focus-visible,
.replay:focus-visible {
  outline: 1px solid rgba(241,239,233,.55);
  outline-offset: 6px;
}

.site-footer {
  position: absolute;
  z-index: 7;
  left: var(--pad-x);
  right: var(--pad-x);
  bottom: max(var(--pad-y), env(safe-area-inset-bottom));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--hairline);
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(241, 239, 233, .34);
  opacity: 0;
  visibility: hidden;
}

.site-footer a {
  text-decoration: none;
  color: inherit;
  transition: color 220ms ease;
}

.site-footer a:hover { color: rgba(241,239,233,.78); }

.replay {
  position: absolute;
  top: max(var(--pad-y), env(safe-area-inset-top));
  right: var(--pad-x);
  z-index: 7;
  padding: 0;
  border: 0;
  background: none;
  color: rgba(241,239,233,.28);
  font: inherit;
  font-size: .66rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: color 220ms ease;
}

.replay:hover { color: rgba(241,239,233,.65); }

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

@media (max-width: 760px) {
  :root {
    --pad-x: 1.35rem;
    --pad-y: 1.35rem;
  }

  .experience { padding-bottom: 5.75rem; }
  .capability-field { inset: 10vh 4vw 18vh; }

  .capability {
    --size: clamp(.78rem, 3.15vw, 1.02rem);
    letter-spacing: .02em;
  }

  .c1 { left: 2%;  top: 18%; }
  .c2 { left: 57%; top: 12%; }
  .c3 { left: 8%;  top: 67%; }
  .c4 { left: 52%; top: 58%; }
  .c5 { left: 4%;  top: 42%; }
  .c6 { left: 44%; top: 34%; }
  .c7 { left: 13%; top: 80%; }
  .c8 { left: 49%; top: 78%; }

  .brand-lockup {
    width: 100%;
    transform: translateY(-2vh);
  }

  #brand-title {
    font-size: clamp(3rem, 15vw, 5.15rem);
    letter-spacing: -.06em;
  }

  .brand-kicker {
    margin-bottom: 1rem;
    font-size: .58rem;
    letter-spacing: .21em;
  }

  .positioning {
    width: min(92vw, 32rem);
    margin-top: 1.55rem;
    font-size: .92rem;
    line-height: 1.55;
  }

  .partner-email {
    margin-top: 1.65rem;
    font-size: .78rem;
  }

  .site-footer {
    left: var(--pad-x);
    right: var(--pad-x);
    font-size: .58rem;
    letter-spacing: .09em;
  }

  .copyright { display: none; }
  .site-footer { justify-content: flex-end; }
  .replay { font-size: .58rem; }
}

@media (max-height: 650px) and (min-width: 761px) {
  .brand-lockup { transform: translateY(-3vh); }
  .positioning { margin-top: 1.35rem; }
  .partner-email { margin-top: 1.35rem; }
  .capability-field { inset: 5vh 5vw 13vh; }
}

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

  .capability-field { display: none; }
  .brand-kicker,
  #brand-title,
  .positioning,
  .partner-email,
  .site-footer,
  .replay {
    opacity: 1 !important;
    visibility: visible !important;
    filter: none !important;
    transform: none !important;
  }

  .replay { display: none; }
}
