:root {
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #f6f8fb;
  color: #18202f;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
}

.shell {
  align-items: center;
  display: flex;
  min-height: 100vh;
  padding: 32px;
}

.panel {
  background: #ffffff;
  border: 1px solid #d8dee8;
  border-radius: 8px;
  box-shadow: 0 16px 40px rgba(30, 42, 62, 0.08);
  margin: 0 auto;
  max-width: 720px;
  padding: 40px;
  width: 100%;
}

.eyebrow {
  color: #2c6fbb;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  margin: 0 0 12px;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(34px, 6vw, 56px);
  line-height: 1;
  margin: 0 0 18px;
}

.copy {
  color: #4d5a6d;
  font-size: 18px;
  line-height: 1.6;
  margin: 0 0 28px;
}

.release {
  background: #e9f6f0;
  border: 1px solid #b9dfce;
  border-radius: 6px;
  color: #17543e;
  font-weight: 700;
  margin: 0 0 18px;
  padding: 12px 14px;
}

.facts {
  border-top: 1px solid #e2e7ef;
  display: grid;
  gap: 0;
  margin: 0 0 28px;
}

.facts div {
  border-bottom: 1px solid #e2e7ef;
  display: grid;
  gap: 16px;
  grid-template-columns: 120px 1fr;
  padding: 14px 0;
}

dt {
  color: #66758a;
  font-weight: 700;
}

dd {
  margin: 0;
  overflow-wrap: anywhere;
}

button {
  appearance: none;
  background: #1c6b4f;
  border: 0;
  border-radius: 6px;
  color: #ffffff;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  min-height: 44px;
  padding: 0 18px;
}

button:hover {
  background: #15543e;
}

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

  .panel {
    padding: 24px;
  }

  .facts div {
    gap: 4px;
    grid-template-columns: 1fr;
  }
}
