:root{
  --bg0:#07080b;
  --bg1:#0b0d12;
  --text:#f2f2f2;
  --muted:rgba(242,242,242,.72);
  --line: rgba(255,255,255,.10);
  --gold:#caa55a;
  --shadow: 0 20px 60px rgba(0,0,0,.55);
  --radius: 18px;
  --radius2: 28px;
  --max: 1120px;
}

*{box-sizing:border-box}
body{
  margin:0;
  font-family: system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial;
  color:var(--text);
  background:
    radial-gradient(1200px 800px at 80% 10%, rgba(202,165,90,.12), transparent 55%),
    linear-gradient(180deg,var(--bg0),var(--bg1));
}

a{color:inherit;text-decoration:none}
.wrap{max-width:var(--max);margin:auto;padding:28px 22px 80px}

header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:40px;
}

nav a{
  margin-left:14px;
  color:var(--muted);
  font-size:.95rem;
}

nav a:hover{color:var(--text)}

.btn{
  padding:10px 16px;
  border-radius:14px;
  border:1px solid rgba(202,165,90,.45);
  background:rgba(202,165,90,.15);
  font-weight:700;
}

.panel{
  background:rgba(255,255,255,.04);
  border:1px solid var(--line);
  border-radius:var(--radius2);
  padding:32px;
  margin-bottom:42px;
}

h1{
  font-size:clamp(2.2rem,4vw,3.2rem);
  margin:0 0 14px;
}

h2{margin-top:0}
p{line-height:1.6;color:var(--muted)}

img{max-width:100%;border-radius:18px}

.grid2{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:32px;
}

@media(max-width:900px){
  .grid2{grid-template-columns:1fr}
}
