:root {
  --pink: #ff66b2;
  --text: #000;
  --muted: #6d6d6d;
  --box: #fff;
  --border: #eee;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: #fff;
}

/* Page padding to match reference */
.page-wrap { padding: 40px; }
@media (max-width: 600px) { .page-wrap { padding: 5px; } }

/* HERO */
.hero {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 10px;
  padding: 0 16px;
}
#hero-logo{
  width: 81px;   /* desktop */
  height: 81px;
  display: block;
  margin: 0 auto 10px;
}
@media (max-width: 600px){
  #hero-logo{ width: 85px; height: 85px; } /* mobile */
}

/* Title: Nunito 800 32px desktop -> Montserrat 24px mobile */
.hero-title{
  font-family: "Nunito", "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 800;
  font-size: 32px;
  line-height: 38.4px;
  margin: 0 0 8px;
}
@media (max-width: 600px){
  .hero-title{
    font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 28px;
  }
}

/* Subtitle: Nunito 800 16px desktop -> Montserrat 15px mobile */
.hero-subtitle{
  font-family: "Nunito", "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 800;
  font-size: 16px;
  margin: 0 0 6px;
}
@media (max-width: 600px){
  .hero-subtitle{
    font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    font-weight: 400;
    font-size: 15px;
  }
}

/* Steps */
.steps-box {
  background: var(--box);
  padding: 20px;
  border-radius: 15px;
  font-size: 17px;
  text-align: center;
  line-height: 1.6;
  max-width: 500px;
  margin: 20px auto;
}
.steps-box p { margin: 16px 0; }
.muted { font-size: 12px; color: var(--muted); }

/* CTA */
.btn-link { text-decoration: none; display: block; }
.shein-btn {
  background: var(--pink);
  color: #fff;
  padding: 14px 20px;
  font-size: 15px;
  border: 2px solid #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  border-radius: 50px;
  width: 100%;
  max-width: 500px;
  margin: 6px auto 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: transform .2s ease-in-out;
  animation: pulse 2.2s infinite;
}
.shein-btn:hover { transform: scale(1.05); }
#brand-logo { width: 45px; height: 45px; margin-right: 12px; border-radius: 50%; }
.text-container { display: flex; flex-direction: column; align-items: flex-start; margin-left: 25px; }
.text-container span:first-child { font-size: 16px; font-weight: 500; }
.subtext { font-size: 11px; margin-top: 4px; opacity: .9; }

/* Eligibility */
.eligible-box {
  background: var(--box);
  max-width: 500px;
  margin: 10px auto 0;
  padding: 10px 14px;
  font-size: 13px;
  text-align: center;
  color: #333;
  border-radius: 12px;
  border: 1px solid var(--border);
  box-shadow: 0 1px 6px rgba(0,0,0,.04);
  font-weight: 500;
  min-height: 38px;
  display: flex; align-items: center; justify-content: center;
}

.trust-text {
  text-align: center; font-size: 12px; color: #888;
  margin: 12px auto 0; font-weight: 500; max-width: 500px;
}

/* Proof images */
.proof-headline {
  font-size: 18px; font-weight: 700; color: #222;
  text-align: center; margin: 48px 0 16px; letter-spacing: .2px;
}
.proof-image {
  width: 100%; max-width: 400px; border-radius: 10px;
  display: block; margin: 0 auto 20px; box-shadow: 0 6px 24px rgba(0,0,0,.11);
  background: #f8f8f8; height: auto;
}
@media (max-width: 600px) { .proof-image { max-width: 97vw; } }

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255,102,178,.35); }
  70% { box-shadow: 0 0 0 10px rgba(255,102,178,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,102,178,0); }
}
