:root{
  --bg:#2a2a2a;
  --panel:#333;
  --panel2:#2f2f2f;
  --text:#ffffff;
  --muted:#cfcfcf;
  --accent:orange;
  --border:#454545;
  --radius:10px;
  --max:1050px;
}

*{ box-sizing:border-box; }

body{
  margin:0;
  background:var(--bg);
  color:var(--text);
  font-family: Arial, sans-serif;
}

a{
  color:var(--accent);
  text-decoration:none;
}

a:hover{
  text-decoration:underline;
}

.wrap{
  max-width:var(--max);
  margin:0 auto;
  padding:20px 18px 70px;
}

/* NAV */
nav{
  display:flex;
  justify-content:center;
  gap:22px;
  padding:26px 0;
  border-bottom:1px solid var(--border);
  margin-bottom:28px;
  flex-wrap:wrap;
}

nav a{
  color:var(--muted);
}

nav a strong{
  color:#fff;
}

/* HERO */
.hero{
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:40px 20px;
  text-align:center;
}

.logo{
  width:min(720px, 92%);
  margin-bottom:18px;
}

h1{
  font-size:2.1rem;
  margin:10px 0 12px;
}

.sub{
  max-width:900px;
  margin:0 auto;
  color:var(--muted);
  line-height:1.65;
  font-size:1.05rem;
}

/* CTA */
.cta{
  margin-top:22px;
}

.btn{
  display:inline-block;
  background:var(--accent);
  color:#000;
  padding:12px 22px;
  border-radius:8px;
  font-weight:bold;
  text-decoration:none;
  border:1px solid rgba(0,0,0,0.25);
}

.btn:hover{
  text-decoration:none;
  filter:brightness(0.95);
}

/* SECTIONS */
.section{
  margin-top:30px;
  padding:24px 20px;
  border:1px solid var(--border);
  border-radius:var(--radius);
  background:var(--panel);
}

.section.alt{
  background:var(--panel2);
}

.section h2{
  color:var(--accent);
  margin:0 0 12px;
  font-size:1.3rem;
}

.grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:16px;
  margin-top:14px;
}

.card{
  background:#2f2f2f;
  border:1px solid var(--border);
  border-radius:12px;
  padding:18px 16px;
  line-height:1.55;
  color:var(--muted);
  font-size:0.95rem;
}

.card strong{
  color:#fff;
}

.listline{
  margin-top:10px;
  color:var(--muted);
  line-height:1.8;
}

.listline strong{
  color:#fff;
}

.chiprow{
  margin-top:12px;
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.chip{
  display:inline-block;
  padding:7px 10px;
  border-radius:999px;
  border:1px solid var(--border);
  background:#2b2b2b;
  color:var(--muted);
  font-size:0.9rem;
  line-height:1;
  white-space:nowrap;
}

/* Proof image */
.proofshot{
  margin-top:16px;
  border:1px solid var(--border);
  border-radius:12px;
  overflow:hidden;
  background:#2b2b2b;
}

.proofshot img{
  display:block;
  width:100%;
  height:auto;
}

.caption{
  margin:10px 0 0;
  color:#b8b8b8;
  font-size:0.9rem;
  line-height:1.5;
}

/* Footer */
footer{
  margin-top:40px;
  text-align:center;
  color:#9b9b9b;
  font-size:0.95rem;
  line-height:1.6;
}

footer .sep{
  padding:0 8px;
  color:#666;
}

@media (max-width:900px){
  h1{ font-size:1.7rem; }
  .grid{ grid-template-columns:1fr; }
  .wrap{ padding-top:14px; }
}
