:root{
  --bg:#0b0b0b;
  --panel:#111;
  --text:#f2f2f2;
  --muted:rgba(242,242,242,.72);
  --line:rgba(242,242,242,.10);

  --green:#1F3D2B;
  --gold:#B08D3B;

  --radius:18px;
  --shadow:0 18px 60px rgba(0,0,0,.35);
  --max:1120px;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  background:
    radial-gradient(1200px 600px at 20% 0%, rgba(31,61,43,.20), transparent 55%),
    radial-gradient(900px 500px at 80% 10%, rgba(176,141,59,.10), transparent 60%),
    var(--bg);
  color:var(--text);
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  line-height:1.55;
}

a{color:inherit;text-decoration:none}
a:hover{opacity:.92}
.container{max-width:var(--max);margin:0 auto;padding:0 18px}

.site-header{
  position:sticky;top:0;z-index:50;
  backdrop-filter:blur(10px);
  background:rgba(11,11,11,.72);
  border-bottom:1px solid var(--line);
}
.header-inner{display:flex;align-items:center;justify-content:space-between;gap:14px;padding:14px 0}
.brand{display:flex;align-items:center;gap:12px;min-width:180px}
.brand img{height:34px;width:auto;display:block}

.nav{display:flex;gap:18px;align-items:center;flex-wrap:wrap;justify-content:flex-end}
.nav a{color:var(--muted);font-weight:700;letter-spacing:.2px}
.nav a:hover{color:var(--text)}

.header-cta{display:flex;gap:10px;align-items:center}

.btn{
  display:inline-flex;align-items:center;justify-content:center;
  padding:11px 14px;border-radius:999px;
  border:1px solid var(--line);
  color:var(--text);
  font-weight:800;letter-spacing:.2px;
  transition:transform .12s ease, background .12s ease, border-color .12s ease;
  white-space:nowrap;
}
.btn:hover{transform:translateY(-1px)}
.btn-primary{
  background:linear-gradient(180deg, rgba(31,61,43,1), rgba(18,33,25,1));
  border-color:rgba(31,61,43,.6);
}
.btn-primary:hover{border-color:rgba(176,141,59,.55)}
.btn-ghost{background:transparent}

.hero{padding:62px 0 22px}
.hero-grid{display:grid;grid-template-columns:1.2fr .8fr;gap:26px;align-items:center}
.hero-card{
  background:linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:26px;
  box-shadow:var(--shadow);
}
.kicker{
  display:inline-flex;gap:10px;align-items:center;
  padding:7px 12px;border-radius:999px;
  border:1px solid rgba(176,141,59,.25);
  background:rgba(176,141,59,.08);
  color:rgba(242,242,242,.92);
  font-weight:900;letter-spacing:.3px;font-size:12px;
}
.kicker .dot{
  width:8px;height:8px;border-radius:99px;background:var(--gold);
  box-shadow:0 0 0 6px rgba(176,141,59,.10);
}
h1{
  font-size:clamp(34px,4vw,54px);
  line-height:1.05;margin:14px 0 12px;letter-spacing:-0.8px;
}
.sub{color:var(--muted);font-size:16px;max-width:56ch;margin:0 0 18px}
.hero-actions{display:flex;flex-wrap:wrap;gap:10px;margin-top:14px}
.note{
  margin-top:16px;
  padding-top:14px;
  border-top:1px solid var(--line);
  color:rgba(242,242,242,.62);
  font-size:12.5px;
}

.hero-side{
  border-radius:var(--radius);
  border:1px solid var(--line);
  background:linear-gradient(180deg, rgba(31,61,43,.20), rgba(255,255,255,.02));
  padding:18px;
}
.hero-side h3{margin:6px 0 10px;font-size:15px;letter-spacing:.2px}
.badges{display:grid;gap:10px}
.badge{
  display:flex;gap:10px;align-items:flex-start;
  padding:12px;border-radius:14px;border:1px solid var(--line);
  background:rgba(0,0,0,.22);
}
.badge .ico{width:22px}
.badge b{display:block;margin-bottom:3px}
.badge span{color:var(--muted);font-size:13px}

.section{padding:34px 0}
.section-head{
  display:flex;align-items:flex-end;justify-content:space-between;
  gap:14px;flex-wrap:wrap;margin-bottom:14px;
}
h2{font-size:20px;letter-spacing:-0.2px;margin:0 0 8px}
.desc{color:var(--muted);margin:0}
.pill{
  display:inline-flex;align-items:center;gap:10px;
  padding:8px 12px;border-radius:999px;
  border:1px solid rgba(31,61,43,.5);
  background:rgba(31,61,43,.18);
  color:rgba(242,242,242,.92);
  font-weight:800;font-size:13px;
}

.panel{
  border:1px solid var(--line);
  background:rgba(255,255,255,.03);
  border-radius:var(--radius);
  padding:18px;
}

.grid{display:grid;gap:16px}
.grid.products{grid-template-columns:repeat(3, 1fr)}
.grid.two{grid-template-columns:repeat(2,1fr)}

.product{
  border:1px solid var(--line);
  background:rgba(255,255,255,.03);
  border-radius:var(--radius);
  overflow:hidden;
  box-shadow:none;
}
.product-media{
  aspect-ratio: 4 / 3;
  background:rgba(0,0,0,.22);
  border-bottom:1px solid var(--line);
  display:flex;align-items:center;justify-content:center;
}
.product-media img{width:100%;height:100%;object-fit:cover;display:block}
.product-body{padding:14px}
.product h3{margin:0 0 6px;font-size:15.5px;letter-spacing:-0.1px}
.muted{color:var(--muted);margin:0 0 12px;font-size:13.5px}

.price-row{display:flex;align-items:center;justify-content:space-between;gap:10px;margin:10px 0 12px}
.price{font-weight:900}
.tag{
  font-size:12px;font-weight:900;
  padding:6px 10px;border-radius:999px;
  border:1px solid rgba(176,141,59,.25);
  background:rgba(176,141,59,.08);
  color:rgba(242,242,242,.88);
}
.btn-row{display:flex;gap:10px;flex-wrap:wrap}
.details{margin-top:10px}
.details summary{cursor:pointer;color:rgba(242,242,242,.88);font-weight:800}
.details ul{margin:10px 0 0;padding-left:18px;color:var(--muted);font-size:13px}

.quote{
  margin-top:18px;
  text-align:center;
  padding:22px 14px;
  border-radius:var(--radius);
  border:1px solid rgba(176,141,59,.18);
  background:rgba(176,141,59,.06);
}
.quote p{margin:0;font-size:clamp(16px,2.2vw,20px);color:rgba(242,242,242,.92)}
.quote small{display:block;margin-top:10px;color:rgba(242,242,242,.68)}

.list{padding-left:18px;color:var(--muted)}
.link{color:rgba(242,242,242,.90);text-decoration:underline;text-underline-offset:3px}

.site-footer{
  margin-top:40px;
  border-top:1px solid var(--line);
  padding:28px 0;
  color:rgba(242,242,242,.72);
  font-size:13px;
}
.footer-grid{display:grid;grid-template-columns:1.2fr .8fr;gap:18px;align-items:start}
.footer-grid a{color:rgba(242,242,242,.78)}
.footer-grid a:hover{color:var(--text)}
.legal{margin-top:12px;padding-top:12px;border-top:1px solid var(--line);color:rgba(242,242,242,.62)}

@media (max-width: 960px){
  .hero-grid{grid-template-columns:1fr}
  .grid.products{grid-template-columns:1fr}
  .grid.two{grid-template-columns:1fr}
}
@media (max-width: 860px){
  .nav{display:none}
}
