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

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
  background:
    linear-gradient(135deg, rgba(0, 102, 204, 0.1), transparent 36%),
    linear-gradient(315deg, rgba(244, 126, 32, 0.18), transparent 42%),
    #f7f5ef;
}

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

.hero {
  width: min(680px, 100%);
  border: 1px solid rgba(22, 22, 22, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
  padding: clamp(28px, 6vw, 56px);
  box-shadow: 0 18px 60px rgba(28, 35, 45, 0.12);
}

.eyebrow {
  margin: 0 0 12px;
  color: #0066cc;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(36px, 7vw, 72px);
  line-height: 0.96;
  letter-spacing: 0;
}

.lede {
  max-width: 560px;
  margin: 24px 0 0;
  color: #3f4650;
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.65;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 34px;
  border: 1px solid rgba(30, 130, 76, 0.35);
  border-radius: 999px;
  background: rgba(232, 248, 239, 0.88);
  padding: 10px 14px;
  color: #17663c;
  font-size: 15px;
  font-weight: 700;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #1e824c;
  box-shadow: 0 0 0 6px rgba(30, 130, 76, 0.14);
}
