:root {
  color-scheme: dark;
  font-family: "Unbounded", sans-serif;
  background: #000;
  color: #fff;
}

* {
  box-sizing: border-box;
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(circle at 50% 42%, rgba(71, 0, 122, 0.18), transparent 34%),
    #000;
}

.top-bar {
  width: calc(100% - 48px);
  height: 124px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: block;
  width: 190px;
  height: auto;
}

.menu-button {
  width: 54px;
  height: 54px;
  padding: 0;
  display: grid;
  place-content: center;
  gap: 6px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-button:focus-visible {
  outline: none;
}

.menu-button span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 99px;
  background: #fff;
}

.content {
  width: min(760px, calc(100% - 48px));
  margin: 62px auto 0;
  padding-bottom: 120px;
}

.eyebrow {
  margin: 0 0 18px;
  color: #9500ff;
  font-size: 0.64rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.055em;
}

.intro {
  max-width: 620px;
  margin: 24px 0 42px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.72rem;
  line-height: 1.9;
}

.mock-form {
  padding: clamp(22px, 4vw, 38px);
  display: grid;
  gap: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  background: rgba(8, 8, 8, 0.78);
  box-shadow: 0 28px 90px rgba(71, 0, 122, 0.18);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

label {
  display: grid;
  gap: 10px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.59rem;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  outline: none;
  background: rgba(255, 255, 255, 0.045);
  color: #fff;
  font: 400 0.7rem/1.5 "Unbounded", sans-serif;
}

input,
select {
  height: 56px;
  padding: 0 18px;
}

textarea {
  min-height: 160px;
  padding: 18px;
  resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
  border-color: #9500ff;
  box-shadow: 0 0 0 3px rgba(149, 0, 255, 0.1);
}

.mock-submit {
  min-height: 58px;
  border: 1px solid rgba(149, 0, 255, 0.7);
  border-radius: 29px;
  background: linear-gradient(90deg, #9500ff, #47007a);
  color: #fff;
  font: 500 0.7rem/1 "Unbounded", sans-serif;
  cursor: default;
}

.prototype-note {
  margin: -8px 0 0;
  color: rgba(255, 255, 255, 0.32);
  font-size: 0.52rem;
  line-height: 1.6;
  text-align: center;
}

.site-footer {
  padding: 0 24px 24px;
  color: rgba(255, 255, 255, 0.48);
  font: 400 0.68rem/1.5 "Unbounded", sans-serif;
  text-align: center;
}

@media (max-width: 600px) {
  .top-bar {
    width: calc(100% - 32px);
    height: 96px;
  }

  .logo {
    width: 75px;
  }

  .menu-button {
    width: 48px;
    height: 48px;
  }

  .content {
    width: calc(100% - 32px);
    margin-top: 34px;
    padding-bottom: 84px;
  }

  .field-row {
    grid-template-columns: 1fr;
  }

  input,
  textarea,
  select {
    font-size: 1rem;
  }

  .site-footer {
    padding-bottom: 16px;
    font-size: 0.58rem;
  }
}
