:root{
  --bg:#0b0f1a;
  --paper: rgba(255,255,255,.06);
  --paper2: rgba(255,255,255,.04);
  --ink:#eef2ff;
  --muted: rgba(238,242,255,.72);
  --line: rgba(238,242,255,.14);

  --c1:#60a5fa; /* sky */
  --c2:#34d399; /* mint */
  --c3:#fbbf24; /* amber */
  --c4:#fb7185; /* rose */

  --shadow: 0 26px 90px rgba(0,0,0,.55);
  --shadow2: 0 14px 38px rgba(0,0,0,.35);

  --r1: 26px;
  --r2: 18px;
  --r3: 12px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  color:var(--ink);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Apple Color Emoji","Segoe UI Emoji";
  background:
    radial-gradient(1050px 650px at 14% 12%, rgba(96,165,250,.20), transparent 62%),
    radial-gradient(1050px 650px at 86% 14%, rgba(251,113,133,.14), transparent 62%),
    radial-gradient(1050px 650px at 50% 96%, rgba(52,211,153,.14), transparent 62%),
    linear-gradient(180deg, #070a12, var(--bg));
}

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

/* top */
.top{
  position:sticky; top:0; z-index:80;
  background: rgba(7,10,18,.70);
  backdrop-filter: blur(12px);
  border-bottom:1px solid var(--line);
}
.topRow{
  padding:14px 0;
  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;
}
.orb{
  width:46px; height:46px; border-radius:18px;
  border:1px solid var(--line);
  background:
    radial-gradient(circle at 28% 30%, rgba(96,165,250,.55), transparent 60%),
    radial-gradient(circle at 75% 72%, rgba(52,211,153,.42), transparent 60%),
    radial-gradient(circle at 55% 34%, rgba(251,191,36,.34), transparent 60%),
    rgba(255,255,255,.05);
  box-shadow: 0 18px 44px rgba(0,0,0,.45);
}
.brand strong{display:block; letter-spacing:.25px}
.brand small{display:block; color:var(--muted); margin-top:2px}

.nav{
  display:flex; gap:8px; 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:.18s ease;
}
.nav a:hover{
  color:var(--ink);
  border-color: rgba(238,242,255,.18);
  background: rgba(255,255,255,.06);
}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  padding:12px 14px;
  border-radius:999px;
  border:1px solid rgba(238,242,255,.14);
  background: rgba(255,255,255,.06);
  text-decoration:none;
  cursor:pointer;
  font-weight:950;
  transition:.18s ease;
}
.btn:hover{transform: translateY(-1px)}
.btn.primary{
  border-color: transparent;
  color:#071019;
  background: linear-gradient(135deg, rgba(96,165,250,.95), rgba(52,211,153,.88));
  box-shadow: 0 18px 44px rgba(96,165,250,.14);
}
.btn.ghost{
  border-color: rgba(251,191,36,.24);
  background: rgba(251,191,36,.10);
}

/* hero */
.hero{padding:18px 0 0}
.heroShell{
  border:1px solid rgba(238,242,255,.14);
  border-radius: var(--r1);
  background: rgba(255,255,255,.06);
  box-shadow: var(--shadow);
  overflow:hidden;
  position:relative;
}
.heroShell:before{
  content:"";
  position:absolute; inset:-320px auto auto -320px;
  width:760px; height:760px; border-radius:999px;
  background:
    radial-gradient(circle at 35% 35%, rgba(96,165,250,.18), transparent 62%),
    radial-gradient(circle at 70% 70%, rgba(52,211,153,.14), transparent 62%),
    radial-gradient(circle at 55% 45%, rgba(251,113,133,.12), transparent 62%);
  transform: rotate(18deg);
  pointer-events:none;
}
.heroGrid{
  position:relative;
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:12px;
  padding:18px;
  align-items:stretch;
}
@media (max-width:980px){ .heroGrid{grid-template-columns:1fr} }

.flag{
  display:inline-flex; align-items:center; gap:10px;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid rgba(238,242,255,.14);
  background: rgba(255,255,255,.06);
  color:var(--muted);
  width:fit-content;
}
.flag i{
  width:10px;height:10px;border-radius:999px;
  background: var(--c2);
  box-shadow: 0 0 0 6px rgba(52,211,153,.14);
  display:inline-block;
}
.h1{
  margin:12px 0 8px;
  font-size:44px;
  line-height:1.05;
  letter-spacing:-.85px;
}
@media (max-width:520px){ .h1{font-size:34px} }
.lead{
  margin:0;
  color:var(--muted);
  line-height:1.85;
  font-size:15.5px;
  max-width:860px;
}
.heroActions{display:flex; gap:10px; flex-wrap:wrap; margin-top:14px}
.notice{
  margin-top:14px;
  border:1px dashed rgba(251,113,133,.42);
  background: rgba(251,113,133,.10);
  border-radius:18px;
  padding:12px;
  color: rgba(238,242,255,.82);
  line-height:1.6;
  font-size:13px;
}

.side{
  border:1px solid rgba(238,242,255,.14);
  border-radius: var(--r1);
  background: rgba(255,255,255,.06);
  box-shadow: var(--shadow2);
  padding:16px;
  display:grid;
  gap:10px;
}
.side h3{margin:0; font-size:16px}
.side p{margin:0; color:var(--muted); line-height:1.6; font-size:13.5px}
.kv{
  border:1px solid rgba(238,242,255,.14);
  border-radius:18px;
  background: rgba(255,255,255,.05);
  padding:12px;
}
.kv small{display:block; color:var(--muted); margin-bottom:6px}
.kv .v{font-weight:950}
.kv .mono{font-weight:900; font-size:13px; line-height:1.55}

/* sections */
.section{padding:26px 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:820px}

.cardWrap{
  border:1px solid rgba(238,242,255,.14);
  border-radius: var(--r1);
  background: rgba(255,255,255,.06);
  box-shadow: var(--shadow2);
  padding:14px;
}

/* product table-like cards */
.list{
  display:grid;
  grid-template-columns: repeat(12,1fr);
  gap:12px;
}
.item{
  grid-column: span 4;
  border:1px solid rgba(238,242,255,.14);
  border-radius: var(--r1);
  background: rgba(255,255,255,.05);
  box-shadow: var(--shadow2);
  padding:16px;
  display:grid;
  gap:10px;
}
@media (max-width:980px){ .item{grid-column: span 6} }
@media (max-width:640px){ .item{grid-column: span 12} }

.art{
  height:90px;
  border-radius:18px;
  border:1px solid rgba(238,242,255,.14);
  background:
    radial-gradient(160px 90px at 22% 30%, rgba(96,165,250,.18), transparent 65%),
    radial-gradient(160px 90px at 78% 70%, rgba(52,211,153,.16), transparent 65%),
    radial-gradient(160px 90px at 55% 42%, rgba(251,191,36,.14), transparent 65%),
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
}
.item h3{margin:0; font-size:16px}
.item p{margin:0; color:var(--muted); line-height:1.65; font-size:13.5px}
.tags{display:flex; gap:8px; flex-wrap:wrap}
.tag{
  font-size:12px; font-weight:950;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(238,242,255,.14);
  background: rgba(255,255,255,.06);
  color: rgba(238,242,255,.85);
}
.tag.a{border-color: rgba(96,165,250,.28); background: rgba(96,165,250,.12)}
.tag.b{border-color: rgba(52,211,153,.28); background: rgba(52,211,153,.12)}
.tag.c{border-color: rgba(251,191,36,.28); background: rgba(251,191,36,.10)}
.buy{
  display:flex; align-items:center; justify-content:space-between;
  gap:10px; flex-wrap:wrap;
}
.price{font-weight:950; font-size:18px}
.pick{
  border:1px solid rgba(238,242,255,.14);
  background: rgba(255,255,255,.06);
  padding:10px 12px;
  border-radius:999px;
  cursor:pointer;
  font-weight:950;
  color:var(--ink);
}
.pick:hover{background: rgba(255,255,255,.10)}

/* benefits */
.benefits{
  display:grid;
  grid-template-columns: repeat(12,1fr);
  gap:12px;
}
.b{
  grid-column: span 6;
  border:1px solid rgba(238,242,255,.14);
  border-radius: var(--r1);
  background: rgba(255,255,255,.05);
  box-shadow: var(--shadow2);
  padding:16px;
}
@media (max-width:980px){ .b{grid-column: span 12} }
.b .n{
  display:inline-flex;
  width:40px;height:40px;border-radius:18px;
  align-items:center; justify-content:center;
  border:1px solid rgba(238,242,255,.14);
  background: rgba(255,255,255,.06);
  font-weight:950;
}
.b:nth-child(2) .n{background: rgba(52,211,153,.12)}
.b:nth-child(3) .n{background: rgba(251,191,36,.12)}
.b:nth-child(4) .n{background: rgba(251,113,133,.10)}
.b h3{margin:10px 0 6px}
.b p{margin:0; color:var(--muted); line-height:1.65}

/* delivery/payment + FAQ */
.two{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
}
@media (max-width:980px){ .two{grid-template-columns:1fr} }
.box{
  border:1px solid rgba(238,242,255,.14);
  border-radius: var(--r1);
  background: rgba(255,255,255,.05);
  box-shadow: var(--shadow2);
  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{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
}
@media (max-width:980px){ .faq{grid-template-columns:1fr} }
details{
  border:1px solid rgba(238,242,255,.14);
  border-radius:18px;
  background: rgba(255,255,255,.05);
  box-shadow: var(--shadow2);
  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.1fr .9fr;
  gap:12px;
  align-items:start;
}
@media (max-width:980px){ .order{grid-template-columns:1fr} }
.form{
  border:1px solid rgba(238,242,255,.14);
  border-radius: var(--r1);
  background: rgba(255,255,255,.06);
  box-shadow: var(--shadow2);
  padding:18px;
}
.form h3{margin:0 0 6px}
.form 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 rgba(238,242,255,.14);
  background: rgba(7,10,18,.55);
  outline:none;
  color:var(--ink);
}
textarea{min-height:92px; resize:vertical}
input:focus,select:focus,textarea:focus{
  border-color: rgba(96,165,250,.42);
  box-shadow: 0 0 0 4px rgba(96,165,250,.16);
}
.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}

.summary{
  border:1px solid rgba(238,242,255,.14);
  border-radius: var(--r1);
  background: rgba(255,255,255,.04);
  box-shadow: var(--shadow2);
  padding:18px;
}
.block{
  border:1px solid rgba(238,242,255,.14);
  border-radius:18px;
  background: rgba(255,255,255,.05);
  padding:12px;
}
.block .k{color:var(--muted); font-size:12px}
.block .v{font-weight:950; margin-top:4px}
.sep{height:1px;background: rgba(238,242,255,.12); margin:10px 0}

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

/* inner pages */
.page{padding:22px 0 26px}
.paper{
  border:1px solid rgba(238,242,255,.14);
  border-radius: var(--r1);
  background: rgba(255,255,255,.06);
  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}
