:root{
  --bg:#0b0b0d;
  --bg2:#111114;
  --text:#f3f3f4;
  --muted:#b8b8be;
  --card:#141418;
  --line:#2a2a31;
  --gold:#d7b46a;
  --gold2:#f0d8a0;
  --btn:#1f1f26;
  --shadow: 0 18px 60px rgba(0,0,0,.45);
  --radius: 18px;
  --w: 1120px;
  --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
}

*{ box-sizing:border-box; }
html,body{ margin:0; padding:0; font-family:var(--font); background:var(--bg); color:var(--text); }
a{ color:inherit; text-decoration:none; }

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

.header{
  position:sticky; top:0; z-index:10;
  backdrop-filter: blur(10px);
  background: rgba(11,11,13,.55);
  border-bottom: 1px solid rgba(42,42,49,.55);
}
.nav{ display:flex; align-items:center; justify-content:space-between; padding:14px 0; }
.brand{ display:flex; gap:12px; align-items:center; }
.mark{
  width:34px; height:34px; border-radius:12px;
  background: radial-gradient(circle at 30% 30%, var(--gold2), var(--gold));
  box-shadow: 0 10px 30px rgba(215,180,106,.25);
}
.brand-name{ font-weight:800; letter-spacing:.12em; font-size:14px; }
.brand-tag{ font-size:12px; color:var(--muted); margin-top:2px; }

.menu{ display:flex; gap:16px; align-items:center; }
.link{ color:var(--muted); font-size:13px; }
.link:hover{ color:var(--text); }

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 16px; border-radius:14px; border:1px solid var(--line);
  background: var(--btn); color:var(--text); font-weight:650;
  transition: transform .15s ease, border-color .15s ease, background .15s ease;
}
.btn:hover{ transform: translateY(-1px); border-color: rgba(215,180,106,.6); }
.btn-ghost{ background:transparent; }

.btn-primary{
  background: linear-gradient(180deg, rgba(215,180,106,.95), rgba(172,132,62,.95));
  color:#151515; border-color: transparent;
}
.btn-secondary{ background: rgba(255,255,255,.04); }

.hero{
  position:relative;
  padding: 54px 0 24px;
  overflow:hidden;
  background:
    radial-gradient(1200px 500px at 20% 0%, rgba(215,180,106,.16), transparent 60%),
    radial-gradient(900px 400px at 95% 30%, rgba(255,255,255,.06), transparent 55%);
}
.hero-grid{ display:grid; grid-template-columns: 1.05fr .95fr; gap:22px; align-items:start; }
.kicker{ color: var(--gold2); font-size:12px; letter-spacing:.18em; text-transform:uppercase; margin:0 0 10px; }
h1{ font-size:44px; line-height:1.05; margin:0 0 14px; }
.gold{ color: var(--gold2); }
.lead{ color:var(--muted); font-size:16px; line-height:1.6; margin:0 0 16px; }
.lead.small{ font-size:14px; }

.cta{ display:flex; gap:12px; flex-wrap:wrap; margin:18px 0 14px; }
.trust{ display:flex; gap:10px; flex-wrap:wrap; margin-top:14px; }
.pill{
  padding:8px 10px; border-radius:999px;
  border:1px solid rgba(42,42,49,.9);
  background: rgba(255,255,255,.03);
  color: var(--muted); font-size:12px;
}

.panel{
  border:1px solid rgba(42,42,49,.9);
  background: linear-gradient(180deg, rgba(20,20,24,.85), rgba(14,14,18,.85));
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.panel-top{
  display:flex; align-items:center; gap:8px;
  padding:12px 14px; border-bottom:1px solid rgba(42,42,49,.8);
  color: var(--muted); font-size:12px;
}
.dot{ width:10px; height:10px; border-radius:99px; background:rgba(255,255,255,.12); }
.panel-body{ padding:16px 16px 18px; }
.metric{ margin-bottom:12px; }
.metric-label{ color:var(--muted); font-size:12px; }
.metric-value{ font-weight:700; margin-top:4px; }
.divider{ height:1px; background: rgba(42,42,49,.8); margin:14px 0; }
.h3{ margin:0 0 10px; font-size:14px; color:var(--gold2); letter-spacing:.06em; text-transform:uppercase; }
.list{ margin:0; padding-left:18px; color:var(--muted); line-height:1.6; }
.list li{ margin:6px 0; }

.section{ padding: 44px 0; }
.section h2{ margin:0 0 12px; font-size:26px; }
.grid-3{ display:grid; grid-template-columns: repeat(3, 1fr); gap:14px; }
.grid-2{ display:grid; grid-template-columns: repeat(2, 1fr); gap:14px; }

.card{
  border:1px solid rgba(42,42,49,.9);
  background: rgba(255,255,255,.03);
  border-radius: var(--radius);
  padding:16px;
  box-shadow: 0 14px 40px rgba(0,0,0,.25);
}
.card-title{ font-weight:800; margin-bottom:8px; color: var(--gold2); }
.card.dark{ background: rgba(20,20,24,.65); }

.section-dark{
  background: linear-gradient(180deg, rgba(17,17,20,.95), rgba(11,11,13,1));
  border-top: 1px solid rgba(42,42,49,.55);
  border-bottom: 1px solid rgba(42,42,49,.55);
}

.form{
  margin-top: 14px;
  border:1px solid rgba(42,42,49,.9);
  background: rgba(255,255,255,.02);
  border-radius: var(--radius);
  padding: 16px;
}
.row{ display:grid; grid-template-columns: 1fr 1fr; gap:12px; }
label{ display:block; font-size:12px; color:var(--muted); }
input, textarea{
  width:100%;
  margin-top:6px;
  padding:12px 12px;
  border-radius: 14px;
  border:1px solid rgba(42,42,49,.9);
  background: rgba(0,0,0,.28);
  color: var(--text);
  outline:none;
}
input:focus, textarea:focus{ border-color: rgba(215,180,106,.7); }
.hint{ color: var(--muted); font-size:12px; margin-top:10px; }

.footer{
  border-top:1px solid rgba(42,42,49,.55);
  padding: 18px 0;
  color: var(--muted);
}
.foot{ display:flex; justify-content:space-between; gap:12px; flex-wrap:wrap; }
.muted{ color: var(--muted); }

.reveal{ opacity:0; transform: translateY(10px); transition: opacity .5s ease, transform .5s ease; }
.reveal.on{ opacity:1; transform: translateY(0); }

@media (max-width: 920px){
  .hero-grid{ grid-template-columns:1fr; }
  h1{ font-size:38px; }
  .grid-3{ grid-template-columns: 1fr; }
  .grid-2{ grid-template-columns: 1fr; }
  .row{ grid-template-columns: 1fr; }
}
