:root{
  --bg:#0b0d10;
  --panel:#10141a;
  --panel2:#0f1217;
  --text:#e7edf7;
  --muted:#a8b3c4;
  --line:rgba(255,255,255,.10);
  --shadow: 0 18px 50px rgba(0,0,0,.55);
  --accent:#d7b86a;          /* warm “brass” */
  --accent2:#9ed1ff;         /* cool highlight */
  --danger:#ff5b5b;
  --radius:18px;
  --max:1120px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color:var(--text);
  background:
    radial-gradient(1000px 700px at 20% 10%, rgba(215,184,106,.12), transparent 60%),
    radial-gradient(900px 600px at 80% 15%, rgba(158,209,255,.10), transparent 55%),
    radial-gradient(900px 900px at 50% 100%, rgba(255,255,255,.05), transparent 55%),
    var(--bg);
  line-height:1.5;
}

a{color:inherit; text-decoration:none}
a:hover{opacity:.92}
img{max-width:100%; display:block}

.container{max-width:var(--max); margin:0 auto; padding:0 20px}
.spacer{height:26px}

.skip-link{
  position:absolute; left:-999px; top:auto; width:1px; height:1px; overflow:hidden;
}
.skip-link:focus{
  left:20px; top:20px; width:auto; height:auto;
  padding:10px 12px; background:var(--panel); border:1px solid var(--line);
  border-radius:12px; z-index:9999;
}

.header{
  position:sticky; top:0; z-index:200;
  backdrop-filter: blur(10px);
  background: rgba(11,13,16,.65);
  border-bottom: 1px solid var(--line);
}
.header-inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
  gap:14px;
}
.brand{
  display:flex; align-items:center; gap:12px; min-width: 210px;
}
.brand-mark{
  width:38px; height:38px; border-radius:12px;
  background: linear-gradient(135deg, rgba(215,184,106,.22), rgba(158,209,255,.14));
  border:1px solid var(--line);
  box-shadow: var(--shadow);
  display:grid; place-items:center;
}
.brand-mark svg{opacity:.95}
.brand-name{
  font-weight:900;
  letter-spacing:.4px;
  line-height:1.05;
}
.brand-tag{
  font-size:12px; color:var(--muted); margin-top:2px;
}

.nav{
  display:flex; align-items:center; gap:10px;
}
.nav a{
  font-size:14px;
  color:var(--muted);
  padding:10px 12px;
  border-radius:12px;
}
.nav a.active, .nav a:hover{
  color:var(--text);
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.08);
}

.nav-toggle{
  display:none;
  padding:10px 12px;
  border-radius:12px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.06);
  color:var(--text);
}

.hero{
  padding:56px 0 26px;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:22px;
  align-items:stretch;
}
.card{
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.hero-main{ padding:26px; position:relative; overflow:hidden; }
.hero-main:before{
  content:"";
  position:absolute; inset:-2px;
  background:
    radial-gradient(700px 240px at 12% 10%, rgba(215,184,106,.18), transparent 60%),
    radial-gradient(650px 260px at 80% 0%, rgba(158,209,255,.14), transparent 60%);
  opacity:.9;
  pointer-events:none;
}
.hero-main > *{ position:relative; z-index:1; }

.kicker{
  display:inline-flex; align-items:center; gap:10px;
  padding:8px 12px;
  border:1px solid rgba(215,184,106,.25);
  background: rgba(215,184,106,.10);
  border-radius:999px;
  color:var(--text);
  font-size:13px;
}
.dot{
  width:8px; height:8px; border-radius:999px; background: var(--accent);
  box-shadow:0 0 18px rgba(215,184,106,.55);
}

h1{
  margin:14px 0 10px;
  font-size: clamp(30px, 4vw, 48px);
  line-height:1.05;
  letter-spacing:-.6px;
}
.lead{
  margin:0 0 18px;
  color:var(--muted);
  font-size: 16.5px;
  max-width: 60ch;
}
.cta-row{
  display:flex; flex-wrap:wrap; gap:12px;
  margin-top:18px;
}
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:12px 14px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  color:var(--text);
  font-weight:650;
  font-size:14px;
}
.btn:hover{ background: rgba(255,255,255,.09); }
.btn-primary{
  border-color: rgba(215,184,106,.35);
  background: linear-gradient(135deg, rgba(215,184,106,.22), rgba(215,184,106,.10));
}
.btn-primary:hover{ background: linear-gradient(135deg, rgba(215,184,106,.28), rgba(215,184,106,.12)); }
.btn-ghost{
  background: transparent;
  border-color: rgba(255,255,255,.14);
}

.hero-side{ padding:20px; display:flex; flex-direction:column; gap:12px; }
.stat{
  padding:14px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.20);
}
.stat .label{ color:var(--muted); font-size:12px; }
.stat .value{ font-weight:900; font-size:18px; margin-top:6px; }
.badge-row{ display:flex; flex-wrap:wrap; gap:10px; margin-top:8px; }
.badge{
  font-size:12px;
  padding:7px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  color:var(--muted);
}
.badge strong{color:var(--text); font-weight:800}

.section{
  padding:20px 0 46px;
}
.section h2{
  font-size: clamp(22px, 3vw, 30px);
  letter-spacing:-.4px;
  margin: 0 0 10px;
}
.section p{ color:var(--muted); margin:0 0 16px; }

.grid-3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.grid-2{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:14px;
}
.tile{
  padding:18px;
  border-radius: var(--radius);
  border:1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.18);
}
.tile h3{ margin:0 0 6px; font-size:16px; letter-spacing:-.2px; }
.tile p{ margin:0; color:var(--muted); font-size:14px; }

.media{
  border-radius: var(--radius);
  border:1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.18);
  overflow:hidden;
}
.media img{width:100%; height:260px; object-fit:cover; opacity:.95}
.media .cap{ padding:14px 16px; color:var(--muted); font-size:13px; }

.hr{
  height:1px; background: var(--line);
  margin:18px 0;
}
.footer{
  padding:30px 0 36px;
  border-top:1px solid var(--line);
  color:var(--muted);
  font-size:13px;
}
.footer a{color:var(--text)}
.footer-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:14px;
}
.small{
  font-size:12px; color:var(--muted);
}
.form{
  display:grid; gap:10px;
}
.input, textarea{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.25);
  color: var(--text);
  outline:none;
}
textarea{min-height:120px; resize:vertical}
.input:focus, textarea:focus{
  border-color: rgba(215,184,106,.45);
  box-shadow: 0 0 0 4px rgba(215,184,106,.10);
}

.notice{
  padding:14px 16px;
  border-radius: var(--radius);
  border:1px solid rgba(215,184,106,.25);
  background: rgba(215,184,106,.10);
  color: var(--muted);
}
.notice strong{color:var(--text)}

@media (max-width: 900px){
  .hero-grid{ grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: 1fr; }
  .grid-3{ grid-template-columns: 1fr; }
  .grid-2{ grid-template-columns: 1fr; }
  .nav{ display:none; }
  .nav-toggle{ display:inline-flex; }
  .nav.open{
    display:flex;
    position:absolute;
    top:66px; right:20px;
    flex-direction:column;
    padding:10px;
    border-radius:16px;
    border:1px solid rgba(255,255,255,.12);
    background: rgba(11,13,16,.92);
    box-shadow: var(--shadow);
    min-width: 210px;
  }
}
