:root {
  --bg: #030304;
  --panel: #111114;
  --panel-strong: #191a1d;
  --line: rgba(255, 255, 255, .15);
  --text: #f7f8fb;
  --muted: #b9bec8;
  --lime: #d7ff35;
  --cyan: #00e5ff;
  --magenta: #ff3bd4;
  --shadow: 0 24px 70px rgba(0, 0, 0, .42);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

body:before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(115deg, rgba(0, 229, 255, .1), transparent 36%),
    linear-gradient(250deg, rgba(255, 59, 212, .08), transparent 42%),
    #030304;
}

img {
  max-width: 100%;
  height: auto;
}

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

p {
  margin: 0;
  color: var(--muted);
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--text);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: 0;
}

h1 {
  max-width: 12.5ch;
  font-size: clamp(2.9rem, 5vw, 4.65rem);
}

h2 {
  max-width: 13.5ch;
  font-size: clamp(2rem, 3.45vw, 3.25rem);
}

h3 {
  font-size: clamp(1.3rem, 2vw, 1.9rem);
}

label {
  display: grid;
  gap: .45rem;
  color: #fff;
  font-size: .8rem;
  font-weight: 900;
  text-transform: uppercase;
}

input,
select,
textarea,
button {
  font: inherit;
}

input,
select,
textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
  background: #24252a;
  color: #fff;
  padding: .85rem .95rem;
  outline: 0;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--lime);
  box-shadow: 0 0 0 3px rgba(215, 255, 53, .12);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  min-height: 106px;
  padding: 0 clamp(1rem, 3vw, 2rem);
  border-bottom: 1px solid var(--line);
  background: rgba(3, 3, 4, .88);
  backdrop-filter: blur(18px);
}

.brand img {
  display: block;
  width: clamp(150px, 13vw, 190px);
  min-width: 150px;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 3vw, 2.4rem);
}

.nav a,
.header-action {
  color: var(--muted);
  font-size: .72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.nav a:hover,
.header-action:hover {
  color: var(--lime);
}

.header-action {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 1rem;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 8px;
}

.header-tools {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: .8rem;
}

.social-links {
  display: flex;
  align-items: center;
  gap: .4rem;
}

.social-links a {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 8px;
  background: rgba(255, 255, 255, .04);
  transition: border-color .18s ease, background .18s ease, transform .18s ease;
}

.social-links a:hover {
  border-color: rgba(215, 255, 53, .7);
  background: rgba(215, 255, 53, .08);
  transform: translateY(-1px);
}

.social-links img {
  width: 18px;
  height: 18px;
  display: block;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .46fr);
  gap: clamp(1rem, 3vw, 2rem);
  width: min(calc(100% - 2rem), var(--max));
  min-height: 560px;
  margin: 1rem auto 0;
  padding: clamp(1.25rem, 4vw, 3rem);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .95), rgba(0, 0, 0, .7) 48%, rgba(0, 0, 0, .35)),
    url("lvlup-hero.png") center right / cover no-repeat;
}

.hero-content,
.hero-panel {
  position: relative;
  z-index: 1;
}

.hero-content {
  align-self: center;
  display: grid;
  gap: .95rem;
}

.lede {
  max-width: 50ch;
  font-size: clamp(.98rem, 1.3vw, 1.08rem);
}

.eyebrow {
  color: var(--lime);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: .8rem 1rem;
  font-size: .74rem;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

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

.button-secondary {
  border-color: rgba(255, 255, 255, .32);
  background: rgba(0, 0, 0, .4);
  color: #fff;
}

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

.hero-actions,
.field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .8rem;
}

.hero-actions {
  max-width: 470px;
}

.hero-panel {
  align-self: end;
  display: grid;
  gap: .75rem;
  max-width: 340px;
  justify-self: end;
}

.hero-panel div {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: .9rem;
  min-height: 66px;
  padding: .85rem;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
  background: rgba(10, 10, 12, .76);
}

.hero-panel span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--lime);
  color: #030304;
  font-weight: 900;
}

.hero-panel strong {
  font-size: .82rem;
  line-height: 1.05;
  text-transform: uppercase;
}

.split-section,
.band,
.intake,
.footer {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
}

.split-section {
  display: grid;
  grid-template-columns: .74fr 1.26fr;
  gap: clamp(2rem, 5vw, 4rem);
  padding: clamp(4rem, 7vw, 6rem) 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .8rem;
}

.feature-grid article {
  min-height: 142px;
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(145deg, var(--panel), #080809);
}

.feature-grid h3 {
  margin-bottom: 1rem;
  color: var(--lime);
  font-size: 1rem;
  line-height: 1.1;
}

.band {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 2rem;
  padding: clamp(1.5rem, 4vw, 3rem);
  border: 1px solid rgba(215, 255, 53, .24);
  border-radius: 8px;
  background: linear-gradient(145deg, #15161a, #070708);
}

.brand-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .7rem;
}

.brand-list span {
  display: flex;
  align-items: center;
  min-height: 58px;
  padding: .95rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #fff;
  font-weight: 800;
}

.intake {
  padding: clamp(4rem, 7vw, 6rem) 0;
}

.intake-heading {
  max-width: 680px;
  margin-bottom: 1.4rem;
}

.tabs {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.tab-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .6rem;
  padding: .8rem;
  border-bottom: 1px solid var(--line);
  background: #09090b;
}

.tab {
  min-height: 46px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: transparent;
  color: #fff;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.tab.is-active {
  background: var(--lime);
  color: #030304;
}

.form-panel {
  grid-template-columns: .62fr 1.38fr;
  gap: 1rem;
  padding: 1rem;
  align-items: start;
}

.form-panel.is-active {
  display: grid;
}

.form-intro {
  padding: 1.2rem;
  border: 1px solid rgba(215, 255, 53, .28);
  border-radius: 8px;
  background: #050506;
}

.form-intro h3 {
  margin: .65rem 0 1rem;
  max-width: 11ch;
}

form {
  display: grid;
  gap: .75rem;
  padding: 1.2rem;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 8px;
  background: var(--panel-strong);
}

.form-status {
  min-height: 1.3rem;
  font-size: .9rem;
  font-weight: 800;
}

.form-status.is-success {
  color: var(--lime);
}

.form-status.is-error {
  color: #ffb4c8;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 2rem 0 3rem;
  border-top: 1px solid var(--line);
}

.footer > img {
  width: clamp(180px, 16vw, 230px);
}

.footer-meta {
  display: grid;
  justify-items: end;
  gap: .8rem;
}

.social-links--footer a {
  width: 38px;
  height: 38px;
}

.social-links--footer img {
  width: 20px;
  height: 20px;
}

.footer p {
  max-width: 420px;
  text-align: right;
}

@media (max-width: 960px) {
  .site-header,
  .hero,
  .split-section,
  .band,
  .form-panel.is-active {
    grid-template-columns: 1fr;
  }

  .nav {
    justify-content: center;
    order: 3;
    grid-column: 1 / -1;
  }

  .header-tools {
    justify-self: end;
  }

  .hero {
    min-height: 760px;
  }

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

@media (max-width: 640px) {
  .site-header {
    min-height: 110px;
  }

  .brand {
    justify-self: center;
  }

  .brand img {
    width: 150px;
    min-width: 150px;
  }

  .header-action {
    min-height: 38px;
    padding: 0 .8rem;
  }

  .header-tools {
    grid-column: 1 / -1;
    justify-self: stretch;
    justify-content: center;
    order: 4;
  }

  .social-links a {
    width: 40px;
    height: 40px;
  }

  .social-links img {
    width: 20px;
    height: 20px;
  }

  .site-header .header-action {
    display: none;
  }

  .hero {
    width: min(calc(100% - 1rem), var(--max));
    min-height: 760px;
    padding: 1.25rem;
    align-content: space-between;
    gap: 1.25rem;
  }

  .hero-content {
    align-self: start;
    gap: 1rem;
    padding-top: .35rem;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(1.9rem, 9.3vw, 2.3rem);
  }

  .lede {
    max-width: 34ch;
  }

  .hero-panel {
    width: 100%;
    max-width: none;
    justify-self: stretch;
    gap: .85rem;
  }

  h2 {
    overflow-wrap: anywhere;
  }

  .hero-actions,
  .field-row,
  .brand-list,
  .footer {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    display: grid;
  }

  .split-section,
  .band,
  .intake,
  .footer {
    width: min(calc(100% - 1rem), var(--max));
  }

  .tab-list {
    grid-template-columns: 1fr;
  }

  .footer {
    display: grid;
    justify-items: center;
    text-align: center;
  }

  .footer-meta {
    justify-items: center;
  }
}
