:root{
  --bg:#11091f;
  --surface:rgba(255,255,255,.86);
  --surface-strong:#fff;
  --text:#17111f;
  --muted:#70677a;
  --line:rgba(255,255,255,.45);
  --pink:#ff4fb8;
  --magenta:#d946ef;
  --purple:#7c3aed;
  --violet:#4f46e5;
  --green:#16a34a;
  --shadow:0 24px 70px rgba(35,15,80,.20);
}

*{box-sizing:border-box}

html{scroll-behavior:smooth}

body{
  margin:0;
  min-height:100vh;
  color:var(--text);
  font-family:Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Arial,sans-serif;
  background:
    radial-gradient(circle at top left,rgba(255,79,184,.20),transparent 34rem),
    radial-gradient(circle at top right,rgba(124,58,237,.22),transparent 32rem),
    linear-gradient(180deg,#fff7fd 0%,#faf7ff 40%,#f7f7fb 100%);
}

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

.hero{
  position:relative;
  overflow:hidden;
  min-height:430px;
  padding:48px 18px 110px;
  color:#fff;
  background:
    radial-gradient(circle at 20% 20%,rgba(255,255,255,.24),transparent 18rem),
    radial-gradient(circle at 82% 16%,rgba(255,255,255,.16),transparent 15rem),
    linear-gradient(135deg,#ff4fb8 0%,#c026d3 45%,#6d28d9 72%,#4f46e5 100%);
}

.hero::after{
  content:"";
  position:absolute;
  left:-10%;
  right:-10%;
  bottom:-66px;
  height:150px;
  background:linear-gradient(180deg,#fff7fd,#faf7ff);
  border-radius:50% 50% 0 0/85% 85% 0 0;
}

.hero-inner{
  position:relative;
  z-index:2;
  width:min(720px,100%);
  margin:0 auto;
  text-align:center;
}

.orb{
  position:absolute;
  border-radius:999px;
  filter:blur(2px);
  opacity:.72;
  animation:float 7s ease-in-out infinite;
}

.orb-1{
  width:190px;
  height:190px;
  left:7%;
  top:18%;
  background:rgba(255,255,255,.14);
}

.orb-2{
  width:270px;
  height:270px;
  right:-65px;
  top:20px;
  background:rgba(255,255,255,.10);
  animation-delay:-2.5s;
}

.brand-logo{
  width:112px;
  height:112px;
  margin:0 auto 18px;
  padding:10px;
  object-fit:contain;
  border-radius:30px;
  background:rgba(255,255,255,.92);
  box-shadow:0 24px 55px rgba(62,16,106,.35);
  animation:softPop .8s ease both;
}

.eyebrow{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  margin:0 0 12px;
  padding:8px 14px;
  border:1px solid rgba(255,255,255,.34);
  border-radius:999px;
  background:rgba(255,255,255,.14);
  backdrop-filter:blur(14px);
  font-size:.78rem;
  letter-spacing:.12em;
  text-transform:uppercase;
}

h1{
  margin:0;
  font-size:clamp(2.3rem,7vw,4.4rem);
  line-height:1;
  letter-spacing:-.06em;
  text-shadow:0 12px 35px rgba(68,16,118,.22);
}

.tagline{
  max-width:520px;
  margin:16px auto 24px;
  color:rgba(255,255,255,.84);
  font-size:1rem;
  line-height:1.7;
}

.social{
  display:flex;
  justify-content:center;
  gap:12px;
}

.social a{
  width:48px;
  height:48px;
  display:grid;
  place-items:center;
  border:1px solid rgba(255,255,255,.32);
  border-radius:999px;
  background:rgba(255,255,255,.16);
  box-shadow:0 12px 28px rgba(38,12,80,.18);
  backdrop-filter:blur(14px);
  transition:transform .2s ease,background .2s ease,box-shadow .2s ease;
}

.social a:hover{
  transform:translateY(-4px) scale(1.04);
  background:rgba(255,255,255,.26);
  box-shadow:0 18px 40px rgba(38,12,80,.25);
}

.social img{
  width:25px;
  height:25px;
}

.wrap{
  position:relative;
  z-index:3;
  width:min(760px,calc(100% - 28px));
  margin:-72px auto 44px;
}

.panel{
  margin-bottom:22px;
  padding:18px;
  border:1px solid var(--line);
  border-radius:32px;
  background:linear-gradient(180deg,rgba(255,255,255,.92),rgba(255,255,255,.76));
  box-shadow:var(--shadow);
  backdrop-filter:blur(18px);
}

.section-head{
  padding:6px 8px 10px;
}

.mini-title{
  margin:0 0 5px;
  color:var(--purple);
  font-size:.78rem;
  font-weight:800;
  letter-spacing:.12em;
  text-transform:uppercase;
}

h2{
  margin:0;
  font-size:1.25rem;
  letter-spacing:-.02em;
}

.card{
  display:grid;
  grid-template-columns:70px minmax(0,1fr) auto;
  gap:15px;
  align-items:center;
  margin:12px 0;
  padding:14px;
  border:1px solid rgba(124,58,237,.10);
  border-radius:26px;
  background:var(--surface-strong);
  box-shadow:0 12px 34px rgba(72,39,115,.08);
  transition:transform .22s ease,box-shadow .22s ease,border-color .22s ease;
}

.card:hover{
  transform:translateY(-4px);
  border-color:rgba(217,70,239,.25);
  box-shadow:0 22px 52px rgba(72,39,115,.16);
}

.thumb{
  width:70px;
  height:70px;
  padding:7px;
  object-fit:contain;
  border-radius:22px;
  background:linear-gradient(145deg,#fff,#fbf5ff);
  border:1px solid rgba(124,58,237,.10);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.75);
}

.card-body h3{
  margin:0;
  font-size:1.02rem;
  letter-spacing:-.01em;
}

.card-body p{
  margin:4px 0 0;
  color:var(--muted);
  font-size:.92rem;
  line-height:1.45;
}

.price{
  display:inline-flex;
  margin-top:8px;
  color:#8b1cf6;
  font-size:.86rem;
  font-weight:800;
}

.actions{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  justify-content:flex-end;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:42px;
  padding:10px 16px;
  border-radius:999px;
  font-size:.86rem;
  font-weight:850;
  white-space:nowrap;
  transition:transform .18s ease,box-shadow .18s ease,filter .18s ease;
}

.btn:hover{
  transform:translateY(-2px);
  filter:saturate(1.05);
}

.btn-primary{
  color:#fff;
  background:linear-gradient(135deg,#22c55e,#16a34a);
  box-shadow:0 12px 26px rgba(22,163,74,.24);
}

.btn-soft{
  color:#5b21b6;
  background:linear-gradient(135deg,#f5edff,#fff4fb);
  border:1px solid rgba(124,58,237,.13);
}

footer{
  padding:8px 16px 34px;
  text-align:center;
  color:#7c7287;
  font-size:.88rem;
}

.reveal{
  animation:reveal .72s ease both;
}

.panel:nth-of-type(2){
  animation-delay:.12s;
}

@keyframes reveal{
  from{opacity:0;transform:translateY(18px)}
  to{opacity:1;transform:translateY(0)}
}

@keyframes softPop{
  from{opacity:0;transform:translateY(10px) scale(.92)}
  to{opacity:1;transform:translateY(0) scale(1)}
}

@keyframes float{
  0%,100%{transform:translate3d(0,0,0)}
  50%{transform:translate3d(0,18px,0)}
}

@media (max-width:620px){
  .hero{min-height:405px;padding-top:36px}
  .brand-logo{width:96px;height:96px;border-radius:26px}
  .tagline{font-size:.95rem}
  .wrap{width:min(100% - 22px,760px);margin-top:-66px}
  .panel{padding:14px;border-radius:28px}
  .card{grid-template-columns:58px minmax(0,1fr);gap:12px;border-radius:22px}
  .thumb{width:58px;height:58px;border-radius:18px}
  .actions{grid-column:1/-1;justify-content:stretch}
  .btn{flex:1}
}

@media (prefers-reduced-motion:reduce){
  *,*::before,*::after{animation:none!important;transition:none!important;scroll-behavior:auto!important}
}
