:root {
  --bg: #fff7f1;
  --paper: #ffffff;
  --ink: #201f24;
  --muted: #69636d;
  --line: #eee1d9;
  --primary: #ff6a2c;
  --primary-dark: #d84a18;
  --accent: #f2a03b;
  --pink: #fae0df;
  --shadow: 0 22px 54px rgba(72, 42, 26, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: Poppins, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

main {
  overflow: hidden;
}

a,
button {
  -webkit-tap-highlight-color: transparent;
}

.hero {
  position: relative;
  min-height: 90vh;
  display: grid;
  place-items: center;
  padding: 74px 20px 96px;
  text-align: center;
  isolation: isolate;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -3;
  background-image: url("assets/beauty-flatlay.png");
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(255, 247, 241, 0.96), rgba(255, 247, 241, 0.89) 46%, rgba(255, 247, 241, 0.96)),
    radial-gradient(circle at 50% 20%, rgba(255, 106, 44, 0.16), transparent 42%);
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 140px;
  z-index: -1;
  background: linear-gradient(0deg, var(--bg), rgba(255, 247, 241, 0));
}

.hero__content {
  width: min(920px, 100%);
  animation: rise-in 600ms ease both;
}

.brand {
  margin: 0 0 22px;
  color: var(--primary);
  font-size: clamp(2.25rem, 8vw, 5.8rem);
  line-height: 0.95;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 880px;
  margin: 0 auto;
  font-size: clamp(2rem, 5.6vw, 4.45rem);
  line-height: 1.04;
  font-weight: 850;
  letter-spacing: 0;
}

.hero__subhead {
  max-width: 720px;
  margin: 26px auto 0;
  color: var(--muted);
  font-size: clamp(1.06rem, 2.5vw, 1.55rem);
  line-height: 1.55;
  font-weight: 520;
}

.voucher {
  width: min(430px, 100%);
  margin: 30px auto 0;
  padding: 18px 22px;
  border: 1px solid rgba(255, 106, 44, 0.26);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
}

.voucher span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.voucher strong {
  display: block;
  margin: 6px 0;
  color: var(--primary);
  font-size: clamp(2rem, 7vw, 4rem);
  line-height: 0.95;
  font-weight: 950;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 30px;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  box-shadow: 0 16px 32px rgba(255, 106, 44, 0.3);
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 900;
  font-size: 0.96rem;
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.cta:hover,
.cta:focus-visible {
  transform: translateY(-2px) scale(1.02);
  filter: saturate(1.08);
  box-shadow: 0 20px 38px rgba(255, 106, 44, 0.34);
  outline: none;
}

.cta--hero {
  margin-top: 30px;
  animation: pulse-subtle 1900ms ease-in-out infinite;
}

.cta--light {
  margin-top: 20px;
  color: var(--primary);
  background: #fff;
  box-shadow: 0 18px 36px rgba(67, 34, 18, 0.18);
}

.hero__badges,
.mini-points {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px 28px;
  margin-top: 34px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 750;
}

.hero__badges span,
.mini-points span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero__badges span::before,
.mini-points span::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--primary);
}

section {
  padding: clamp(58px, 8vw, 96px) 20px;
}

.section-heading {
  width: min(920px, 100%);
  margin: 0 auto 44px;
  text-align: center;
}

.section-heading h2,
.application h2 {
  margin: 0;
  font-size: clamp(2rem, 5.2vw, 4rem);
  line-height: 1.04;
  font-weight: 900;
  letter-spacing: 0;
}

.section-heading p,
.application p {
  max-width: 760px;
  margin: 16px auto 0;
  color: var(--muted);
  font-size: clamp(1rem, 2.2vw, 1.35rem);
  line-height: 1.6;
}

.rewards,
.stories {
  background: linear-gradient(180deg, #fff7f1, #fffdfb);
}

.meter {
  width: min(680px, calc(100% - 40px));
  height: 13px;
  margin: 0 auto;
  border-radius: 999px;
  overflow: hidden;
  background: #eadfd8;
}

.meter__fill {
  display: block;
  width: 85%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

.meter-note {
  margin: 12px 0 0;
  text-align: center;
  color: var(--muted);
  font-size: 0.92rem;
}

.stats-grid,
.step-grid,
.story-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  width: min(1120px, 100%);
  margin: 42px auto 0;
}

.stats-grid article,
.step-grid article,
.story-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 38px rgba(72, 42, 26, 0.08);
}

.stats-grid article {
  padding: 34px 24px;
  text-align: center;
}

.icon {
  display: inline-grid;
  place-items: center;
  width: 62px;
  height: 62px;
  margin-bottom: 18px;
  border-radius: 999px;
  color: var(--primary);
  background: rgba(255, 106, 44, 0.12);
  font-size: 1.5rem;
  font-weight: 950;
}

.stats-grid strong {
  display: block;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  line-height: 1;
  font-weight: 950;
}

.stats-grid p {
  margin: 12px 0 0;
  color: var(--muted);
  font-weight: 700;
}

.steps {
  background: #fff;
}

.step-grid {
  gap: 34px;
}

.step-grid article {
  position: relative;
  padding: 40px 30px 32px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.step-grid article:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 106, 44, 0.46);
  box-shadow: var(--shadow);
}

.step-number {
  position: absolute;
  top: -18px;
  left: -12px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  color: #fff;
  background: var(--primary);
  box-shadow: 0 10px 20px rgba(255, 106, 44, 0.3);
  font-weight: 900;
}

.step-grid h3 {
  margin: 0 0 12px;
  font-size: 1.55rem;
}

.step-grid p,
.story-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.story-grid article {
  padding: 26px;
  border-width: 2px;
}

.person {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 18px;
}

.person > span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  color: var(--primary);
  background: rgba(255, 106, 44, 0.12);
  font-size: 1.3rem;
  font-weight: 900;
}

.person strong {
  display: block;
}

.person p {
  font-size: 0.9rem;
}

.story-grid b {
  display: block;
  margin-bottom: 10px;
  color: var(--primary);
}

.story-grid footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.story-grid footer span {
  color: var(--muted);
  font-size: 0.9rem;
}

.story-grid footer strong {
  color: var(--primary);
  font-size: 1.6rem;
}

.application {
  background: #fff;
}

.application__card {
  position: relative;
  width: min(900px, 100%);
  margin: 0 auto;
  padding: clamp(42px, 7vw, 72px);
  border-radius: 8px;
  overflow: hidden;
  text-align: center;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  box-shadow: var(--shadow);
}

.application__card::before,
.application__card::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
}

.application__card::before {
  top: -100px;
  right: -90px;
}

.application__card::after {
  left: -110px;
  bottom: -120px;
}

.application__card > * {
  position: relative;
  z-index: 1;
}

.application__icon {
  display: inline-grid;
  place-items: center;
  width: 78px;
  height: 78px;
  margin-bottom: 22px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  font-size: 2rem;
}

.application p {
  color: rgba(255, 255, 255, 0.9);
}

.mini-points {
  color: rgba(255, 255, 255, 0.82);
}

.mini-points span::before {
  background: #fff;
}

.disclaimer {
  padding: 22px 20px 34px;
  background: #242328;
  color: #d8d3d1;
}

.disclaimer p {
  width: min(980px, 100%);
  margin: 0 auto;
  text-align: center;
  font-size: 0.78rem;
  line-height: 1.55;
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse-subtle {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.035);
  }
}

@media (max-width: 900px) {
  .stats-grid,
  .step-grid,
  .story-grid {
    grid-template-columns: 1fr;
    max-width: 580px;
  }

  .hero {
    min-height: auto;
  }
}

@media (max-width: 560px) {
  .hero {
    padding-top: 48px;
  }

  .cta {
    width: 100%;
    min-height: 62px;
    padding-left: 18px;
    padding-right: 18px;
    font-size: 0.88rem;
  }

  .voucher {
    padding: 16px;
  }

  .hero__badges,
  .mini-points {
    gap: 12px;
    justify-content: flex-start;
    text-align: left;
  }

  .hero__badges span,
  .mini-points span {
    width: 100%;
  }

  .application__card {
    padding: 36px 20px;
  }
}
