:root {
  --orange: #ff8a00;
  --orange-dark: #d96400;
  --green: #22a447;
  --green-dark: #087033;
  --cream: #fff5d9;
  --yellow: #ffd84d;
  --brown: #5a361f;
  --ink: #2d241b;
  --muted: #756550;
  --white: #fffef9;
  --shadow: 0 22px 60px rgba(130, 76, 0, .18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  font-family: "M PLUS Rounded 1c", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background:
    radial-gradient(circle at 12% 10%, rgba(255, 216, 77, .42), transparent 26rem),
    radial-gradient(circle at 84% 2%, rgba(34, 164, 71, .12), transparent 22rem),
    linear-gradient(180deg, #fffaf0 0%, #fff3cf 48%, #fffef9 100%);
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(255, 254, 249, .86);
  border-bottom: 1px solid rgba(255, 138, 0, .18);
  backdrop-filter: blur(14px);
}

.brand,
.header-nav,
.hero-actions,
.hero-notes,
.prize-grid,
.entry {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 900;
  color: var(--brown);
  letter-spacing: .02em;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: white;
  background: linear-gradient(145deg, var(--orange), #ffb000);
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 8px 16px rgba(217, 100, 0, .24);
}

.header-nav { gap: clamp(12px, 3vw, 28px); font-weight: 800; color: var(--green-dark); }
.header-nav a { position: relative; }
.header-nav a::after {
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 4px;
  content: "";
  background: var(--yellow);
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}
.header-nav a:hover::after { transform: scaleX(1); }

.section-shell { width: min(1120px, calc(100% - 36px)); margin: 0 auto; }

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, .96fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
  min-height: calc(100vh - 74px);
  padding: clamp(48px, 8vw, 92px) 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  color: var(--green-dark);
  font-size: .92rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.eyebrow::before {
  width: 24px;
  height: 24px;
  content: "";
  background: var(--yellow);
  border: 5px solid var(--orange);
  border-radius: 50%;
}

h1,
h2,
h3,
p { margin-top: 0; }

h1 {
  margin-bottom: 22px;
  color: var(--brown);
  font-size: clamp(2.8rem, 7vw, 5.8rem);
  line-height: .98;
  letter-spacing: -.055em;
}
h1 span {
  color: var(--orange-dark);
  text-shadow: 4px 4px 0 rgba(255, 216, 77, .55);
}

.lead {
  max-width: 620px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 700;
  line-height: 1.8;
}

.hero-actions { gap: 14px; flex-wrap: wrap; margin: 34px 0 22px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 24px;
  font-weight: 900;
  border-radius: 999px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button.primary {
  color: white;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  box-shadow: 0 16px 28px rgba(8, 112, 51, .24);
}
.button.secondary {
  color: var(--orange-dark);
  background: white;
  border: 2px solid rgba(255, 138, 0, .28);
}
.button.large { min-height: 64px; padding-inline: 34px; font-size: 1.06rem; }

.hero-notes {
  align-items: flex-start;
  gap: 10px 18px;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
  list-style: none;
  color: var(--brown);
  font-weight: 800;
}
.hero-notes li {
  padding: 9px 14px;
  background: rgba(255, 255, 255, .72);
  border: 1px solid rgba(255, 138, 0, .18);
  border-radius: 999px;
}

.hero-art {
  position: relative;
  padding: clamp(10px, 2vw, 22px);
}
.hero-art img {
  width: 100%;
  border-radius: 56px;
  box-shadow: var(--shadow);
  animation: floaty 4s ease-in-out infinite;
}
.point-bubble {
  position: absolute;
  right: 0;
  bottom: 6%;
  display: grid;
  width: clamp(126px, 15vw, 168px);
  height: clamp(126px, 15vw, 168px);
  place-items: center;
  padding: 18px;
  color: var(--brown);
  font-weight: 900;
  line-height: 1;
  text-align: center;
  background: linear-gradient(145deg, #fff, var(--yellow));
  border: 8px solid var(--orange);
  border-radius: 50%;
  box-shadow: 0 22px 38px rgba(217, 100, 0, .28);
  transform: rotate(8deg);
}
.point-bubble strong { display: block; color: var(--orange-dark); font-size: clamp(2rem, 4vw, 3.1rem); }
.point-bubble small { color: var(--green-dark); }

.prize-band {
  padding: 58px 0;
  background: linear-gradient(90deg, var(--orange), #ffb31f);
  border-block: 10px solid #fff;
}
.prize-grid { align-items: stretch; gap: 18px; }
.prize-card {
  flex: 1;
  min-height: 230px;
  padding: 28px;
  background: rgba(255, 255, 255, .92);
  border: 4px solid rgba(255, 255, 255, .85);
  border-radius: 34px;
  box-shadow: 0 18px 38px rgba(95, 54, 0, .16);
}
.main-prize { flex: 1.35; background: linear-gradient(160deg, #fff, #fff4bd); }
.card-label {
  display: inline-block;
  padding: 8px 14px;
  margin-bottom: 16px;
  color: white;
  font-weight: 900;
  background: var(--green);
  border-radius: 999px;
}
.prize-card h2 { margin-bottom: 12px; color: var(--orange-dark); font-size: clamp(1.65rem, 3vw, 2.35rem); }
.prize-card p { color: var(--muted); font-weight: 700; line-height: 1.7; }

.info-section,
.steps-section,
.entry { padding: clamp(64px, 9vw, 112px) 0; }
.section-heading { margin-bottom: 28px; text-align: center; }
.section-heading h2,
.entry h2 { color: var(--brown); font-size: clamp(2rem, 4vw, 3.4rem); line-height: 1.14; }

.condition-card {
  display: flex;
  gap: 22px;
  align-items: center;
  max-width: 820px;
  padding: clamp(24px, 5vw, 42px);
  margin: 0 auto;
  background: var(--white);
  border: 5px solid rgba(34, 164, 71, .18);
  border-radius: 36px;
  box-shadow: var(--shadow);
}
.check-icon {
  display: grid;
  flex: 0 0 84px;
  width: 84px;
  height: 84px;
  place-items: center;
  color: white;
  font-size: 3rem;
  font-weight: 900;
  background: var(--green);
  border-radius: 50%;
}
.condition-card h3 { margin-bottom: 10px; color: var(--green-dark); font-size: 1.8rem; }
.condition-card p { margin-bottom: 0; color: var(--muted); font-weight: 700; line-height: 1.75; }

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.steps li {
  position: relative;
  min-height: 230px;
  padding: 86px 24px 26px;
  overflow: hidden;
  background: white;
  border: 3px solid rgba(255, 138, 0, .16);
  border-radius: 32px;
  box-shadow: 0 16px 36px rgba(90, 54, 31, .08);
}
.steps span {
  position: absolute;
  top: 20px;
  left: 24px;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: white;
  font-size: 1.5rem;
  font-weight: 900;
  background: var(--orange);
  border-radius: 50%;
}
.steps strong { display: block; margin-bottom: 12px; color: var(--brown); font-size: 1.25rem; }
.steps p { margin-bottom: 0; color: var(--muted); font-weight: 700; line-height: 1.7; }

.entry {
  justify-content: space-between;
  gap: 28px;
  padding-inline: clamp(24px, 5vw, 54px);
  margin-bottom: 72px;
  color: white;
  background:
    radial-gradient(circle at 92% 18%, rgba(255, 216, 77, .5), transparent 13rem),
    linear-gradient(135deg, var(--green), var(--green-dark));
  border-radius: 42px;
  box-shadow: var(--shadow);
}
.entry .eyebrow,
.entry h2,
.entry p { color: white; }
.entry .eyebrow::before { border-color: white; }
.entry p { max-width: 630px; margin-bottom: 0; font-weight: 700; line-height: 1.8; }
.entry .button.primary { color: var(--green-dark); background: white; box-shadow: 0 18px 30px rgba(0, 0, 0, .14); }

.site-footer {
  padding: 28px 18px 40px;
  color: var(--muted);
  font-size: .92rem;
  font-weight: 700;
  text-align: center;
  background: #fff8e7;
}
.site-footer p { margin: 0 0 6px; }
.fine-print { font-size: .82rem; }

@keyframes floaty {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-10px) rotate(1deg); }
}

@media (max-width: 860px) {
  .site-header { align-items: flex-start; flex-direction: column; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-art { order: -1; max-width: 520px; margin: 0 auto; }
  .prize-grid,
  .steps,
  .entry { display: grid; grid-template-columns: 1fr; }
  .entry { text-align: center; }
}

@media (max-width: 560px) {
  .header-nav { width: 100%; justify-content: space-between; font-size: .88rem; }
  .condition-card { align-items: flex-start; flex-direction: column; }
  .point-bubble { right: -4px; bottom: -12px; }
}
