:root {
  color-scheme: dark;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #0c1118;
  color: #eef2f7;
  line-height: 1.5;
  font-weight: 400;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at top left, rgba(23, 42, 69, 0.9), transparent 32%),
    linear-gradient(180deg, #0c1118 0%, #101827 100%);
}

button {
  font: inherit;
}

.shell {
  min-height: 100vh;
  padding: 40px 24px 56px;
  max-width: 1160px;
  margin: 0 auto;
}

.hero {
  display: grid;
  gap: 16px;
  padding: 20px 0 28px;
}

.eyebrow,
.hero-meta,
.product {
  color: #8fa3bd;
  letter-spacing: 0;
}

h1,
h2,
p {
  margin: 0;
}

h1 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.05;
  max-width: 12ch;
}

.lead {
  max-width: 54ch;
  color: #cbd5e1;
  font-size: 1.05rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.92rem;
}

.status {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0;
  border: 1px solid transparent;
}

.status.live {
  color: #9ef0c0;
  background: rgba(30, 112, 74, 0.18);
  border-color: rgba(30, 112, 74, 0.45);
}

.status.loading {
  color: #f3d98b;
  background: rgba(120, 94, 15, 0.18);
  border-color: rgba(120, 94, 15, 0.45);
}

.status.fallback {
  color: #f2b3b3;
  background: rgba(112, 30, 30, 0.18);
  border-color: rgba(112, 30, 30, 0.45);
}

.offers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  align-items: start;
}

.offer {
  background: rgba(12, 17, 24, 0.82);
  border: 1px solid rgba(143, 163, 189, 0.2);
  padding: 18px;
}

.offer.empty {
  min-height: 220px;
}

.offer-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: start;
  margin-bottom: 14px;
}

.product {
  font-size: 0.78rem;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.offer h2 {
  font-size: 1.4rem;
}

.price {
  white-space: nowrap;
  color: #f8fafc;
}

.promise {
  color: #d7deea;
  margin-bottom: 14px;
}

.benefits {
  margin: 0 0 18px;
  padding-left: 18px;
  color: #cbd5e1;
}

.benefits li + li {
  margin-top: 6px;
}

button {
  border: 1px solid #6ea8fe;
  background: #1f4fa8;
  color: #fff;
  padding: 12px 16px;
  cursor: pointer;
}
