:root {
  --red: #c8202c;
  --red-deep: #a3151f;
  --green: #4e9b3c;
  --green-deep: #3c7d2e;
  --ink: #2a1a18;
  --muted: #7a6b66;
  --cream: #fbf6ef;
  --card: #ffffff;
  --line: rgba(42, 26, 24, 0.1);
  --font-display: "Bricolage Grotesque", system-ui, sans-serif;
  --font-body: "DM Sans", system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  min-height: 100vh;
  padding: 32px 20px 56px;
  display: flex;
  justify-content: center;
  position: relative;
  overflow-x: hidden;
}

/* soft brand glows in background */
.glow {
  position: fixed;
  width: 60vmax;
  height: 60vmax;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.16;
  pointer-events: none;
  z-index: 0;
}
.glow--top { top: -28vmax; right: -22vmax; background: var(--red); }
.glow--bottom { bottom: -30vmax; left: -24vmax; background: var(--green); }

.page {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 560px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 40px 36px 44px;
  box-shadow: 0 30px 70px -36px rgba(42, 26, 24, 0.32);
  text-align: center;
}

/* old -> new badge */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(78, 155, 60, 0.1);
  border: 1px solid rgba(78, 155, 60, 0.28);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 26px;
}
.badge__old { color: var(--muted); text-decoration: line-through; }
.badge__arrow { color: var(--green-deep); }
.badge__new { color: var(--red); font-weight: 700; }

.logo {
  width: 200px;
  max-width: 62%;
  margin: 0 auto 22px;
}
.logo img {
  width: 100%;
  height: auto;
  display: block;
  mix-blend-mode: multiply;
}

.headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 7vw, 40px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}
.headline__accent { color: var(--red); }

.lede {
  font-size: clamp(16px, 4.2vw, 18px);
  color: var(--ink);
  max-width: 44ch;
  margin: 0 auto 22px;
}
.lede strong { font-weight: 700; }
.pepper { white-space: nowrap; }

.sub {
  font-size: 15px;
  font-weight: 600;
  color: var(--green-deep);
  margin-bottom: 18px;
}

.perks {
  list-style: none;
  display: grid;
  gap: 10px;
  text-align: left;
  margin: 0 auto 30px;
  max-width: 420px;
}
.perks li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 16px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 14px;
  font-size: 15px;
}
.perks__icon {
  font-size: 20px;
  line-height: 1;
  flex-shrink: 0;
}
.perks strong { font-weight: 700; color: var(--red-deep); }

.why {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  margin-bottom: 30px;
}
.why__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 8px;
}
.why p {
  font-size: 15px;
  color: var(--muted);
  max-width: 46ch;
  margin: 0 auto;
}

/* CTA */
.cta {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  text-decoration: none;
  padding: 16px 40px;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  box-shadow: 0 16px 30px -12px rgba(200, 32, 44, 0.6);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.cta:hover {
  transform: translateY(-2px);
  background: var(--red-deep);
  box-shadow: 0 20px 36px -12px rgba(200, 32, 44, 0.7);
}
.cta__url {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.04em;
  opacity: 0.85;
}

/* social */
.social {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 26px;
}
.social__link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 18px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: border-color 0.15s ease, color 0.15s ease, transform 0.15s ease;
}
.social__link:hover {
  transform: translateY(-2px);
  border-color: var(--green);
  color: var(--green-deep);
}
.social__link svg { display: block; }

.foot {
  margin-top: 30px;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}

@media (max-width: 480px) {
  body { padding: 16px 12px 40px; }
  .page { padding: 30px 22px 34px; border-radius: 22px; }
  .social { flex-direction: column; }
  .social__link { justify-content: center; }
}
