﻿:root {
  --bg: #050505;
  --panel: #0b0b0b;
  --text: #f3f3f3;
  --muted: #9f9f9f;
  --line: #1f1f1f;
  --chip: #171717;
  --accent: #d9d9d9;
}

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

body {
  min-height: 100vh;
  font-family: "Roboto Mono", "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  background:
    radial-gradient(circle at 20% -10%, #161616 0%, transparent 45%),
    radial-gradient(circle at 80% -20%, #141414 0%, transparent 35%), var(--bg);
  color: var(--text);
  overflow-x: hidden;
  user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  -webkit-touch-callout: none;
}

img {
  -webkit-user-drag: none;
  user-drag: none;
  user-select: none;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: visible;
  padding-bottom: clamp(5rem, 10vw, 10rem);
}

.light-sweeps {
  position: absolute;
  inset: -12% -8%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.light-sweeps__beam {
  position: absolute;
  width: clamp(26rem, 40vw, 44rem);
  height: clamp(12rem, 20vw, 20rem);
  border-radius: 50%;
  background: radial-gradient(
    ellipse at center,
    rgba(255, 255, 255, 0.42) 0%,
    rgba(255, 255, 255, 0.16) 22%,
    rgba(255, 255, 255, 0.06) 42%,
    rgba(255, 255, 255, 0) 74%
  );
  filter: blur(22px);
  opacity: 0.28;
  mix-blend-mode: screen;
  will-change: transform, opacity;
}

.light-sweeps__beam--one {
  top: 8%;
  left: -18%;
  transform: rotate(-14deg);
  animation: light-sweep-drift-1 18s ease-in-out infinite alternate;
}

.light-sweeps__beam--two {
  top: 22%;
  right: -16%;
  transform: rotate(18deg);
  opacity: 0.22;
  animation: light-sweep-drift-2 22s ease-in-out infinite alternate;
}

.light-sweeps__beam--three {
  top: 54%;
  left: 18%;
  transform: rotate(-4deg);
  width: clamp(20rem, 34vw, 34rem);
  height: clamp(10rem, 16vw, 16rem);
  opacity: 0.16;
  animation: light-sweep-drift-3 26s ease-in-out infinite alternate;
}

.nav {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1rem, 3vw, 3rem);
  border-bottom: 1px solid var(--line);
  background: rgba(5, 5, 5, 0.6);
  backdrop-filter: blur(6px);
  position: sticky;
  top: 0;
  z-index: 10;
}

.brand {
  font-size: clamp(1.4rem, 2vw, 2rem);
  font-weight: 600;
  letter-spacing: -0.02em;
}

.menu {
  display: flex;
  gap: clamp(0.8rem, 2vw, 2rem);
  color: var(--muted);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(980px, 92vw);
  margin: clamp(4rem, 12vh, 8rem) auto 0;
  text-align: center;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  color: var(--accent);
  text-transform: uppercase;
  padding: 0.5rem 0.7rem;
  border: 1px solid #2d2d2d;
  border-radius: 999px;
  background: rgba(23, 23, 23, 0.9);
  margin-bottom: 1.1rem;
}

.dot {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: #2dcf77;
  box-shadow: 0 0 14px rgba(45, 207, 119, 0.6);
}

h1 {
  font-size: clamp(2.3rem, 7vw, 5rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  max-width: 16ch;
  margin: 0 auto;
}

.hero-subtitle {
  margin: 1rem auto 0;
  max-width: 44ch;
  color: var(--muted);
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  line-height: 1.7;
}

.hero-subtitle em {
  font-style: italic;
}

.hero-actions {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.btn {
  border: 1px solid #363636;
  color: #f5f5f5;
  background: #141414;
  border-radius: 0.8rem;
  padding: 0.8rem 1.15rem;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    background-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  background: #1d1d1d;
}

.btn.primary {
  background: #ededed;
  color: #090909;
  border-color: #ededed;
}

.hands-wrap {
  position: absolute;
  inset: 0;
  height: 100%;
  overflow: visible;
  pointer-events: none;
  z-index: 1;
  border-top: 1px solid #101010;
}

.trusted {
  position: relative;
  z-index: 4;
  margin-top: -0.35rem;
  padding: 1rem 0 1.35rem;
  overflow: hidden;
  background: transparent;
}

.trusted__viewport {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.trusted__viewport::before,
.trusted__viewport::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: clamp(2.5rem, 8vw, 7rem);
  z-index: 2;
  pointer-events: none;
}

.trusted__viewport::before {
  left: 0;
  background: linear-gradient(to right, var(--bg) 0%, rgba(5, 5, 5, 0) 100%);
}

.trusted__viewport::after {
  right: 0;
  background: linear-gradient(to left, var(--bg) 0%, rgba(5, 5, 5, 0) 100%);
}

.trusted__track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 0;
  animation: trusted-scroll 42s linear infinite;
  will-change: transform;
}

.trusted__viewport:hover .trusted__track,
.trusted__track:hover {
  animation-play-state: paused;
}

.trusted__group {
  display: flex;
  align-items: center;
  gap: clamp(2.5rem, 6vw, 5.75rem);
  padding-right: clamp(2.5rem, 6vw, 5.75rem);
  flex: 0 0 auto;
}

.trusted__logo {
  flex: 0 0 auto;
  display: block;
  object-fit: contain;
  width: auto;
  height: 28px;
  opacity: 0.84;
  filter: grayscale(1) brightness(1.9) contrast(0.88);
  transition:
    opacity 0.2s ease,
    filter 0.2s ease;
}

.trusted__logo:hover {
  opacity: 1;
  filter: grayscale(1) brightness(2.05) contrast(0.95);
}

.showcase {
  position: relative;
  z-index: 3;
  padding: 0;
  background: transparent;
}

.showcase__frame {
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

.showcase__visual {
  position: relative;
  min-height: clamp(420px, 58vw, 860px);
  display: grid;
  place-items: center;
  isolation: isolate;
  overflow: hidden;
}

.showcase__visual::before,
.showcase__visual::after {
  content: "";
  position: absolute;
  inset: -10% -6%;
  pointer-events: none;
  z-index: 3;
  mix-blend-mode: screen;
  will-change: transform, opacity;
}

.showcase__visual::before {
  background:
    radial-gradient(
      ellipse 34% 26% at 18% 26%,
      rgba(255, 255, 255, 0.5) 0%,
      rgba(255, 255, 255, 0.22) 20%,
      rgba(255, 255, 255, 0.08) 40%,
      rgba(255, 255, 255, 0.02) 58%,
      rgba(255, 255, 255, 0) 78%
    ),
    radial-gradient(
      ellipse 28% 22% at 78% 22%,
      rgba(255, 255, 255, 0.36) 0%,
      rgba(255, 255, 255, 0.16) 20%,
      rgba(255, 255, 255, 0.05) 40%,
      rgba(255, 255, 255, 0) 72%
    );
  filter: blur(20px);
  box-shadow:
    inset 0 0 48px rgba(255, 255, 255, 0.05),
    0 0 96px rgba(255, 255, 255, 0.08);
  opacity: 0.33;
  animation: showcase-light-drift-1 20s ease-in-out infinite alternate;
}

.showcase__visual::after {
  background:
    radial-gradient(
      ellipse 46% 30% at 52% 70%,
      rgba(255, 255, 255, 0.28) 0%,
      rgba(255, 255, 255, 0.12) 18%,
      rgba(255, 255, 255, 0.04) 38%,
      rgba(255, 255, 255, 0.01) 56%,
      rgba(255, 255, 255, 0) 72%
    ),
    linear-gradient(
      115deg,
      rgba(255, 255, 255, 0) 34%,
      rgba(255, 255, 255, 0.12) 49%,
      rgba(255, 255, 255, 0) 64%
    );
  filter: blur(26px);
  box-shadow:
    inset 0 0 60px rgba(255, 255, 255, 0.04),
    0 0 120px rgba(255, 255, 255, 0.06);
  opacity: 0.24;
  animation: showcase-light-drift-2 26s ease-in-out infinite alternate;
}

.showcase__image {
  position: relative;
  z-index: 2;
  width: 100%;
  height: auto;
  display: block;
  filter: none;
  transform: translate3d(0, 0, 0);
  object-fit: cover;
  max-width: none;
}

@media (max-width: 960px) {
  .showcase__frame {
    width: 100vw;
    margin-left: calc(50% - 50vw);
  }

  .showcase__image {
    width: 100%;
  }
}

@keyframes trusted-scroll {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-33.333%, 0, 0);
  }
}

@keyframes light-sweep-drift-1 {
  0% {
    transform: translate3d(-2%, 0, 0) rotate(-14deg) scale(1);
  }
  100% {
    transform: translate3d(18%, 3%, 0) rotate(-10deg) scale(1.08);
  }
}

@keyframes light-sweep-drift-2 {
  0% {
    transform: translate3d(0, 0, 0) rotate(18deg) scale(1);
  }
  100% {
    transform: translate3d(-16%, -4%, 0) rotate(14deg) scale(1.06);
  }
}

@keyframes light-sweep-drift-3 {
  0% {
    transform: translate3d(0, 0, 0) rotate(-4deg) scale(1);
  }
  100% {
    transform: translate3d(10%, -3%, 0) rotate(0deg) scale(1.05);
  }
}

@keyframes showcase-light-drift-1 {
  0% {
    transform: translate3d(-1%, -1%, 0) scale(1);
  }
  100% {
    transform: translate3d(4%, 2%, 0) scale(1.06);
  }
}

@keyframes showcase-light-drift-2 {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  100% {
    transform: translate3d(-3%, -2%, 0) scale(1.05);
  }
}

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

  .light-sweeps__beam {
    animation: none;
  }

  .showcase__visual::before,
  .showcase__visual::after {
    animation: none;
  }
}

.hands {
  position: absolute;
  left: 50%;
  bottom: -10%;
  transform: translate3d(
      calc(-50% + var(--hands-x, 0px)),
      var(--hands-y, 0px),
      0
    )
    scale(var(--hands-scale, 1.1));
  transform-origin: center 80%;
  width: clamp(1450px, 112vw, 2200px);
  max-width: none;
  opacity: 0.94;
  filter: brightness(1.08) contrast(1.03);
  will-change: transform;
  transition: transform 120ms linear;
}

.noise {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.05) 0.6px,
    transparent 0.6px
  );
  background-size: 3px 3px;
  opacity: 0.2;
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 2;
}

@media (max-width: 900px) {
  .menu {
    display: none;
  }
  .hero-content {
    width: min(620px, 90vw);
    margin-top: clamp(3rem, 8vh, 5.5rem);
  }
  h1 {
    font-size: clamp(2.15rem, 10vw, 3.6rem);
    max-width: 12ch;
  }
  .hero-subtitle {
    max-width: 30ch;
    font-size: 0.95rem;
    line-height: 1.6;
  }
  .hero-actions {
    flex-direction: column;
    align-items: center;
    gap: 0.7rem;
  }
  .btn {
    width: min(100%, 240px);
    text-align: center;
  }
  .hands {
    width: clamp(1200px, 210vw, 1900px);
    --hands-scale: 1.12;
    bottom: -6%;
  }
  .hands-wrap {
    height: 100%;
    overflow: visible;
  }

  .trusted {
    padding: 0.8rem 0 1.1rem;
  }

  .trusted__group {
    gap: 1.9rem;
    padding-right: 1.9rem;
  }

  .trusted__logo {
    height: 23px;
  }
}

@media (min-width: 901px) {
  .hero-content {
    width: min(1040px, 88vw);
    margin-top: clamp(4.5rem, 10vh, 7.5rem);
  }

  .h1,
  h1 {
    max-width: 15ch;
  }

  .hero-subtitle {
    max-width: 48ch;
  }

  .hands-wrap {
    inset: 0;
  }

  .hands {
    bottom: -10%;
    --hands-scale: 1.1;
  }

  .hero {
    padding-bottom: clamp(7rem, 12vw, 12rem);
  }
}

.footer {
  padding: clamp(3rem, 7vw, 6rem) clamp(1rem, 4vw, 3rem) 2rem;
  background: #070707;
}

.footer-cta {
  position: relative;
  border: none;
  border-radius: 999px;
  min-height: clamp(260px, 32vw, 360px);
  display: grid;
  place-items: center;
  overflow: hidden;
  background: linear-gradient(180deg, #0a0a0a 0%, #080808 100%);
}

.diamond-field {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(var(--diamond-cols), 1fr);
  grid-template-rows: repeat(var(--diamond-rows), 1fr);
  align-items: center;
  justify-items: center;
  padding: 1.3rem 1.9rem;
  color: #f2f2f2;
  opacity: 0.94;
  z-index: 1;
  --diamond-cols: 78;
  --diamond-rows: 14;
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    #000 7%,
    #000 93%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    #000 7%,
    #000 93%,
    transparent 100%
  );
}

.diamond {
  --appear: 0;
  --pop: 0;
  font-size: clamp(9px, 0.58vw, 12px);
  line-height: 1;
  opacity: 0;
  transform: translateY(calc(var(--pop) * -7px))
    scale(calc(0.2 + (var(--appear) * 0.8) + (var(--pop) * 0.95)))
    rotate(calc(-15deg + (var(--appear) * 15deg)));
  filter: brightness(calc(0.9 + (var(--pop) * 0.55)));
  transition:
    opacity 0.28s ease,
    transform 0.22s cubic-bezier(0.2, 0.7, 0.2, 1),
    filter 0.22s ease;
  transition-delay: var(--delay);
  will-change: transform, filter;
}

.diamond-field.is-live .diamond {
  opacity: 1;
  --appear: 1;
}

.diamond-field.no-delay .diamond {
  transition-delay: 0s;
}

.diamond-field::before,
.diamond-field::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
  pointer-events: none;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.55s ease;
}

.diamond-field.is-live::before {
  opacity: 1;
  background:
    linear-gradient(
      to right,
      rgba(0, 0, 0, 0.62) 0%,
      rgba(0, 0, 0, 0.2) 15%,
      rgba(0, 0, 0, 0.2) 85%,
      rgba(0, 0, 0, 0.62) 100%
    ),
    radial-gradient(
      ellipse 125% 92% at 50% 50%,
      rgba(0, 0, 0, 0) 58%,
      rgba(0, 0, 0, 0.28) 100%
    );
}

.diamond-field.is-live::after {
  opacity: 1;
  background: radial-gradient(
    ellipse 34% 62% at 50% 50%,
    rgba(0, 0, 0, 0.92) 0%,
    rgba(0, 0, 0, 0.72) 34%,
    rgba(0, 0, 0, 0.4) 56%,
    rgba(0, 0, 0, 0.16) 72%,
    rgba(0, 0, 0, 0) 86%
  );
}

.footer-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  z-index: 1;
  background: radial-gradient(
    120% 90% at 50% 50%,
    transparent 68%,
    rgba(0, 0, 0, 0.22) 100%
  );
}

.footer-card {
  position: relative;
  z-index: 4;
  background: transparent;
  border: none;
  border-radius: 1.8rem;
  width: min(520px, 88vw);
  padding: clamp(1.4rem, 2.4vw, 2.2rem);
  text-align: center;
  box-shadow: none;
}

.footer-card::before {
  content: "";
  position: absolute;
  inset: -1.25rem -1.1rem;
  border-radius: inherit;
  background:
    radial-gradient(
      ellipse 78% 62% at 50% 50%,
      rgba(0, 0, 0, 0.82) 0%,
      rgba(0, 0, 0, 0.72) 42%,
      rgba(0, 0, 0, 0.46) 68%,
      rgba(0, 0, 0, 0) 100%
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.03) 0%,
      rgba(255, 255, 255, 0.01) 18%,
      rgba(0, 0, 0, 0) 52%
    );
  filter: blur(22px);
  opacity: 0.9;
  z-index: -1;
  pointer-events: none;
}

.footer-kicker {
  color: #a8a8a8;
  font-size: 0.95rem;
  margin-bottom: 0.45rem;
}

.footer-card h2 {
  font-size: clamp(1.3rem, 2.6vw, 2rem);
  letter-spacing: -0.02em;
  margin-bottom: 1.1rem;
}

.footer-actions {
  display: flex;
  gap: 0.65rem;
  justify-content: center;
  flex-wrap: wrap;
}

.footer-bottom {
  margin-top: clamp(2.2rem, 6vw, 4.8rem);
  text-align: center;
}

.footer-name {
  font-size: clamp(2.4rem, 11vw, 8rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: #efefef;
}

.footer-name span {
  font-weight: 300;
  font-style: italic;
  opacity: 0.92;
}

.footer-copy {
  margin-top: 1rem;
  color: #8f8f8f;
  font-size: 0.92rem;
}

@media (max-width: 900px) {
  .footer-cta {
    border-radius: 1.8rem;
  }

  .diamond-field {
    --diamond-cols: 44;
    --diamond-rows: 12;
    padding: 0.9rem;
    mask-image: linear-gradient(
      to right,
      transparent 0%,
      #000 9%,
      #000 91%,
      transparent 100%
    );
    -webkit-mask-image: linear-gradient(
      to right,
      transparent 0%,
      #000 9%,
      #000 91%,
      transparent 100%
    );
  }

  .diamond-field.is-live::after {
    background: radial-gradient(
      ellipse 40% 60% at 50% 50%,
      rgba(0, 0, 0, 0.9) 0%,
      rgba(0, 0, 0, 0.7) 34%,
      rgba(0, 0, 0, 0.42) 56%,
      rgba(0, 0, 0, 0.16) 72%,
      rgba(0, 0, 0, 0) 86%
    );
  }

  .diamond-field.is-live::before {
    background:
      linear-gradient(
        to right,
        rgba(0, 0, 0, 0.54) 0%,
        rgba(0, 0, 0, 0.17) 16%,
        rgba(0, 0, 0, 0.17) 84%,
        rgba(0, 0, 0, 0.54) 100%
      ),
      radial-gradient(
        ellipse 125% 94% at 50% 50%,
        rgba(0, 0, 0, 0) 60%,
        rgba(0, 0, 0, 0.24) 100%
      );
  }
}
