* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --pink: #007bff;
  --pink-rgb: 0, 123, 255;
  --black: #0b0b0b;
  --white: #f0ede8;
  --mono: "IBM Plex Mono", sans-serif;
  --header-h: 44px;
  --logo-w: 100px;
  --shape-w: 770px;
  --shape-h: 710px;
}

html,
body {
  width: 100%;
  background: var(--black);
  color: var(--white);
  font-family: var(--mono);
  overflow-x: hidden;
  cursor: none;
}

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

#preloader {
  position: fixed;
  inset: 0;
  background: #000;
  z-index: 100000;
  display: grid;
  place-items: center;
}

.pre-center-logo {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  max-width: 600px;
}

.pre-bottom {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  pointer-events: none;
}

.pre-bottom-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 0 18px 14px;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.pre-pct {
  color: var(--pink);
}

.pre-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  height: 8px;
  background: rgba(var(--pink-rgb), 0.16);
}

.pre-bar-fill {
  height: 100%;
  width: 0%;
  background: var(--pink);
  transform-origin: left center;
}

#cur {
  position: fixed;
  width: 8px;
  height: 8px;
  background: var(--pink);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
}

#cur-r {
  position: fixed;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(var(--pink-rgb), 0.45);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition:
    width 0.3s,
    height 0.3s,
    border-color 0.3s;
}

body.hov #cur-r {
  width: 56px;
  height: 56px;
  border-color: var(--pink);
}

#grain-wrap {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9000;
  opacity: 0.12;
}

#grain {
  position: absolute;
  inset: 0;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 800;
  height: var(--header-h);
  background: #00000026;
  border-bottom: 1px solid var(--pink);
  display: flex;
  align-items: stretch;
  justify-content: center;
}

.nav-menu-btn {
  display: none;
  margin-left: auto;
  padding: 0 18px;
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-family: var(--mono);
  background: transparent;
  color: var(--pink);
  border: 0;
  cursor: pointer;
  white-space: nowrap;
}

.nav-menu {
  display: none;
}

.nav-logo {
  width: var(--logo-w);
  background: var(--pink);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s;
  cursor: pointer;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
}

.nav-logo:hover {
  background: #0468d3;
}

.nav-logo img {
  height: 32px;
  width: auto;
  filter: none;
}

.nav-links {
  display: flex;
  align-items: stretch;
}

.nav-links a {
  display: flex;
  align-items: center;
  padding: 0 18px;
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-right: 1px solid rgba(var(--pink-rgb), 0.15);
  transition:
    color 0.2s,
    background 0.2s;
  white-space: nowrap;
  position: relative;
}
.nav-links a:last-child {
  border-right: 0;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--pink);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.25s ease;
  opacity: 0.8;
}

.nav-links a:hover {
  color: var(--pink);
  background: rgba(var(--pink-rgb), 0.06);
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-right {
  margin-left: auto;
  display: flex;
  align-items: stretch;
}

.nav-powered {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 14px;
  font-size: 10px;
  line-height: 1.6;
  color: white;
  border-right: 1px solid rgba(var(--pink-rgb), 0.2);
  white-space: nowrap;
}

.nav-powered span {
  z-index: 100;
  color: #fff;
  text-transform: capitalize;
  text-shadow: 0 0 13px var(--pink);
  mix-blend-mode: normal;
  font-style: italic;
  font-weight: 600;
  position: relative;
}

.nav-gen {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 18px;
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--pink);
  transition:
    background 0.2s,
    color 0.2s;
  clip-path: polygon(0 0, 92% 0, 100% 50%, 92% 100%, 0 100%, 4% 50%);
}

.nav-gen:hover {
  background: var(--pink);
  color: var(--black);
}

.nav-gen-ic {
  width: 16px;
  height: 16px;
  display: block;
  filter: none;
}

@keyframes flicker {
  0% {
    opacity: 1;
  }

  3% {
    opacity: 0.2;
  }

  6% {
    opacity: 1;
  }

  7% {
    opacity: 0.4;
  }

  9% {
    opacity: 1;
  }

  64% {
    opacity: 1;
  }

  66% {
    opacity: 0.35;
  }

  67% {
    opacity: 1;
  }

  100% {
    opacity: 1;
  }
}

.flicker {
  animation: flicker 3.4s steps(1, end) infinite;
}

#hero {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: var(--header-h);
}

#vbg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
  opacity: 0;
  z-index: 1;
  pointer-events: none;
  transform: scale(1.04);
}

#shape-stage {
  position: absolute;
  left: 50%;
  top: 50%;
  width: var(--shape-w);
  height: var(--shape-h);
  transform: translate(-50%, -50%) scale(var(--shape-stage-scale, 1));
  z-index: 4;
  pointer-events: none;
}

#shape-wrap {
  position: absolute;
  inset: 0;
  transform-origin: center center;
  will-change: transform;
  cursor: pointer;
  pointer-events: auto;
}

#shape-svg {
  width: 100%;
  height: 100%;
  display: block;
  overflow: visible;
}

#shape-svg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) brightness(0.88);
  transform-origin: center center;
  pointer-events: none;
  transition: filter 0.5s;
}

#shape-wrap:hover #shape-vid {
  filter: grayscale(0.3) brightness(1.05);
}

.enter-pill {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  background: var(--pink);
  color: var(--black);
  font-family: var(--mono);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 9px 22px;
  white-space: nowrap;
  pointer-events: none;
  z-index: 10;
  opacity: 0;
  transition:
    transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
    opacity 0.25s;
}

#shape-wrap:hover .enter-pill {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.hud {
  position: absolute;
  z-index: 5;
  pointer-events: none;
}

#hud-bio {
  left: 16px;
  top: calc(var(--header-h) + 28px);
  width: 350px;
  font-size: 14px;
  line-height: 20px;
  color: var(--white);
}

#hud-bio .hl {
  background: var(--pink);
  color: var(--black);
  padding: 1px 5px;
  font-weight: 700;
}

#hud-tech {
  top: -6px;
  right: -82px;
  font-size: 14px;
  color: var(--pink);
  letter-spacing: 0.12em;
  line-height: 1.7;
  text-align: right;
}

.hud-arc {
  right: -170px;
  top: 120px;
  width: 100px;
  height: 280px;
  opacity: 0.5;
}

#hud-abp {
  right: -146px;
  top: 170px;
  display: flex;
  flex-direction: column;
  gap: 76px;
  font-size: 0.62rem;
  color: var(--pink);
}

.hud-edge {
  right: -218px;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  font-size: 0.4rem;
  letter-spacing: 0.22em;
  color: #333;
}

.hud-cam {
  left: 16px;
  bottom: 130px;
  font-size: 0.5rem;
  color: #444;
  line-height: 1.9;
}

.hud-abprgm {
  left: 390px;
  bottom: 116px;
  font-size: 0.5rem;
  color: #333;
  line-height: 2;
}

.hud-scribble {
  left: 260px;
  bottom: 52px;
  opacity: 0.28;
}

#hud-meta {
  left: 16px;
  bottom: 20px;
}

#hud-meta .tm {
  font-size: 0.68rem;
  color: var(--white);
  margin-bottom: 3px;
}

#hud-meta .br {
  font-size: 0.54rem;
  font-weight: 700;
  letter-spacing: 0.07em;
}

#hud-meta .st {
  font-size: 0.5rem;
  color: var(--pink);
  margin-top: 2px;
}

#hud-meta .ur {
  font-size: 0.46rem;
  color: #444;
  margin-top: 1px;
}

#hud-ver {
  bottom: 52px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.58rem;
  color: var(--pink);
  letter-spacing: 0.1em;
}

#hud-ver .sep {
  color: #555;
}

#hero-cta {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 6;
  width: 330px;
  height: 145px;
  background: var(--pink);
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 20px 26px;
  overflow: hidden;
  transition: background 0.3s;
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 37% 100%);
  pointer-events: auto;
  gap: 14px;
}

#hero-cta:hover {
  background: #08519f;
}

.cta-arrow {
  top: 18px;
  right: 18px;
  width: 120px;
  height: 120px;
  transform: rotate(0deg);
  transition: transform 0.3s;
}

#hero-cta:hover .cta-arrow {
  transform: scale(1.06);
}

.cta-txt {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.3;
  color: var(--black);
  text-transform: uppercase;
}

#gallery {
  position: relative;
  background: var(--black);
  padding-top: 130px;
  padding-bottom: 145px;
}

.section-pill {
  position: absolute;
  left: 50%;
  top: 26px;
  transform: translateX(-50%);
  background: var(--pink);
  color: var(--black);
  padding: 4px 10px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  z-index: 6;
  pointer-events: none;
  display: none;
}

.pink-line {
  width: 100%;
  height: 2px;
  background: var(--pink);
}

.g-sticky {
  position: relative;
}

.g-swiper {
  width: 100%;
  padding: 0 100px;
  overflow: visible;
}

.g-track {
  align-items: center;
}

.g-card {
  position: relative;
  flex-shrink: 0;
  width: 170px !important;
  height: 500px;
  overflow: hidden;
  cursor: pointer;
  border-radius: 3px;
  transform: translateY(0);
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.g-card.act {
  outline: 1px solid rgba(var(--pink-rgb), 0.15);
  outline-offset: -1px;
}

.g-card .g-img,
.g-card .g-gif {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.g-card .g-img {
  filter: grayscale(100%);
  transition:
    filter 0.4s,
    transform 0.5s,
    opacity 0.2s;
  transform: scale(1.06);
  opacity: 1;
  min-width: 181px;
}

.g-card .g-gif {
  opacity: 0;
  transform: scale(1.06);
  transition:
    opacity 0.15s ease,
    transform 0.35s ease;
  pointer-events: none;
  filter: grayscale(0%);
}

.g-card:hover .g-img,
.g-card.act .g-img {
  filter: grayscale(0%);
  transform: scale(1);
}

.g-card.gif-playing .g-img {
  opacity: 0;
}

.g-card.gif-playing .g-gif {
  opacity: 1;
}

.g-card:hover .g-gif,
.g-card.act .g-gif {
  transform: scale(1);
}

.g-card.act::before {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow:
    inset 0 0 0 1px rgba(var(--pink-rgb), 0.35),
    0 0 28px rgba(var(--pink-rgb), 0.22);
  z-index: 2;
  pointer-events: none;
}

.g-card.is-hover {
  transform: translateY(-50px);
  box-shadow: 0 0 40px -9px rgba(var(--pink-rgb), 0.75);
}

.g-card.is-near {
  transform: translateY(-8px);
}

.g-lbl {
  position: absolute;
  bottom: 12px;
  left: 12px;
  font-size: 0.8em;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: #fff;
  z-index: 3;
  opacity: 0;
  transform: translateY(6px);
  transition:
    opacity 0.3s,
    transform 0.3s;
}

.g-card:hover .g-lbl,
.g-card.act .g-lbl {
  opacity: 1;
  transform: translateY(0);
}

.g-bar {
  position: relative !important;
  left: 0 !important;
  margin: 50px 100px 0;
  height: 12px !important;
  width: calc(100% - 200px) !important;
  background-color: var(--black);
  border: 1px none var(--pink);
  box-shadow: 0 0 30px -4px var(--pink);
  border-radius: 999px;
  pointer-events: auto;
  cursor: pointer;
  transform: translateY(0);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.g-bar-fill {
  display: none;
}

.g-bar .swiper-scrollbar-drag {
  height: 100%;
  background: var(--pink);
  border-radius: 999px;
  will-change: transform;
}

.g-meta {
  position: relative;
  margin-top: 18px;
  margin-left: 50px;
  font-size: 0.5rem;
  color: #555;
  line-height: 2;
  pointer-events: none;
}

#trusted {
  position: relative;
  background: #fff;
  color: #111;
  overflow: hidden;
}

.trusted-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(1) contrast(1.05) brightness(1.05);
  opacity: 1;
  z-index: 0;
}

.trusted-inner {
  cursor: auto;
  width: 100%;
  height: auto;
  padding: 32px;
  position: relative;
  z-index: 10;
}
.trusted-overlay {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: #000;
  opacity: 0.3;
}
.trusted-title {
  font-size: 96px;
  line-height: 0.9;
  letter-spacing: -0.06em;
  text-transform: uppercase;
  font-weight: 300;
  color: rgba(0, 0, 0, 0.9);
  font-family: "Inter Variablefont Opsz Wght", "Inter", Arial, sans-serif;
  font-style: italic;
  font-variation-settings:
    "opsz" 96,
    "wght" 200;
}

.trusted-title strong {
  font-weight: 800;
}

.trusted-title .word {
  display: inline-block;
  --wght: 200;
  font-variation-settings:
    "opsz" 96,
    "wght" var(--wght);
  will-change: transform;
}

.trusted-title .word.is-emph {
  --wght: 900;
}

.trusted-text {
  max-width: 56ch;
  padding-top: 12px;
  padding-left: 16px;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: rgba(0, 0, 0, 0.7);
}

.trusted-logos {
  position: relative;
  z-index: 1;
  padding: 50px 0;
}

.trusted-swiper {
  width: 100%;
  padding: 30px 0;
}

.trusted-swiper .swiper-wrapper {
  align-items: center;
}

.trusted-swiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  height: 370px;
}

.trusted-slide-link {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
}

.trusted-slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  transition:
    transform 0.4s ease,
    opacity 0.4s ease;
}

.trusted-swiper .swiper-slide:hover .trusted-slide-img {
  transform: scale(1.05);
  opacity: 0.9;
}

.trusted-swiper .swiper-pagination {
  position: relative;
  margin-top: 20px;
}

.trusted-swiper .swiper-pagination-bullet {
  background: var(--pink);
  opacity: 0.5;
}

.trusted-swiper .swiper-pagination-bullet-active {
  opacity: 1;
}

.trusted-swiper .swiper-button-prev,
.trusted-swiper .swiper-button-next {
  color: var(--pink);
  width: 44px;
  height: 44px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 50%;
  backdrop-filter: blur(4px);
}

.trusted-swiper .swiper-button-prev:after,
.trusted-swiper .swiper-button-next:after {
  font-size: 18px;
}

.trusted-swiper .swiper-button-prev:hover,
.trusted-swiper .swiper-button-next:hover {
  background: rgba(0, 0, 0, 0.5);
}

.external-grid {
  z-index: 5;
  background-color: #101010;
  justify-content: space-around;
  width: 100%;
  height: 45vh;
  display: flex;
  position: relative;
}

.ext-card {
  border-style: solid none;
  border-width: 1px;
  border-color: var(--pink);
  background-color: var(--black);
  background-image:
    linear-gradient(to bottom, var(--black), var(--black)),
    url(/assets/img/ext-card-bg.webp);
  color: #fff;
  cursor: pointer;
  background-position:
    0 0,
    50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  border-radius: 0;
  flex-flow: wrap;
  flex: 0 auto;
  justify-content: space-between;
  align-items: flex-start;
  width: 33.3333%;
  padding: 24px;
  text-decoration: none;
  transition: all 0.4s;
  display: flex;
  position: relative;
  overflow: hidden;
}

.ext-card:hover {
  border-color: var(--pink);
  background-position:
    0 0,
    50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  flex: 0 auto;
  width: 60%;
  background-color: var(--black);
  color: var(--black);
}

.ext-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.ext-card:hover .ext-video {
  opacity: 1;
}

.ext-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 123, 255, 0.65);
  z-index: 1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.ext-card:hover .ext-overlay {
  opacity: 1;
}

.ext-card:hover .ext-top {
  color: #fff;
}
.ext-card:nth-child(2) {
  border-style: solid;
}

.ext-top {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 56ch;
  transition: color 0.4s ease;
}

.ext-heading {
  font-family: "Inter Variablefont Opsz Wght", "Inter", Arial, sans-serif;
  font-style: italic;
  font-size: 34px;
  line-height: 38px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 400;
  color: #fff;
}

.ext-sub {
  font-family: var(--mono);
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.85);
  max-width: 48ch;
}

.ext-bottom {
  position: absolute;
  left: 22px;
  bottom: 18px;
  z-index: 2;
  font-family: "Inter Variablefont Opsz Wght", "Inter", Arial, sans-serif;
  font-style: italic;
  font-size: 44px;
  line-height: 48px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.ext-bottom small {
  display: block;
  margin-bottom: 6px;
  font-family: var(--mono);
  font-style: normal;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.75;
}

.ext-arrow-wrap {
  position: absolute;
  right: 26px;
  bottom: 22px;
  width: 169px;
  height: 169px;
  z-index: 3;
  pointer-events: none;
  opacity: 1;
}

.ext-arrow {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 169px;
  height: 169px;
  filter: invert(1);
}

.ext-card:hover .ext-arrow-wrap {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.ext-card:hover .ext-arrow-bar {
  width: 64px;
}

.ext-card:hover .ext-bg {
  transform: scale(1.12);
  opacity: 0.9;
}

@media (max-width: 980px) {
  .external-grid {
    grid-template-columns: 1fr;
  }

  .ext-card {
    border-right: 0;
    border-bottom: 1px solid rgba(var(--pink-rgb), 0.3);
  }
}

.home-generate-section {
  z-index: 3;
  border-style: none solid solid;
  border-width: 1px;
  border-color: var(--pink);
  background-color: var(--black);
  justify-content: center;
  align-items: center;
  height: 75vh;
  display: flex;
  position: relative;
  overflow: hidden;
}

.home-generate-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 0;
}

.pixelated-image-card__default {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  background-color: var(--black);
  color: var(--pink);
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  padding: 0;
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  pointer-events: none;
}

.pixel-grid {
  position: absolute;
  inset: 0;
  display: grid;
  gap: 12px;
  padding: 0;
}

.pixel {
  background: var(--pink);
  opacity: 1;
  will-change: opacity, transform;
  transform: translateZ(0);
}

.generate-content {
  position: relative;
  z-index: 3;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 22px;
  padding-left: 24px;
  padding-right: 24px;
}

.scramble-text-alt {
  z-index: 1;
  opacity: 1;
  color: #fff;
  text-align: start;

  text-shadow: 0 0 20px var(--pink);
  background-color: #fff0;
  border: 1px #ffffffbf;
  margin-top: 0;
  margin-bottom: 0;
  margin-left: 24px;
  padding: 0;
  font-family:
    Inter Variablefont Opsz Wght,
    Arial,
    sans-serif;
  font-size: 38px;
  font-style: italic;
  font-weight: 400;
  line-height: 44px;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.paragraph {
  z-index: 1;
  color: #fff;
  text-align: left;
  text-shadow: 0 0 11px var(--black);
  width: 40%;
  margin-left: 24px;
  font-weight: 200;
  position: relative;
  margin-top: 12px;
  font-family: var(--mono);
  font-size: 12px;
  line-height: 16px;
}

.generate-kicker {
  z-index: 3;
  margin-left: 24px;
  margin-top: 0;
  font-family: var(--mono);
  font-size: 10px;
  line-height: 14px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  text-shadow: 0 0 11px var(--black);
}

.generate-kicker strong {
  font-style: italic;
  font-family:
    Inter Variablefont Opsz Wght,
    Arial,
    sans-serif;
  letter-spacing: 0.06em;
  text-transform: none;
}

@media (max-width: 980px) {
  .paragraph {
    width: 70%;
  }
}

.ab_photo {
  z-index: 5;
  background-color: #353535;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 50vh;
  padding-right: 0%;
  display: flex;
  position: relative;
  overflow: hidden;
}

.ab-photo-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
  z-index: 0;
}

.aaron-subject {
  z-index: 5;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  pointer-events: none;
  object-fit: cover;
  display: block;
}

.variable-type {
  z-index: 1;
  color: var(--pink);
  text-align: center;
  letter-spacing: 1px;
  text-indent: 0;
  text-transform: uppercase;
  text-shadow: 5px 5px 1px #0000001a;
  column-count: 0;
  white-space: normal;
  word-break: keep-all;
  flex: 0 auto;
  width: 50%;
  min-width: auto;
  height: auto;
  min-height: auto;
  margin-top: 0;
  margin-bottom: 0;
  font-family: "Inter", "Inter Variablefont Opsz Wght", Arial, sans-serif;
  font-size: 15vw;
  font-style: italic;
  font-weight: 100;
  font-optical-sizing: auto;
  line-height: 100%;
  position: relative;
  pointer-events: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
}

.variable-type.right {
  justify-content: flex-start;
}

.variable-type .char {
  display: inline-block;
  --wght: 100;
  font-weight: 100;
  font-variation-settings:
    "opsz" 72,
    "wght" var(--wght);
  will-change: font-variation-settings, font-weight;
}

.footer {
  z-index: 2;
  border-top: 1px solid var(--pink);
  background-color: var(--black);
  cursor: auto;
  width: 100%;
  height: auto;
  min-height: auto;
  padding-top: 64px;
  padding-bottom: 64px;
  position: relative;
  top: 0;
  bottom: auto;
}

.contact-form_wrapper {
  flex-flow: column;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  padding-top: 8px;
  padding-bottom: 0;
  display: flex;
}

.footer-ab-logo {
  max-width: 105px;
  height: auto;
  margin-bottom: 23px;
  display: block;
}

.contact-logo {
  width: 100%;
  height: auto;
  display: block;
}

.contact-form-block.footer {
  border-top-style: none;
  width: 40%;
  padding-top: 0;
  padding-bottom: 0;
}

.contact-form-block {
  flex-flow: row;
  justify-content: space-between;
  align-items: flex-start;
  width: 60%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-form {
  width: 100%;
}

.w-input,
.w-select {
  color: #333;
  background-color: #fff;
  border: 1px solid #ccc;
  width: 100%;
  height: 38px;
  margin-bottom: 10px;
  padding: 8px 12px;
  font-size: 14px;
  line-height: 1.42857;
  display: block;
  border-radius: 0;
  outline: none;
}

.contact-name-field,
.conteact-email-field,
.contact-message-field {
  border: 1px solid var(--pink);
  background-color: var(--black);
  color: #fff;
  margin-bottom: -1px;
  font-family:
    IBM Plex Mono,
    sans-serif;
}

.contact-message-field {
  min-height: 150px;
  resize: vertical;
  margin: 10px 0;
}

.w-button {
  color: #fff;
  line-height: inherit;
  cursor: pointer;
  background-color: #3898ec;
  border: 0;
  border-radius: 0;
  padding: 9px 15px;
  text-decoration: none;
  display: inline-block;
  font-family:
    IBM Plex Mono,
    sans-serif;
}

.contact-submit-button {
  background-color: var(--pink);
  width: 100%;
  transition: box-shadow 0.375s;
}

.contact-submit-button:hover {
  box-shadow: 0 0 24px -6px var(--pink);
}

.contact-success,
.contact-error {
  display: none;
  width: 100%;
  padding: 12px;
  font-family:
    IBM Plex Mono,
    sans-serif;
  font-size: 12px;
  border: 1px solid var(--pink);
}

.contact-success {
  color: #fff;
  background: rgba(var(--pink-rgb), 0.12);
}

.contact-error {
  color: #fff;
  background: rgba(255, 0, 0, 0.1);
}

.socials-wrapper {
  grid-column-gap: 23px;
  grid-row-gap: 23px;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 5vh;
  margin-bottom: 0;
  display: flex;
  position: relative;
  margin-top: 18px;
}

.social-link {
  border: 1px solid var(--pink);
  background-color: var(--black);
  color: var(--pink);
  flex: 0 auto;
  width: 44px;
  height: 44px;
  padding: 6px;
  transition:
    background-color 0.3s,
    color 0.3s,
    box-shadow 0.375s;
  display: grid;
  place-items: center;
}

.social-link:hover {
  background-color: var(--pink);
  color: var(--black);
  box-shadow: 0 0 24px -8px var(--pink);
}

.social-link svg {
  width: 100%;
  height: 100%;
  display: block;
}

.beem-contact-wrap {
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: auto;
  margin-top: 64px;
  display: flex;
  position: relative;
  bottom: 13%;
}

.builtby-text {
  color: var(--pink);
  text-align: center;
  text-transform: uppercase;
  width: 50%;
  margin-bottom: 0;
  font-size: 12px;
  font-style: italic;
  line-height: 18px;
  position: relative;
  inset: auto auto 0%;
  font-family: "Inter Variablefont Opsz Wght", "Inter", Arial, sans-serif;
}

.builtby-text .link {
  color: var(--pink);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.beemstudio-logo {
  width: 20px;
  max-width: none;
  position: relative;
  bottom: 0%;
  overflow: hidden;
}

@media (max-width: 980px) {
  .contact-form-block.footer {
    width: min(520px, calc(100vw - 48px));
  }

  .builtby-text {
    width: 80%;
  }

  .footer-ab-logo {
    width: 60px;
  }
}

.about-temp {
  min-height: calc(100vh - var(--header-h));
  padding-top: calc(var(--header-h) + 80px);
  padding-left: 24px;
  padding-right: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.about-temp h1 {
  font-size: 44px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--pink);
}

.about-temp p {
  max-width: 70ch;
  font-size: 14px;
  line-height: 20px;
  color: rgba(240, 237, 232, 0.85);
}

.about-hero-wrapper {
  background-color: #000;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  display: flex;
  position: relative;
}

.about-overlay {
  display: none;
}

.about-image {
  aspect-ratio: auto;
  border-style: solid solid none;
  border-width: 1px;
  border-color: var(--pink);
  object-fit: cover;
  width: 100%;
  max-width: none;
  height: 100%;
  display: block;
  position: relative;
  overflow: hidden;
}

.about-video-wrapper {
  mix-blend-mode: hard-light;
  background-color: #00000083;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  padding: 84px 26px;
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
}

.about-heading {
  color: #fff;
  text-transform: uppercase;
  object-fit: fill;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: -20px;
  margin-bottom: 13px;
  font-family:
    IBM Plex Mono,
    sans-serif;
  font-weight: 100;
  position: relative;
}

.about-p {
  color: #fff;
  width: 50%;
  font-size: 14px;
  line-height: 1.5;
  position: relative;
  inset: 0% auto 0% 0%;
}
.about_aaron-text-mobile {
  position: absolute;
  z-index: 3;
  text-align: center;
  color: #fff;
  min-width: 45ch;
  display: none;
}
.ab-text-span {
  background-color: var(--pink);
  color: var(--black);
  padding-left: 8px;
  padding-right: 8px;
  font-weight: 600;
}
@media (max-width: 1199px) {
  #hud-bio {
    width: 280px;
  }
}

@media (max-width: 991px) {
  html,
  body {
    cursor: auto;
  }
  .about_aaron-text-mobile {
    display: block;
  }
  #hero {
    height: 80vh;
  }
  #cur,
  #cur-r {
    display: none;
  }
  #hud-bio {
    display: none;
  }
  .nav-links,
  .nav-right {
    display: none;
  }

  .nav-menu-btn {
    display: flex;
    align-items: center;
  }

  .nav-menu {
    display: flex;
    position: fixed;
    inset: 0;
    background: var(--pink);
    z-index: 90000;
    transform: translateX(100%);
    transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
    flex-direction: column;
    padding-top: var(--header-h);
  }

  body.menu-open .nav-menu {
    transform: translateX(0);
  }

  .nav-menu-top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-h);
    display: flex;
    align-items: stretch;
  }

  .nav-menu-logo {
    width: var(--logo-w);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .nav-menu-logo img {
    height: 32px;
  }

  .nav-menu-close {
    margin-left: auto;
    padding: 0 18px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-family: var(--mono);
    background: transparent;
    color: rgba(0, 0, 0, 0.9);
    border: 0;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    white-space: nowrap;
  }

  .nav-menu-links,
  .nav-menu-socials {
    display: flex;
    flex-direction: column;
    padding: 0 30px;
  }
  .nav-menu-links {
    padding-top: 50px;
  }

  .nav-menu-link {
    width: 100%;
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.55);
    font-size: 18px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.92);
    text-align: right;
  }

  .nav-menu-generate {
    background-color: #101010;
    background-image: linear-gradient(
      135deg,
      #fff,
      var(--pink) 0%,
      #fff 39%,
      var(--pink)
    );
    color: var(--pink);
    text-align: center;
    border: 1px solid #fff;
    border-radius: 2px;
    margin: 0 auto;
    margin-top: 32px;
    margin-bottom: 14px;
    padding-left: 19px;
    padding-right: 19px;
    font-style: italic;
    font-weight: 600;
    transition:
      color 0.4s,
      opacity 0.2s,
      transform 1s;
    width: calc(100% - 60px);
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
  }

  .nav-menu-powered {
    margin: 0 22px;
    text-align: center;
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: white;
  }

  .nav-menu-powered span {
    font-style: italic;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: none;
  }

  #shape-stage {
    display: none;
  }

  #vbg {
    opacity: 1 !important;
    transform: none;
  }

  #hud-bio {
    left: 50%;
    top: calc(50% + 10px);
    transform: translate(-50%, -50%);
    width: min(340px, calc(100vw - 48px));
    text-align: center;
    font-size: 12px;
    line-height: 18px;
  }

  #hud-tech,
  .hud-arc,
  #hud-abp,
  .hud-edge,
  .hud-cam,
  .hud-abprgm,
  .hud-scribble,
  #hud-meta,
  #hud-ver {
    display: none;
  }

  #hero-cta {
    display: none;
  }

  .cta-arrow {
    display: none;
  }

  .cta-txt {
    font-size: 12px;
    letter-spacing: 0.16em;
    line-height: 1;
    text-align: center;
  }

  .cta-txt br {
    display: none;
  }

  #gallery {
    padding-top: 150px;
    padding-bottom: 85px;
  }

  .section-pill {
    top: 65px;
    font-size: 12px;
    display: block;
  }

  .g-swiper {
    padding: 0 18px;
  }

  .g-card {
    height: 360px;
  }

  .g-bar {
    margin: 28px 18px 0;
    width: calc(100% - 36px) !important;
  }

  .external-grid {
    flex-direction: column;
    height: auto;
  }

  .ext-card {
    width: auto;
    height: 20vh;
  }
  .trusted-logos {
    padding: 40px 0;
  }

  .ext-card:hover {
    width: 100%;
  }

  .ext-arrow-wrap {
    width: 44px;
    height: 44px;
    right: 18px;
    bottom: 18px;
  }

  .ext-arrow {
    width: 44px;
    height: 44px;
  }

  .home-generate-section {
    height: 70vh;
  }

  .generate-content {
    padding-top: 18px;
    padding-left: 18px;
    padding-right: 18px;
  }

  .generate-kicker {
    margin-left: 0;
  }

  .scramble-text-alt {
    margin-left: 0;
    font-size: 28px;
    line-height: 34px;
  }

  .paragraph {
    width: min(520px, calc(100vw - 36px));
    margin-left: 0;
  }

  .variable-type {
    width: 100%;
    font-size: 15vw;
  }

  .about-video-wrapper {
    padding: 64px 18px;
  }

  .about-heading {
    font-size: 28px;
    letter-spacing: 0.18em;
    text-align: left;
    margin-top: 0;
  }

  .about-p {
    width: min(520px, calc(100vw - 36px));
    font-size: 12px;
    line-height: 16px;
  }
  .trusted-text {
    padding-left: 0;
  }
}

@media (max-width: 767px) {
  .trusted-title {
    font-size: 80px;
    line-height: 85px;
  }
  .ab_photo {
    align-items: flex-start;
    padding-top: 20px;
  }
}
@media (max-width: 479px) {
  .trusted-title {
    font-size: 13vw;
    line-height: 54px;
  }
  .trusted-inner {
    padding: 33px 23px 8px;
  }
  .trusted-logos {
    padding: 30px 0;
  }

  .ext-card {
    height: 30vh;
  }
  .ext-heading {
    font-size: 36px;
    font-weight: 200;
  }
  .ext-sub {
    max-width: 40ch;
  }
  .ext-arrow-wrap {
    width: 24px;
    height: 24px;
  }
  .ext-arrow {
    width: 24px;
    height: 24px;
  }
  .contact-form-block.footer {
    width: min(520px, calc(100vw - 78px));
  }
  .nav-menu-generate {
    margin-top: 28px;
  }
}
