:root {
  --bg: #05141d;
  --bg-soft: #0b2230;
  --panel: #0f2a39;
  --line: rgba(255, 255, 255, 0.14);
  --text: #e9f5fb;
  --muted: #acc6d4;
  --accent: #26d8cd;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Sora", sans-serif;
  color: var(--text);
  background:
    radial-gradient(900px 500px at 10% -10%, #134560 0%, transparent 64%),
    radial-gradient(760px 420px at 100% 0%, #0e3850 0%, transparent 58%),
    var(--bg);
  line-height: 1.56;
}

a {
  color: #97dbff;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(5, 20, 29, 0.9);
  backdrop-filter: blur(9px);
}

.topbar-inner {
  width: min(1060px, calc(100% - 28px));
  margin: 0 auto;
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
  font-weight: 700;
}

.brand img {
  width: 72px;
  height: 28px;
  object-fit: contain;
}

.top-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.top-actions a {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  text-decoration: none;
  font-size: 0.82rem;
  padding: 6px 12px;
}

.top-actions a.active,
.top-actions a:hover {
  color: var(--text);
  border-color: rgba(38, 216, 205, 0.58);
}

main {
  width: min(980px, calc(100% - 28px));
  margin: 18px auto 44px;
  display: grid;
  gap: 12px;
}

.hero,
.card {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015));
  padding: 18px;
}

.hero {
  border-color: rgba(38, 216, 205, 0.4);
  background: linear-gradient(150deg, rgba(38, 216, 205, 0.14), rgba(110, 193, 255, 0.08));
}

h1,
h2,
h3,
p,
ul,
li {
  margin: 0;
}

h1 {
  font-size: clamp(1.6rem, 3.5vw, 2.3rem);
  line-height: 1.2;
}

h2 {
  font-size: 1.2rem;
}

h3 {
  font-size: 0.96rem;
}

.hero p,
.card p,
.card li {
  color: var(--muted);
  font-size: 0.92rem;
}

.hero p,
.card p {
  margin-top: 10px;
}

.kicker {
  color: #9fd8f3;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.74rem;
  font-weight: 700;
}

.badges {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.badge {
  border: 1px solid rgba(38, 216, 205, 0.4);
  border-radius: 999px;
  background: rgba(38, 216, 205, 0.14);
  color: #a6fff8;
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 9px;
}

.grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

ul {
  margin-top: 10px;
  padding-left: 18px;
  display: grid;
  gap: 6px;
}

.table-wrap {
  overflow-x: auto;
  margin-top: 10px;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
}

th,
td {
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
  padding: 10px;
  font-size: 0.86rem;
}

th {
  color: var(--text);
}

td {
  color: var(--muted);
}

.notice {
  margin-top: 10px;
  border: 1px solid rgba(255, 184, 96, 0.42);
  border-radius: 12px;
  background: rgba(255, 184, 96, 0.14);
  padding: 10px;
  color: #f3dfc4;
  font-size: 0.85rem;
}

.footer {
  border-top: 1px solid var(--line);
  padding: 16px;
  text-align: center;
  color: #a7c0cc;
  font-size: 0.82rem;
}

@media (max-width: 860px) {
  .grid {
    grid-template-columns: 1fr;
  }

  .topbar-inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 12px 0;
  }

  .top-actions {
    justify-content: flex-start;
  }
}
