/* Hailey Resell Club — clean pink landing page */
:root{
  --bg: #fff7fb;
  --bg2:#ffe8f2;
  --card:#ffffffcc;
  --text:#1f1b24;
  --muted:#5b5563;
  --pink:#ff4fa1;
  --pink2:#ff7bbb;
  --pink3:#ffd1e5;
  --border: rgba(31,27,36,.10);
  --shadow: 0 14px 40px rgba(31,27,36,.10);
  --radius: 22px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background: radial-gradient(1200px 600px at 15% 10%, #ffe3f1 0%, transparent 60%),
              radial-gradient(900px 500px at 85% 15%, #ffe6f7 0%, transparent 55%),
              linear-gradient(180deg, var(--bg) 0%, #ffffff 65%, var(--bg) 100%);
}

a{color:inherit; text-decoration:none}
.container{
  width:min(1100px, 92vw);
  margin:0 auto;
}

.topbar{
  position:sticky; top:0; z-index:20;
  backdrop-filter: blur(14px);
  background: rgba(255,247,251,.72);
  border-bottom:1px solid var(--border);
}
.topbar__inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
}

.brand{display:flex; align-items:center; gap:12px}
.brand__mark{
  width:44px; height:44px; border-radius:14px;
  display:grid; place-items:center;
  background: linear-gradient(135deg, var(--pink) 0%, var(--pink2) 100%);
  color:white; font-weight:800;
  box-shadow: 0 10px 20px rgba(255,79,161,.25);
}
.brand__name{font-weight:700; letter-spacing:.2px}
.brand__tag{font-size:12px; color:var(--muted); margin-top:2px}

.hero{
  position:relative;
  padding:64px 0 28px;
  overflow:hidden;
}
.hero__grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:28px;
  align-items:center;
}
@media (max-width: 920px){
  .hero__grid{grid-template-columns:1fr; gap:18px}
  .topbar__inner{padding:12px 0}
}

.pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.7);
  color:var(--muted);
  font-size:12px;
}

h1{
  font-size: clamp(34px, 4.4vw, 54px);
  line-height:1.05;
  margin:14px 0 10px;
  letter-spacing:-.6px;
}
.lead{
  font-size: 16px;
  line-height:1.7;
  color: var(--muted);
  margin:0 0 18px;
  max-width: 54ch;
}

.cta-row{display:flex; gap:12px; flex-wrap:wrap; margin:18px 0 18px}
.btn{
  display:inline-flex;
  align-items:center; justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius:14px;
  font-weight:600;
  border:1px solid transparent;
  transition: transform .06s ease, box-shadow .2s ease, background .2s ease;
  cursor:pointer;
}
.btn:active{transform: translateY(1px)}
.btn--primary{
  background: linear-gradient(135deg, var(--pink) 0%, var(--pink2) 100%);
  color:white;
  box-shadow: 0 14px 30px rgba(255,79,161,.22);
}
.btn--primary:hover{box-shadow: 0 18px 36px rgba(255,79,161,.28)}
.btn--soft{
  background: rgba(255,255,255,.75);
  border-color: var(--border);
}
.btn--soft:hover{background: rgba(255,255,255,.92)}
.btn--ghost{
  background: rgba(255,255,255,.60);
  border-color: var(--border);
}
.btn--full{width:100%; padding:14px 16px; border-radius:16px}

.trust{
  display:flex; gap:14px; flex-wrap:wrap;
  margin-top:6px;
}
.trust__item{
  display:flex; align-items:center; gap:8px;
  padding:8px 12px;
  border-radius:999px;
  background: rgba(255,255,255,.65);
  border:1px solid var(--border);
  color: var(--muted);
  font-size:12px;
}
.icon{font-size:14px}

.hero__card{position:relative}

.card{
  background: rgba(255,255,255,.78);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.card{padding:18px}

.card__header{
  display:flex; align-items:flex-start; justify-content:space-between;
  gap:12px;
  margin-bottom:14px;
}
.card__title{font-size:18px; font-weight:700}
.card__sub{font-size:12px; color:var(--muted); margin-top:2px}

.price{text-align:right}
.price__big{font-size:24px; font-weight:800}
.price__small{font-size:12px; color:var(--muted)}

.checklist{
  list-style:none;
  padding:0; margin:0 0 14px;
  display:grid; gap:10px;
}
.checklist li{
  display:flex; gap:10px; align-items:flex-start;
  color: var(--text);
  font-size:14px;
}
.check{
  width:22px; height:22px; border-radius:8px;
  display:grid; place-items:center;
  background: rgba(255,79,161,.12);
  color: var(--pink);
  font-weight:800;
  flex: 0 0 auto;
}

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

.mini{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:10px;
  margin-top:12px;
}
.mini__item{
  padding:12px 12px;
  border-radius:18px;
  background: rgba(255,255,255,.55);
  border:1px solid var(--border);
}
.mini__label{font-size:11px; color:var(--muted)}
.mini__value{font-size:13px; font-weight:600; margin-top:2px}

.section{padding:54px 0}
.section--soft{
  background: linear-gradient(180deg, rgba(255,231,244,.55) 0%, rgba(255,255,255,0) 85%);
}
.section--cta{
  padding:44px 0 60px;
}

h2{
  font-size: clamp(22px, 2.4vw, 30px);
  margin:0 0 6px;
}
.muted{color:var(--muted); margin:0 0 18px; line-height:1.7}

.grid3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
@media (max-width: 920px){
  .grid3{grid-template-columns:1fr}
  .mini{grid-template-columns:1fr}
}

.feature__icon{font-size:26px}
.feature h3{margin:10px 0 6px; font-size:16px}
.feature p{margin:0; color:var(--muted); line-height:1.7; font-size:14px}

.how{
  display:grid;
  gap:18px;
}
.steps{
  list-style:none;
  padding:0; margin:0;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
@media (max-width: 920px){
  .steps{grid-template-columns:1fr}
}

.step{
  display:flex;
  gap:12px;
  align-items:flex-start;
}
.step__num{
  width:34px; height:34px;
  border-radius:14px;
  display:grid; place-items:center;
  background: rgba(255,79,161,.14);
  color: var(--pink);
  font-weight:800;
  flex: 0 0 auto;
}
.step__title{font-weight:700}
.step__text{color:var(--muted); font-size:14px; margin-top:2px; line-height:1.6}

.center-cta{
  display:grid; justify-items:center;
  gap:6px;
  margin-top:12px;
}
.tiny-muted{font-size:12px; color:var(--muted)}

.faq{
  display:grid;
  gap:12px;
}
details{padding:16px 18px}
summary{
  cursor:pointer;
  font-weight:700;
  list-style:none;
}
summary::-webkit-details-marker{display:none}
details p{margin:10px 0 0; color:var(--muted); line-height:1.7; font-size:14px}

.cta{
  display:flex; align-items:center; justify-content:space-between;
  gap:18px;
  padding:22px;
  border-radius: 26px;
  border:1px solid var(--border);
  background: linear-gradient(135deg, rgba(255,79,161,.10) 0%, rgba(255,123,187,.12) 55%, rgba(255,255,255,.70) 100%);
  box-shadow: var(--shadow);
}
@media (max-width: 920px){
  .cta{flex-direction:column; align-items:stretch}
}

.footer{
  padding:28px 0 44px;
  border-top:1px solid var(--border);
  background: rgba(255,247,251,.6);
}
.footer__inner{
  display:flex; align-items:center; justify-content:space-between; gap:14px;
}
.footer__small{font-size:12px; color:var(--muted); margin-top:4px}
.footer__right{display:flex; gap:14px; flex-wrap:wrap}
.footer__right a{font-size:13px; color:var(--muted)}
.footer__right a:hover{color:var(--text)}

/* decorative blobs */
.bg-blobs{position:absolute; inset:0; pointer-events:none}
.blob{
  position:absolute;
  filter: blur(22px);
  opacity:.55;
  border-radius: 999px;
}
.blob--1{width:360px; height:240px; left:-90px; top:40px; background: #ffd1e5;}
.blob--2{width:320px; height:240px; right:-110px; top:110px; background: #ffc3e0;}
.blob--3{width:260px; height:200px; left:35%; bottom:-90px; background: #ffe0f0;}
