:root {
  --bg: #1b1d22;
  --bg-2: #2a2d34;
  --card: rgba(18, 20, 24, 0.52);
  --text: #f7f2e7;
  --muted: #d7cfbe;
  --accent: #129c55;
  --accent-dark: #0f7c44;
  --accent-soft: rgba(18, 156, 85, 0.16);
  --orange: #ff8c42;
  --border: rgba(255, 247, 227, 0.16);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 196, 42, 0.18), transparent 22%),
    radial-gradient(circle at top right, rgba(255, 145, 0, 0.14), transparent 18%),
    radial-gradient(circle at bottom left, rgba(255, 214, 74, 0.12), transparent 20%),
    radial-gradient(circle at bottom right, rgba(0, 0, 0, 0.28), transparent 26%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
}

img {
  display: block;
  max-width: 100%;
}

.page-shell {
  padding: 20px 16px 40px;
}

.hero-card {
  position: relative;
  overflow: hidden;
  max-width: 1160px;
  margin: 0 auto;
  padding: 24px 18px 28px;
  border: 1px solid var(--border);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(24, 27, 33, 0.74) 0%, rgba(14, 16, 21, 0.58) 100%);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
}

.hero-card::before,
.hero-card::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  z-index: 0;
}

.hero-card::before {
  top: -80px;
  right: -60px;
  width: 220px;
  height: 220px;
  background: rgba(255, 206, 94, 0.22);
  filter: blur(8px);
}

.hero-card::after {
  left: -80px;
  bottom: -120px;
  width: 220px;
  height: 220px;
  background: rgba(255, 255, 255, 0.08);
  filter: blur(10px);
}

.hero-copy,
.hero-visual {
  position: relative;
  z-index: 1;
}

.hero-copy {
  text-align: center;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 214, 74, 0.16);
  color: #ffe487;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(3.2rem, 18vw, 5.4rem);
  line-height: 0.92;
  letter-spacing: 0.02em;
}

.lead {
  margin: 16px 0 0;
  max-width: 36rem;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
  margin-left: auto;
  margin-right: auto;
}

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

.benefits li {
  position: relative;
  padding: 12px 14px 12px 44px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 700;
}

.benefits li::before {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-size: 0.85rem;
  line-height: 20px;
  text-align: center;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 18px 22px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--accent) 0%, #21c66a 100%);
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
  text-decoration: none;
  text-align: center;
  box-shadow: 0 16px 32px rgba(18, 156, 85, 0.3);
  filter: drop-shadow(0 0 16px rgba(33, 198, 106, 0.45));
  animation: pulse 1.6s infinite;
}

.cta-icon {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
}

.cta-button:hover {
  background: linear-gradient(135deg, #11ab5d 0%, #24d374 100%);
  box-shadow: 0 20px 42px rgba(18, 156, 85, 0.42);
  filter: drop-shadow(0 0 22px rgba(33, 198, 106, 0.58));
}

.microcopy {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.hero-visual {
  display: grid;
  gap: 16px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-self: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(8, 10, 13, 0.82);
  color: #fff7cf;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow:
    0 10px 24px rgba(31, 27, 22, 0.18),
    0 0 0 rgba(255, 214, 74, 0.0);
  animation: badgeGlow 2s ease-in-out infinite;
}

.art-frame {
  padding: 18px;
  border-radius: 28px;
  background:
    radial-gradient(circle at top, rgba(255, 232, 168, 0.18), rgba(255, 255, 255, 0.04)),
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 214, 74, 0.08));
  box-shadow: inset 0 0 0 1px rgba(255, 247, 227, 0.08);
}

.art-frame img {
  width: min(100%, 400px);
  margin: 0 auto;
  border-radius: 28px;
  filter: drop-shadow(0 18px 34px rgba(0, 0, 0, 0.12));
}

.hero-visual-inline {
  margin: 18px 0 22px;
  justify-items: center;
}

.hero-visual-inline .badge {
  margin-bottom: 10px;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 16px 32px rgba(18, 156, 85, 0.3);
  }
  50% {
    transform: scale(1.03);
    box-shadow: 0 20px 44px rgba(18, 156, 85, 0.4);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 16px 32px rgba(18, 156, 85, 0.3);
  }
}

@keyframes badgeGlow {
  0% {
    box-shadow:
      0 10px 24px rgba(31, 27, 22, 0.18),
      0 0 0 rgba(255, 214, 74, 0);
  }
  50% {
    box-shadow:
      0 10px 24px rgba(31, 27, 22, 0.18),
      0 0 18px rgba(255, 223, 92, 0.92),
      0 0 34px rgba(255, 196, 42, 0.72),
      0 0 52px rgba(255, 176, 0, 0.42);
  }
  100% {
    box-shadow:
      0 10px 24px rgba(31, 27, 22, 0.18),
      0 0 0 rgba(255, 214, 74, 0);
  }
}

@media (min-width: 860px) {
  .page-shell {
    padding: 32px 24px 56px;
  }

  .hero-card {
    padding: 42px;
  }

  .hero-copy {
    max-width: 760px;
    margin: 0 auto;
  }

  .cta-button {
    width: auto;
    min-width: 320px;
  }

  .hero-visual-inline .art-frame img {
    width: min(100%, 460px);
  }
}
