:root {
  --black: #050505;
  --ink: #f4f4f4;
  --subtle: #737373;
  --lime: #d8ff3f;
  --panel: #111111;
  --line: rgba(255, 255, 255, 0.1);
  --proof-scale: 0.92;
  --proof-lift: 54px;
  --proof-width: 1080px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 0;
  background: var(--black);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 24%),
    repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.018) 0,
      rgba(255, 255, 255, 0.018) 1px,
      transparent 1px,
      transparent 5px
    );
  opacity: 0.34;
}

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

img {
  display: block;
}

::selection {
  background: var(--lime);
  color: var(--black);
}

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 20px 16px;
  color: rgba(244, 244, 244, 0.88);
  background: linear-gradient(180deg, rgba(5, 5, 5, 0.88), transparent);
}

.site-nav__brand,
.site-nav__links a {
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0;
  text-transform: uppercase;
}

.site-nav__links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}

.site-nav a {
  transition: color 180ms ease;
}

.site-nav a:hover {
  color: var(--lime);
}

.hero {
  position: relative;
  min-height: 100svh;
  padding: 106px 20px 28svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--black);
  isolation: isolate;
}

.hero__background {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero__background video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
}

.hero__background::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.78) 0%, rgba(5, 5, 5, 0.58) 38%, rgba(5, 5, 5, 0.34) 100%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.5) 0%, rgba(5, 5, 5, 0.24) 48%, rgba(5, 5, 5, 0.84) 100%);
}

.hero__inner,
.section-grid,
.metric-grid,
.layer-stack,
.contact__inner {
  width: min(100%, 1180px);
  margin-inline: auto;
}

.hero__inner {
  display: grid;
  gap: 42px;
  position: relative;
  z-index: 1;
}

.hero__content {
  max-width: 760px;
}

.hero__eyebrow,
.kicker {
  margin: 0 0 18px;
  color: var(--lime);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  max-width: 12ch;
  color: var(--ink);
  font-size: 72px;
  font-weight: 950;
  line-height: 0.82;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero__subheading {
  max-width: 580px;
  margin: 22px 0 0;
  color: rgba(244, 244, 244, 0.84);
  font-size: 20px;
  font-weight: 650;
  line-height: 1.2;
  letter-spacing: 0;
}

.hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.hero__tags span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: rgba(244, 244, 244, 0.78);
  background: rgba(255, 255, 255, 0.035);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0;
  text-transform: uppercase;
}

.proof {
  position: relative;
  min-height: 100svh;
  margin-top: -18svh;
  padding: 0 16px 118px;
}

.proof__stage {
  width: min(100%, var(--proof-width));
  max-width: 100%;
  margin: 0 auto;
  transform: translate3d(0, var(--proof-lift), 0) scale(var(--proof-scale));
  transform-origin: top center;
  transition: transform 80ms linear;
  will-change: transform;
}

.proof__stage--inline {
  width: min(100%, 1300px);
  margin-top: 104px;
  transform: none;
  transition: none;
  will-change: auto;
}

.proof__frame {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-height: 360px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid rgba(216, 255, 63, 0.34);
  border-radius: 8px;
  background: var(--panel);
  box-shadow:
    0 42px 110px rgba(0, 0, 0, 0.68),
    0 0 34px rgba(216, 255, 63, 0.08),
    inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.proof__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85) contrast(1.06) brightness(0.7);
}

.proof__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.02), rgba(5, 5, 5, 0.72)),
    linear-gradient(90deg, rgba(5, 5, 5, 0.76), transparent 58%);
}

.proof__caption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 2;
  display: grid;
  gap: 8px;
  max-width: 420px;
}

.proof__caption span,
.metric-card span,
.layer-block__label span,
.mini-roles span {
  color: var(--lime);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.proof__caption strong {
  color: rgba(244, 244, 244, 0.92);
  font-size: 26px;
  line-height: 1;
  letter-spacing: 0;
}

.sound-toggle {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(5, 5, 5, 0.58);
  cursor: pointer;
  touch-action: manipulation;
  backdrop-filter: blur(12px);
  transition:
    color 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.sound-toggle:hover {
  color: var(--lime);
  border-color: rgba(216, 255, 63, 0.48);
  background: rgba(5, 5, 5, 0.72);
}

.sound-toggle:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 3px;
}

.sound-toggle__icon {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.sound-toggle__wave,
.sound-toggle__slash {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.sound-toggle.is-unmuted .sound-toggle__slash {
  opacity: 0;
}

.proof__intro {
  padding-top: 112px;
}

.section {
  padding: 112px 20px;
}

.section-grid {
  display: grid;
  gap: 26px;
}

h2 {
  margin: 0;
  max-width: 780px;
  color: var(--ink);
  font-size: 42px;
  line-height: 0.96;
  letter-spacing: 0;
}

.section-copy {
  margin: 0;
  max-width: 680px;
  color: rgba(244, 244, 244, 0.72);
  font-size: 18px;
  line-height: 1.5;
}

.section-copy--intro {
  position: relative;
  display: grid;
  gap: 10px;
  max-width: 560px;
  padding: 4px 0 8px 18px;
  border-left: 1px solid rgba(216, 255, 63, 0.34);
  color: rgba(244, 244, 244, 0.66);
  font-size: 16px;
  line-height: 1.42;
}

.section-copy--intro::before {
  position: absolute;
  top: 0;
  left: -1px;
  width: 1px;
  height: 44px;
  background: var(--lime);
  box-shadow: 0 0 18px rgba(216, 255, 63, 0.28);
  content: "";
}

.section-copy--intro::after {
  position: absolute;
  left: 18px;
  right: 18%;
  bottom: -12px;
  height: 1px;
  background: linear-gradient(90deg, rgba(216, 255, 63, 0.38), transparent);
  content: "";
}

.section-copy--intro span {
  display: block;
}

.section-copy--intro span:first-child {
  color: rgba(244, 244, 244, 0.94);
  font-size: 17px;
  font-weight: 850;
  line-height: 1.18;
}

.section-copy--intro span:last-child {
  max-width: 44ch;
}

.metric-grid {
  display: grid;
  gap: 12px;
  margin-top: 42px;
}

.metric-card,
.layer-block {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.metric-card {
  padding: 20px;
}

.metric-card strong {
  display: block;
  margin-top: 16px;
  color: var(--ink);
  font-size: 30px;
  line-height: 0.96;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.metric-card p,
.layer-block p,
.offer-list p,
.mini-roles p {
  margin: 12px 0 0;
  color: rgba(244, 244, 244, 0.68);
  font-size: 15px;
  line-height: 1.5;
}

.journey {
  padding-top: 124px;
  padding-bottom: 124px;
  border-top: 1px solid var(--line);
}

.layer-stack {
  display: grid;
  gap: 28px;
  margin-top: 56px;
}

.layer-block {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 30px;
  padding: 30px 22px;
  background:
    linear-gradient(135deg, rgba(216, 255, 63, 0.055), transparent 32%),
    rgba(255, 255, 255, 0.028);
  isolation: isolate;
}

.layer-block::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background:
    repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.026) 0,
      rgba(255, 255, 255, 0.026) 1px,
      transparent 1px,
      transparent 6px
    ),
    linear-gradient(90deg, rgba(216, 255, 63, 0.08), transparent 28%);
  opacity: 0.42;
}

.layer-block::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  border-left: 1px solid rgba(216, 255, 63, 0.34);
  content: "";
}

.layer-block--feature {
  padding: 34px 22px;
  background:
    linear-gradient(135deg, rgba(216, 255, 63, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.018));
}

.layer-block__body {
  min-width: 0;
}

.layer-block__label strong {
  display: block;
  max-width: 260px;
  margin-top: 10px;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.1;
}

.layer-block h3 {
  margin-top: 0;
  margin-bottom: 0;
  color: var(--ink);
  font-size: 30px;
  line-height: 1.02;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.layer-block h3 a {
  display: inline-flex;
  margin-left: 8px;
  color: var(--lime);
  font-size: 12px;
  vertical-align: middle;
  text-transform: uppercase;
}

.role-meta {
  color: var(--subtle);
  font-weight: 750;
  text-transform: uppercase;
}

.clean-list {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.clean-list li {
  position: relative;
  padding-left: 18px;
  color: rgba(244, 244, 244, 0.72);
  font-size: 15px;
  line-height: 1.45;
}

.clean-list li::before {
  position: absolute;
  top: 0.64em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lime);
  content: "";
}

.mini-roles {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.mini-roles div {
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.proof-account {
  margin-top: 34px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.proof-account h4 {
  margin: 0;
  color: var(--ink);
  font-size: 21px;
  line-height: 1.08;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.proof-account__copy {
  max-width: 760px;
}

.proof-account__brand-link {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  width: fit-content;
  max-width: 100%;
  margin-top: 8px;
  padding: 10px 12px;
  border: 1px solid rgba(216, 255, 63, 0.42);
  border-radius: 8px;
  color: var(--lime);
  background: rgba(216, 255, 63, 0.055);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 0 0 24px rgba(216, 255, 63, 0.08);
  transition:
    color 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.proof-account__brand-link span {
  color: rgba(244, 244, 244, 0.62);
  font-size: 11px;
  font-weight: 750;
  text-transform: none;
}

.proof-account__brand-link:hover,
.proof-account__brand-link:focus-visible {
  color: #f4f4f4;
  border-color: rgba(216, 255, 63, 0.78);
  background: rgba(216, 255, 63, 0.1);
  transform: translateY(-1px);
}

.video-carousel {
  position: relative;
  overflow: hidden;
  margin-top: 30px;
  padding: 14px;
  border: 1px solid rgba(216, 255, 63, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(216, 255, 63, 0.045), transparent 46%),
    rgba(5, 5, 5, 0.58);
  box-shadow: 0 0 34px rgba(216, 255, 63, 0.06);
  isolation: isolate;
}

.video-carousel::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background:
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.035) 0,
      rgba(255, 255, 255, 0.035) 1px,
      transparent 1px,
      transparent 8px
    ),
    repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.025) 0,
      rgba(255, 255, 255, 0.025) 1px,
      transparent 1px,
      transparent 5px
    );
  opacity: 0.24;
}

.video-carousel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}

.video-carousel__head > span {
  color: var(--lime);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.video-carousel__controls {
  display: flex;
  gap: 8px;
  flex: 0 0 auto;
}

.video-carousel__controls button {
  min-height: 32px;
  padding: 0 10px;
  border: 1px solid rgba(216, 255, 63, 0.3);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(5, 5, 5, 0.62);
  font: inherit;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    color 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.video-carousel__controls button:hover,
.video-carousel__controls button:focus-visible {
  color: var(--lime);
  border-color: rgba(216, 255, 63, 0.7);
  background: rgba(216, 255, 63, 0.08);
}

.video-carousel__track {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 10px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-color: rgba(216, 255, 63, 0.82) rgba(255, 255, 255, 0.08);
  scrollbar-width: thin;
  cursor: grab;
  overscroll-behavior-x: contain;
}

.video-carousel__track::-webkit-scrollbar {
  height: 8px;
}

.video-carousel__track::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.08);
}

.video-carousel__track::-webkit-scrollbar-thumb {
  border-radius: 8px;
  background: rgba(216, 255, 63, 0.72);
}

.video-carousel__track:focus-visible {
  outline: 2px solid rgba(216, 255, 63, 0.72);
  outline-offset: 3px;
}

.video-carousel__track.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}

.video-tile {
  position: relative;
  flex: 0 0 280px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(216, 255, 63, 0.18), transparent 38%),
    #070707;
  scroll-snap-align: start;
  isolation: isolate;
}

.video-carousel--live .video-tile {
  background: #050505;
}

.video-carousel--wide .video-tile {
  flex-basis: min(78vw, 360px);
  aspect-ratio: 16 / 9;
}

.video-carousel--vertical .video-tile {
  flex-basis: 156px;
  aspect-ratio: 9 / 16;
}

.video-carousel--vertical .video-tile--embed {
  flex-basis: min(86vw, 325px);
  aspect-ratio: 325 / 760;
  min-height: clamp(690px, 190vw, 760px);
}

.video-tile video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #050505;
}

.video-tile::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(180deg, transparent 52%, rgba(5, 5, 5, 0.78)),
    linear-gradient(90deg, rgba(216, 255, 63, 0.12), transparent 36%);
}

.video-carousel--live .video-tile::before {
  display: none;
}

.video-tile--embed .tiktok-embed,
.video-tile--embed .tiktok-embed iframe,
.video-tile--embed iframe {
  position: absolute !important;
  inset: 0 !important;
  z-index: 0;
  width: 100% !important;
  min-width: 0 !important;
  max-width: none !important;
  height: 100% !important;
  min-height: 100% !important;
  max-height: none !important;
  margin: 0 !important;
  border: 0 !important;
  background: #050505;
  display: block !important;
}

.video-tile--embed .tiktok-embed {
  overflow: hidden !important;
}

.video-tile--embed .tiktok-embed a {
  color: rgba(244, 244, 244, 0.78);
  font-size: 13px;
}

.video-tile span {
  position: absolute;
  left: 10px;
  bottom: 10px;
  z-index: 2;
  display: inline-flex;
  padding: 5px 7px;
  border: 1px solid rgba(216, 255, 63, 0.32);
  border-radius: 8px;
  color: var(--lime);
  background: rgba(5, 5, 5, 0.68);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.offer-list {
  display: grid;
  gap: 14px;
}

.offer-list p {
  margin: 0;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  color: rgba(244, 244, 244, 0.78);
  font-size: 18px;
}

.contact {
  position: relative;
  overflow: hidden;
  min-height: 92svh;
  padding: 126px 20px 54px;
  border-top: 1px solid rgba(216, 255, 63, 0.18);
  background: var(--black);
  isolation: isolate;
}

.contact__background {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.contact__background video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  opacity: 0.86;
  filter: saturate(0.96) contrast(1.04) brightness(0.96);
}

.contact::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.76) 0%, rgba(5, 5, 5, 0.56) 46%, rgba(5, 5, 5, 0.22) 100%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.74) 0%, rgba(5, 5, 5, 0.28) 44%, rgba(5, 5, 5, 0.76) 100%),
    repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.028) 0,
      rgba(255, 255, 255, 0.028) 1px,
      transparent 1px,
      transparent 6px
    );
}

.contact__inner {
  position: relative;
  z-index: 2;
  min-height: 70svh;
  display: grid;
  align-content: center;
  gap: 42px;
}

.contact__copy {
  max-width: 900px;
}

.contact h2 {
  max-width: 900px;
  font-size: 48px;
}

.contact__meta {
  max-width: 560px;
  margin: 22px 0 0;
  color: rgba(244, 244, 244, 0.68);
  font-size: 16px;
  line-height: 1.45;
}

.contact__email {
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  margin-top: 28px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--lime);
  color: var(--ink);
  font-size: 22px;
  font-weight: 850;
  line-height: 1.1;
  overflow-wrap: anywhere;
}

.contact__offer-list {
  align-self: end;
  padding: 18px;
  border: 1px solid rgba(216, 255, 63, 0.2);
  border-radius: 8px;
  background: rgba(5, 5, 5, 0.46);
  box-shadow:
    0 0 34px rgba(216, 255, 63, 0.06),
    inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
}

.has-js [data-reveal] {
  --reveal-delay: 0ms;
  --reveal-x: 0px;
  --reveal-y: 38px;
  --reveal-scale: 0.985;
  --reveal-blur: 8px;

  opacity: 0;
  filter: blur(var(--reveal-blur));
  transform: translate3d(var(--reveal-x), var(--reveal-y), 0) scale(var(--reveal-scale));
  transition:
    opacity 720ms ease,
    filter 880ms ease,
    transform 920ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--reveal-delay);
  will-change: opacity, filter, transform;
}

.has-js [data-reveal].is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0) scale(1);
}

.has-js .section-grid > [data-reveal]:nth-child(2) {
  --reveal-delay: 120ms;
  --reveal-x: 28px;
}

.has-js .metric-card:nth-child(1) {
  --reveal-delay: 0ms;
}

.has-js .metric-card:nth-child(2) {
  --reveal-delay: 90ms;
}

.has-js .metric-card:nth-child(3) {
  --reveal-delay: 180ms;
}

.has-js .metric-card:nth-child(4) {
  --reveal-delay: 270ms;
}

.has-js .layer-block {
  --reveal-y: 64px;
  --reveal-scale: 0.965;
  --reveal-blur: 10px;
}

.has-js .layer-block__label,
.has-js .layer-block__body {
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  transition:
    opacity 620ms ease,
    transform 760ms cubic-bezier(0.16, 1, 0.3, 1);
}

.has-js .layer-block__body {
  transition-delay: 140ms;
}

.has-js .layer-block.is-visible .layer-block__label,
.has-js .layer-block.is-visible .layer-block__body {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.has-js .video-carousel {
  --reveal-y: 30px;
  --reveal-scale: 0.98;
}

.has-js .proof-account:nth-of-type(1) {
  --reveal-delay: 0ms;
}

.has-js .proof-account:nth-of-type(2) {
  --reveal-delay: 90ms;
}

.has-js .proof-account:nth-of-type(3) {
  --reveal-delay: 180ms;
}

@media (min-width: 380px) {
  .hero h1 {
    font-size: 82px;
  }

  h2 {
    font-size: 46px;
  }
}

@media (min-width: 640px) {
  .site-nav {
    padding: 26px 34px;
  }

  .site-nav__brand,
  .site-nav__links a {
    font-size: 13px;
  }

  .site-nav__links {
    gap: 18px;
  }

  .hero,
  .section,
  .contact {
    padding-left: 34px;
    padding-right: 34px;
  }

  .hero h1 {
    font-size: 120px;
  }

  .hero__subheading {
    font-size: 24px;
  }

  .proof {
    padding-left: 34px;
    padding-right: 34px;
  }

  .proof__caption {
    left: 28px;
    bottom: 28px;
  }

  .proof__caption strong {
    font-size: 34px;
  }

  h2 {
    font-size: 58px;
  }

  .metric-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .layer-block {
    grid-template-columns: 220px minmax(0, 1fr);
    padding: 36px;
  }

  .layer-block--feature {
    padding: 42px 36px;
  }

  .video-carousel--wide .video-tile {
    flex-basis: 380px;
  }

  .video-carousel--vertical .video-tile {
    flex-basis: 180px;
  }

  .video-carousel--vertical .video-tile--embed {
    flex-basis: min(46vw, 325px);
  }

  .contact h2 {
    font-size: 66px;
  }
}

@media (min-width: 1000px) {
  .site-nav {
    padding: 30px 54px;
  }

  .hero,
  .section,
  .contact {
    padding-left: 54px;
    padding-right: 54px;
  }

  .hero h1 {
    font-size: 168px;
  }

  .hero__subheading {
    font-size: 28px;
  }

  .proof {
    padding-left: 54px;
    padding-right: 54px;
  }

  .proof__caption {
    left: 36px;
    bottom: 34px;
  }

  .section-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.8fr);
    align-items: start;
  }

  .section-copy--intro {
    align-self: end;
    margin-top: 8px;
  }

  .metric-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .metric-card strong {
    font-size: 28px;
  }

  .layer-block {
    grid-template-columns: 300px minmax(0, 1fr);
    padding: 42px;
  }

  .layer-block--feature {
    grid-template-columns: 320px minmax(0, 1fr);
    padding: 50px;
  }

  .layer-block__label strong {
    font-size: 26px;
  }

  .layer-block h3 {
    font-size: 36px;
  }

  .video-carousel--wide .video-tile {
    flex-basis: 430px;
  }

  .video-carousel--vertical .video-tile {
    flex-basis: 210px;
  }

  .video-carousel--vertical .video-tile--embed {
    flex-basis: 325px;
  }

  .contact__inner {
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.82fr);
    align-items: end;
  }

  .contact__offer-list {
    margin-bottom: 16px;
  }

  .contact h2 {
    font-size: 82px;
  }
}

@media (min-width: 1400px) {
  .hero h1 {
    font-size: 196px;
  }
}

@media (max-width: 640px) {
  .proof {
    overflow: visible;
  }

  .proof__stage {
    width: 100%;
    max-width: 100%;
    transform: none;
    transition: none;
    will-change: auto;
  }

  .proof__frame {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 520px) {
  .site-nav {
    align-items: flex-start;
  }

  .site-nav__links {
    max-width: 210px;
  }

  .hero__eyebrow {
    max-width: 220px;
    line-height: 1.25;
  }

  h2 {
    font-size: 38px;
  }

  .section {
    padding-top: 88px;
    padding-bottom: 88px;
  }

  .section-copy--intro {
    padding-left: 14px;
    font-size: 15px;
  }

  .section-copy--intro span:first-child {
    font-size: 16px;
  }

  .proof {
    margin-top: -16svh;
    padding: 0 12px 92px;
  }

  .proof__frame {
    aspect-ratio: 16 / 9;
  }

  .proof__shade {
    background:
      linear-gradient(180deg, rgba(5, 5, 5, 0.04), rgba(5, 5, 5, 0.68)),
      linear-gradient(90deg, rgba(5, 5, 5, 0.62), transparent 82%);
  }

  .proof__caption {
    left: 14px;
    right: 74px;
    bottom: 14px;
    gap: 6px;
    max-width: none;
  }

  .proof__caption strong {
    font-size: 18px;
    line-height: 1.05;
  }

  .sound-toggle {
    right: 14px;
    bottom: 14px;
    width: 46px;
    height: 46px;
  }

  .sound-toggle__icon {
    width: 21px;
    height: 21px;
  }

  .layer-block {
    padding: 24px 16px;
  }

  .layer-block h3 {
    font-size: 26px;
  }

  .proof-account h4 {
    font-size: 19px;
  }

  .video-carousel {
    margin-top: 24px;
    padding: 12px;
  }

  .video-carousel__head {
    align-items: flex-start;
    flex-direction: column;
  }

  .video-carousel__controls {
    width: 100%;
  }

  .video-carousel__controls button {
    flex: 1;
  }

  .video-carousel--wide .video-tile {
    flex-basis: 82vw;
  }

  .video-carousel--vertical .video-tile {
    flex-basis: 148px;
  }

  .video-carousel--vertical .video-tile--embed {
    flex-basis: min(82vw, 325px);
  }

  .contact {
    min-height: 88svh;
    padding-top: 96px;
    padding-bottom: 42px;
  }

  .contact__inner {
    gap: 30px;
  }

  .contact__meta {
    font-size: 15px;
  }

  .contact__offer-list {
    padding: 14px;
  }

  .contact__offer-list p {
    font-size: 15px;
  }

  .contact h2 {
    font-size: 40px;
  }

  .contact__email {
    font-size: 20px;
  }
}

@media (max-width: 360px) {
  .site-nav__links {
    max-width: 178px;
    gap: 8px;
  }

  .hero {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero h1 {
    font-size: 64px;
  }

  h2 {
    font-size: 34px;
  }

  .proof__caption strong {
    font-size: 16px;
  }

  .sound-toggle {
    width: 42px;
    height: 42px;
  }

  .contact h2 {
    font-size: 36px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .proof__stage {
    transform: none;
    transition: none;
  }

  .has-js [data-reveal] {
    opacity: 1;
    filter: none;
    transform: none;
    transition: none;
  }

  .has-js .layer-block__label,
  .has-js .layer-block__body {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
