:root{
  --bg:#0b0f14;
  --card:#0f1720;
  --muted:#a7b3c2;
  --text:#e9eef6;
  --line:rgba(255,255,255,.08);
  --shadow: 0 10px 30px rgba(0,0,0,.35);
  --radius:18px;
  --max: 980px;
}

*{box-sizing:border-box}
html,body{margin:0;height:100%}
body{
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", "Hiragino Sans", "Noto Sans JP", "Yu Gothic", Meiryo, Arial, sans-serif;
  background:
    radial-gradient(1200px 700px at 20% 10%, rgba(214,228,255,.10), transparent 55%),
    radial-gradient(900px 600px at 90% 30%, rgba(214,228,255,.08), transparent 50%),
    var(--bg);
  color: var(--text);
  line-height: 1.7;
  letter-spacing: .2px;
}

a{color:inherit}
.wrap{max-width:var(--max); margin:0 auto; padding:28px 18px 60px}

.header{
  display:flex; align-items:center; justify-content:space-between;
  padding:10px 2px 22px;
  gap:12px;
  flex-wrap:wrap;
}

.brand{
  display:flex; gap:10px; align-items:center; text-decoration:none;
  opacity:.95;
}

.mark{
  width:34px; height:34px; border-radius:10px;
  background: linear-gradient(135deg, rgba(214,228,255,.9), rgba(214,228,255,.25));
  box-shadow: var(--shadow);
}

.brandText b{font-size:14px; letter-spacing:.8px}
.brandText span{display:block; font-size:12px; color:var(--muted); margin-top:-2px}

.toplinks{display:flex; gap:12px; align-items:center; flex-wrap:wrap}
.toplinks a{
  font-size:12px; color:var(--muted); text-decoration:none;
  padding:8px 10px; border:1px solid transparent; border-radius:12px;
}
.toplinks a:hover{border-color:var(--line); color:var(--text)}

.hero{padding:26px 0 10px}
.hero h1{
  font-size:34px; line-height:1.25; margin:10px 0 14px;
  letter-spacing:.4px;
}
@media(min-width:860px){
  .hero h1{font-size:38px}
}

.lead{margin:0 0 16px; color:var(--muted); font-size:15px; max-width:70ch}

.badge{
  display:inline-flex; align-items:center; gap:8px;
  font-size:12px; color:var(--muted);
  border:1px solid var(--line); border-radius:999px;
  padding:7px 10px;
  background: rgba(255,255,255,.02);
}

.ctaRow{
  display:flex; flex-wrap:wrap; gap:12px; align-items:center;
  margin-top:18px;
}

.btn{
  appearance:none; border:1px solid var(--line); background:rgba(255,255,255,.03);
  color:var(--text); padding:12px 14px; border-radius:14px;
  text-decoration:none; display:inline-flex; gap:10px; align-items:center;
}
.btn:hover{border-color:rgba(214,228,255,.28); background:rgba(214,228,255,.06)}
.btnPrimary{
  border-color: rgba(214,228,255,.25);
  background: rgba(214,228,255,.10);
}
.btnPrimary:hover{
  border-color: rgba(214,228,255,.42);
  background: rgba(214,228,255,.14);
}

.kpi{display:flex; flex-wrap:wrap; gap:10px; margin-top:10px}
.kpi .chip{
  border:1px solid var(--line);
  border-radius:999px;
  padding:8px 10px;
  font-size:12px;
  color:var(--muted);
  background: rgba(255,255,255,.02);
}

.grid{
  display:grid;
  grid-template-columns: 1fr;
  gap:14px;
  margin-top:18px;
}
@media(min-width:860px){
  .grid{ grid-template-columns: 1.1fr .9fr; gap:16px; }
}

.card{
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.02));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding:18px 18px 16px;
  box-shadow: var(--shadow);
}

.section{margin-top:14px}

.card h2{font-size:16px; margin:0 0 10px; letter-spacing:.3px}
.card p{margin:0 0 10px; color:var(--muted); font-size:14px}

ul{margin:10px 0 0; padding-left:18px; color: var(--muted); font-size:14px}
li{margin:6px 0}

.steps{margin:10px 0 0; padding-left:18px; color:var(--muted); font-size:14px}
.steps li{margin:6px 0}

.sep{border:none; height:1px; background:var(--line); margin:18px 0}

.callout{
  border-left:3px solid rgba(214,228,255,.35);
  padding:10px 12px;
  background: rgba(214,228,255,.06);
  border-radius: 12px;
  color: var(--muted);
  font-size: 14px;
  margin-top: 12px;
}

.fine{font-size:12px; color:rgba(167,179,194,.85)}
.mono{font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;}

.smallLink{
  color:var(--muted);
  text-decoration:none;
  border-bottom:1px solid rgba(255,255,255,.12);
}
.smallLink:hover{color:var(--text); border-bottom-color:rgba(214,228,255,.35)}

.footer{
  margin-top:28px;
  padding-top:18px;
  border-top:1px solid var(--line);
  color: var(--muted);
  font-size:12px;
  display:flex; flex-wrap:wrap; gap:10px; align-items:center; justify-content:space-between;
}

.mt10{margin-top:10px}

.profileName{
  margin:0 0 6px;
  color: var(--text);
  font-size: 14px;
}
