:root{
  --bg:#0b0b0c;
  --card:#121214;
  --text:#f3f4f6;
  --muted:#a1a1aa;
  --orange:#ff7a18;
  --orange2:#ff4d00;
  --border:rgba(255,255,255,.08);
  --shadow: 0 10px 25px rgba(0,0,0,.45);
  --radius:18px;
}

*{box-sizing:border-box}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  background: radial-gradient(1200px 600px at 20% 0%, rgba(255,122,24,.18), transparent 60%),
              radial-gradient(900px 500px at 80% 10%, rgba(255,77,0,.12), transparent 55%),
              var(--bg);
  color:var(--text);
}
a{color:inherit; text-decoration:none}
.container{max-width:1100px; margin:0 auto; padding:18px}

.topbar{
  position:sticky; top:0; z-index:30;
  background:rgba(10,10,12,.72);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--border);
}
.topbar__inner{display:flex; align-items:center; justify-content:space-between; gap:14px}

.brand{display:flex; align-items:center; gap:10px}
.brand__logo{width:38px; height:38px; object-fit:contain}
.brand__name{font-weight:800; letter-spacing:.2px}

.nav{display:flex; align-items:center; gap:10px; flex-wrap:wrap; justify-content:flex-end}
.nav__link{
  padding:10px 12px; border-radius:999px; color:var(--muted);
  border:1px solid transparent;
}
.nav__link.active{color:var(--text); border-color:var(--border); background:rgba(255,255,255,.03)}
.nav__btn{
  padding:10px 14px; border-radius:999px; font-weight:700;
  background:linear-gradient(135deg, var(--orange), var(--orange2));
  color:#110b07;
}

.page{display:none}
.page--active{display:block}

.hero{
  display:grid;
  grid-template-columns: 1.25fr .75fr;
  gap:16px;
  margin-top:16px;
}
@media (max-width: 900px){
  .hero{grid-template-columns:1fr}
}
.hero h1{margin:0 0 8px 0; font-size:36px; line-height:1.1}
.hero p{margin:0 0 12px 0; color:var(--muted); font-size:16px}

.hero__card{
  background:rgba(255,255,255,.03);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:16px;
  box-shadow:var(--shadow);
}
.primary{
  display:inline-block;
  margin-top:10px;
  padding:10px 14px;
  border-radius:12px;
  background:linear-gradient(135deg, var(--orange), var(--orange2));
  color:#110b07;
  font-weight:800;
}

.hero__chips{display:flex; flex-wrap:wrap; gap:8px}
.chip{
  padding:7px 10px;
  border-radius:999px;
  border:1px solid var(--border);
  background:rgba(255,255,255,.02);
  color:var(--text);
  font-size:13px;
}

.card{
  background:rgba(255,255,255,.03);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:16px;
  box-shadow:var(--shadow);
  margin-top:16px;
}
.grid2{display:grid; grid-template-columns:1fr 1fr; gap:16px}
@media (max-width: 900px){ .grid2{grid-template-columns:1fr} }

.slideshow{min-height:130px; color:var(--muted)}
.reviews{display:grid; grid-template-columns:1fr 1fr; gap:12px}
@media (max-width: 900px){ .reviews{grid-template-columns:1fr} }
.review{
  border:1px solid var(--border);
  border-radius:14px;
  padding:12px;
  background:rgba(0,0,0,.18);
}
.muted{color:var(--muted)}
.footer{border-top:1px solid var(--border); margin-top:22px; padding:12px 0}
