:root {
  --ink: #05070b;
  --white: #f4f7fb;
  --muted: #7f8793;
  --blue: #2f72ff;
}

* { box-sizing: border-box; }

html, body { min-height: 100%; }

body {
  margin: 0;
  background: var(--ink);
  color: var(--white);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

::selection { background: var(--blue); color: white; }

main {
  min-height: 100vh;
  padding: clamp(1.5rem, 4vw, 4rem);
  display: grid;
  grid-template-rows: auto 1fr auto;
}

header, footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .68rem;
  font-weight: 600;
}

header { justify-content: flex-end; }
header p, footer p { margin: 0; }
header p, footer { color: var(--muted); }

.hero {
  align-self: center;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(15rem, 28rem);
  align-items: end;
  gap: clamp(3rem, 8vw, 10rem);
  position: relative;
  padding: clamp(5rem, 8vw, 8rem) 0;
}

.signal {
  position: absolute;
  top: 0;
  left: 0;
  width: 3.25rem;
  height: 2px;
  background: var(--blue);
}

h1 {
  margin: 0;
  font-size: clamp(4.8rem, 13vw, 11.5rem);
  line-height: .78;
  letter-spacing: -.075em;
  font-weight: 400;
}

.statement {
  margin: 0;
  padding-bottom: .4rem;
  color: var(--white);
  font-size: clamp(1.5rem, 3vw, 2.7rem);
  line-height: 1.08;
  letter-spacing: -.045em;
  font-weight: 450;
}

@media (max-width: 760px) {
  main { min-height: 100svh; }
  header p { display: none; }
  .hero { grid-template-columns: 1fr; align-items: start; gap: 3.5rem; }
  h1 { font-size: clamp(4.7rem, 23vw, 7.5rem); }
  .statement { font-size: 1.65rem; }
  footer { align-items: flex-end; gap: 2rem; }
  footer p:first-child { max-width: 12rem; line-height: 1.6; }
}
