:root{
  --bg:#0B0D12; --fg:#E7E9EE; --text-2:#9AA3B2;
  --brand:#20BCFA; --brand-600:#1aa7df; --brand-700:#138fbe;
  --accent:#55727D; --surface:#11141a; --stroke:rgba(255,255,255,.10); --ink:#042430;
}
html,body{height:100%}
body{ margin:0; background:var(--bg); color:var(--fg);
  font:16px/1.6 "Kanit",system-ui,-apple-system,"Segoe UI",Roboto,Arial,sans-serif; }
a{color:var(--brand)} a:hover{text-decoration:underline}
.header{display:flex;align-items:center;gap:16px;padding:16px 24px}
.header__brand{display:flex;align-items:center;gap:12px;text-decoration:none;color:inherit}
.header__brand img{height:40px;display:block;border-radius:8px}
.header__spacer{height:1px;background:var(--stroke);margin:0 24px}
.wrap{max-width:1080px;margin:0 auto;padding:32px 24px}
.card{background:var(--surface);border:1px solid var(--stroke);border-radius:16px;padding:32px}
.h1{font-size:clamp(28px,5vw,44px);margin:0 0 12px;font-weight:700;letter-spacing:.01em}
.muted{color:var(--text-2)}
.row{display:flex;gap:12px;flex-wrap:wrap;margin-top:12px}
.input{flex:1;min-width:220px;padding:12px 14px;border-radius:12px;border:1px solid var(--stroke);background:transparent;color:var(--fg)}
.btn{display:inline-block;padding:.8rem 1rem;border-radius:12px;border:1px solid transparent;background:var(--brand);color:var(--ink);font-weight:700}
.btn:hover{background:var(--brand-600)} .btn:active{background:var(--brand-700)}
.btn.ghost{background:transparent;color:var(--fg);border-color:var(--stroke)}
.badge{display:inline-block;padding:.35rem .6rem;border-radius:.5rem;background:var(--accent);color:#0b1216;border:1px solid rgba(0,0,0,.05)}
