:root{
  --bg:#f7f8fa;
  --card:#ffffff;
  --text:#0f172a;
  --muted:#475569;
  --line:#e2e8f0;
  --navy:#0b2a4a;
  --green:#2f7d4e;
  --blue:#2563eb;
  --shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

*{ box-sizing:border-box; }
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height:1.6;
}

.container{
  max-width: 980px;
  margin: 0 auto;
  padding: 28px 18px 60px;
}

.header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding: 14px 16px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.brand{
  display:flex;
  align-items:center;
  gap:16px;
  font-weight:700;
  letter-spacing:-0.2px;
}

.brand img{
  height: 64px;
  width: auto;
  display: block;
  max-height: none;
  max-width: none;
}

@media (max-width: 640px){
  .brand img{
    height: 52px;
  }
}

.brand .name{ color: var(--navy); }
.brand .tag{ color: var(--muted); font-weight:500; font-size: 0.92rem; }

.nav a{
  margin-left: 14px;
  color: var(--muted);
  text-decoration:none;
  font-weight:600;
}
.nav a:hover{ color: var(--navy); }

.hero{
  margin-top: 22px;
  padding: 26px 22px;
  background: linear-gradient(180deg, rgba(11,42,74,0.05), rgba(47,125,78,0.03));
  border: 1px solid var(--line);
  border-radius: 18px;
}

h1{ font-size: 2.05rem; line-height:1.2; margin: 0 0 10px; letter-spacing:-0.4px; }
h2{ margin-top: 26px; letter-spacing:-0.2px; }
p{ margin: 10px 0; color: var(--muted); }

.card{
  margin-top: 18px;
  padding: 18px 18px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.btn{
  display:inline-block;
  margin-top: 12px;
  padding: 11px 14px;
  background: var(--navy);
  color:#fff;
  border-radius: 10px;
  text-decoration:none;
  font-weight:700;
}
.btn:hover{ opacity:0.92; }

.table{
  width:100%;
  border-collapse: collapse;
  overflow:hidden;
  border-radius: 12px;
  border: 1px solid var(--line);
}
.table th, .table td{
  padding: 12px 12px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.table th{
  background: rgba(15,23,42,0.03);
  text-align:left;
  color: var(--navy);
}
.badge{
  display:inline-block;
  padding: 2px 10px;
  border-radius: 999px;
  background: rgba(47,125,78,0.10);
  color: var(--green);
  font-weight: 700;
  font-size: 0.85rem;
}

footer{
  margin-top: 42px;
  color: var(--muted);
  font-size: 0.92rem;
}
.small{ font-size:0.92rem; color: var(--muted); }
