:root {
  --bg: #0e1418;
  --panel: #141c22;
  --ink: #f8f1e7;
  --muted: #b7b0a6;
  --accent: #f0b429;
  --accent-2: #20b2aa;
  --stroke: #24313a;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  min-height: 100vh;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at top, #1f2a31 0%, #0e1418 55%, #0b1114 100%);
  color: var(--ink);
  font-family: "Georgia", "Times New Roman", serif;
}

.wrap {
  width: min(1000px, 92vw);
  padding: 48px 0 64px;
}

.hero {
  margin-bottom: 36px;
}

.eyebrow {
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 16px;
}

h1 {
  font-size: clamp(30px, 4vw, 52px);
  margin: 0 0 10px;
}

.subtitle {
  margin: 0;
  color: var(--muted);
  font-size: clamp(14px, 2vw, 18px);
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.card {
  background: linear-gradient(145deg, #1a262d 0%, #11181d 100%);
  border: 1px solid var(--stroke);
  border-radius: 18px;
  padding: 26px;
  box-shadow: 0 22px 36px rgba(0,0,0,0.35);
  position: relative;
  overflow: hidden;
}

.card::after {
  content: "";
  position: absolute;
  inset: auto -40% -50% auto;
  width: 120px;
  height: 120px;
  background: rgba(240, 180, 41, 0.12);
  border-radius: 50%;
}

.chip {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(240, 180, 41, 0.18);
  color: var(--accent);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.chip.alt {
  background: rgba(32, 178, 170, 0.18);
  color: var(--accent-2);
}

h2 {
  margin: 0 0 8px;
  font-size: 24px;
}

p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 15px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 12px;
  text-decoration: none;
  background: var(--accent);
  color: #0b1114;
  font-weight: 700;
}

.btn.alt {
  background: var(--accent-2);
}

.footer {
  margin-top: 28px;
  color: var(--muted);
  font-size: 12px;
  text-align: center;
}
