:root{
  --bg:#0b0f14;
  --card:#111826;
  --muted:#6b7280;
  --text:#e5e7eb;
  --heading:#f9fafb;
  --accent:#d4af37;
  --accent2:#3b82f6;
  --border:rgba(255,255,255,.08);
  --shadow: 0 10px 30px rgba(0,0,0,.35);
  --radius:18px;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Apple Color Emoji","Segoe UI Emoji";
  line-height:1.6;
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(59,130,246,.18), transparent 60%),
    radial-gradient(900px 500px at 90% 10%, rgba(212,175,55,.18), transparent 55%),
    var(--bg);
  color: var(--text);
}

a{color:inherit;text-decoration:none}
a:hover{opacity:.92}

.container{max-width:1060px;margin:0 auto;padding:0 18px}
header{
  position:sticky;top:0;z-index:50;
  backdrop-filter: blur(10px);
  background: rgba(11,15,20,.65);
  border-bottom:1px solid var(--border);
}
.navbar{
  display:flex;align-items:center;justify-content:space-between;
  padding:14px 0;
}
.brand{
  display:flex;align-items:center;gap:10px;
  font-weight:700;letter-spacing:.3px;
}
.brand-badge{
  width:34px;height:34px;border-radius:10px;
  background: linear-gradient(135deg, rgba(212,175,55,.95), rgba(59,130,246,.9));
  box-shadow: 0 10px 20px rgba(0,0,0,.35);
}
nav ul{list-style:none;display:flex;gap:14px;margin:0;padding:0;flex-wrap:wrap}
nav a{
  font-size:14px;color:rgba(229,231,235,.9);
  padding:8px 10px;border-radius:10px;
  border:1px solid transparent;
}
nav a:hover{border-color:var(--border);background:rgba(255,255,255,.03)}

.hero{
  padding:54px 0 22px;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:18px;
  align-items:stretch;
}
@media (max-width: 900px){
  .hero-grid{grid-template-columns:1fr}
}
.kicker{
  display:inline-flex;gap:10px;align-items:center;
  font-size:13px;color:rgba(229,231,235,.78);
  border:1px solid var(--border);
  padding:8px 12px;border-radius:999px;
  background:rgba(255,255,255,.03);
}
.kicker-dot{
  width:8px;height:8px;border-radius:50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(212,175,55,.12);
}
h1{
  font-size:44px;line-height:1.12;margin:14px 0 10px;color:var(--heading);
}
@media (max-width: 520px){
  h1{font-size:36px}
}
.lead{
  font-size:16px;color:rgba(229,231,235,.84);
  max-width:62ch;
}
.pills{display:flex;gap:10px;flex-wrap:wrap;margin:16px 0 18px}
.pill{
  font-size:13px;color:rgba(229,231,235,.8);
  border:1px solid var(--border);
  padding:7px 10px;border-radius:999px;background:rgba(255,255,255,.03);
}
.cta-row{display:flex;gap:12px;flex-wrap:wrap;margin-top:18px}
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:10px;
  padding:11px 14px;border-radius:12px;
  font-weight:650;font-size:14px;
  border:1px solid var(--border);
  background:rgba(255,255,255,.03);
  box-shadow: none;
}
.btn-primary{
  background: linear-gradient(135deg, rgba(212,175,55,.95), rgba(212,175,55,.55));
  color:#111827;border:none;
}
.btn-primary:hover{filter:brightness(1.03)}
.btn-ghost:hover{background:rgba(255,255,255,.06)}
.smallprint{
  margin-top:14px;
  font-size:12px;color:rgba(229,231,235,.65);
}

.card{
  border:1px solid var(--border);
  background: rgba(17,24,38,.62);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.card.pad{padding:18px}
.card h3{margin:0 0 10px;font-size:18px;color:var(--heading)}
.card p{margin:0;color:rgba(229,231,235,.78);font-size:14px}
.card ul{margin:10px 0 0;padding-left:18px;color:rgba(229,231,235,.78)}
.card li{margin:6px 0}

.section{padding:22px 0}
.section h2{
  margin:0 0 10px;
  font-size:24px;color:var(--heading);
}
.section .sub{
  margin:0 0 18px;
  color:rgba(229,231,235,.78);
  max-width:80ch;
}
.grid-3{
  display:grid;grid-template-columns:repeat(3,1fr);gap:14px;
}
@media (max-width: 900px){
  .grid-3{grid-template-columns:1fr}
}
.grid-2{
  display:grid;grid-template-columns:repeat(2,1fr);gap:14px;
}
@media (max-width: 900px){
  .grid-2{grid-template-columns:1fr}
}
hr.sep{
  border:none;border-top:1px solid var(--border);
  margin:22px 0;
}

footer{
  padding:26px 0 40px;
  border-top:1px solid var(--border);
  margin-top:24px;
}
.footer-grid{display:grid;grid-template-columns: 1.2fr .8fr;gap:16px}
@media (max-width: 900px){
  .footer-grid{grid-template-columns:1fr}
}
.footer-note{font-size:12px;color:rgba(229,231,235,.6)}
.footer-links a{display:inline-block;margin-right:10px;margin-top:8px;color:rgba(229,231,235,.78);font-size:13px}

.form{
  display:grid;gap:10px;
}
label{font-size:13px;color:rgba(229,231,235,.75)}
input, select, textarea{
  width:100%;
  padding:11px 12px;
  border-radius:12px;
  border:1px solid var(--border);
  background: rgba(11,15,20,.55);
  color: var(--text);
  outline:none;
}
textarea{min-height:120px;resize:vertical}
input:focus, select:focus, textarea:focus{border-color:rgba(212,175,55,.55)}
.form-row{display:grid;grid-template-columns:repeat(2,1fr);gap:10px}
@media (max-width: 700px){
  .form-row{grid-template-columns:1fr}
}
.notice{
  padding:12px 12px;border-radius:14px;
  border:1px solid rgba(212,175,55,.25);
  background: rgba(212,175,55,.08);
  color: rgba(229,231,235,.82);
  font-size:13px;
}
