:root {
  --bg-1: #fff5e8;
  --bg-2: #ffd7a8;
  --ink: #161616;
  --muted: #4a4a4a;
  --accent: #db3a22;
  --accent-hover: #bb2b15;
  --surface: rgba(255, 255, 255, 0.76);
  --border: rgba(0, 0, 0, 0.12);
  --radius: 20px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(1200px 500px at 85% -15%, #ff8f5f 0%, transparent 60%),
    linear-gradient(145deg, var(--bg-1), var(--bg-2));
}

.page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 28px 16px;
}

.hero {
  width: min(940px, 100%);
  padding: 32px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  backdrop-filter: blur(4px);
  box-shadow: 0 22px 48px rgba(40, 20, 0, 0.18);
  animation: rise 550ms ease-out both;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 8px;
  letter-spacing: 0.08em;
  font-weight: 800;
  font-size: 12px;
}

h1 {
  margin: 0;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(44px, 7vw, 82px);
  line-height: 0.95;
  letter-spacing: 0.01em;
}

h1 span {
  color: var(--accent);
}

.subheadline {
  margin: 16px 0 24px;
  max-width: 68ch;
  color: var(--muted);
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 600;
}

.offer {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px;
  border: 1px dashed rgba(0, 0, 0, 0.2);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.9);
  max-width: 360px;
  justify-self: end;
}

.price-label {
  margin: 0;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.price {
  margin: 0;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 14px 24px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  color: #ffffff;
  background: var(--accent);
  transition: transform 160ms ease, background 160ms ease;
}

.btn-cta:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
}

.btn-fallback {
  font-size: 13px;
  font-weight: 700;
  color: #5b2808;
  text-decoration: underline;
  width: fit-content;
}

.btn-fallback:hover {
  color: #3c1b05;
}

.urgency {
  margin: 0;
  color: #991b1b;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.safe-note {
  margin: 0;
  font-size: 13px;
  color: #333;
  font-weight: 600;
}

.mini-points {
  margin-top: 6px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.mini-points span {
  font-size: 12px;
  font-weight: 700;
  background: #ffe9d3;
  border-radius: 999px;
  padding: 5px 9px;
}

.bullets {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.bullets li {
  position: relative;
  padding-left: 30px;
  font-weight: 700;
}

.bullets li::before {
  content: ">";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-weight: 900;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 700px) {
  .hero {
    padding: 22px 18px;
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
  }

  .subheadline {
    margin-bottom: 18px;
  }

  .offer {
    max-width: 100%;
    justify-self: stretch;
  }

  .btn-cta {
    width: 100%;
  }
}
