:root {
  --bg: #fff4ee;
  --bg-strong: #ffd8c7;
  --paper: rgba(255, 250, 246, 0.84);
  --paper-strong: #fff8f3;
  --line: rgba(147, 41, 13, 0.18);
  --text: #40140b;
  --muted: #8a4334;
  --accent: #d84b24;
  --accent-deep: #9f2b0f;
  --shadow: rgba(130, 38, 12, 0.14);
}

* {
  box-sizing: border-box;
}

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

body {
  font-family: "Onest", "Trebuchet MS", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(216, 75, 36, 0.16), transparent 34%),
    radial-gradient(circle at 82% 18%, rgba(255, 188, 156, 0.72), transparent 24%),
    linear-gradient(180deg, #fff7f2 0%, var(--bg) 52%, #ffe7db 100%);
}

.page-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 22%, rgba(255, 255, 255, 0.88), transparent 26%),
    radial-gradient(circle at 76% 72%, rgba(216, 75, 36, 0.12), transparent 30%);
  mix-blend-mode: screen;
}

.poster-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px;
}

.poster {
  position: relative;
  width: min(100%, 980px);
  padding: 28px;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.62), rgba(255, 247, 241, 0.88)),
    var(--paper);
  box-shadow:
    0 30px 60px var(--shadow),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
  overflow: hidden;
}

.poster::before,
.poster::after {
  content: "";
  position: absolute;
  inset: auto;
  pointer-events: none;
}

.poster::before {
  top: 18px;
  right: 18px;
  width: 148px;
  height: 148px;
  border-top: 2px solid rgba(216, 75, 36, 0.22);
  border-right: 2px solid rgba(216, 75, 36, 0.22);
}

.poster::after {
  left: 28px;
  right: 28px;
  bottom: 96px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(216, 75, 36, 0.26), transparent);
}

.eyebrow,
.domain-mark,
.launch-label,
.status-note {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
}

.hero-block {
  display: grid;
  gap: 12px;
}

.domain-mark {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.18em;
}

h1 {
  margin: 0;
  max-width: 8ch;
  font-size: clamp(2.72rem, 8vw, 5.6rem);
  line-height: 0.92;
  letter-spacing: -0.06em;
  text-transform: uppercase;
}

.lede {
  margin: 8px 0 0;
  max-width: 35.4rem;
  color: var(--muted);
  font-size: clamp(0.95rem, 1.98vw, 1.3rem);
  line-height: 1.5;
}

.signal-strip {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.signal-strip span {
  padding: 10px 13px;
  border: 1px solid rgba(159, 43, 15, 0.18);
  background: rgba(255, 246, 241, 0.94);
  color: var(--accent-deep);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.launch-row {
  margin-top: 64px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
}

.launch-label {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.launch-date {
  margin: 0;
  font-size: clamp(1.44rem, 2.7vw, 2.16rem);
  font-weight: 700;
  letter-spacing: -0.04em;
}

.status-note {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.08em;
}

.status-note a {
  color: var(--accent-deep);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.16em;
}

.status-note a:hover {
  color: var(--accent);
}

@media (max-width: 720px) {
  .poster-shell {
    padding: 18px;
  }

  .poster {
    padding: 22px;
  }

  .launch-row {
    margin-top: 50px;
    flex-direction: column;
    align-items: start;
  }

  .poster::after {
    bottom: 126px;
  }
}