:root{
  --bg:#0b0c0f;
  --panel:#11131a;
  --text:#f2f4f8;
  --muted:#a7b0c0;
  --accent:#f5c400;
  --line:#232739;
  --ok:#34d399;
  --shadow: 0 10px 30px rgba(0,0,0,.35);
  --radius:18px;
  --max:1100px;
}
*{box-sizing:border-box}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color:var(--text);
  background: radial-gradient(900px 500px at 15% 0%, rgba(245,196,0,.12), transparent 60%),
              radial-gradient(900px 500px at 85% 10%, rgba(168,85,247,.14), transparent 55%),
              var(--bg);
  line-height:1.5;
}
a{color:inherit}
.wrap{max-width:var(--max); margin:0 auto; padding:24px}
header{
  position:sticky; top:0; z-index:10;
  background: rgba(11,12,15,.72);
  backdrop-filter: blur(12px);
  border-bottom:1px solid rgba(255,255,255,.06);
}
.nav{
  display:flex; align-items:center; justify-content:space-between; gap:16px;
  max-width:var(--max); margin:0 auto; padding:14px 24px;
}
.nav a{opacity:.92; text-decoration:none}
.navlinks{display:flex; gap:18px; font-weight:600; color:var(--muted)}
.navlinks a:hover{color:var(--text)}
.cta{
  display:inline-flex; align-items:center; justify-content:center;
  padding:10px 14px; border-radius:12px;
  background:var(--accent); color:#111;
  font-weight:800; text-decoration:none;
  box-shadow: 0 12px 26px rgba(245,196,0,.18);
}
.cta:hover{filter:brightness(.98)}
.hero{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:26px;
  padding:34px 0 8px;
  align-items:center;
}
@media (max-width: 900px){
  .hero{grid-template-columns:1fr; padding-top:18px}
  .navlinks{display:none}
}
.kicker{color:var(--accent); font-weight:800; letter-spacing:.16em; text-transform:uppercase; font-size:.82rem}
h1{margin:10px 0 10px; font-size: clamp(2rem, 4vw, 3.1rem); line-height:1.08}
.sub{color:var(--muted); font-size:1.05rem; max-width:54ch}
.badges{display:flex; flex-wrap:wrap; gap:10px; margin:18px 0 0}
.badge{
  border:1px solid rgba(255,255,255,.10);
  background: rgba(17,19,26,.65);
  padding:8px 10px; border-radius:999px;
  color:var(--muted); font-weight:700; font-size:.92rem;
}
.card{
  background: rgba(17,19,26,.76);
  border:1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  padding:18px;
  box-shadow: var(--shadow);
}
.product-media{
  position:relative;
  overflow:hidden;
  min-height: 420px;
  border-radius: var(--radius);
  background:
    radial-gradient(400px 220px at 30% 25%, rgba(168,85,247,.30), transparent 60%),
    radial-gradient(420px 220px at 65% 40%, rgba(245,196,0,.20), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.01));
  border:1px solid rgba(255,255,255,.10);
  display:flex; align-items:center; justify-content:center;
}
.media-placeholder{
  padding:22px;
  text-align:center;
  color:var(--muted);
  max-width:42ch;
}
.buy{display:grid; gap:12px}
.row{display:flex; gap:12px; flex-wrap:wrap}
label{font-weight:800; font-size:.92rem}
select, input, button{
  width:100%;
  padding:12px 12px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.25);
  color:var(--text);
  font-weight:700;
  outline:none;
}
select:focus, input:focus{border-color: rgba(245,196,0,.55); box-shadow: 0 0 0 4px rgba(245,196,0,.14)}
.price{
  display:flex; align-items:baseline; justify-content:space-between; gap:14px;
  padding:12px 14px; border-radius:14px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.18);
}
.price strong{font-size:1.25rem}
.price span{color:var(--muted); font-weight:700}
.btn-primary{
  cursor:pointer;
  background: var(--accent);
  color:#111;
  border:none;
  font-weight:900;
  padding:14px 14px;
  box-shadow: 0 16px 30px rgba(245,196,0,.18);
}
.btn-primary:hover{filter:brightness(.98)}
.btn-secondary{
  cursor:pointer;
  background: transparent;
  border:1px solid rgba(255,255,255,.18);
  font-weight:900;
}
.trust{
  display:grid; grid-template-columns: repeat(3,1fr);
  gap:10px; margin-top:10px;
}
@media (max-width: 600px){ .trust{grid-template-columns:1fr} }
.trust div{
  border:1px solid rgba(255,255,255,.08);
  background: rgba(17,19,26,.55);
  padding:10px 12px; border-radius:14px;
  color:var(--muted); font-weight:700;
}
.grid3{display:grid; grid-template-columns: repeat(3,1fr); gap:16px; margin:22px 0}
@media (max-width: 900px){ .grid3{grid-template-columns:1fr} }
h2{margin:0 0 10px; font-size:1.6rem}
.muted{color:var(--muted)}
.icon{
  width:34px; height:34px; border-radius:12px;
  display:inline-flex; align-items:center; justify-content:center;
  background: rgba(245,196,0,.12);
  border:1px solid rgba(245,196,0,.18);
  margin-bottom:10px;
  font-weight:900; color:var(--accent);
}
footer{color:var(--muted); padding:24px 0 40px}
.tiny{font-size:.9rem}
.product-media {
  min-height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-media img {
  width: 100%;
  max-height: 380px;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
}
.site-logo{
  height: 36px;
  width: auto;
  display: block;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
  font-weight:800;
  letter-spacing:.3px;
  white-space:nowrap;
}

.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  flex-wrap:nowrap;
}
.nav{
display:flex;
align-items:center;
justify-content:space-between;
flex-wrap:nowrap;
}


/* HOW TO SECTION */

.how-to{
padding:80px 20px;
text-align:center;
}

.how-sub{
color:#aaa;
margin-bottom:40px;
}

.steps-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
max-width:1100px;
margin:auto;
}

.step-card{
background:#141922;
padding:25px;
border-radius:10px;
}

.step-card img{
width:100%;
border-radius:8px;
margin-bottom:15px;
}

.step-card h3{
margin-bottom:10px;
}

.step-card p{
color:#bbb;
font-size:15px;
}

@media (max-width:900px){
.steps-grid{
grid-template-columns:1fr;
}
}
html{
scroll-behavior:smooth;
}
html {
  scroll-behavior: smooth;
}
#how-it-works {
  scroll-margin-top: 120px;
}