:root {
  --purple:#5633a3; --pink:#e8499a; --blue:#1f78d1; --green:#2fbf71;
  --dark:#222; --light:#fffaf5;
}
*{box-sizing:border-box}
body{margin:0;font-family:Arial,Helvetica,sans-serif;color:var(--dark);background:var(--light);line-height:1.6}
.hero{min-height:88vh;color:white;background:linear-gradient(135deg,rgba(86,51,163,.9),rgba(232,73,154,.78)),linear-gradient(90deg,#e63946,#f77f00,#ffd60a,#2a9d8f,#277da1,#6a4c93);padding:24px}
nav{max-width:1100px;margin:0 auto;display:flex;justify-content:space-between;gap:20px;align-items:center}
.logo{font-size:1.35rem;font-weight:800}
.nav-links a{color:white;text-decoration:none;margin-left:18px;font-weight:700}
.hero-content{max-width:900px;margin:110px auto 0;text-align:center}
.eyebrow{text-transform:uppercase;letter-spacing:2px;font-weight:800}
h1{font-size:clamp(3rem,8vw,6.5rem);line-height:.95;margin:18px 0}
.intro{font-size:1.25rem;max-width:760px;margin:0 auto 28px}
.buttons{display:flex;justify-content:center;flex-wrap:wrap;gap:14px}
.button{padding:14px 24px;border-radius:999px;text-decoration:none;font-weight:800;display:inline-block}
.primary{background:white;color:var(--purple)} .secondary{border:2px solid white;color:white}
.speaker-button{background:var(--purple);color:white;margin-top:18px}
.section{max-width:1050px;margin:0 auto;padding:70px 24px}
.section h2{font-size:clamp(2rem,5vw,3.5rem);margin:0 0 16px;color:var(--purple)}
.cards{display:grid;gap:18px;margin-top:30px}.three{grid-template-columns:repeat(3,1fr)}
.card{background:white;border-radius:22px;padding:24px;box-shadow:0 10px 30px rgba(0,0,0,.08);border-top:7px solid var(--pink)}
.card:nth-child(2){border-top-color:var(--blue)}.card:nth-child(3){border-top-color:var(--green)}
.rainbow-bg{max-width:none;background:linear-gradient(90deg,rgba(230,57,70,.12),rgba(247,127,0,.12),rgba(255,214,10,.18),rgba(42,157,143,.12),rgba(39,125,161,.12),rgba(106,76,147,.12))}
.rainbow-bg>*{max-width:1050px;margin-left:auto;margin-right:auto}
.check-list{max-width:780px;font-size:1.1rem}.check-list li{margin-bottom:10px}
.shop-section{max-width:1200px}
.product-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(260px,1fr));gap:22px;margin-top:30px}
.product-card{background:#fff;border-radius:22px;padding:18px;text-align:center;box-shadow:0 10px 30px rgba(0,0,0,.12)}
.product-card img{width:100%;border-radius:16px;display:block}
.product-card h3{min-height:52px;color:#222}
.price{font-size:30px;font-weight:900;color:var(--pink);margin:8px 0}
select{width:100%;padding:12px;border-radius:10px;border:1px solid #ccc;margin:8px 0 12px;font-size:16px}
button{width:100%;background:var(--purple);color:white;border:none;padding:13px 18px;border-radius:999px;font-size:16px;font-weight:900;cursor:pointer}
button:hover{background:var(--pink)}
.soft{background:#fff;border-radius:30px;margin-top:30px;margin-bottom:30px}
.contact{text-align:center}.email{font-size:1.5rem;font-weight:900;color:var(--pink)}
.small{font-weight:700}
footer{text-align:center;padding:32px;background:var(--dark);color:white}
@media(max-width:800px){
 nav{flex-direction:column}.nav-links{text-align:center}.nav-links a{display:inline-block;margin:6px 8px}
 .three{grid-template-columns:1fr}.hero-content{margin-top:70px}
}
