:root{
  --bg:#0b0f14;
  --surface:#0f1620;
  --text:#e8edf3;
  --muted:#9aa6b2;
  --border:rgba(255,255,255,.10);
  --accent:#d6b46a;
  --max:1120px;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0;font-family: system-ui, -apple-system, BlinkMacSystemFont;}
body{background:linear-gradient(180deg, #070a0f 0%, #0b0f14 70%); color:var(--text);}
a{text-decoration:none;color:inherit}

.container{max-width:var(--max);margin:0 auto;padding:0 18px;}

.site-header{
  position:sticky;top:0;z-index:50;
  background:rgba(11,15,20,.8);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--border);
}

.header-inner{
  height:68px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.brand{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:600; font-size:1.4rem;
}

.brand-mark{
  width:34px;height:34px;
  display:grid;place-items:center;
  border-radius:10px;
  border:1px solid rgba(214,180,106,.35);
  color:#d6b46a;
}

.nav{display:flex;gap:18px;align-items:center}

.nav-link{
  font-size:14px;
  color:var(--muted);
  padding:6px 8px;
  border-radius:8px;
}

.nav-link:hover,
.nav-link.active{
  color:var(--text);
  background:rgba(214,180,106,.12);
}

.btn{
  padding:10px 14px;
  border-radius:12px;
  border:1px solid var(--border);
  font-weight:600; font-size:1.4rem;
}

.btn-primary{
  border-color:rgba(214,180,106,.35);
  background:rgba(214,180,106,.15);
}

.hero{
  padding:60px 0;
}

.hero h1{
  font-size:40px;
  max-width:18ch;
}

.hero p{
  max-width:48ch;
  color:var(--muted);
}
.nav-link.is-active {
  font-weight: 700;
  border-bottom: 2px solid currentColor;
  padding-bottom: 4px;
}

.footer-inner {
  text-align: center;
}

.footer-disclosure {
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}


/* MOBILE MENU */
.menu-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.menu-bar {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.2s;
}

.mobile-drawer {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 18px;
  border-top: 1px solid var(--border);
  background: var(--bg);
}

.drawer-link {
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 1rem;
  color: var(--muted);
}

.drawer-link:hover {
  background: rgba(214,180,106,.1);
  color: var(--text);
}

.drawer-cta {
  margin-top: 8px;
  text-align: center;
  padding: 12px;
}

@media (max-width: 768px) {
  .nav { display: none; }
  .menu-btn { display: flex; }
}

.mobile-drawer[hidden] {
  display: none !important;
}
