:root{
  --bg:#0a0a0f;
  --paper:#0f121a;
  --paper2:#0c1018;
  --ink:#e6e9f2;
  --muted:#a1a7b8;
  --line:rgba(255,255,255,.10);

  --accent:#ff4d6d; /* rose */
  --accent2:#7c3aed; /* violet */
  --accent3:#22c55e; /* green */

  --shadow: 0 20px 55px rgba(0,0,0,.45);
  --r1:26px;
  --r2:18px;
  --r3:12px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color:var(--ink);
  background:
    radial-gradient(900px 520px at 18% 12%, rgba(124,58,237,.18), transparent 60%),
    radial-gradient(900px 520px at 84% 14%, rgba(255,77,109,.14), transparent 58%),
    radial-gradient(900px 520px at 52% 92%, rgba(34,197,94,.10), transparent 60%),
    linear-gradient(180deg, #07070b, #0a0a0f);
}

a{color:inherit}
.container{max-width:1160px; margin:0 auto; padding:0 18px}

/* top */
.top{
  padding:16px 0 8px;
}
.topRow{
  display:flex; align-items:center; justify-content:space-between;
  gap:12px; flex-wrap:wrap;
}
.brand{
  display:flex; align-items:center; gap:12px;
  text-decoration:none;
}
.logo{
  width:46px; height:46px; border-radius:18px;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,77,109,.95), transparent 55%),
    radial-gradient(circle at 72% 72%, rgba(124,58,237,.88), transparent 55%),
    rgba(255,255,255,.06);
  border:1px solid var(--line);
  box-shadow: 0 16px 40px rgba(255,77,109,.18);
}
.brand strong{display:block; letter-spacing:.2px}
.brand small{display:block; color:var(--muted); margin-top:2px}

.nav{
  display:flex; gap:10px; flex-wrap:wrap; align-items:center;
}
.nav a{
  text-decoration:none;
  color:var(--muted);
  padding:10px 12px;
  border-radius:999px;
  border:1px solid transparent;
  transition:.2s ease;
}
.nav a:hover{
  border-color: var(--line);
  background: rgba(255,255,255,.06);
  color: var(--ink);
}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  padding:12px 14px;
  border-radius:999px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
  text-decoration:none;
  cursor:pointer;
  transition:.2s ease;
  font-weight:950;
}
.btn:hover{transform: translateY(-1px); background: rgba(255,255,255,.06)}
.btn.primary{
  border-color: transparent;
  color:#0a0a0f;
  background: linear-gradient(135deg, rgba(255,77,109,.98), rgba(124,58,237,.95));
  box-shadow: 0 18px 44px rgba(124,58,237,.18);
}
.btn.ghost{
  border-color: rgba(255,77,109,.25);
  background: rgba(255,77,109,.08);
}

/* hero with stacked cards */
.heroStack{
  margin-top:10px;
  display:grid;
  grid-template-columns: 1fr;
  gap:12px;
}
.heroTop{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:12px;
}
@media (max-width:980px){ .heroTop{grid-template-columns:1fr} }

.card{
  border:1px solid var(--line);
  border-radius: var(--r1);
  background: linear-gradient(180deg, rgba(15,18,26,.88), rgba(12,16,24,.82));
  box-shadow: var(--shadow);
}
.pad{padding:18px}

.kicker{
  display:inline-flex; align-items:center; gap:10px;
  padding:8px 12px; border-radius:999px;
  border:1px solid var(--line);
  background: rgba(0,0,0,.16);
  color:var(--muted);
  width:fit-content;
}
.kicker b{
  width:10px;height:10px;border-radius:999px; display:inline-block;
  background: var(--accent3);
  box-shadow: 0 0 0 6px rgba(34,197,94,.12);
}
.h1{
  margin:14px 0 10px;
  font-size:44px;
  line-height:1.06;
  letter-spacing:-.8px;
}
@media (max-width:520px){ .h1{font-size:34px} }
.lead{
  margin:0 0 16px;
  color:var(--muted);
  line-height:1.85;
  font-size:15.5px;
}
.actions{display:flex; gap:10px; flex-wrap:wrap; align-items:center}

.summary{
  border:1px solid var(--line);
  border-radius: var(--r2);
  background: rgba(255,255,255,.03);
  padding:14px;
}
.summary h3{margin:0 0 8px; font-size:16px}
.summary p{margin:0 0 12px; color:var(--muted); line-height:1.6; font-size:13.5px}
.notice{
  border:1px dashed rgba(255,77,109,.35);
  background: rgba(255,77,109,.08);
  border-radius: 18px;
  padding:12px;
  color:var(--muted);
  line-height:1.55;
  font-size:13px;
}
.kv{
  margin-top:12px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
}
@media (max-width:520px){ .kv{grid-template-columns:1fr} }
.kbox{
  border:1px solid var(--line);
  border-radius:18px;
  background: rgba(255,255,255,.03);
  padding:12px;
}
.kbox small{display:block; color:var(--muted); margin-bottom:6px}
.kbox div{font-weight:950}

/* strip */
.strip{
  display:grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap:12px;
}
@media (max-width:980px){ .strip{grid-template-columns:1fr} }
.s{
  padding:16px;
}
.picon{
  width:40px;height:40px;border-radius:18px;
  border:1px solid var(--line);
  display:flex; align-items:center; justify-content:center;
  background: rgba(255,255,255,.03);
  font-weight:950;
  color: var(--accent);
}
.s h3{margin:10px 0 6px}
.s p{margin:0; color:var(--muted); line-height:1.65; font-size:13.5px}

/* sections */
.section{padding:24px 0 0}
.head{
  display:flex; align-items:flex-end; justify-content:space-between;
  gap:12px; flex-wrap:wrap;
  margin:0 0 12px;
}
.head h2{margin:0; font-size:22px; letter-spacing:-.2px}
.head p{margin:0; color:var(--muted); line-height:1.65; max-width:780px}

/* catalog as table-like cards */
.catalog{
  display:grid;
  gap:12px;
}
.item{
  border:1px solid var(--line);
  border-radius: var(--r1);
  background: rgba(255,255,255,.03);
  padding:16px;
  display:grid;
  grid-template-columns: 1.2fr .9fr;
  gap:12px;
  align-items:stretch;
}
@media (max-width:980px){ .item{grid-template-columns:1fr} }
.badges{display:flex; gap:8px; flex-wrap:wrap; margin-bottom:10px}
.bad{
  font-size:12px; font-weight:950;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid var(--line);
  background: rgba(0,0,0,.16);
  color: var(--muted);
}
.bad.a{border-color: rgba(255,77,109,.25); background: rgba(255,77,109,.10); color: var(--ink);}
.bad.b{border-color: rgba(124,58,237,.25); background: rgba(124,58,237,.10); color: var(--ink);}
.bad.c{border-color: rgba(34,197,94,.25); background: rgba(34,197,94,.10); color: var(--ink);}
.item h3{margin:0 0 6px; font-size:16px}
.item p{margin:0; color:var(--muted); line-height:1.65; font-size:13.5px}

.buy{
  border-left:1px solid var(--line);
  padding-left:12px;
  display:flex; flex-direction:column; justify-content:space-between;
  gap:10px;
}
@media (max-width:980px){ .buy{border-left:0; padding-left:0; border-top:1px solid var(--line); padding-top:10px} }
.price{
  font-weight:950;
  font-size:22px;
  letter-spacing:.2px;
}
.buy button{
  width:100%;
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
  padding:10px 12px;
  border-radius:999px;
  cursor:pointer;
  font-weight:950;
  color: var(--ink);
}
.buy button:hover{background: rgba(255,255,255,.06)}

/* delivery/payment */
.cols{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
}
@media (max-width:980px){ .cols{grid-template-columns:1fr} }
.box{
  border:1px solid var(--line);
  border-radius: var(--r1);
  background: rgba(255,255,255,.03);
  padding:16px;
}
.box h3{margin:0 0 8px}
.box ul{margin:0; padding-left:18px; color:var(--muted); line-height:1.9}
.box li{margin:6px 0}

/* FAQ */
.faq{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
}
@media (max-width:980px){ .faq{grid-template-columns:1fr} }
details{
  border:1px solid var(--line);
  border-radius:18px;
  background: rgba(255,255,255,.03);
  padding:12px 14px;
}
summary{cursor:pointer; font-weight:950; list-style:none}
summary::-webkit-details-marker{display:none}
details p{margin:10px 0 0; color:var(--muted); line-height:1.7}

/* Order */
.order{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:12px;
  align-items:stretch;
}
@media (max-width:980px){ .order{grid-template-columns:1fr} }
.formCard{padding:18px}
.formCard h3{margin:0 0 6px}
.formCard p{margin:0 0 14px; color:var(--muted); line-height:1.6}
form{display:grid; gap:10px}
.field{display:grid; gap:6px}
label{font-size:12px; color:var(--muted)}
input,select,textarea{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid var(--line);
  background: rgba(0,0,0,.18);
  outline:none;
  color:var(--ink);
}
textarea{min-height:92px; resize:vertical}
input:focus,select:focus,textarea:focus{
  border-color: rgba(255,77,109,.40);
  box-shadow: 0 0 0 4px rgba(255,77,109,.14);
}
.row2{display:grid; grid-template-columns:1fr 1fr; gap:10px}
@media (max-width:520px){ .row2{grid-template-columns:1fr} }
.note{font-size:12px; color:var(--muted); line-height:1.55}

.legal{
  padding:18px;
}
.kv2{
  border:1px solid var(--line);
  border-radius:18px;
  padding:12px;
  background: rgba(0,0,0,.16);
}
.k{color:var(--muted); font-size:12px}
.v{font-weight:950; margin-top:4px}
.sep{height:1px; background:var(--line); margin:10px 0}

/* footer */
.footer{
  margin-top:26px;
  border-top:1px solid var(--line);
  background: rgba(0,0,0,.20);
}
.foot{
  padding:18px 0;
  display:flex; align-items:flex-end; justify-content:space-between;
  gap:12px; flex-wrap:wrap;
}
.foot small{color:var(--muted); line-height:1.65}
.foot a{color:var(--muted); text-decoration:none}
.foot a:hover{color:var(--ink)}
.links{display:flex; gap:12px; flex-wrap:wrap; align-items:center}

/* inner pages */
.page{padding:26px 0}
.paper{
  border:1px solid var(--line);
  border-radius: var(--r1);
  background: linear-gradient(180deg, rgba(15,18,26,.88), rgba(12,16,24,.82));
  box-shadow: var(--shadow);
  padding:18px;
}
.page h1{margin:0 0 10px; font-size:28px; letter-spacing:-.2px}
.page p,.page li{color:var(--muted); line-height:1.85}
