:root {
  --blue: #0043ff;
  --bg: #000;
  --ink: #fff;
  --muted: #999;
  --soft: #e3e3e3;
  --dim: #757575;
  --lede: #7f7f80;
  --line: #7d7d7d;
  --stat: #ebebeb;
  --stat-sub: #a1a1a1;
  --max: 1360px;
  --pad: 40px;
  color-scheme: dark;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, "Inter Display", Helvetica, Arial, sans-serif;
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; }
a { color: inherit; }
button, input, textarea { font-family: inherit; }

.intro {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  background: #000;
  animation: intro-out 1.5s ease 0.35s forwards;
  pointer-events: none;
}
.intro img { width: 88px; height: auto; }
@keyframes intro-out {
  to { opacity: 0; visibility: hidden; }
}

.nav {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  height: 88px;
  padding: 0 34px;
  pointer-events: none;
}
.nav-logo { pointer-events: auto; display: block; }
.nav-logo img { height: 40px; width: auto; display: block; }

.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  background: #090909;
  overflow: hidden;
}
.hero video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-bottom {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  padding: 0 40px 36px 48px;
}
.hero-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
}
.apes { width: 119px; height: auto; display: block; }
.down {
  width: 31px;
  height: 30px;
  display: block;
}
.down svg { width: 31px; height: 30px; display: block; }
.hero-caption {
  width: min(480px, 42vw);
  text-align: left;
}
.hero-caption img {
  width: 67px;
  height: auto;
  display: block;
  margin-bottom: 18px;
}
.hero-caption p {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: -0.1px;
}

.section { padding: 72px 0 88px; }
.wrap {
  width: min(var(--max), calc(100% - var(--pad) * 2));
  margin: 0 auto;
}
.rule {
  height: 1px;
  background: var(--line);
  margin-bottom: 28px;
}
.label-row, .label-inline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.1px;
  line-height: 26px;
}
.label-inline { justify-content: flex-start; }
.aside { margin: 0; text-align: right; flex: 1; }
.dot {
  display: inline-block;
  width: 13px;
  height: 13px;
  margin-right: 12px;
  background: var(--blue);
  transform: translateY(1px);
}
.display {
  margin: 64px 0 0;
  font-size: 48px;
  font-weight: 600;
  line-height: 60px;
  letter-spacing: -1.2px;
}
.display.center { text-align: center; max-width: 884px; margin-left: auto; margin-right: auto; }
.display .dim { color: var(--dim); }
.category {
  margin: 92px 0 0;
  text-align: center;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 44px;
  color: var(--soft);
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 58px 46px;
  max-width: 1120px;
  margin: 56px auto 0;
}
.product { color: inherit; text-decoration: none; display: block; }
.product video {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: #111;
  display: block;
}
.product h4 {
  margin: 28px 0 0;
  font-size: 28px;
  font-weight: 400;
  letter-spacing: -0.56px;
  line-height: 28px;
}
.product p {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 22px;
  font-weight: 400;
  line-height: 26.4px;
  letter-spacing: -0.22px;
}
.product:hover video { filter: brightness(1.08); }

.band {
  height: 630px;
  background: #090909;
  overflow: hidden;
}
.band video {
  width: 120%;
  height: 100%;
  margin-left: -10%;
  object-fit: cover;
  display: block;
}

.founders {
  max-width: 980px;
  margin: 72px auto 0;
}
.founders article {
  display: grid;
  grid-template-columns: minmax(240px, 420px) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
}
.founders img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
  background: #111;
}
.founders h3 {
  margin: 0;
  font-size: 35px;
  font-weight: 400;
  letter-spacing: -0.35px;
  line-height: 42px;
}
.founders .role {
  margin: 10px 0 0;
  color: var(--blue);
  font-size: 30px;
  line-height: 36px;
  letter-spacing: -0.3px;
}
.founders .bio {
  margin: 28px 0 0;
  max-width: 460px;
  color: var(--muted);
  font-size: 20px;
  line-height: 24px;
  letter-spacing: -0.2px;
}

.traction-top {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 24px;
  align-items: start;
}
.traction-top .display { margin-top: 0; max-width: 979px; }
.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
  margin-top: 88px;
}
.stats .stat-num {
  margin: 0;
  text-align: center;
  color: #fff;
  font-size: 100px;
  font-weight: 600;
  letter-spacing: -10px;
  line-height: 120px;
}
.stat-line {
  height: 1px;
  margin: 8px 0 28px;
  background: rgba(234, 234, 234, 0.65);
}
.stats h3 {
  margin: 0;
  color: var(--stat);
  font-size: 30px;
  font-weight: 600;
  letter-spacing: -1px;
  line-height: 41px;
}
.stats article > p:last-child {
  margin: 6px 0 0;
  color: var(--stat-sub);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.1px;
  line-height: 26px;
}

.brands { padding: 28px 0 20px; }
.marquee { overflow: hidden; margin-top: 36px; }
.marquee-track {
  display: flex;
  align-items: center;
  gap: 64px;
  width: max-content;
  animation: marquee 48s linear infinite;
}
.marquee img {
  height: 78px;
  width: 150px;
  object-fit: contain;
  flex: none;
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}

.mega {
  margin: 48px auto 0;
  max-width: 1000px;
  text-align: center;
  font-size: 110px;
  font-weight: 600;
  letter-spacing: -3px;
  line-height: 0.9;
}
.mega.left { text-align: left; margin: 48px 0 0; font-size: 90px; letter-spacing: -3px; line-height: 0.92; }
.lede {
  max-width: 800px;
  margin: 28px auto 0;
  text-align: center;
  color: var(--lede);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.1px;
  line-height: 24px;
}
.lede.left { text-align: left; margin: 22px 0 0; max-width: 420px; }

.pill {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin: 28px auto 0;
  padding: 5px 22px 5px 5px;
  border-radius: 50px;
  background: #f5f4f3;
  color: #090909;
  text-decoration: none;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.1px;
}
.ip .wrap { text-align: center; }
.pill-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--blue);
  display: grid;
  place-items: center;
}
.pill-icon svg { width: 16px; height: 16px; }
.pill:hover { background: var(--blue); color: #fff; }
.pill:hover .pill-icon { background: #090909; }

.orbit {
  position: relative;
  height: 520px;
  margin-top: 12px;
  overflow: hidden;
  cursor: grab;
  touch-action: none;
}
.orbit.is-dragging { cursor: grabbing; }
.orbit-scene {
  position: absolute;
  inset: 0;
  perspective: 1400px;
  perspective-origin: 50% 40%;
}
.orbit-ring {
  position: absolute;
  left: 50%;
  top: 46%;
  width: 0;
  height: 0;
  transform-style: preserve-3d;
}
.orbit-card {
  position: absolute;
  width: 250px;
  height: 330px;
  border-radius: 22px;
  overflow: hidden;
  background: #141414;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.5);
  transform-origin: center center;
  will-change: transform, opacity;
}
.orbit-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
  user-select: none;
}
.orbit-card.is-front:hover img { transform: scale(1.04); }
.orbit-next {
  position: absolute;
  right: 28px;
  top: 50%;
  z-index: 2;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  border: 0;
  border-radius: 50%;
  background: var(--blue);
  display: grid;
  place-items: center;
  cursor: pointer;
}
.orbit-next svg { width: 18px; height: 18px; }

.contact { position: relative; overflow: hidden; }
.contact-bg {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 82%;
  background:
    linear-gradient(180deg, #000 0%, rgba(0,0,0,0.62) 20%, rgba(0,0,0,0.28) 55%, rgba(0,0,0,0.4) 100%),
    url("/assets/img/contact-bg.jpg") center bottom / cover no-repeat;
  pointer-events: none;
}
.contact-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 460px) minmax(280px, 757px);
  gap: 48px 80px;
  align-items: start;
  justify-content: space-between;
}
#contact-form { position: relative; z-index: 1; }
#contact-form::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -18px -24px 8px;
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.55);
}
form label { display: block; border-bottom: 1px solid rgba(255,255,255,0.28); }
form input, form textarea {
  width: 100%;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 16px;
  padding: 22px 0 16px;
  outline: none;
}
form textarea { min-height: 140px; resize: vertical; }
form input::placeholder, form textarea::placeholder { color: rgba(255,255,255,0.55); }
form button {
  width: 100%;
  height: 72px;
  margin-top: 22px;
  border: 0;
  border-radius: 10px;
  background: #1e1e1e;
  color: #f9f9f9;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.1px;
  cursor: pointer;
}
form button:hover { background: var(--blue); }
.hp { position: absolute; left: -9999px; height: 0; width: 0; opacity: 0; }
.form-status { min-height: 24px; margin: 14px 0 0; color: var(--soft); font-size: 15px; }
.form-status.error { color: #ffb4b4; }

.footer {
  position: relative;
  z-index: 2;
  padding: 72px 40px 48px;
  text-align: center;
  background: #000;
}
.footer-logo { height: 58px; width: auto; }
.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  max-width: 1360px;
  margin: 48px auto 0;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.1px;
}
.footer-row p { margin: 0; color: #b5b5b5; }
.footer-row a { color: #fff; text-decoration: none; }
.footer-row a:hover { color: var(--blue); }
.to-top { color: #fff; }

.legal {
  width: min(820px, calc(100% - 48px));
  margin: 0 auto;
  padding: 140px 0 80px;
}
.legal-kicker { margin: 0 0 18px; color: var(--muted); letter-spacing: 0.08em; text-transform: uppercase; font-size: 13px; }
.legal-kicker a { text-decoration: none; }
.legal h1 { margin: 0 0 28px; font-size: 48px; line-height: 1.1; letter-spacing: -1.4px; }
.legal h2 { margin: 36px 0 12px; font-size: 26px; letter-spacing: -0.4px; }
.legal h3 { margin: 28px 0 10px; font-size: 20px; }
.legal h4 { margin: 22px 0 8px; font-size: 17px; color: var(--soft); }
.legal p, .legal li { color: #c8c8c8; font-size: 16px; line-height: 1.65; }
.legal a { color: #fff; }
.legal ul, .legal ol { padding-left: 1.2em; }

@media (max-width: 980px) {
  .display { font-size: 36px; line-height: 44px; }
  .product-grid, .founders article, .stats, .contact-grid, .traction-top { grid-template-columns: 1fr; }
  .mega, .mega.left { font-size: 64px; }
  .stats .stat-num { font-size: 72px; letter-spacing: -4px; line-height: 1.1; }
  .hero-bottom { flex-direction: column-reverse; align-items: flex-start; }
  .hero-caption { width: min(340px, 100%); }
  .apes { width: 96px; }
  .band { height: 360px; }
  .orbit { height: 420px; }
  .orbit-card { width: 190px; height: 250px; }
  .orbit-next { right: 12px; }
  .footer-row { flex-wrap: wrap; justify-content: center; }
  .aside { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .intro { display: none; }
  .marquee-track { animation: none; }
  html { scroll-behavior: auto; }
}
