:root {
  --bg: #070808;
  --text: #f3f0e8;
  --muted: #b7b0a5;
  --line: rgba(243,240,232,.14);
  --blue: #326bc1;
  --teal: #6cc7d3;
  --green: #70b873;
  --cream: #e9dfcf;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body {
  background:
    radial-gradient(circle at 50% 10%, rgba(255,255,255,.05), transparent 28rem),
    radial-gradient(circle at 75% 48%, rgba(108,199,211,.08), transparent 34rem),
    radial-gradient(circle at 20% 54%, rgba(50,107,193,.07), transparent 30rem),
    linear-gradient(180deg, #0a0b0b 0%, #070808 100%);
}

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

.top-stripe {
  position: fixed;
  inset: 0 0 auto;
  height: 5px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}

.top-stripe span:nth-child(1) { background: var(--blue); }
.top-stripe span:nth-child(2) { background: var(--teal); }
.top-stripe span:nth-child(3) { background: var(--green); }

main {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 42px);
}

.card {
  width: min(980px, 100%);
  min-height: min(720px, calc(100svh - 60px));
  display: grid;
  grid-template-rows: auto 1fr auto;
  align-items: center;
  padding: clamp(32px, 6vw, 74px);
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(255,255,255,.045), rgba(255,255,255,.012)),
    rgba(12,14,14,.72);
  box-shadow: 0 50px 140px rgba(0,0,0,.5);
}

.logo {
  justify-self: center;
  width: min(420px, 82vw);
  height: auto;
}

.content {
  text-align: center;
  max-width: 780px;
  justify-self: center;
}

.eyebrow {
  margin: 0 0 22px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: .76rem;
}

h1 {
  margin: 0;
  font-size: clamp(3.4rem, 10vw, 8.2rem);
  line-height: .9;
  font-weight: 600;
  letter-spacing: -.06em;
}

.lede {
  max-width: 720px;
  margin: 30px auto 0;
  color: var(--muted);
  line-height: 1.72;
  font-size: clamp(1.02rem, 2vw, 1.24rem);
}

.services {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 36px;
}

.services span {
  padding: 10px 13px;
  border: 1px solid var(--line);
  background: rgba(7,8,8,.35);
  color: var(--cream);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .72rem;
}

footer {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(14px, 3vw, 30px);
  color: var(--muted);
  font-size: .84rem;
}

footer a:first-child {
  color: var(--cream);
}

footer a:hover {
  color: var(--text);
}

@media (max-width: 640px) {
  .card {
    min-height: calc(100svh - 36px);
    padding: 28px 20px;
  }

  footer {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
}
