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

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(circle at 15% 12%, rgba(244, 129, 32, 0.16), transparent 28rem),
    linear-gradient(135deg, #f7f4ee 0%, #f1f7f5 58%, #f9f3ea 100%);
}

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

.hero {
  width: min(780px, 100%);
  border: 1px solid rgba(23, 32, 38, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 22px 60px rgba(23, 32, 38, 0.12);
  padding: clamp(28px, 7vw, 64px);
}

.mark {
  display: flex;
  gap: 8px;
  margin-bottom: 28px;
}

.mark span {
  width: 44px;
  height: 10px;
  border-radius: 999px;
}

.mark span:nth-child(1) {
  background: #f48120;
}

.mark span:nth-child(2) {
  background: #207d86;
}

.mark span:nth-child(3) {
  background: #172026;
}

.eyebrow {
  margin: 0 0 12px;
  color: #207d86;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 13ch;
  margin: 0;
  font-size: clamp(2.4rem, 8vw, 5rem);
  line-height: 0.94;
  letter-spacing: 0;
}

.summary {
  max-width: 58ch;
  margin: 24px 0 0;
  color: #42505a;
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.6;
}

.facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 36px 0 0;
}

.facts div {
  min-width: 0;
  border-top: 2px solid rgba(23, 32, 38, 0.16);
  padding-top: 12px;
}

dt {
  color: #687883;
  font-size: 0.78rem;
  font-weight: 700;
}

dd {
  margin: 6px 0 0;
  overflow-wrap: anywhere;
  color: #172026;
  font-size: 0.94rem;
  font-weight: 700;
}

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

  .hero {
    padding: 28px;
  }

  .facts {
    grid-template-columns: 1fr;
  }
}

