:root{
  --bg:#0b1020;
  --panel:#0f1733;
  --panel2:#0a122a;
  --line:rgba(255,255,255,.08);
  --text:#e7ecff;
  --muted:rgba(231,236,255,.72);

  --accent:#7c3aed;   /* purple */
  --accent2:#06b6d4;  /* cyan */

  --good:#34d399;
  --warn:#fbbf24;
  --bad:#fb7185;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: Arial, Helvetica, sans-serif;
  color:var(--text);
  background:
    radial-gradient(1200px 800px at 15% 0%, rgba(124,58,237,.23), transparent 60%),
    radial-gradient(900px 700px at 90% 10%, rgba(6,182,212,.18), transparent 55%),
    var(--bg);
}

a{color:inherit;text-decoration:none}
button, input, select{font-family:inherit}

.wrap{
  max-width: 1480px;
  margin: 0 auto;
  padding: 18px;
  width: min(1480px, calc(100% - 36px));
}

.card{
  background: linear-gradient(180deg, rgba(15,23,51,.86), rgba(10,18,42,.76));
  border:1px solid var(--line);
  border-radius:18px;
  box-shadow: 0 20px 70px rgba(0,0,0,.45);
  padding:14px;
}

.h1{
  font-size:22px;
  font-weight:900;
  letter-spacing:-.2px;
  margin:10px 0 14px;
}

.grid2{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
}
@media (max-width: 900px){
  .grid2{grid-template-columns:1fr;}
}

.label{
  font-size:12px;
  opacity:.78;
  margin:0 0 6px;
  font-weight:900;
}

.hint{
  font-size:12px;
  color:var(--muted);
  line-height:1.45;
}

.mono{
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono","Courier New", monospace;
}

.input, .select{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  color:var(--text);
  outline:none;
}
.input::placeholder{color:rgba(231,236,255,.45)}
.input:focus, .select:focus{
  border-color: rgba(124,58,237,.65);
  box-shadow: 0 0 0 3px rgba(124,58,237,.18);
}

.row{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  align-items:center;
}
.right{text-align:right}

.btn{
  padding:12px 14px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.10);
  background: linear-gradient(135deg, rgba(124,58,237,.95), rgba(6,182,212,.70));
  color:#fff;
  font-weight:900;
  cursor:pointer;
}
.btn:hover{filter:brightness(1.05)}
.btn:disabled{opacity:.6;cursor:not-allowed}

.btn.gray{
  background: rgba(255,255,255,.06);
}

.pill{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.06);
  font-size:12px;
  font-weight:900;
}
.pill.good{border-color:rgba(52,211,153,.25);background:rgba(52,211,153,.12);color:var(--good)}
.pill.warn{border-color:rgba(251,191,36,.25);background:rgba(251,191,36,.12);color:var(--warn)}
.pill.bad{border-color:rgba(251,113,133,.25);background:rgba(251,113,133,.12);color:var(--bad)}

.divider{
  height:1px;
  background:rgba(255,255,255,.08);
  margin:12px 0;
}

.tableWrap{
  width:100%;
  overflow:auto;
  border-radius:16px;
  border:1px solid var(--line);
}
table{
  width:100%;
  border-collapse:collapse;
  min-width: 1050px;
  background: rgba(8,14,32,.35);
}
thead th{
  position:sticky;
  top:0;
  background: rgba(8,14,32,.78);
  font-size:12px;
  padding:12px;
  text-align:left;
  border-bottom:1px solid var(--line);
  white-space:nowrap;
}
tbody td{
  padding:12px;
  border-bottom:1px solid rgba(255,255,255,.06);
  font-size:13px;
  vertical-align:middle;
}
tbody tr:hover td{background: rgba(255,255,255,.03)}
.empty{padding:16px;font-size:13px;opacity:.75}

.pager{
  display:flex;
  justify-content:space-between;
  gap:10px;
  flex-wrap:wrap;
  margin-top:12px;
}
.pagebtn{
  padding:10px 12px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.06);
  cursor:pointer;
  font-weight:900;
  font-size:13px;
  min-width:44px;
  text-align:center;
  user-select:none;
}
.pagebtn:hover{background:rgba(255,255,255,.10)}
.pagebtn.active{background:rgba(124,58,237,.85)}
.pagebtn.disabled{opacity:.4;cursor:not-allowed}

.modal-backdrop{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.6);
  display:none;
  align-items:center;
  justify-content:center;
  z-index:3000;
  padding:16px;
}
.modal-backdrop.show{display:flex}
.modal{
  width:min(920px,100%);
  background: rgba(15,23,51,.95);
  border:1px solid rgba(255,255,255,.10);
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 30px 90px rgba(0,0,0,.65);
}
.modal-hd{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 16px;
  background: rgba(8,14,32,.78);
  border-bottom:1px solid rgba(255,255,255,.08);
}
.modal-hd .title{font-weight:900}
.modal-hd .close{
  width:40px;height:40px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.06);
  color:var(--text);
  cursor:pointer;
  font-size:18px;
}
.modal-bd{padding:14px 16px}
.detail-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
}
@media (max-width: 760px){ .detail-grid{grid-template-columns:1fr} }
.ditem{
  border:1px solid rgba(255,255,255,.08);
  border-radius:14px;
  background:rgba(255,255,255,.03);
  padding:12px;
}
.ditem .k{font-size:12px;opacity:.78;margin-bottom:6px;font-weight:900}
.ditem .v{font-size:14px;font-weight:900;word-break:break-all}


.landing-wrap{
  max-width:1480px;
  margin:0 auto;
  padding:24px 18px 0;
  width:min(1480px, calc(100% - 36px));
}
.hero-card{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:18px;
  align-items:stretch;
}
.hero-copy, .hero-panel, .info-card, .feature-card, .policy-card{
  background: linear-gradient(180deg, rgba(15,23,51,.86), rgba(10,18,42,.78));
  border:1px solid var(--line);
  border-radius:24px;
  box-shadow:0 24px 80px rgba(0,0,0,.42);
}
.hero-copy{padding:34px;position:relative;overflow:hidden}
.hero-copy:before{
  content:'';position:absolute;inset:auto -80px -120px auto;width:260px;height:260px;border-radius:50%;
  background:radial-gradient(circle, rgba(124,58,237,.34), rgba(124,58,237,0));
}
.eyebrow,.policy-eyebrow,.summary-kicker{
  display:inline-flex;align-items:center;gap:8px;padding:7px 12px;border-radius:999px;
  border:1px solid rgba(255,255,255,.08);background:rgba(255,255,255,.05);font-size:12px;font-weight:900;letter-spacing:.08em;
}
.hero-title{font-size:48px;line-height:1.12;letter-spacing:-1.4px;margin:18px 0 14px;font-weight:900}
.hero-desc{max-width:760px;font-size:17px;line-height:1.75;color:var(--muted);margin:0}
.hero-pills{display:flex;flex-wrap:wrap;gap:10px;margin-top:20px}
.hero-actions{display:flex;gap:12px;flex-wrap:wrap;margin-top:26px}
.hero-note{margin-top:16px;font-size:13px;color:var(--muted);line-height:1.6}
.hero-panel{padding:24px}
.summary-shell{height:100%;border-radius:20px;border:1px solid rgba(255,255,255,.08);background:linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));padding:20px}
.summary-head{display:flex;justify-content:space-between;align-items:flex-start;gap:12px}
.summary-title{font-size:22px;font-weight:900;margin-top:10px}
.summary-list{display:grid;gap:14px;margin-top:18px}
.summary-item{display:grid;grid-template-columns:54px 1fr;gap:14px;align-items:flex-start;padding:14px;border-radius:18px;background:rgba(255,255,255,.03);border:1px solid rgba(255,255,255,.06)}
.summary-no{width:54px;height:54px;border-radius:16px;display:flex;align-items:center;justify-content:center;font-size:18px;font-weight:900;background:linear-gradient(135deg, rgba(124,58,237,.9), rgba(6,182,212,.55));box-shadow:0 14px 40px rgba(124,58,237,.2)}
.summary-label{font-size:16px;font-weight:900;margin-bottom:6px}
.summary-text{font-size:13px;color:var(--muted);line-height:1.6}
.landing-section{margin-top:18px}
.feature-grid{display:grid;grid-template-columns:repeat(4, 1fr);gap:14px}
.feature-card{padding:20px}
.feature-icon{width:46px;height:46px;border-radius:14px;display:flex;align-items:center;justify-content:center;font-weight:900;background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.08)}
.feature-title{font-size:18px;font-weight:900;margin-top:18px}
.feature-desc{font-size:13px;color:var(--muted);line-height:1.7;margin-top:8px}
.info-card{padding:22px}
.section-title{font-size:20px;font-weight:900;margin-bottom:14px}
.info-grid{display:grid;grid-template-columns:1fr 1fr;gap:14px}
.info-box{border-radius:18px;border:1px solid rgba(255,255,255,.07);background:rgba(255,255,255,.03);padding:16px}
.landing-footer{padding:28px 18px 34px}
.landing-footer-inner{max-width:1480px;margin:0 auto;width:min(1480px, calc(100% - 36px));display:flex;justify-content:space-between;gap:16px;flex-wrap:wrap;align-items:center;border-top:1px solid rgba(255,255,255,.08);padding-top:20px}
.footer-brand{font-size:14px;font-weight:900}
.footer-copy{font-size:12px;color:var(--muted);margin-top:6px}
.footer-links{display:flex;gap:14px;flex-wrap:wrap}
.footer-links a,.landing-mini-links a{font-size:13px;color:var(--muted)}
.footer-links a:hover,.landing-mini-links a:hover{color:#fff}
.policy-wrap{padding-top:24px;padding-bottom:0}
.policy-card{padding:28px}
.policy-sections{display:grid;gap:14px;margin-top:20px}
.policy-section{padding:18px;border-radius:18px;border:1px solid rgba(255,255,255,.07);background:rgba(255,255,255,.03)}
.policy-section h2{margin:0 0 10px;font-size:18px}
.policy-section p{margin:0;color:var(--muted);font-size:14px;line-height:1.8}
@media (max-width: 1100px){
  .hero-card{grid-template-columns:1fr}
  .feature-grid{grid-template-columns:repeat(2, 1fr)}
}
@media (max-width: 760px){
  .hero-title{font-size:34px}
  .feature-grid,.info-grid{grid-template-columns:1fr}
  .hero-copy,.hero-panel,.policy-card{padding:20px}
  .landing-wrap{padding-top:18px}
}


.introHeader{position:sticky;top:0;z-index:2000;padding:14px 18px;border-bottom:1px solid rgba(255,255,255,.08);background:rgba(8,14,32,.72);backdrop-filter:blur(10px);display:flex;align-items:center;justify-content:space-between;gap:12px}
.introHeader .brand{display:flex;align-items:center;gap:12px;cursor:pointer;user-select:none}
.introHeader .logo{width:40px;height:40px;border-radius:14px;background:linear-gradient(135deg, rgba(124,58,237,.95), rgba(6,182,212,.70));display:flex;align-items:center;justify-content:center;font-weight:900;box-shadow:0 14px 40px rgba(124,58,237,.25)}
.introHeader .btxt .t1{font-size:13px;font-weight:900;letter-spacing:.3px}
.introHeader .btxt .t2{font-size:12px;opacity:.72;margin-top:2px}
.introNav{display:flex;gap:18px;align-items:center}
.introNav a{font-size:13px;opacity:.9;padding:8px 10px;border-radius:12px;border:1px solid transparent}
.introNav a:hover{opacity:1;color:#a78bfa}
@media (max-width: 900px){.introNav{display:none}}
