/* NOSUGAR.LIFE — static site (no framework) */
:root{
  --bg:#0b0c10;
  --panel:#10121a;
  --panel2:#0f172a;
  --text:#eef2ff;
  --muted:#a5b4fc;
  --muted2:#94a3b8;
  --line:rgba(255,255,255,.10);
  --shadow: 0 20px 60px rgba(0,0,0,.45);
  --radius:22px;
  --radius2:18px;
  --max:1120px;
  --accent1:#7c3aed;
  --accent2:#22c55e;
  --accent3:#06b6d4;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  background: radial-gradient(900px 600px at 70% 10%, rgba(124,58,237,.35), transparent 60%),
              radial-gradient(900px 600px at 20% 30%, rgba(34,197,94,.22), transparent 60%),
              var(--bg);
  color:var(--text);
  overflow-x:hidden;
}

.container{max-width:var(--max); margin:0 auto; padding:0 20px;}
a{color:inherit; text-decoration:none}
code{background:rgba(255,255,255,.08); padding:2px 8px; border-radius:10px; border:1px solid var(--line);}

.header{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(14px);
  background: rgba(11,12,16,.65);
  border-bottom: 1px solid var(--line);
}
.header__inner{
  height:70px;
  display:flex; align-items:center; justify-content:space-between; gap:18px;
}
.brand{display:flex; align-items:center; gap:10px; font-weight:800; letter-spacing:.5px}
.brand__logo{
  width:34px;height:34px;border-radius:12px;
  display:grid; place-items:center;
  background: linear-gradient(135deg, rgba(124,58,237,.9), rgba(6,182,212,.75));
  box-shadow: 0 14px 28px rgba(124,58,237,.20);
}
.brand__text span{opacity:.85; font-weight:800}
.nav{display:flex; gap:18px; color:var(--muted2); font-weight:600}
.nav a{padding:8px 10px; border-radius:12px;}
.nav a:hover{background:rgba(255,255,255,.06); color:var(--text)}

.cartBtn{
  display:flex; align-items:center; gap:10px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.06);
  color:var(--text);
  padding:10px 12px;
  border-radius:16px;
  cursor:pointer;
  transition: transform .15s ease, background .15s ease;
}
.cartBtn:hover{transform: translateY(-1px); background: rgba(255,255,255,.09);}
.cartBtn__count{
  min-width:26px; height:26px; padding:0 8px;
  display:grid; place-items:center;
  border-radius:999px;
  background: rgba(34,197,94,.18);
  border: 1px solid rgba(34,197,94,.35);
  font-weight:800;
}

.hero{
  position:relative;
  padding:56px 0 26px;
  overflow:hidden;
}
.hero__bg{
  position:absolute; inset:-200px;
  background:
    radial-gradient(700px 350px at 20% 40%, rgba(6,182,212,.20), transparent 70%),
    radial-gradient(700px 350px at 70% 10%, rgba(124,58,237,.25), transparent 70%);
  animation: float 10s ease-in-out infinite;
}
@keyframes float{
  0%,100%{transform: translate3d(0,0,0)}
  50%{transform: translate3d(0,-16px,0)}
}
.hero__inner{
  position:relative;
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:28px;
  align-items:center;
}
.badge{
  display:inline-flex;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  padding:10px 14px;
  border-radius:999px;
  color:var(--muted);
  font-weight:600;
  margin-bottom:14px;
}
h1{
  font-size: 46px;
  line-height:1.05;
  margin:0 0 12px 0;
  letter-spacing:-.8px;
}
.grad{
  background: linear-gradient(90deg, #a78bfa, #22c55e, #06b6d4);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.lead{
  margin:0 0 18px 0;
  color: rgba(238,242,255,.85);
  font-size: 16.5px;
  line-height:1.55;
}
.hero__cta{display:flex; gap:12px; align-items:center; margin:16px 0 8px}
.hint{color:var(--muted2); margin:0; font-size:13px}

.btn{
  border:1px solid var(--line);
  background: rgba(255,255,255,.07);
  color:var(--text);
  padding:12px 16px;
  border-radius: 16px;
  font-weight:800;
  cursor:pointer;
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}
.btn:hover{transform: translateY(-1px); background: rgba(255,255,255,.10); border-color: rgba(255,255,255,.18);}
.btn--primary{
  border:none;
  background: linear-gradient(135deg, rgba(124,58,237,.95), rgba(34,197,94,.80));
  box-shadow: 0 16px 30px rgba(124,58,237,.25);
}
.btn--primary:hover{transform: translateY(-1px) scale(1.01)}
.btn--ghost{background: rgba(255,255,255,.04)}
.btn--full{width:100%}

.hero__media{display:flex; flex-direction:column; gap:14px;}
.videoCard{
  position:relative;
  border-radius: var(--radius);
  overflow:hidden;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  box-shadow: var(--shadow);
  min-height: 320px;
}
.videoCard__video{
  width:100%; height:100%;
  object-fit:cover;
  display:block;
  filter: saturate(1.05) contrast(1.05);
}
.videoCard__overlay{
  position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(0,0,0,.25), rgba(0,0,0,.55));
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  padding:18px;
  gap:6px;
}
.videoCard__title{font-weight:900; letter-spacing:1px}
.videoCard__subtitle{color:rgba(238,242,255,.85); font-weight:600}

.stats{display:grid; grid-template-columns: repeat(3, 1fr); gap:10px;}
.stat{
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  border-radius: 18px;
  padding:12px 14px;
}
.stat__num{font-weight:900; font-size:20px}
.stat__label{color:var(--muted2); font-weight:600; font-size:12.5px}

.section{padding:44px 0}
.section--alt{background: rgba(255,255,255,.03); border-top:1px solid rgba(255,255,255,.06); border-bottom:1px solid rgba(255,255,255,.06);}
.section__head{display:flex; align-items:flex-end; justify-content:space-between; gap:16px; margin-bottom:18px}
.section__head h2{margin:0; font-size:28px; letter-spacing:-.4px}
.section__head p{margin:0; color:var(--muted2); max-width:620px; line-height:1.5}

.grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.card{
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  border-radius: var(--radius);
  overflow:hidden;
  box-shadow: 0 14px 30px rgba(0,0,0,.35);
  transform: translateZ(0);
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
  display:flex; flex-direction:column;
}
.card:hover{transform: translateY(-3px); border-color: rgba(255,255,255,.18); background: rgba(255,255,255,.07);}
.card__media{
  position:relative;
  height:180px;
  overflow:hidden;
  background: radial-gradient(600px 240px at 20% 0%, rgba(124,58,237,.35), transparent 60%),
              radial-gradient(600px 240px at 80% 20%, rgba(34,197,94,.25), transparent 60%),
              rgba(255,255,255,.03);
}
.card__media img{
  position:absolute; inset:0;
  width:100%; height:100%;
  object-fit:contain;
  padding:18px;
  filter: drop-shadow(0 20px 30px rgba(0,0,0,.35));
  transform: scale(1);
  transition: transform .25s ease;
}
.card:hover .card__media img{transform: scale(1.04);}
.card__body{padding:14px 14px 12px; display:flex; flex-direction:column; gap:10px; flex:1}
.card__title{font-weight:900; letter-spacing:-.2px; font-size:18px}
.card__desc{color:var(--muted2); font-size:13.5px; line-height:1.45}
.pills{display:flex; flex-wrap:wrap; gap:8px}
.pill{
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  color:rgba(238,242,255,.9);
  padding:6px 10px;
  border-radius:999px;
  font-size:12px;
  font-weight:700;
}
.card__foot{
  display:flex; justify-content:space-between; align-items:center; gap:10px;
  padding:0 14px 14px;
}
.price{font-weight:900}
.weightSel{
  display:flex; gap:8px; align-items:center;
}
select{
  width:110px;
  background: rgba(11,12,16,.35);
  color: var(--text);
  border:1px solid rgba(255,255,255,.16);
  border-radius:14px;
  padding:10px 10px;
  font-weight:800;
  outline:none;
}
select:focus{border-color: rgba(34,197,94,.45);}
.smallBtn{
  padding:10px 12px;
  border-radius:14px;
  font-weight:900;
}

.steps{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.step{
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  border-radius: var(--radius);
  padding:16px;
}
.step__icon{
  width:34px; height:34px;
  border-radius:14px;
  display:grid; place-items:center;
  background: rgba(124,58,237,.20);
  border:1px solid rgba(124,58,237,.35);
  font-weight:900;
  margin-bottom:10px;
}
.step h3{margin:0 0 6px 0}
.step p{margin:0; color:var(--muted2); line-height:1.5}

.faq details{
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  border-radius: 18px;
  padding:12px 14px;
  margin-bottom:10px;
}
.faq summary{
  cursor:pointer;
  font-weight:900;
  outline:none;
}
.faq p{color:var(--muted2); line-height:1.55}

.footer{
  margin-top:26px;
  padding:16px 0 8px;
  border-top:1px solid rgba(255,255,255,.08);
  display:flex; align-items:center; justify-content:space-between; gap:12px;
}
.footer__brand{font-weight:900; letter-spacing:.6px}
.footer__small{color:var(--muted2); font-size:13px}
.footer__right{display:flex; gap:14px; color:var(--muted2); font-weight:700}
.footer__right a:hover{color:var(--text)}

.iconBtn{
  width:40px; height:40px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.05);
  color:var(--text);
  cursor:pointer;
}
.iconBtn:hover{background: rgba(255,255,255,.08)}

.drawer, .modal{
  position:fixed; inset:0;
  display:none;
  z-index:80;
}
.drawer.isOpen, .modal.isOpen{display:block;}
.drawer__overlay, .modal__overlay{
  position:absolute; inset:0;
  background: rgba(0,0,0,.6);
  backdrop-filter: blur(6px);
  animation: fade .16s ease;
}
@keyframes fade{from{opacity:0}to{opacity:1}}
.drawer__panel{
  position:absolute; top:0; right:0; height:100%;
  width:min(480px, 92vw);
  background: rgba(16,18,26,.92);
  border-left:1px solid rgba(255,255,255,.12);
  box-shadow: var(--shadow);
  padding:16px;
  display:flex;
  flex-direction:column;
  animation: slideIn .18s ease;
}
@keyframes slideIn{from{transform: translateX(18px); opacity:.85}to{transform: translateX(0); opacity:1}}
.drawer__head{display:flex; align-items:flex-start; justify-content:space-between; gap:10px; padding-bottom:10px; border-bottom:1px solid rgba(255,255,255,.08);}
.drawer__head h3{margin:0}
.muted{color:var(--muted2); font-weight:600; font-size:13px}
.drawer__content{flex:1; overflow:auto; padding:12px 2px;}
.drawer__foot{border-top:1px solid rgba(255,255,255,.08); padding-top:12px; display:flex; flex-direction:column; gap:10px}

.cart{display:flex; flex-direction:column; gap:10px}
.cartRow{
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  border-radius: 18px;
  padding:12px;
  display:grid;
  grid-template-columns: 1fr auto;
  gap:10px;
}
.cartRow__title{font-weight:900}
.cartRow__meta{color:var(--muted2); font-size:13px; margin-top:4px}
.cartRow__actions{display:flex; gap:8px; align-items:center; justify-content:flex-end}
.qtyBtn{width:34px; height:34px; border-radius:14px; font-weight:900; padding:0}
.qty{min-width:34px; text-align:center; font-weight:900}

.total{display:flex; align-items:baseline; justify-content:space-between}
.total__value{font-weight:900; font-size:20px}

.cartEmpty{
  display:none;
  border:1px dashed rgba(255,255,255,.18);
  border-radius: var(--radius);
  padding:20px;
  text-align:center;
  color:var(--muted2);
}
.cartEmpty__emoji{font-size:34px}
.cartEmpty__title{font-weight:900; color:var(--text); margin-top:6px}
.cartEmpty__text{margin-top:4px}

.modal__panel{
  position:absolute;
  left:50%; top:50%;
  transform: translate(-50%, -50%);
  width: min(720px, 92vw);
  max-height: 88vh;
  overflow:auto;
  background: rgba(16,18,26,.92);
  border:1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding:16px;
  animation: pop .18s ease;
}
@keyframes pop{from{transform: translate(-50%,-48%) scale(.99); opacity:.85}to{transform: translate(-50%,-50%) scale(1); opacity:1}}
.modal__head{display:flex; align-items:center; justify-content:space-between; gap:10px; padding-bottom:10px; border-bottom:1px solid rgba(255,255,255,.08);}
.modal__head h3{margin:0}
.form{padding-top:12px; display:flex; flex-direction:column; gap:12px}
.formRow label{display:block; font-weight:900; margin-bottom:7px}
input, textarea{
  width:100%;
  background: rgba(11,12,16,.35);
  color: var(--text);
  border:1px solid rgba(255,255,255,.16);
  border-radius: 16px;
  padding:12px 12px;
  outline:none;
  font-weight:600;
}
input:focus, textarea:focus{border-color: rgba(6,182,212,.45);}
.help{color:var(--muted2); font-size:12.5px; margin-top:6px}
.formRow--two{
  display:grid;
  grid-template-columns: 1fr 220px;
  gap:12px;
}
.summaryBox{
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  border-radius: 18px;
  padding:12px;
}
.summaryBox__title{font-weight:900; margin-bottom:8px}
.summaryBox__list{display:flex; flex-direction:column; gap:6px; color: rgba(238,242,255,.88); font-weight:700}
.summaryBox__total{font-weight:900; font-size:24px}
.formMsg{min-height:22px; color:var(--muted); font-weight:700}

.modal__body{padding-top:12px; color: rgba(238,242,255,.88); line-height:1.6}
.modal__body ul{margin:0; padding-left:18px}
.modal__body li{margin:6px 0}

.reveal{
  opacity:0;
  transform: translateY(10px);
}
.reveal.isVisible{
  opacity:1;
  transform: translateY(0);
  transition: opacity .5s ease, transform .5s ease;
}

@media (max-width: 960px){
  .hero__inner{grid-template-columns:1fr; padding-bottom:8px}
  h1{font-size:38px}
  .grid{grid-template-columns:1fr 1fr}
  .steps{grid-template-columns:1fr}
  .formRow--two{grid-template-columns:1fr}
}
@media (max-width: 560px){
  .nav{display:none}
  .grid{grid-template-columns:1fr}
  h1{font-size:34px}
  .hero{padding-top:32px}
}
