:root {
  color-scheme: dark;
  --ink: #fff8eb;
  --muted: #b9adc2;
  --panel: rgba(19, 12, 27, 0.88);
  --line: rgba(255, 255, 255, 0.12);
  --lime: #caff12;
  --pink: #ff4da6;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(circle at 15% 5%, rgba(255, 58, 158, 0.28), transparent 32rem),
    radial-gradient(circle at 95% 25%, rgba(112, 77, 255, 0.28), transparent 36rem),
    #08060c;
  font-family: "Schibsted Grotesk", system-ui, sans-serif;
  line-height: 1.65;
}

a {
  color: var(--lime);
}

.shell {
  width: min(760px, calc(100% - 36px));
  margin: 0 auto;
  padding: 28px 0 72px;
}

.brand {
  display: inline-flex;
  align-items: center;
  margin-bottom: 54px;
}

.brand img {
  width: 105px;
  height: auto;
}

.eyebrow,
label {
  font-family: "Space Mono", monospace;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow {
  color: var(--pink);
}

h1,
h2 {
  font-family: "Baloo 2", system-ui, sans-serif;
  line-height: 1.06;
}

h1 {
  max-width: 680px;
  margin: 8px 0 18px;
  font-size: clamp(2.55rem, 8vw, 4.8rem);
}

h2 {
  margin: 38px 0 8px;
  font-size: 1.65rem;
}

p,
li {
  color: var(--muted);
}

.lede {
  max-width: 650px;
  font-size: 1.12rem;
}

.card {
  margin-top: 30px;
  padding: clamp(20px, 5vw, 36px);
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--panel);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

.field {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}

input {
  width: 100%;
  min-height: 56px;
  padding: 0 18px;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.19);
  border-radius: 16px;
  outline: none;
  background: #0c0911;
  font: inherit;
}

input:focus {
  border-color: var(--lime);
  box-shadow: 0 0 0 3px rgba(202, 255, 18, 0.13);
}

button {
  width: 100%;
  min-height: 56px;
  margin-top: 22px;
  color: #080b04;
  border: 0;
  border-radius: 28px;
  background: var(--lime);
  cursor: pointer;
  font-family: "Space Mono", monospace;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

button:disabled {
  cursor: wait;
  opacity: 0.55;
}

.status {
  min-height: 26px;
  margin: 14px 0 0;
  color: #ff9bbd;
}

.fine {
  font-size: 0.9rem;
}

.hidden {
  display: none;
}

.footer {
  margin-top: 52px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: #8f8498;
  font-size: 0.88rem;
}

@media (max-width: 540px) {
  .brand {
    margin-bottom: 38px;
  }

  .shell {
    padding-top: 22px;
  }
}
