:root {
  --charcoal: #555555;
  --charcoal-deep: #383838;
  --lime: #b9ff5d;
  --lime-strong: #9af038;
  --white: #ffffff;
  --ink: #191919;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--charcoal);
}

body {
  min-height: 100vh;
  margin: 0;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--white);
  /* background:
    radial-gradient(circle at 14% 18%, rgba(185, 255, 93, 0.18), transparent 24rem),
    linear-gradient(135deg, var(--charcoal) 0%, var(--charcoal-deep) 100%); */
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent 82%);
}

a {
  color: inherit;
}

.page-shell {
  display: grid;
  min-height: 100vh;
  /* padding: clamp(16px, 3vw, 40px); */
}

.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: calc(100vh - clamp(32px, 6vw, 80px));
  overflow: hidden;
  /* border: 2px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px; */
  padding: clamp(20px, 3vw, 40px);
  background:
    linear-gradient(90deg, rgba(56, 56, 56, 0.8), rgba(56, 56, 56, 0.28)),
    repeating-linear-gradient(
      -28deg,
      transparent 0 32px,
      rgba(185, 255, 93, 0.1) 32px 34px
    );
  box-shadow: 0 22px 80px rgba(0, 0, 0, 0.22);
}

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

.hero::before {
  right: clamp(18px, 4vw, 56px);
  bottom: clamp(18px, 4vw, 56px);
  width: min(34vw, 420px);
  aspect-ratio: 1;
  border-right: 18px solid var(--lime);
  border-bottom: 18px solid var(--lime);
}

.hero::after {
  top: 0;
  right: 12%;
  width: 26rem;
  height: 120%;
  transform: skewX(-16deg);
  background: rgba(255, 255, 255, 0.06);
}

.hero__brand {
  position: relative;
  z-index: 1;
  width: min(40vw, 420px);
  align-self: start;
}

.hero__brand img {
  display: block;
  width: 100%;
  height: auto;
}

.hero__content {
  position: relative;
  z-index: 1;
  align-self: flex-start;
  max-width: 760px;
  padding-top: clamp(18px, 3vh, 28px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  margin: 0 0 18px;
  border-left: 8px solid var(--lime);
  padding-left: 14px;
  color: var(--lime);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

h1 {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(2.8rem, 5.8vw, 5rem);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 0.86;
  text-transform: uppercase;
}

.intro {
  max-width: 620px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1rem, 1.6vw, 1.24rem);
  font-weight: 650;
  line-height: 1.45;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 2px solid transparent;
  border-radius: 6px;
  padding: 0 22px;
  font-size: 0.95rem;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

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

.button:focus-visible {
  outline: 3px solid rgba(185, 255, 93, 0.7);
  outline-offset: 3px;
}

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

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

.button--secondary {
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.button--secondary:hover,
.button--secondary:focus-visible {
  border-color: var(--lime);
  color: var(--lime);
}

.launch-panel {
  position: absolute;
  right: clamp(20px, 3vw, 40px);
  bottom: clamp(20px, 3vw, 40px);
  z-index: 1;
  display: grid;
  gap: 14px;
  width: min(320px, 28vw);
  min-width: 230px;
}

.launch-panel__label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.ticker {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.ticker span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  border: 1px solid rgba(185, 255, 93, 0.5);
  border-radius: 4px;
  padding: 0 12px;
  color: var(--lime);
  background: rgba(25, 25, 25, 0.18);
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .hero {
    min-height: calc(100vh - 40px);
  }

  .hero::after {
    right: -34%;
  }

  .hero__brand {
    width: min(100%, 560px);
  }

  .hero__content {
    padding-top: 8vh;
  }

  .launch-panel {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    max-width: 480px;
    margin-top: 42px;
  }
}

@media (max-width: 560px) {
  .page-shell {
    padding: 14px;
  }

  .hero {
    min-height: calc(100vh - 28px);
    padding: 20px;
  }

  .hero::before {
    width: 160px;
    border-width: 10px;
  }

  h1 {
    max-width: 10ch;
    font-size: clamp(3rem, 17vw, 5.2rem);
  }

  .intro {
    margin-top: 22px;
  }

  .button {
    width: 100%;
  }

  .ticker {
    grid-template-columns: 1fr;
  }
}
