:root {
  color-scheme: light;
  --bg: #f6efe4;
  --card: rgba(255, 252, 246, 0.88);
  --text: #1d232f;
  --muted: #6b7280;
  --accent: #bc5b30;
  --shadow: 0 30px 80px rgba(86, 61, 28, 0.16);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family:
    "Outfit",
    "Segoe UI",
    sans-serif;
  background:
    radial-gradient(circle at top left, rgba(188, 91, 48, 0.14), transparent 32%),
    radial-gradient(circle at bottom right, rgba(47, 101, 153, 0.16), transparent 28%),
    var(--bg);
  color: var(--text);
}

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

.card {
  width: min(720px, 100%);
  padding: 40px;
  border-radius: 28px;
  background: var(--card);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.eyebrow {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.24em;
  color: var(--accent);
}

h1 {
  margin: 0;
  font-size: clamp(2rem, 6vw, 4rem);
  line-height: 0.98;
}

.copy {
  margin: 20px 0 0;
  max-width: 56ch;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--muted);
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.grid article {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
}

.label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.8rem;
  color: var(--muted);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 28px;
  padding: 14px 22px;
  border-radius: 999px;
  background: var(--text);
  color: white;
  text-decoration: none;
  font-weight: 600;
}

@media (max-width: 720px) {
  .card {
    padding: 24px;
  }

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