:root {
  --bg: #0c1b23;
  --bg-deep: #071015;
  --ink: #f4f7f4;
  --muted: #a8b7ba;
  --line: rgba(244, 247, 244, 0.14);
  --panel: rgba(255, 255, 255, 0.055);
  --accent: #9fb5bd;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 255, 255, 0.08), transparent 30rem),
    linear-gradient(135deg, var(--bg-deep) 0%, var(--bg) 48%, #09161d 100%);
  background-color: var(--bg);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

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

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

.site-shell {
  min-height: 100vh;
  overflow: hidden;
}

.hero {
  align-items: center;
  display: flex;
  margin: 0 auto;
  max-width: none;
  min-height: 100vh;
  overflow: hidden;
  padding: 148px 28px 84px;
  position: relative;
}

.hero::before,
.hero::after {
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.hero::before {
  background: linear-gradient(90deg, rgba(7, 16, 21, 0.96) 0%, rgba(12, 27, 35, 0.76) 46%, rgba(12, 27, 35, 0.3) 100%);
  z-index: 1;
}

.hero::after {
  background:
    linear-gradient(90deg, rgba(244, 247, 244, 0.06) 1px, transparent 1px),
    linear-gradient(0deg, rgba(244, 247, 244, 0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: 0.18;
  transform: skewX(-16deg);
  z-index: 2;
}

.hero-video {
  filter: grayscale(1) contrast(1.2);
  height: 100%;
  inset: 0;
  object-fit: cover;
  opacity: 0.24;
  position: absolute;
  width: 100%;
}

.hero-motion {
  inset: 0;
  opacity: 0.26;
  overflow: hidden;
  position: absolute;
  width: 100%;
}

.hero-motion span {
  animation: drift 14s linear infinite;
  background: linear-gradient(110deg, transparent 0%, rgba(244, 247, 244, 0.22) 45%, transparent 80%);
  height: 160%;
  position: absolute;
  top: -30%;
  transform: rotate(18deg);
  width: 120px;
}

.hero-motion span:nth-child(1) {
  left: 6%;
}

.hero-motion span:nth-child(2) {
  animation-delay: -5s;
  left: 42%;
}

.hero-motion span:nth-child(3) {
  animation-delay: -9s;
  left: 76%;
}

@keyframes drift {
  0% {
    transform: translateX(-130px) rotate(18deg);
  }
  100% {
    transform: translateX(260px) rotate(18deg);
  }
}

.hero-copy {
  margin: 0 auto;
  max-width: 1184px;
  position: relative;
  width: min(100% - 56px, 1184px);
  z-index: 3;
}

.hero-logo {
  left: max(28px, calc((100vw - 1184px) / 2));
  position: absolute;
  top: 28px;
  z-index: 4;
}

.hero-logo img {
  width: 142px;
}

.eyebrow {
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  margin: 0 0 22px;
  text-transform: uppercase;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(52px, 7.4vw, 108px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.93;
  margin-bottom: 28px;
  max-width: 920px;
}

.hero-lede {
  color: rgba(244, 247, 244, 0.72);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
  margin-bottom: 34px;
  max-width: 620px;
}

.button {
  align-items: center;
  border: 1px solid transparent;
  cursor: pointer;
  display: inline-flex;
  font-size: 14px;
  font-weight: 900;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
}

.button.primary {
  background: var(--ink);
  color: #071015;
}

.button.secondary {
  background: transparent;
  border-color: rgba(244, 247, 244, 0.44);
  color: var(--ink);
}

.button:hover {
  transform: translateY(-1px);
}

.statement,
.licensee,
.contact,
.footer {
  margin: 0 auto;
  max-width: 1240px;
  padding-left: 28px;
  padding-right: 28px;
}

.statement {
  padding-bottom: 94px;
  padding-top: 52px;
}

.statement p {
  border-left: 4px solid rgba(244, 247, 244, 0.82);
  color: rgba(244, 247, 244, 0.88);
  font-size: clamp(30px, 4.6vw, 62px);
  font-weight: 850;
  line-height: 1.04;
  max-width: 1060px;
  padding-left: 26px;
}

.licensee {
  padding-bottom: 112px;
}

.licensee-inner {
  align-items: center;
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 255, 255, 0.08), transparent 26rem),
    var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  display: grid;
  gap: 46px;
  grid-template-columns: 1fr 0.78fr;
  min-height: 360px;
  padding: 44px;
}

h2 {
  font-size: clamp(34px, 5vw, 68px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.98;
  margin-bottom: 0;
}

.licensee-brand {
  display: grid;
  gap: 22px;
  justify-items: start;
}

.licensee-brand img {
  width: min(100%, 470px);
}

.contact {
  background:
    radial-gradient(circle at 96% 0%, rgba(255, 255, 255, 0.08), transparent 26rem),
    rgba(255, 255, 255, 0.045);
  border: 1px solid var(--line);
  display: grid;
  gap: 44px;
  grid-template-columns: 0.85fr 1.15fr;
  margin-bottom: 42px;
  padding-bottom: 44px;
  padding-top: 44px;
}

.contact-copy {
  align-self: center;
}

.contact-copy p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
  max-width: 430px;
}

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-form input[name="_honey"] {
  display: none;
}

.contact-form label {
  color: rgba(244, 247, 244, 0.72);
  display: grid;
  font-size: 12px;
  font-weight: 900;
  gap: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  background: rgba(7, 16, 21, 0.72);
  border: 1px solid var(--line);
  color: var(--ink);
  font: inherit;
  min-height: 48px;
  outline: none;
  padding: 13px 14px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(244, 247, 244, 0.72);
}

.contact-form button {
  justify-self: start;
  margin-top: 4px;
}

.footer {
  align-items: center;
  border-top: 1px solid var(--line);
  color: var(--muted);
  display: flex;
  font-size: 13px;
  justify-content: space-between;
  padding-bottom: 34px;
  padding-top: 28px;
}

.footer img {
  width: 128px;
}

@media (max-width: 920px) {
  .hero {
    min-height: 100vh;
    padding-top: 132px;
  }

  .hero::before {
    background: linear-gradient(180deg, rgba(7, 16, 21, 0.94) 0%, rgba(12, 27, 35, 0.8) 52%, rgba(12, 27, 35, 0.45) 100%);
  }

  .licensee-inner,
  .contact {
    grid-template-columns: 1fr;
  }

  .licensee-brand,
  .licensee-brand img {
    justify-self: start;
  }
}

@media (max-width: 620px) {
  .hero,
  .statement,
  .licensee,
  .contact,
  .footer {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero {
    padding-bottom: 58px;
    padding-top: 130px;
  }

  .hero-logo {
    left: 18px;
    top: 28px;
  }

  .hero-logo img {
    width: 116px;
  }

  .button {
    width: 100%;
  }

  .statement {
    padding-bottom: 60px;
    padding-top: 24px;
  }

  .statement p {
    padding-left: 18px;
  }

  .licensee {
    padding-bottom: 70px;
  }

  .licensee-inner {
    min-height: 0;
    padding: 28px 22px;
  }

  .contact {
    margin-left: 18px;
    margin-right: 18px;
    padding-top: 34px;
  }

  .contact-form button,
  .footer {
    align-items: stretch;
    flex-direction: column;
  }
}
