/* OnePager Brand Factory — minimal, fast, readable */
/* Generated sites aim for clean CWV: no heavy JS, no external fonts */

:root{
  --bg:#0b1020;
  --card:#111a33;
  --text:#e9eefc;
  --muted:#b9c3e6;
  --accent:#7aa2ff;
  --accent2:#6ef3c5;
  --border:rgba(255,255,255,.10);
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: system-ui,-apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  background: radial-gradient(1200px 800px at 20% 10%, rgba(122,162,255,.22), transparent 60%),
              radial-gradient(900px 700px at 80% 0%, rgba(110,243,197,.16), transparent 55%),
              var(--bg);
  color:var(--text);
  line-height:1.55;
}

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

.container{max-width:980px;margin:0 auto;padding:0 16px}

.site-header{
  position:sticky; top:0; z-index:10;
  background:rgba(11,16,32,.78);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--border);
}

.header-inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:12px 0;
  gap:12px;
}

.brand{
  display:flex; align-items:center; gap:10px;
  font-weight:700;
  letter-spacing:.2px;
}

.brand img{width:28px;height:28px;border-radius:6px;border:1px solid var(--border); background:#0f1730}

.nav a{
  margin-left:12px;
  color:var(--muted);
  font-size:14px;
}
.nav a:hover{color:var(--text)}

.hero{
  padding:28px 0 6px 0;
}

.hero-grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:18px;
  align-items:start;
}
@media (max-width: 820px){
  .hero-grid{grid-template-columns:1fr}
}

.h1{
  font-size:34px;
  line-height:1.12;
  margin:0 0 10px 0;
}
.meta-desc{
  color:var(--muted);
  margin:0 0 16px 0;
  font-size:16px;
}

.card{
  background:rgba(17,26,51,.78);
  border:1px solid var(--border);
  border-radius:14px;
  padding:16px;
  box-shadow: 0 8px 30px rgba(0,0,0,.24);
}

.card h2, .card h3{margin:0 0 10px 0}

.kta ul{margin:10px 0 0 0; padding-left:18px}
.kta li{margin:6px 0; color:var(--text)}

.badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size:12px;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid var(--border);
  color:var(--muted);
}

.official{
  display:flex;
  flex-direction:column;
  gap:10px;
}
.official .btn{
  display:inline-flex; align-items:center; justify-content:center;
  background:linear-gradient(90deg, rgba(122,162,255,.95), rgba(110,243,197,.85));
  color:#071026;
  padding:10px 14px;
  border-radius:12px;
  font-weight:800;
  border:0;
  text-decoration:none;
}
.official .btn:hover{text-decoration:none; filter:brightness(1.05)}

.small{
  font-size:13px;
  color:var(--muted);
}

.section{
  margin:18px 0;
}

.section h2{
  font-size:22px;
  margin:0 0 10px 0;
}

.section p{
  margin:8px 0;
  color:var(--text);
}

.section ul{margin:10px 0 0 0; padding-left:18px}
.section li{margin:6px 0; color:var(--text)}

.table{
  width:100%;
  border-collapse:collapse;
  margin-top:8px;
  overflow:hidden;
  border-radius:12px;
  border:1px solid var(--border);
}
.table td{
  padding:10px 12px;
  border-bottom:1px solid var(--border);
}
.table tr:last-child td{border-bottom:0}
.table td:first-child{color:var(--muted); width:38%}

.callout{
  margin-top:10px;
  padding:12px 12px;
  border-radius:12px;
  border:1px dashed rgba(122,162,255,.65);
  color:var(--muted);
  background:rgba(122,162,255,.08);
}

.faq details{
  border:1px solid var(--border);
  border-radius:12px;
  padding:10px 12px;
  margin:10px 0;
  background:rgba(17,26,51,.60);
}
.faq summary{
  cursor:pointer;
  font-weight:700;
}
.faq summary::-webkit-details-marker{display:none}
.faq p{margin:8px 0 0 0; color:var(--muted)}

.footer{
  margin-top:26px;
  border-top:1px solid var(--border);
  padding:18px 0;
  color:var(--muted);
  font-size:13px;
}
.footer a{color:var(--muted)}
.footer a:hover{color:var(--text)}

.note-top{
  margin-top:10px;
  font-size:13px;
  color:var(--muted);
}
