:root {
  --black: #000000;
  --charcoal: #191919;
  --ink: #ffffff;
  --muted: #dddddd;
  --dim: #969696;
  --blue-deep: #194293;
  --blue: #0c6eb2;
  --cyan: #009ad0;
  --red: #cc3020;
  --orange: #ed610c;
}

* {
  box-sizing: border-box;
}

body {
  min-height: 100svh;
  margin: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 74% 18%, rgba(0, 154, 208, 0.26), transparent 30%),
    radial-gradient(circle at 20% 82%, rgba(237, 97, 12, 0.22), transparent 34%),
    linear-gradient(135deg, var(--black), var(--blue-deep) 48%, var(--black));
  color: var(--ink);
  font-family: Manrope, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.14;
  mix-blend-mode: screen;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 3px 3px;
}

.stub {
  width: min(980px, calc(100vw - 40px));
  position: relative;
  z-index: 1;
}

.wordmark {
  display: inline-flex;
  max-width: 100%;
  align-items: center;
  margin-bottom: clamp(42px, 7vw, 82px);
  white-space: nowrap;
  color: var(--ink);
  font-size: clamp(2.4rem, 10vw, 9.2rem);
  font-weight: 800;
  line-height: 0.82;
  letter-spacing: -0.065em;
}

.wordmark i {
  width: 0.08em;
  min-width: 4px;
  height: 0.92em;
  margin: 0 0.1em;
  background: var(--red);
}

.kicker {
  margin: 0 0 16px;
  color: var(--cyan);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

h1 {
  max-width: 860px;
  margin: 0 0 20px;
  font-size: clamp(3.2rem, 9vw, 8.5rem);
  font-weight: 800;
  line-height: 0.88;
  letter-spacing: 0;
}

.line {
  max-width: 690px;
  margin: 0 0 30px;
  color: var(--muted);
  font-size: clamp(1.08rem, 2.3vw, 2.2rem);
  font-weight: 600;
  line-height: 1.14;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid rgba(221, 221, 221, 0.2);
  background: var(--cyan);
  color: var(--black);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-decoration: none;
}

@media (max-width: 560px) {
  .button {
    width: 100%;
  }
}
