* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: auto;
}

body {
  background: #0B1D36;
  color: #E8EEF4;
  font-family: "Trebuchet MS", "PingFang SC", "Microsoft YaHei", sans-serif;
  line-height: 1.7;
}

a {
  color: #C4F542;
  text-decoration: none;
}

a:hover {
  color: #e6ff9a;
}

.shell {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.bar {
  background: #081627;
  border-bottom: 1px solid #1c3554;
}

.bar-row {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.mark {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #E8EEF4;
  font-size: 18px;
  font-weight: 700;
}

.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.pills a {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background: #12263F;
  color: #E8EEF4;
  font-size: 13px;
}

.pills a:hover,
.pills a:focus {
  background: #C4F542;
  color: #0B1D36;
}

.hero {
  padding: 48px 0 32px;
}

.status {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 32px;
}

.status article {
  background: #12263F;
  border-radius: 20px;
  padding: 16px 18px;
}

.status span {
  display: block;
  color: #C4F542;
  font-size: 13px;
  margin-bottom: 6px;
}

.hero h1 {
  font-size: 34px;
  line-height: 1.35;
  margin-bottom: 16px;
  max-width: 860px;
}

.hero p {
  max-width: 820px;
  margin-bottom: 12px;
  color: #c5d0dc;
}

.chunk {
  padding: 48px 0;
}

.chunk h2 {
  font-size: 24px;
  margin-bottom: 10px;
}

.blurb {
  color: #c5d0dc;
  margin-bottom: 24px;
  max-width: 780px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.cell {
  background: #12263F;
  border-radius: 20px;
  padding: 20px;
}

.cell svg {
  width: 36px;
  height: 36px;
  color: #C4F542;
}

.cell h3 {
  margin: 12px 0 8px;
  font-size: 17px;
}

.cell p {
  color: #c5d0dc;
  font-size: 14px;
}

.num-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.num-card {
  background: #12263F;
  border-radius: 20px;
  padding: 20px;
}

.num {
  font-size: 40px;
  color: #C4F542;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 10px;
}

.num-card h3 {
  margin-bottom: 8px;
}

.num-card p {
  color: #c5d0dc;
}

.sheet {
  width: 100%;
  border-collapse: collapse;
  background: #12263F;
  border-radius: 20px;
  overflow: hidden;
}

.sheet th,
.sheet td {
  text-align: left;
  padding: 14px 16px;
  border-bottom: 1px solid #1c3554;
  vertical-align: top;
  font-size: 14px;
}

.sheet th {
  color: #C4F542;
  font-weight: 600;
}

.sheet tr:last-child td {
  border-bottom: none;
}

.duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.ask {
  margin-bottom: 12px;
  background: #12263F;
  border-radius: 20px;
  padding: 16px 20px;
}

.ask summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

.ask summary::-webkit-details-marker {
  display: none;
}

.ask[open] summary {
  color: #C4F542;
}

.ask p {
  margin-top: 10px;
  color: #c5d0dc;
}

.bottom {
  background: #06101f;
  padding: 28px 0;
}

.bottom p {
  font-size: 14px;
  color: #c5d0dc;
  margin-bottom: 10px;
}

@media (max-width: 900px) {
  .status,
  .grid-4,
  .num-row,
  .duo,
  .bar-row {
    grid-template-columns: 1fr 1fr;
  }

  .bar-row {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 14px 0;
  }

  .hero h1 {
    font-size: 26px;
  }
}

@media (max-width: 640px) {
  .status,
  .grid-4,
  .num-row,
  .duo {
    grid-template-columns: 1fr;
  }

  .grid-4 {
    grid-template-columns: 1fr 1fr;
  }
}
