:root{
  --bg:#07152f;
  --bg-2:#0b2248;
  --surface:#0d1f42;
  --surface-2:#122a56;
  --text:#f8f1d4;
  --muted:#c9c1a2;
  --line:rgba(212,176,92,.22);
  --brand:#d4b05c;
  --brand-2:#f1d38a;
  --brand-dark:#08162f;
  --soft:rgba(212,176,92,.12);
  --accent:#f7e7b2;
  --danger:#ffcf6b;
  --white:#ffffff;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,sans-serif;
  color:var(--text);
  background:
    radial-gradient(circle at 15% 10%, rgba(212,176,92,.20), transparent 22%),
    radial-gradient(circle at 85% 8%, rgba(255,230,170,.12), transparent 18%),
    linear-gradient(180deg, #0a1732 0%, #09142a 40%, #071223 100%);
}
a{color:inherit}
.container{
  width:min(1180px, calc(100% - 32px));
  margin:0 auto;
}
.site-header{
  position:sticky;
  top:0;
  z-index:40;
  background:linear-gradient(180deg, rgba(7,21,47,.96), rgba(7,21,47,.88));
  backdrop-filter:blur(12px);
  border-bottom:1px solid var(--line);
  box-shadow:0 14px 36px rgba(0,0,0,.32);
}
.nav{
  min-height:76px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
  color:var(--brand-2);
  font-weight:800;
  letter-spacing:.4px;
  text-transform:uppercase;
}
.brand img{
  width:48px;
  height:48px;
  object-fit:contain;
  filter:
    drop-shadow(0 0 12px rgba(212,176,92,.22))
    drop-shadow(0 6px 18px rgba(0,0,0,.35));
  animation:logoGlow 3.8s ease-in-out infinite;
}
@keyframes logoGlow{
  0%,100%{transform:scale(1)}
  50%{transform:scale(1.03)}
}
.nav-links{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  align-items:center;
}
.nav-links a{
  text-decoration:none;
  color:#f7e8bb;
  font-weight:700;
  padding:10px 12px;
  border-radius:12px;
  transition:all .18s ease;
}
.nav-links a:hover{
  background:rgba(212,176,92,.10);
  color:var(--white);
}
.pill{
  border:1px solid rgba(212,176,92,.34);
  background:linear-gradient(180deg, #d8b96a 0%, #b58a36 100%);
  color:#08162f !important;
  box-shadow:0 10px 22px rgba(181,138,54,.24);
}
main{min-height:72vh}
.hero,.boards,.listing,.catalog-top,.catalog-wrap{
  padding:28px 0;
}
.hero-grid,.catalog-grid{
  display:grid;
  grid-template-columns:1.2fr .92fr;
  gap:22px;
}
.grid-3{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:18px;
}
.card{
  background:
    radial-gradient(circle at top right, rgba(212,176,92,.10), transparent 28%),
    linear-gradient(180deg, rgba(18,42,86,.98) 0%, rgba(10,24,52,.98) 100%);
  border:1px solid var(--line);
  border-radius:26px;
  box-shadow:
    0 20px 50px rgba(0,0,0,.28),
    inset 0 1px 0 rgba(255,255,255,.03);
}
.hero-copy,.hero-search,.filter-card{
  padding:26px;
}
.hero-copy{
  position:relative;
  overflow:hidden;
}
.hero-copy::after{
  content:"";
  position:absolute;
  right:-60px;
  top:-60px;
  width:180px;
  height:180px;
  background:radial-gradient(circle, rgba(212,176,92,.18), transparent 70%);
  pointer-events:none;
}
.eyebrow{
  display:inline-block;
  padding:8px 13px;
  background:rgba(212,176,92,.12);
  color:var(--brand-2);
  border:1px solid rgba(212,176,92,.22);
  border-radius:999px;
  font-size:.86rem;
  font-weight:800;
  margin-bottom:14px;
  letter-spacing:.25px;
}
.hero-copy h1,.catalog-top h1{
  margin:0 0 12px;
  font-size:clamp(2.1rem, 4vw, 3.3rem);
  line-height:1.03;
  color:#fff4cf;
  text-shadow:0 2px 18px rgba(0,0,0,.18);
}
.hero-copy p,.catalog-top p{
  margin:0;
  color:var(--muted);
  line-height:1.75;
  font-size:1.02rem;
}
.hero-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:22px;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 18px;
  border-radius:14px;
  text-decoration:none;
  border:0;
  cursor:pointer;
  font-weight:800;
  letter-spacing:.15px;
  transition:transform .18s ease, box-shadow .18s ease, opacity .18s ease;
}
.btn:hover{transform:translateY(-1px)}
.btn.primary{
  background:linear-gradient(180deg, #e6c878 0%, #b4872b 100%);
  color:#08162f;
  box-shadow:0 16px 30px rgba(180,135,43,.26);
}
.btn.secondary{
  background:linear-gradient(180deg, rgba(255,255,255,.08) 0%, rgba(255,255,255,.03) 100%);
  color:#fff2c7;
  border:1px solid rgba(212,176,92,.20);
}
.block{width:100%}
.field{
  display:block;
  margin-bottom:13px;
}
.field span{
  display:block;
  margin-bottom:7px;
  font-weight:800;
  font-size:.92rem;
  color:#f9ebbb;
}
.field select,.field input{
  width:100%;
  padding:13px 14px;
  border:1px solid rgba(212,176,92,.18);
  border-radius:14px;
  background:rgba(255,255,255,.04);
  color:#fff5d6;
  outline:none;
  transition:border-color .18s ease, box-shadow .18s ease, background .18s ease;
}
.field select option{
  color:#111827;
}
.field select:focus,.field input:focus{
  border-color:rgba(241,211,138,.55);
  box-shadow:0 0 0 4px rgba(212,176,92,.10);
  background:rgba(255,255,255,.06);
}
.section-head{
  display:flex;
  align-items:end;
  justify-content:space-between;
  gap:16px;
  margin-bottom:16px;
}
.section-head h2{
  margin:0;
  color:#fff0bf;
  font-size:1.7rem;
}
.section-head p,.section-head a{
  margin:0;
  color:var(--muted);
  text-decoration:none;
}
.section-head a:hover{color:#fff0bf}
.board-card,.item-card{
  padding:20px;
}
.board-card{
  position:relative;
  overflow:hidden;
}
.board-card::before{
  content:"";
  position:absolute;
  inset:0 auto auto 0;
  width:100%;
  height:4px;
  background:linear-gradient(90deg, #f4d894, #b4872b);
}
.board-card img{
  width:62px;
  height:62px;
  object-fit:contain;
  margin-bottom:12px;
  filter:drop-shadow(0 4px 16px rgba(0,0,0,.28));
}
.board-card h3,.item-card h3{
  margin:0 0 8px;
  color:#fff2c7;
}
.board-card p,.item-card p{
  margin:0;
  color:var(--muted);
  line-height:1.65;
}
.badge{
  display:inline-block;
  margin-bottom:10px;
  padding:6px 11px;
  border-radius:999px;
  background:rgba(212,176,92,.12);
  color:#f0d489;
  border:1px solid rgba(212,176,92,.18);
  font-size:.82rem;
  font-weight:800;
}
.meta-line{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:12px;
  color:var(--muted);
  font-size:.92rem;
}
.catalog-top .container{
  padding:6px 0 0;
}
.site-footer{
  padding:30px 0 38px;
  text-align:center;
  color:var(--muted);
}
[hidden]{display:none !important;}
@media (max-width: 920px){
  .hero-grid,.catalog-grid,.grid-3{
    grid-template-columns:1fr;
  }
  .nav{
    align-items:flex-start;
    padding:12px 0;
  }
  .nav-links{
    justify-content:flex-start;
  }
}