:root{
  --bg: #0b0b0f;
  --bg-2:#12121a;
  --text:#f7f7fb;
  --muted:#b7b7c6;
  --gold:#d4af37;
  --gold-2:#b89222;
  --card:#0f0f16;
  --border:rgba(212,175,55,.22);
  --shadow: 0 14px 40px rgba(0,0,0,.45);
  --radius: 16px;
}

*{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;
  background: radial-gradient(900px 420px at 20% 0%, rgba(212,175,55,.12), transparent 60%),
              radial-gradient(700px 400px at 90% 10%, rgba(255,255,255,.06), transparent 55%),
              var(--bg);
  color:var(--text);
  line-height:1.5;
}

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

.container{
  width:min(1120px, calc(100% - 32px));
  margin:0 auto;
}

.nav{
  position:sticky; top:0; z-index:50;
  background: rgba(11,11,15,.7);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.nav-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 14px 0;
  gap: 16px;
}
.brand{
  display:flex; align-items:center; gap:12px;
}
.brand .title{
  display:flex; flex-direction:column; line-height:1.1;
}
.brand .title strong{font-size:14px; letter-spacing:.2px}
.brand .title span{font-size:12px; color:var(--muted)}
.logo{
  width:38px; height:38px;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,.4));
}

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

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding: 10px 14px;
  border-radius: 12px;
  font-weight:600;
  font-size: 13px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  color: var(--text);
  cursor:pointer;
}
.btn:hover{transform: translateY(-1px)}
.btn:active{transform: translateY(0px)}
.btn-gold{
  border: 1px solid rgba(212,175,55,.45);
  background: linear-gradient(180deg, rgba(212,175,55,.22), rgba(212,175,55,.10));
  color: var(--text);
}
.btn-outline{
  background: transparent;
  border: 1px solid rgba(212,175,55,.30);
  color: var(--text);
}

.hero{
  padding: 54px 0 28px;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 22px;
  align-items:stretch;
}
@media (max-width: 860px){
  .hero-grid{grid-template-columns:1fr}
}

.card{
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.card-pad{padding: 22px}

.kicker{
  display:inline-flex;
  gap:10px;
  align-items:center;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(212,175,55,.08);
  color: var(--text);
  font-size: 12px;
  letter-spacing:.2px;
}
.kicker .dot{
  width:8px; height:8px; border-radius:50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(212,175,55,.12);
}

h1{
  margin: 14px 0 10px;
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1.15;
}
p{margin: 0 0 12px; color: var(--muted)}
.lead{font-size: 15px; color: rgba(247,247,251,.82)}
.gold{color: var(--gold)}

.hero-actions{
  display:flex;
  gap: 10px;
  flex-wrap:wrap;
  margin-top: 16px;
}

.media{
  overflow:hidden;
}
.media img{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.08);
  opacity: .92;
}
.media .ph{
  height: 100%;
  min-height: 260px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius: var(--radius);
  border: 1px dashed rgba(212,175,55,.35);
  color: rgba(247,247,251,.70);
  background: rgba(255,255,255,.02);
}

.section{
  padding: 20px 0 50px;
}
.grid-3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
@media (max-width: 860px){
  .grid-3{grid-template-columns:1fr}
}

.feature h3{
  margin: 0 0 8px;
  font-size: 15px;
}
.feature p{margin:0}

.footer{
  padding: 26px 0;
  border-top: 1px solid rgba(255,255,255,.08);
  color: var(--muted);
  font-size: 12px;
}

.form{
  display:grid;
  gap: 10px;
}
.input, textarea{
  width:100%;
  padding: 11px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.04);
  color: var(--text);
  outline: none;
}
textarea{min-height: 120px; resize: vertical}
.small{font-size:12px; color: var(--muted)}
hr.sep{
  border:0;
  border-top:1px solid rgba(255,255,255,.08);
  margin: 16px 0;
}
