@layer tokens, base, components;

@layer tokens {
  :root {
    --font-sans: "Inter", ui-sans-serif, system-ui, sans-serif;

    --color-sand: #e9e3dd;
    --color-sand-light: #f6f5f1;
    --color-dark-gray: #212121;
    --color-black: #171717;
    --color-yellow: #f9f654;
    --color-cyan: #69eee6;
    --color-green: #5ce666;
    --color-pink: #fc39f1;
    --color-red: #f64131;
    --color-blue: #3030ec;
    --color-yellow-hover: color-mix(in srgb, var(--color-yellow) 85%, black);
    --color-sand-50: color-mix(in srgb, var(--color-sand-light) 50%, transparent);
    --color-sand-20: color-mix(in srgb, var(--color-sand) 20%, transparent);

    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-2_5: 0.625rem;
    --space-3: 0.75rem;
    --space-3_5: 0.875rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-7: 1.75rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-11: 2.75rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;
    --space-32: 8rem;
    --space-44: 11rem;
    --space-60: 15rem;

    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-4xl: 2.25rem;
    --text-6xl: 3.75rem;
    --text-7xl: 4.5rem;
    --text-9xl: 8rem;

    --weight-normal: 400;
    --weight-medium: 500;
    --weight-bold: 700;
    --weight-extrabold: 800;
    --weight-black: 900;

    --leading-none: 1;
    --leading-tight: 1.25;
    --leading-snug: 1.375;
    --leading-body: 1.5;

    --tracking-tighter: -0.05em;
    --tracking-tight: -0.04em;
    --tracking-wide: 0.025em;
    --tracking-caps: 0.18em;

    --radius-media: 2.5rem;
    --radius-pill: 1e9px;

    --icon: 4.5rem;
    --page-pad: var(--space-5);
    --section-y: var(--space-16);
    --wrap-max: 90rem;
  }

  @media (min-width: 48rem) {
    :root {
      --page-pad: var(--space-10);
      --section-y: var(--space-24);
    }
  }

  @media (min-width: 64rem) {
    :root {
      --page-pad: var(--space-16);
      --section-y: var(--space-32);
    }
  }
}

@layer base {
  *,
  *::before,
  *::after {
    box-sizing: border-box;
  }

  * {
    margin: 0;
  }

  html {
    -webkit-text-size-adjust: 100%;
    overflow-x: clip;
  }

  body {
    font-family: var(--font-sans);
    font-weight: var(--weight-normal);
    background: var(--color-black);
    color: var(--color-sand);
    line-height: var(--leading-body);
  }

  img {
    max-width: 100%;
    height: auto;
    display: block;
  }

  a {
    color: inherit;
    text-decoration: none;
  }

  strong {
    font-weight: var(--weight-extrabold);
  }

  ul,
  ol {
    padding: 0;
    list-style: none;
  }

  .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;
  }
}

@layer components {
  .wrap {
    width: min(100% - 2 * var(--page-pad), var(--wrap-max));
    margin-inline: auto;
  }

  .band {
    padding-block: var(--section-y);
  }

  .display {
    font-size: var(--text-4xl);
    font-weight: var(--weight-extrabold);
    letter-spacing: var(--tracking-tight);
    line-height: 1.12;
    color: inherit;

    @media (min-width: 48rem) {
      font-size: var(--text-6xl);
    }
  }

  .lede {
    font-size: var(--text-xl);
    font-weight: var(--weight-normal);
    line-height: var(--leading-snug);
    color: inherit;

    @media (min-width: 48rem) {
      font-size: var(--text-2xl);
    }
  }

  .fineprint {
    margin-top: var(--space-4);
    font-size: var(--text-lg);
    letter-spacing: var(--tracking-wide);
    color: var(--color-sand-50);
  }

  .accent {
    color: var(--color-cyan);
  }

  .accent--red {
    color: var(--color-red);
  }

  .btn-cta {
    display: inline-block;
    width: fit-content;
    max-width: 100%;
    margin-top: var(--space-10);
    padding: 0.9rem 1.5rem;
    font-size: var(--text-lg);
    font-weight: var(--weight-black);
    line-height: var(--leading-tight);
    text-align: center;
    text-transform: uppercase;
    color: var(--color-black);
    background: var(--color-pink);
    border-radius: var(--radius-pill);

    @media (min-width: 48rem) {
      margin-top: var(--space-12);
      padding: var(--space-6) var(--space-12);
      font-size: var(--text-2xl);
    }
  }

  .btn-nav {
    display: inline-block;
    padding: var(--space-3) var(--space-4);
    font-size: var(--text-lg);
    font-weight: var(--weight-black);
    color: var(--color-black);
    background: var(--color-yellow);
    border-radius: var(--radius-pill);
    white-space: nowrap;

    @media (min-width: 48rem) {
      padding: var(--space-5) var(--space-8);
      font-size: var(--text-2xl);
    }

    &:hover {
      background: var(--color-yellow-hover);
    }
  }

  .stripe {
    display: block;
    width: 100%;
    height: var(--space-2_5);
    border: 0;
    background-image: linear-gradient(
      to right,
      var(--color-sand-light) 0 14.2857%,
      var(--color-yellow) 14.2857% 28.5714%,
      var(--color-cyan) 28.5714% 42.8571%,
      var(--color-green) 42.8571% 57.1429%,
      var(--color-pink) 57.1429% 71.4286%,
      var(--color-red) 71.4286% 85.7143%,
      var(--color-blue) 85.7143% 100%
    );
  }

  .stripe--foot {
    height: var(--space-3_5);
  }

  .stripe--thin {
    height: var(--space-1);
  }

  .stripe--mobile {
    @media (min-width: 48rem) {
      display: none;
    }
  }

  @scope (.hero) {
    :scope {
      position: relative;
      z-index: 1;
      display: flex;
      flex-direction: column;
      min-height: 100svh;
      padding-block: var(--space-11) var(--space-24);
    }

    video {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .hero__header {
      position: relative;
      z-index: 1;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: var(--space-4);
    }

    .hero__logo {
      width: min(10.5rem, 42vw);
      flex-shrink: 0;
      aspect-ratio: 6.49;
      object-fit: contain;
    }

    .hero__nav {
      display: flex;
      align-items: center;
      gap: var(--space-4);
    }

    .hero__signin {
      font-size: var(--text-lg);
      font-weight: var(--weight-black);
      color: var(--color-sand);
      white-space: nowrap;

      &:hover {
        color: var(--color-sand-light);
      }
    }

    .hero__copy {
      position: relative;
      z-index: 1;
      margin-top: var(--space-8);
    }

    h1 {
      font-size: var(--text-4xl);
      font-weight: var(--weight-black);
      color: var(--color-sand);
      line-height: 1.12;
    }

    .lede {
      max-width: 42rem;
      margin-top: var(--space-4);
      font-size: var(--text-2xl);
      line-height: 1.6;
      color: var(--color-sand);
    }

    @media (min-width: 48rem) {
      :scope {
        min-height: 56rem;
        padding-block: var(--space-11) var(--space-32);
      }

      .hero__logo {
        width: 13rem;
      }

      .hero__signin {
        font-size: var(--text-2xl);
      }

      .hero__copy {
        margin-top: var(--space-20);
      }

      h1 {
        font-size: var(--text-7xl);
        line-height: var(--leading-tight);
      }
    }

    @media (min-width: 64rem) {
      h1 {
        font-size: var(--text-9xl);
      }
    }
  }

  @scope (.platforms) {
    :scope {
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      align-items: center;
      padding-block: var(--space-24);
    }

    .platforms__bg {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    h2 {
      position: relative;
      z-index: 1;
      text-align: center;
      font-size: var(--text-4xl);
      font-weight: var(--weight-normal);
      line-height: var(--leading-tight);
      color: var(--color-sand-light);

      strong {
        font-weight: var(--weight-extrabold);
      }
    }

    .platforms__rows {
      position: relative;
      z-index: 1;
      display: flex;
      flex-direction: column;
      gap: var(--space-12);
      width: 100%;
      margin-top: var(--space-16);
    }

    .platforms__label {
      margin-bottom: var(--space-5);
      text-align: center;
      font-size: var(--text-xl);
      font-weight: var(--weight-extrabold);
      letter-spacing: var(--tracking-tight);
      color: var(--color-sand-light);
    }

    .platforms__note {
      position: relative;
      z-index: 1;
      margin-top: var(--space-24);
      text-align: center;
      font-size: var(--text-xl);
      font-weight: var(--weight-extrabold);
      letter-spacing: var(--tracking-tight);
      color: var(--color-sand-light);
    }

    .logo-marquee {
      overflow: hidden;
      width: 100%;
      -webkit-mask-image: linear-gradient(
        to right,
        transparent,
        #000 5%,
        #000 95%,
        transparent
      );
      mask-image: linear-gradient(
        to right,
        transparent,
        #000 5%,
        #000 95%,
        transparent
      );
    }

    .logo-marquee__track {
      display: flex;
      width: max-content;
      animation: logo-marquee-from-left 55s linear infinite;
    }

    .logo-marquee--rtl .logo-marquee__track {
      animation-name: logo-marquee-from-right;
      animation-duration: 62s;
    }

    .logo-marquee--slow .logo-marquee__track {
      animation-duration: 68s;
    }

    .logo-marquee:hover .logo-marquee__track {
      animation-play-state: paused;
    }

    .logo-marquee__set {
      display: flex;
      align-items: center;
      gap: var(--space-5);
      padding-right: var(--space-5);
    }

    .logo-pill {
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      height: 4.25rem;
      min-width: 9rem;
      padding: 0 var(--space-6);
      background: color-mix(in srgb, var(--color-sand) 10%, transparent);
      border-radius: var(--radius-pill);

      img {
        height: 2rem;
        width: auto;
        max-width: 10rem;
        object-fit: contain;
        pointer-events: none;
        user-select: none;
      }
    }

    @media (min-width: 48rem) {
      :scope {
        padding-block: var(--space-44);
      }

      h2 {
        font-size: var(--text-6xl);
        line-height: 4rem;
      }

      .platforms__label,
      .platforms__note {
        font-size: var(--text-2xl);
      }

      .logo-pill {
        height: 5.5rem;
        min-width: 10.75rem;
        padding: 0 1.75rem;

        img {
          height: 2.5rem;
        }
      }
    }

    @media (prefers-reduced-motion: reduce) {
      .logo-marquee {
        -webkit-mask-image: none;
        mask-image: none;
        overflow-x: auto;
      }

      .logo-marquee__track {
        animation: none;
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        transform: none;
      }

      .logo-marquee__set {
        flex-wrap: wrap;
        justify-content: center;
        padding-right: 0;
      }

      .logo-marquee__set[aria-hidden="true"] {
        display: none;
      }
    }
  }

  @scope (.halo) {
    :scope {
      background: var(--color-yellow);
      color: var(--color-black);
    }

    .halo__grid {
      display: flex;
      flex-direction: column;
      gap: var(--space-10);
    }

    .halo__sub {
      margin-top: var(--space-7);
      font-size: var(--text-2xl);
      font-weight: var(--weight-extrabold);
      line-height: var(--leading-tight);
      color: var(--color-blue);
    }

    .lede {
      margin-top: var(--space-10);
      font-size: var(--text-2xl);
      line-height: var(--leading-snug);
    }

    .halo__stat {
      text-align: center;
    }

    .halo__num {
      font-size: clamp(var(--text-7xl), 16vw, var(--text-9xl));
      font-weight: var(--weight-black);
      line-height: var(--leading-none);
      letter-spacing: var(--tracking-tighter);
    }

    .halo__stat-label {
      margin-top: var(--space-7);
      font-size: var(--text-xl);
      font-weight: var(--weight-extrabold);
      letter-spacing: var(--tracking-tight);
    }

    @media (min-width: 48rem) {
      .halo__grid {
        flex-direction: row;
        align-items: center;
        gap: var(--space-5);
      }

      .halo__copy {
        flex: 2;
        min-width: 0;
      }

      .halo__stat {
        flex: 1;
      }

      .halo__sub {
        font-size: var(--text-4xl);
      }

      .halo__stat-label {
        font-size: var(--text-2xl);
      }
    }
  }

  @scope (.how-it-works) {
    :scope {
      color: var(--color-sand-light);
    }

    .lede {
      margin-top: var(--space-7);
    }

    .how-steps {
      display: grid;
      gap: var(--space-10);
      margin-top: var(--space-10);
    }

    .how-steps li {
      min-width: 0;
      display: flex;
      flex-direction: column;
    }

    .how-step__body {
      display: grid;
      grid-template-columns: 2.75rem 1fr;
      gap: 0.85rem;
    }

    .how-steps__num {
      padding-top: 0.2rem;
      font-size: 1.05rem;
      font-weight: var(--weight-extrabold);
      letter-spacing: var(--tracking-tight);
      line-height: var(--leading-none);
    }

    .how-steps li:nth-child(1) .how-steps__num,
    .how-steps li:nth-child(1) .how-steps__title {
      color: var(--color-green);
    }

    .how-steps li:nth-child(2) .how-steps__num,
    .how-steps li:nth-child(2) .how-steps__title {
      color: var(--color-pink);
    }

    .how-steps li:nth-child(3) .how-steps__num,
    .how-steps li:nth-child(3) .how-steps__title {
      color: var(--color-yellow);
    }

    .how-steps li:nth-child(4) .how-steps__num,
    .how-steps li:nth-child(4) .how-steps__title {
      color: var(--color-cyan);
    }

    .how-steps__title {
      display: block;
      font-size: 1.2rem;
      font-weight: var(--weight-extrabold);
      letter-spacing: var(--tracking-tight);
      line-height: 1.2;
    }

    .how-steps__desc {
      display: block;
      margin-top: 0.55rem;
      font-size: 1.05rem;
      font-weight: var(--weight-normal);
      line-height: var(--leading-body);
      color: var(--color-sand-light);
    }

    .blob-stage {
      --blob-loop: 8s;
      --blob-delay: 0s;
      --blob-url: none;
      position: relative;
      width: min(100%, 20rem);
      margin-inline: auto;
      margin-bottom: var(--space-4);
      aspect-ratio: 1;
      overflow: hidden;
      isolation: isolate;
      animation: blob-stage-jolt var(--blob-loop) step-end infinite;
      animation-delay: var(--blob-delay);
    }

    .how-steps li:nth-child(1) .blob-stage {
      --blob-delay: 0s;
      --blob-url: url("./1.2.png");
    }

    .how-steps li:nth-child(2) .blob-stage {
      --blob-delay: 2s;
      --blob-url: url("./2.2.png");
    }

    .how-steps li:nth-child(3) .blob-stage {
      --blob-delay: 4s;
      --blob-url: url("./3.2.png");
    }

    .how-steps li:nth-child(4) .blob-stage {
      --blob-delay: 6s;
      --blob-url: url("./4.2.png");
    }

    .blob-layer {
      position: absolute;
      inset: 0;
      will-change: transform, clip-path, filter, opacity;
      animation-duration: var(--blob-loop);
      animation-timing-function: step-end;
      animation-iteration-count: infinite;
      animation-delay: var(--blob-delay);
    }

    .blob-layer.is-current {
      z-index: 1;
      opacity: 1;
      animation-name: blob-tear-out;
    }

    .blob-layer.is-next {
      z-index: 2;
      opacity: 0;
      animation-name: blob-tear-in;
    }

    .blob-img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: contain;
    }

    .blob-fx {
      position: absolute;
      inset: 0;
      z-index: 3;
      pointer-events: none;
      opacity: 0;
      background: repeating-linear-gradient(
        to bottom,
        rgb(246 245 241 / 0.16) 0 1px,
        transparent 1px 3px
      );
      animation: blob-scan var(--blob-loop) step-end infinite;
      animation-delay: var(--blob-delay);
    }

    .blob-fx::before,
    .blob-fx::after {
      content: "";
      position: absolute;
    }

    .blob-fx::before {
      inset: 0;
      background-image: var(--blob-url);
      background-repeat: no-repeat;
      background-position: center;
      background-size: contain;
      opacity: 0;
      animation: blob-ghost var(--blob-loop) step-end infinite;
      animation-delay: var(--blob-delay);
    }

    .blob-fx::after {
      left: 14%;
      right: 14%;
      bottom: 22%;
      height: 10px;
      background: linear-gradient(
        90deg,
        var(--color-sand-light) 0 12%,
        var(--color-yellow) 12% 24%,
        var(--color-cyan) 24% 36%,
        var(--color-green) 36% 48%,
        var(--color-pink) 48% 62%,
        var(--color-red) 62% 76%,
        var(--color-blue) 76% 88%,
        var(--color-sand-light) 88% 100%
      );
      opacity: 0;
      transform: scaleY(0.2);
      animation: blob-bars var(--blob-loop) step-end infinite;
      animation-delay: var(--blob-delay);
    }

    .how-it-works__close {
      margin-top: var(--space-12);
    }

    .how-it-works__close-title {
      font-size: var(--text-2xl);
      font-weight: var(--weight-extrabold);
      letter-spacing: var(--tracking-tight);
      line-height: var(--leading-tight);
    }

    .how-it-works__close .lede {
      margin-top: var(--space-4);
    }

    @media (min-width: 48rem) {
      .how-steps {
        grid-template-columns: 1fr 1fr;
        margin-top: var(--space-10);
        gap: var(--space-8);
      }

      .how-it-works__close-title {
        font-size: 1.875rem;
      }

      .how-steps__title {
        font-size: 1.35rem;
      }

      .how-steps__num {
        font-size: 1.15rem;
      }
    }

    @media (min-width: 64rem) {
      .how-steps {
        grid-template-columns: repeat(4, 1fr);
      }

      .blob-stage {
        width: 100%;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      .blob-stage,
      .blob-stage .blob-layer,
      .blob-stage .blob-fx,
      .blob-stage .blob-fx::before,
      .blob-stage .blob-fx::after {
        animation: none !important;
      }
    }
  }

  @scope (.live-now) {
    :scope {
      position: relative;
      display: flex;
      flex-direction: column;
      color: var(--color-sand-light);
    }

    .live-now__stage {
      position: relative;
      overflow: hidden;
      width: 100%;
      height: 18rem;
      min-height: 18rem;
      background: #0b0b0b;
    }

    .live-now__map {
      width: 100%;
      height: 100%;
    }

    .live-now__scrim {
      display: none;
      pointer-events: none;
    }

    .live-now__copy {
      position: relative;
      z-index: 2;
      padding-block: var(--space-8) var(--space-10);
    }

    .live-now__headline {
      max-width: 40rem;
      font-size: 1.85rem;
      font-weight: var(--weight-extrabold);
      letter-spacing: var(--tracking-tight);
      line-height: 1.12;
    }

    .live-now__eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 0.55rem;
      margin: 1.35rem 0 0;
      font-size: 0.78rem;
      font-weight: var(--weight-extrabold);
      letter-spacing: var(--tracking-caps);
      text-transform: uppercase;
      color: var(--color-cyan);
    }

    .live-now__pulse {
      width: 0.55rem;
      height: 0.55rem;
      border-radius: var(--radius-pill);
      background: var(--color-cyan);
      box-shadow: 0 0 0 0 color-mix(in srgb, var(--color-cyan) 70%, transparent);
      animation: live-now-pulse 1.8s ease-out infinite;
    }

    .live-now__count {
      margin: 0.35rem 0 0;
      font-size: 3.25rem;
      font-weight: var(--weight-extrabold);
      letter-spacing: var(--tracking-tighter);
      line-height: var(--leading-none);
      font-variant-numeric: tabular-nums;
    }

    .live-now__sub {
      margin: 0.7rem 0 0;
      font-size: 1.05rem;
      font-weight: var(--weight-medium);
      line-height: 1.4;
      color: color-mix(in srgb, var(--color-sand) 78%, transparent);
    }

    .live-now__ticker {
      margin: 1.15rem 0 0;
      min-height: 1.5em;
      font-size: 1.05rem;
      font-weight: var(--weight-bold);
      letter-spacing: -0.02em;
      transition: opacity 0.18s ease;
    }

    .live-now__ticker.is-swap {
      opacity: 0;
    }

    .mapboxgl-ctrl-attrib {
      background: transparent;
      color: color-mix(in srgb, var(--color-sand) 45%, transparent);
      font-size: 10px;
    }

    .mapboxgl-ctrl-attrib a {
      color: color-mix(in srgb, var(--color-sand) 55%, transparent);
    }

    .mapboxgl-ctrl-logo {
      opacity: 0.45;
    }

    .mapboxgl-compact-show .mapboxgl-ctrl-attrib-inner {
      color: color-mix(in srgb, var(--color-sand) 70%, transparent);
    }

    @media (min-width: 48rem) {
      :scope {
        display: grid;
      }

      .live-now__stage,
      .live-now__copy {
        grid-area: 1 / 1;
      }

      .live-now__stage {
        height: 36rem;
        min-height: 36rem;
      }

      .live-now__copy {
        align-self: end;
        padding-block: 2.75rem 3.25rem;
        pointer-events: none;
      }

      .live-now__scrim {
        display: block;
        position: absolute;
        inset: auto 0 0 0;
        height: 68%;
        background: linear-gradient(
          to top,
          rgb(17 17 17 / 0.94) 0%,
          rgb(17 17 17 / 0.55) 42%,
          rgb(17 17 17 / 0) 100%
        );
      }

      .live-now__headline {
        font-size: 2.75rem;
      }

      .live-now__count {
        font-size: 5.25rem;
      }

      .live-now__sub {
        font-size: var(--text-xl);
      }

      .live-now__ticker {
        font-size: 1.2rem;
      }
    }

    @media (min-width: 80rem) {
      .live-now__headline {
        font-size: 3.15rem;
      }

      .live-now__count {
        font-size: 6rem;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      .live-now__pulse {
        animation: none;
      }

      .live-now__ticker {
        transition: none;
      }
    }
  }

  @scope (.legitimacy) {
    :scope {
      color: var(--color-sand-light);
    }

    .legitimacy__sub {
      margin-top: var(--space-7);
      font-size: var(--text-2xl);
      font-weight: var(--weight-extrabold);
      line-height: var(--leading-tight);
    }

    .legitimacy__points {
      display: grid;
      gap: var(--space-8);
      margin-top: var(--space-12);
    }

    .legitimacy__kicker {
      font-size: var(--text-xl);
      font-weight: var(--weight-extrabold);
      letter-spacing: var(--tracking-tight);
    }

    .legitimacy__kicker--history {
      color: var(--color-yellow);
    }

    .legitimacy__kicker--scarcity {
      color: var(--color-green);
    }

    .legitimacy__kicker--company {
      color: var(--color-pink);
    }

    .legitimacy__points .lede {
      margin-top: var(--space-4);
    }

    .legitimacy__lift {
      margin-top: var(--space-12);
    }

    .legitimacy__close {
      margin-top: var(--space-7);
      font-size: var(--text-2xl);
      font-weight: var(--weight-extrabold);
      line-height: var(--leading-tight);
    }

    @media (min-width: 48rem) {
      .legitimacy__sub,
      .legitimacy__close {
        font-size: var(--text-4xl);
      }

      .legitimacy__points {
        grid-template-columns: repeat(3, 1fr);
      }

      .legitimacy__kicker {
        font-size: var(--text-2xl);
      }
    }
  }

  @scope (.stats) {
    :scope {
      display: grid;
      grid-template-columns: 1fr;
    }

    .stats__item {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      padding: var(--space-12) var(--space-5) var(--space-16);
    }

    .stats__item svg {
      width: var(--icon);
      height: var(--icon);
      flex-shrink: 0;
    }

    .stats__num {
      margin-top: var(--space-8);
      font-size: var(--text-6xl);
      font-weight: var(--weight-black);
      letter-spacing: var(--tracking-tighter);
      line-height: var(--leading-none);
    }

    .stats__copy {
      margin-top: var(--space-6);
      font-size: var(--text-xl);
      line-height: var(--leading-snug);
      letter-spacing: var(--tracking-tight);
    }

    .stats__item--green {
      background: var(--color-green);
      color: var(--color-black);
    }

    .stats__item--pink {
      background: var(--color-pink);
      color: var(--color-sand);
    }

    .stats__item--cyan {
      background: var(--color-cyan);
      color: var(--color-black);
    }

    .stats__item--blue {
      background: var(--color-blue);
      color: var(--color-sand);
    }

    @media (min-width: 48rem) {
      :scope {
        grid-template-columns: 1fr 1fr;
      }

      .stats__item {
        padding: var(--space-12) var(--space-10) var(--space-16);
      }

      .stats__num {
        font-size: var(--text-7xl);
      }

      .stats__copy {
        font-size: var(--text-2xl);
      }
    }

    @media (min-width: 64rem) {
      :scope {
        grid-template-columns: repeat(4, 1fr);
      }
    }
  }

  @scope (.big-screen) {
    :scope {
      color: var(--color-sand-light);
    }

    .lede {
      margin-top: var(--space-7);
    }

    img {
      width: 100%;
      margin-top: var(--space-12);
      object-fit: cover;
      border-radius: var(--radius-media);
    }
  }

  @scope (.final-cta) {
    :scope {
      color: var(--color-sand-light);
    }

    .lede {
      margin-top: var(--space-7);
    }
  }

  @scope (.site-footer) {
    :scope {
      display: flex;
      flex-direction: column;
      align-items: center;
      padding-inline: var(--page-pad);
      padding-bottom: var(--space-16);
    }

    img {
      width: min(100%, 28.125rem);
      margin-top: var(--space-10);
      aspect-ratio: 4.33;
      object-fit: contain;
    }

    p {
      color: var(--color-sand-20);
      text-align: center;
    }

    nav {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: var(--space-4);
      margin-top: var(--space-6);
      color: white;
    }

    a:hover {
      color: var(--color-sand);
      text-decoration: underline;
    }

    @media (min-width: 48rem) {
      img {
        margin-top: var(--space-60);
      }

      nav {
        flex-direction: row;
        gap: var(--space-8);
      }
    }
  }
}

@keyframes blob-stage-jolt {
  0%,
  6.5%,
  100% {
    transform: none;
  }
  0.78% {
    transform: skewX(-5deg) scaleX(1.03);
  }
  1.82% {
    transform: skewX(4deg) translateX(1.5%);
  }
  2.99% {
    transform: skewX(-2deg) scaleY(1.04);
  }
  4.42% {
    transform: skewX(3deg);
  }
}

@keyframes blob-tear-out {
  0% {
    opacity: 1;
    clip-path: inset(0);
    transform: translate3d(0, 0, 0);
    filter: none;
  }
  0.78% {
    clip-path: inset(8% 0 64% 0);
    transform: translate3d(-7%, 0, 0);
    filter: contrast(1.7) saturate(1.8) hue-rotate(-18deg);
  }
  1.69% {
    clip-path: inset(46% 0 16% 0);
    transform: translate3d(8%, 0, 0);
    filter: contrast(1.5) saturate(2) hue-rotate(12deg);
  }
  2.6% {
    clip-path: inset(22% 0 42% 0);
    transform: translate3d(-5%, 0, 0);
    filter: contrast(1.8) saturate(1.4);
  }
  3.64% {
    clip-path: inset(68% 0 6% 0);
    transform: translate3d(6%, 0, 0);
    opacity: 1;
  }
  4.81% {
    clip-path: inset(0 0 0 0);
    transform: translate3d(-2%, 0, 0);
    opacity: 0.15;
    filter: contrast(1.3);
  }
  6.5% {
    opacity: 0;
    clip-path: inset(0);
    transform: none;
    filter: none;
  }
  7%,
  100% {
    opacity: 1;
    clip-path: inset(0);
    transform: none;
    filter: none;
  }
}

@keyframes blob-tear-in {
  0% {
    opacity: 0;
    clip-path: inset(62% 0 0 0);
    transform: translate3d(7%, 0, 0);
    filter: contrast(1.6) saturate(1.8);
  }
  0.91% {
    opacity: 1;
    clip-path: inset(14% 0 52% 0);
    transform: translate3d(-8%, 0, 0);
    filter: contrast(1.8) saturate(2) hue-rotate(16deg);
  }
  1.95% {
    clip-path: inset(48% 0 12% 0);
    transform: translate3d(6%, 0, 0);
    filter: contrast(1.5) saturate(1.6) hue-rotate(-10deg);
  }
  2.99% {
    clip-path: inset(6% 0 38% 0);
    transform: translate3d(-4%, 0, 0);
  }
  4.16% {
    clip-path: inset(0 0 18% 0);
    transform: translate3d(3%, 0, 0);
    filter: contrast(1.25) saturate(1.3);
  }
  5.33% {
    clip-path: inset(0);
    transform: translate3d(-1%, 0, 0);
    filter: none;
  }
  6.5% {
    opacity: 1;
    clip-path: inset(0);
    transform: none;
    filter: none;
  }
  7%,
  100% {
    opacity: 0;
    clip-path: inset(0);
    transform: none;
    filter: none;
  }
}

@keyframes blob-scan {
  0%,
  6.5%,
  100% {
    opacity: 0;
  }
  0.52% {
    opacity: 1;
  }
  1.17% {
    opacity: 0.2;
  }
  1.95% {
    opacity: 0.85;
  }
  2.99% {
    opacity: 0.15;
  }
  3.9% {
    opacity: 0.7;
  }
  5.07% {
    opacity: 0.12;
  }
}

@keyframes blob-ghost {
  0%,
  6.5%,
  100% {
    opacity: 0;
    transform: none;
    clip-path: inset(0);
  }
  0.78% {
    opacity: 0.7;
    clip-path: inset(10% 0 60% 0);
    transform: translate3d(-8%, 0, 0);
  }
  1.82% {
    opacity: 0.85;
    clip-path: inset(52% 0 14% 0);
    transform: translate3d(9%, 0, 0);
  }
  3.12% {
    opacity: 0.45;
    clip-path: inset(28% 0 36% 0);
    transform: translate3d(-5%, 0, 0);
  }
  4.55% {
    opacity: 0.2;
    clip-path: inset(70% 0 4% 0);
    transform: translate3d(4%, 0, 0);
  }
}

@keyframes blob-bars {
  0%,
  6.5%,
  100% {
    opacity: 0;
    transform: scaleY(0.2) skewX(-8deg);
  }
  1.04% {
    opacity: 1;
    transform: scaleY(1.8) skewX(10deg) translateX(-10px);
  }
  2.21% {
    opacity: 0.9;
    transform: scaleY(0.7) skewX(-6deg) translateX(16px);
  }
  3.38% {
    opacity: 1;
    transform: scaleY(1.4) skewX(4deg) translateX(-6px);
  }
  4.81% {
    opacity: 0.25;
    transform: scaleY(0.4) translateX(8px);
  }
}

@keyframes logo-marquee-from-left {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}

@keyframes logo-marquee-from-right {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes live-now-pulse {
  0% {
    box-shadow: 0 0 0 0 color-mix(in srgb, var(--color-cyan) 65%, transparent);
  }
  70% {
    box-shadow: 0 0 0 10px color-mix(in srgb, var(--color-cyan) 0%, transparent);
  }
  100% {
    box-shadow: 0 0 0 0 color-mix(in srgb, var(--color-cyan) 0%, transparent);
  }
}

.live-now .mapboxgl-ctrl-attrib {
  background: transparent;
  color: color-mix(in srgb, var(--color-sand) 45%, transparent);
  font-size: 10px;
}

.live-now .mapboxgl-ctrl-attrib a {
  color: color-mix(in srgb, var(--color-sand) 55%, transparent);
}

.live-now .mapboxgl-ctrl-logo {
  opacity: 0.45;
}

.live-now .mapboxgl-compact-show .mapboxgl-ctrl-attrib-inner {
  color: color-mix(in srgb, var(--color-sand) 70%, transparent);
}
