* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}

html.is-hero-entrance-locked {
  overflow-y: scroll;
  overscroll-behavior: none;
}

html.is-hero-entrance-locked body {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  touch-action: none;
}

body {
  margin: 0;
  color: var(--color-text-primary);
  background: var(--color-background-page);
  font-family: var(--font-body);
  font-size: var(--font-size-body);
  line-height: var(--line-height-body);
  -webkit-font-smoothing: antialiased;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 8px;
  left: 8px;
  padding: 10px 16px;
  color: var(--color-text-inverse);
  background: var(--color-brand-primary);
  border-radius: var(--radius-button);
  transform: translateY(-140%);
}

.skip-link:focus {
  transform: translateY(0);
}

.visually-hidden {
  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;
}

.shell {
  width: var(--layout-shell);
  margin-inline: auto;
}

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  color: var(--color-text-inverse);
  border-bottom: 1px solid var(--color-border-inverse);
  transition:
    color 280ms ease,
    background-color 280ms ease,
    border-color 280ms ease,
    box-shadow 280ms ease;
  will-change: opacity, transform;
}

.nav-shell {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.site-header.is-floating {
  position: fixed;
  z-index: 30;
  top: 12px;
  right: clamp(12px, 2vw, 36px);
  left: clamp(12px, 2vw, 36px);
  width: auto;
  background-color: rgb(255 255 255 / 94%);
  border: 1px solid rgb(9 17 39 / 12%);
  border-radius: var(--radius-pill);
  box-shadow: 0 16px 40px rgb(9 17 39 / 12%);
  backdrop-filter: blur(18px);
}

.site-header.is-floating .nav-shell {
  width: 100%;
  min-height: 64px;
  padding-inline: clamp(18px, 2vw, 32px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--color-text-inverse);
  font-family: var(--font-display);
  font-size: var(--font-size-body);
  font-weight: var(--font-weight-extrabold);
  letter-spacing: var(--letter-spacing-label);
}

.brand img {
  width: 28px;
  height: 32px;
  object-fit: contain;
}

.brand small {
  display: block;
  margin-top: 2px;
  color: var(--color-text-muted);
  font-size: var(--font-size-micro);
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.32em;
}

.site-header .brand img {
  width: 32px;
  height: 36px;
  transition: filter 280ms ease;
}

.brand-copy {
  display: grid;
  gap: 4px;
  line-height: 1;
}

.brand-name {
  font-size: var(--font-size-body);
  font-weight: var(--font-weight-bold);
  letter-spacing: var(--letter-spacing-subheadline);
  white-space: nowrap;
}

.site-header .brand small {
  margin: 0;
  color: var(--color-text-inverse-muted);
  font-family: var(--font-body);
  font-size: var(--font-size-micro);
  font-weight: var(--font-weight-medium);
  letter-spacing: 0.08em;
  text-transform: none;
  white-space: nowrap;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  color: var(--color-text-inverse-muted);
  font-size: var(--font-size-body-sm);
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--color-text-inverse);
}

.button {
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: var(--radius-button);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  cursor: pointer;
  font-size: var(--font-size-body-sm);
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.01em;
}

.icon {
  --icon-source: none;
  width: 1em;
  height: 1em;
  display: inline-block;
  flex: 0 0 auto;
  background-color: currentColor;
  -webkit-mask: var(--icon-source) center / contain no-repeat;
  mask: var(--icon-source) center / contain no-repeat;
}

.icon-arrow-down {
  --icon-source: url("../assets/icons/arrow-down.svg");
}

.icon-arrow-up-right {
  --icon-source: url("../assets/icons/arrow-up-right.svg");
}

.icon-circles-three-plus {
  --icon-source: url("../assets/icons/circles-three-plus.svg");
}

.icon-code {
  --icon-source: url("../assets/icons/code.svg");
}

.icon-headset {
  --icon-source: url("../assets/icons/headset.svg");
}

.icon-magnifying-glass {
  --icon-source: url("../assets/icons/magnifying-glass.svg");
}

.icon-paper-plane-tilt {
  --icon-source: url("../assets/icons/paper-plane-tilt.svg");
}

.button .icon,
.text-link .icon {
  font-size: 17px;
}

.button-small {
  min-height: 40px;
  padding-inline: 16px;
  font-size: var(--font-size-caption);
}

.button-outline {
  color: var(--color-text-inverse);
  border-color: rgba(255, 255, 255, 0.32);
}

.site-header.is-light {
  color: var(--color-text-primary);
  background-color: rgb(255 255 255 / 94%);
  border-color: rgb(9 17 39 / 12%);
  box-shadow: 0 16px 40px rgb(9 17 39 / 12%);
}

.site-header.is-light .brand,
.site-header.is-light .button-outline {
  color: var(--color-text-primary);
}

.site-header.is-light .brand img {
  filter: brightness(0) saturate(100%) invert(31%) sepia(98%) saturate(3652%)
    hue-rotate(224deg) brightness(85%) contrast(92%);
}

.site-header.is-light .brand small,
.site-header.is-light .main-nav {
  color: var(--color-text-secondary);
}

.site-header.is-light .main-nav a:hover,
.site-header.is-light .main-nav a:focus-visible {
  color: var(--color-brand-primary);
}

.site-header.is-light .button-outline {
  border-color: var(--color-border-strong);
}

.button-primary {
  color: var(--color-text-inverse);
  background: var(--color-brand-primary);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--color-brand-hover);
}

.blueprint {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
}

.hero {
  --hero-line-y: 70%;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  perspective: 1200px;
  min-height: 100vh;
  min-height: 100svh;
  padding-top: 82px;
  display: flex;
  flex-direction: column;
  color: var(--color-text-inverse);
  background: var(--color-hero-aperture);
}

@property --hero-aperture-stop {
  syntax: "<percentage>";
  inherits: true;
  initial-value: 30%;
}

.hero-aperture-light {
  --hero-aperture-stop: 30%;
  position: absolute;
  z-index: 2;
  top: var(--hero-line-y);
  left: 50%;
  width: var(--hero-aperture-width, max(100vw, 177.7778svh));
  height: var(--hero-aperture-height, auto);
  aspect-ratio: 16 / 9;
  isolation: isolate;
  overflow: hidden;
  background: var(--color-hero-aperture);
  transform: translate(-50%, -50%);
  transform-origin: 50% 50%;
  will-change: opacity, transform;
  pointer-events: none;
}

.hero-aperture-beams {
  position: absolute;
  z-index: 1;
  inset: 0;
}

.hero-aperture-half {
  position: absolute;
  top: 0;
  bottom: 0;
  overflow: hidden;
}

.hero-aperture-half::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--color-hero-aperture);
  background-image: conic-gradient(
    from 90deg,
    rgb(248 248 248) 0%,
    rgb(0 0 0) 0%,
    rgb(170 170 170) var(--hero-aperture-stop),
    rgb(248 248 248) 100%
  );
  background-blend-mode: color-dodge;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  transform: scaleX(1.504);
  transform-origin: 50% 50%;
}

.hero-aperture-half-left {
  left: 0;
  right: 50%;
}

.hero-aperture-half-right {
  left: 50%;
  right: 0;
}

.hero-aperture-half-right::before {
  transform: scaleX(-1.504);
}

.hero-aperture-vignette {
  position: absolute;
  z-index: 2;
  inset: 0;
  background: linear-gradient(
    to bottom,
    var(--color-hero-aperture) 0%,
    transparent 50%,
    var(--color-hero-aperture) 100%
  );
}

.hero-dimensional-line {
  position: absolute;
  z-index: 5;
  top: var(--hero-line-y);
  left: 50%;
  width: var(--hero-aperture-line-width, 50%);
  height: 1px;
  background: transparent;
  box-shadow: none;
  filter: brightness(1);
  transform: translateX(-50%);
  transform-origin: 50% 50%;
  will-change: opacity, transform;
  pointer-events: none;
}

.hero-dimensional-plane {
  position: absolute;
  z-index: 2;
  inset: 0;
  opacity: 0;
  background-color: var(--color-background-page);
  box-shadow: none;
  backface-visibility: hidden;
  transform: translate3d(0, 180px, 0) rotateX(90deg) scaleX(0.72);
  transform-origin: 50% 50%;
  will-change: opacity, transform, background-color;
  pointer-events: none;
}

.hero-grid {
  flex: 1;
  max-width: 1280px;
  min-height: 685px;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  justify-items: center;
  gap: 0;
  padding-block: 110px 190px;
}

.hero-copy {
  position: relative;
  z-index: 3;
  width: min(100%, 1280px);
  justify-self: center;
  text-align: center;
}

.hero-copy .eyebrow {
  justify-content: center;
}

.eyebrow {
  margin: 0 0 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-text-inverse-muted);
  font-size: var(--font-size-label);
  font-weight: var(--font-weight-bold);
  letter-spacing: var(--letter-spacing-wide);
  text-transform: uppercase;
}

.eyebrow span {
  width: 20px;
  height: 2px;
  background: var(--color-brand-accent);
}

.eyebrow-dark {
  color: var(--color-brand-primary);
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: var(--font-weight-semibold);
  text-wrap: pretty;
}

p {
  text-wrap: pretty;
}

h1 {
  max-width: 1120px;
  margin: 0 auto;
  font-size: var(--font-size-display);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-display);
  letter-spacing: var(--letter-spacing-display);
}

h1 em,
.statement h2 em {
  color: var(--color-brand-accent);
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: var(--font-weight-regular);
}

.hero-title {
  max-width: 1280px;
  font-size: clamp(2.5rem, 3.35vw, 3.625rem);
  line-height: 1.02;
  text-wrap: balance;
}

.hero-title-question {
  display: block;
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: var(--font-weight-regular);
}

.hero-title-loop {
  height: 1.3em;
  margin-top: 12px;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  color: var(--color-hero-loop);
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 3.45vw, 3.75rem);
  font-style: normal;
  font-weight: var(--font-weight-bold);
  line-height: 1.2;
  text-shadow: 0 3px 22px rgb(8 8 30 / 32%);
}

.hero-title-loop > span {
  display: block;
  will-change: opacity, transform;
}

.hero-actions {
  margin-top: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.hero-scroll-indicator {
  position: absolute;
  z-index: 6;
  bottom: clamp(22px, 3.6vh, 40px);
  left: 50%;
  width: 40px;
  min-height: 58px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  gap: 3px;
  opacity: 0.72;
  translate: -50% 0;
  transition: opacity 180ms ease;
  will-change: opacity, transform;
}

.hero-scroll-indicator:hover,
.hero-scroll-indicator:focus-visible {
  opacity: 1;
}

.hero-scroll-indicator img {
  display: block;
  filter: brightness(0) invert(1);
}

.hero-scroll-mouse {
  width: 25px;
  height: 25px;
}

.hero-scroll-caret {
  width: 16px;
  height: 16px;
  animation: hero-scroll-caret 1.7s ease-in-out infinite;
}

@keyframes hero-scroll-caret {
  0%,
  100% {
    opacity: 0.25;
    transform: translateY(-2px);
  }

  45% {
    opacity: 1;
  }

  70% {
    opacity: 0.35;
    transform: translateY(6px);
  }
}

.hero-button {
  min-height: 48px;
  padding-inline: 22px;
  border-radius: var(--radius-pill);
  gap: 14px;
  font-size: var(--font-size-caption);
  backdrop-filter: blur(14px);
  transition:
    color 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.hero-button:hover,
.hero-button:focus-visible {
  transform: translateY(-2px);
}

.hero-button-primary {
  color: var(--color-text-inverse);
  background-color: rgb(8 8 30 / 86%);
  border-color: rgb(220 230 255 / 24%);
  box-shadow:
    0 12px 30px rgb(8 8 30 / 28%),
    inset 0 1px 0 rgb(255 255 255 / 10%);
}

.hero-button-primary:hover,
.hero-button-primary:focus-visible {
  background-color: rgb(8 8 30 / 96%);
  border-color: rgb(220 230 255 / 42%);
  box-shadow:
    0 16px 34px rgb(8 8 30 / 34%),
    inset 0 1px 0 rgb(255 255 255 / 14%);
}

.hero-button-secondary {
  color: var(--color-text-inverse);
  background-color: rgb(255 255 255 / 10%);
  border-color: rgb(255 255 255 / 28%);
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 10%);
}

.hero-button-secondary:hover,
.hero-button-secondary:focus-visible {
  background-color: rgb(255 255 255 / 18%);
  border-color: rgb(255 255 255 / 48%);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--color-neutral-100);
  font-size: var(--font-size-body-sm);
  font-weight: var(--font-weight-bold);
}

.text-link-dark {
  color: var(--color-text-primary);
}

.trust-row {
  position: relative;
  z-index: 3;
  max-width: 1280px;
  min-height: 102px;
  border-top: 1px solid var(--color-border-inverse);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.trust-row p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: var(--font-size-label);
  letter-spacing: var(--letter-spacing-label);
  text-transform: uppercase;
}

.trust-items {
  display: flex;
  gap: 42px;
}

.trust-items span {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--color-text-inverse-muted);
  font-size: var(--font-size-body-sm);
}

.trust-items i {
  width: 7px;
  height: 7px;
  border: 1px solid var(--color-brand-accent);
  transform: rotate(45deg);
}

@media (max-width: 980px) {
  :root { --layout-shell: min(100% - 36px, 760px); }
  .main-nav { display: none; }
  .hero-grid { grid-template-columns: 1fr; padding-block: 110px 60px; }
  .trust-row { align-items: start; padding-block: 28px; flex-direction: column; }
}

@media (max-width: 680px) {
  :root { --layout-shell: calc(100% - 32px); }
  .site-header .button { display: none; }
  .nav-shell { min-height: 72px; }
  .site-header.is-floating .nav-shell { min-height: 58px; }
  .hero { padding-top: 72px; }
  .hero-title { font-size: clamp(2.25rem, 9vw, 2.75rem); line-height: 1.05; }
  .hero-title-loop { height: 2.5em; margin-top: 16px; padding-inline: 4px; font-size: clamp(2.125rem, 10vw, 3rem); }
  .hero-dimensional-line { width: var(--hero-aperture-line-width, 50%); }
  .hero-dimensional-plane { transform: translate3d(0, 250px, 0) rotateX(90deg) scaleX(0.82); }
  .hero-grid { gap: 0; padding-top: 80px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-scroll-indicator { bottom: 18px; }
  .hero-actions .text-link { justify-content: center; }
  .trust-row { align-items: flex-start; }
  .trust-items { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 36px; }
}