:root {
  color-scheme: dark;
  --bg: #050505;
  --fg: #f5f5f5;
  --muted: #a6a6a6;
  --line: #2a2a2a;
}

* {
  box-sizing: border-box;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family:
    "Arial Black",
    "Arial",
    system-ui,
    sans-serif;
}

.shell {
  min-height: 100vh;
  display: grid;
  grid-template-rows: 1fr auto;
  padding: clamp(24px, 5vw, 72px);
}

.hero {
  align-self: center;
  max-width: 900px;
}

.mark {
  width: clamp(96px, 18vw, 168px);
  height: clamp(96px, 18vw, 168px);
  display: grid;
  place-items: center;
  border: 2px solid var(--fg);
  font-size: clamp(34px, 7vw, 72px);
  font-weight: 900;
  line-height: 1;
  margin-bottom: clamp(28px, 5vw, 56px);
}

.eyebrow,
.label {
  margin: 0 0 12px;
  color: var(--muted);
  font-family: Arial, system-ui, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(58px, 13vw, 156px);
  line-height: 0.88;
  letter-spacing: 0;
}

.lead {
  max-width: 720px;
  margin: clamp(22px, 4vw, 36px) 0 0;
  font-family: Arial, system-ui, sans-serif;
  font-size: clamp(20px, 4vw, 38px);
  font-weight: 800;
  line-height: 1.1;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.actions a {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  border: 1px solid var(--fg);
  color: var(--fg);
  font-family: Arial, system-ui, sans-serif;
  font-size: 15px;
  font-weight: 800;
  padding: 0 18px;
  text-decoration: none;
}

.actions a:first-child {
  background: var(--fg);
  color: var(--bg);
}

.release {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line);
  padding-top: 22px;
  font-family: Arial, system-ui, sans-serif;
}

.release h2,
.release p {
  margin: 0;
}

.release h2 {
  font-size: clamp(28px, 6vw, 54px);
  line-height: 1;
}

.release > p {
  color: var(--muted);
  font-size: clamp(16px, 3vw, 24px);
  font-weight: 800;
  text-align: right;
}

@media (max-width: 640px) {
  .shell {
    padding: 24px;
  }

  .release {
    align-items: start;
    flex-direction: column;
  }

  .release > p {
    text-align: left;
  }
}
