:root {
  color-scheme: dark;
  --bg: #050505;
  --panel: #0c0c0c;
  --text: #f5f5f5;
  --muted: #969696;
  --line: #252525;
  --red: #f10d08;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  background:
    radial-gradient(circle at 75% 20%, rgba(241, 13, 8, .09), transparent 30rem),
    var(--bg);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
}

.shell {
  min-height: 100vh;
  width: min(1440px, 100%);
  margin: 0 auto;
  padding: 28px clamp(22px, 5vw, 80px);
  display: grid;
  grid-template-rows: auto 1fr auto;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--line);
}

.logo {
  width: clamp(138px, 14vw, 210px);
  height: auto;
  display: block;
}

.status,
.eyebrow,
footer {
  font-family: "Courier New", monospace;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.status {
  color: var(--muted);
  font-size: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pulse {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--red);
  box-shadow: 0 0 0 0 rgba(241, 13, 8, .65);
  animation: pulse 1.65s ease-out infinite;
}

.pulse-large { width: 11px; height: 11px; }

.hero {
  align-self: center;
  padding: clamp(70px, 11vh, 150px) 0;
}

.eyebrow {
  margin: 0 0 28px;
  color: var(--red);
  font-size: 11px;
}

h1 {
  max-width: 1100px;
  margin: 0;
  font-size: clamp(44px, 8vw, 118px);
  line-height: .88;
  letter-spacing: -.065em;
  text-transform: uppercase;
}

.lede {
  max-width: 720px;
  margin: 34px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 1.8vw, 23px);
  line-height: 1.55;
}

.launch-card {
  width: fit-content;
  max-width: 100%;
  margin-top: 48px;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(12, 12, 12, .8);
}

.launch-card div { display: grid; gap: 4px; }
.launch-card strong { font-size: 13px; letter-spacing: .12em; }
.launch-card span:last-child { color: var(--muted); font-size: 13px; }

footer {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: #737373;
  font-size: 9px;
}

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

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(241, 13, 8, .65); }
  65%, 100% { box-shadow: 0 0 0 12px rgba(241, 13, 8, 0); }
}

@media (max-width: 640px) {
  .shell { padding-top: 20px; padding-bottom: 20px; }
  .status { max-width: 130px; line-height: 1.5; letter-spacing: .12em; }
  h1 { font-size: clamp(42px, 14vw, 70px); }
  .launch-card { align-items: flex-start; border-radius: 22px; }
  footer { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  .pulse { animation: none; }
}
