/* Simple responsive styles */
:root{
  --bg:#0f1724;
  --card:#0b1220;
  --muted:#98a0b3;
  --accent:#7cc0ff;
  --text:#e6eef8;
  --radius:12px;
  font-family: 'Inter', 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, #071021 0%, #071426 100%);
  color:var(--text);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  line-height:1.5;
  padding:40px 20px;
}

.site{
  max-width:880px;
  margin:0 auto;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  border-radius:var(--radius);
  padding:32px;
  box-shadow: 0 8px 30px rgba(2,6,23,0.6);
  backdrop-filter: blur(6px);
}

.hero{
  text-align:center;
  margin-bottom:18px;
}

h1{
  margin:0;
  font-size:1.9rem;
  letter-spacing:-0.02em;
  color:var(--accent);
}

.tagline{
  margin:6px 0 0;
  color:var(--muted);
  font-weight:500;
}

.content{
  margin-top:18px;
}

section{
  background: rgba(255,255,255,0.02);
  padding:18px;
  border-radius:10px;
  margin-bottom:14px;
}

h2{
  margin:0 0 8px 0;
  font-size:1.05rem;
  color:#dbefff;
}

p, li{
  color:var(--muted);
  margin:0 0 8px 0;
}

ul{padding-left:18px; margin:0}

a{
  color:var(--accent);
  text-decoration:none;
  border-bottom: 1px dashed rgba(124,192,255,0.25);
}

a:hover{opacity:0.95}

.footer{
  text-align:center;
  margin-top:8px;
  color:var(--muted);
  font-size:0.9rem;
}
@media (min-width:720px){
  .site{padding:40px;}
  h1{font-size:2.4rem}
}