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

* {
  box-sizing: border-box;
}

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

.app {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 32px;
  background:
    radial-gradient(circle at top left, rgba(255, 202, 82, 0.28), transparent 32rem),
    linear-gradient(135deg, #f8fbff 0%, #edf3f8 48%, #f8faf7 100%);
}

.panel {
  width: min(680px, 100%);
  border: 1px solid rgba(23, 32, 51, 0.12);
  border-radius: 8px;
  padding: clamp(28px, 6vw, 56px);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 24px 80px rgba(23, 32, 51, 0.14);
}

.eyebrow {
  margin: 0 0 12px;
  color: #b05a00;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(2.4rem, 8vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.lead {
  max-width: 36rem;
  margin: 24px 0 0;
  color: #48556a;
  font-size: 1.08rem;
  line-height: 1.7;
}

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

button {
  min-height: 48px;
  border: 0;
  border-radius: 8px;
  padding: 0 18px;
  background: #172033;
  color: white;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

button:hover {
  background: #253149;
}

button.secondary {
  border: 1px solid rgba(23, 32, 51, 0.18);
  background: white;
  color: #172033;
}

button.secondary:hover {
  background: #edf3f8;
}

.status {
  min-height: 1.5rem;
  margin: 24px 0 0;
  color: #697589;
}

body.alt .app {
  background:
    radial-gradient(circle at top right, rgba(48, 170, 128, 0.28), transparent 30rem),
    linear-gradient(135deg, #f7faf7 0%, #eef8f3 44%, #f8f5ef 100%);
}

body.alt .eyebrow {
  color: #117251;
}
