
/* Minimal clean dark design inspired by modern landing pages */
:root{
  --bg:#0b0f12;
  --panel:#0f1720;
  --muted:#9aa4ad;
  --accent:#6ee7b7;
  --glass: rgba(255,255,255,0.04);
  --max-width:1000px;
  --radius:12px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  background:linear-gradient(180deg,var(--bg),#071019 120%);
  color:#e6eef3;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  line-height:1.6;
}

.container{
  width:90%;
  max-width:var(--max-width);
  margin:0 auto;
  padding:28px 0;
}

/* Header */
.site-header{
  background:linear-gradient(90deg, rgba(255,255,255,0.02), transparent);
  border-bottom:1px solid rgba(255,255,255,0.03);
  backdrop-filter: blur(6px);
  padding:20px 0;
}
.brand{
  margin:0;
  font-size:20px;
  letter-spacing:0.6px;
  font-weight:700;
}
.tag{ margin:4px 0 0 0; color:var(--muted); font-size:13px; }

/* Hero */
.main-content{ padding:36px 0 80px 0; }
.hero{
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  border-radius:var(--radius);
  padding:28px;
  box-shadow: 0 6px 30px rgba(2,6,23,0.6);
  margin-bottom:22px;
}
.hero h2{ margin:0 0 8px 0; font-size:28px; }
.lead{ color:var(--muted); margin:0 0 14px 0; }

.cta{
  display:inline-block;
  margin-top:8px;
  padding:10px 16px;
  border-radius:10px;
  text-decoration:none;
  background: linear-gradient(90deg, rgba(110,231,183,0.12), rgba(110,231,183,0.06));
  color:var(--accent);
  border:1px solid rgba(110,231,183,0.12);
  font-weight:600;
}

/* Sections */
.about, .how-to, .resources, .contact{
  margin:18px 0;
  background:var(--panel);
  padding:20px;
  border-radius:10px;
  border:1px solid rgba(255,255,255,0.02);
}
h3{ margin-top:0; color:#f3fbff; }
ul, ol{ margin-top:8px; padding-left:20px; color:var(--muted); }
li{ margin:6px 0; }

.site-footer{
  border-top:1px solid rgba(255,255,255,0.03);
  padding:20px 0;
  margin-top:40px;
  color:var(--muted);
  font-size:13px;
}
a{ color:var(--accent); text-decoration:none; }
a:hover{ text-decoration:underline; }

@media (max-width:600px){
  .hero h2{ font-size:20px; }
  .brand{ font-size:18px; }
}
