* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: "Roboto", "Noto Sans SC", "Microsoft YaHei", sans-serif;
  background: #e8eaf6;
  color: #1a237e;
  line-height: 1.75;
}

.box { width: min(1080px, calc(100% - 28px)); margin: 0 auto; }

.appbar {
  background: #1a237e;
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(26, 35, 126, 0.25);
}

.bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 60px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}

.go {
  background: #00c853;
  color: #053116;
  text-decoration: none;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 4px;
  box-shadow: 0 2px 0 #009624;
}

.go-lg { display: inline-block; margin-top: 8px; padding: 12px 22px; }

.hero {
  background: linear-gradient(180deg, #1a237e 0%, #3949ab 100%);
  color: #fff;
  padding: 40px 0 36px;
}

.tag {
  color: #c5cae9;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.hero h1 {
  font-size: clamp(26px, 4vw, 36px);
  line-height: 1.28;
  margin-bottom: 14px;
}

.hero p { color: #e8eaf6; margin-bottom: 10px; max-width: 46rem; }

.hub { padding: 22px 0 8px; margin-top: -28px; }

.tiles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.tiles a {
  background: #fff;
  color: #1a237e;
  text-decoration: none;
  min-height: 110px;
  border-radius: 8px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-weight: 700;
  box-shadow: 0 6px 18px rgba(26, 35, 126, 0.12);
}

.tiles a:hover { outline: 2px solid #3949ab; }

.tiles svg { color: #3949ab; }

.block { padding: 40px 0; }

.block.pale { background: #fff; }

.block h2 {
  font-size: 24px;
  margin-bottom: 12px;
}

.block p { margin-bottom: 12px; color: #283593; }

.bar-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: #1a237e;
  color: #fff;
  border-radius: 8px;
  overflow: hidden;
  margin-top: 12px;
}

.bar-steps div {
  padding: 18px 16px;
  position: relative;
}

.bar-steps div + div { box-shadow: inset 6px 0 0 #00c853; }

.bar-steps p { color: #c5cae9; margin: 6px 0 0; }

.two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.two article {
  background: #fff;
  border-top: 4px solid #00c853;
  padding: 16px;
  box-shadow: 0 4px 14px rgba(26, 35, 126, 0.08);
}

.two h3 { margin-bottom: 8px; }

.faq details {
  background: #e8eaf6;
  border-radius: 6px;
  padding: 10px 14px;
  margin-bottom: 8px;
}

.block.pale .faq details { background: #e8eaf6; }

.faq summary {
  cursor: pointer;
  font-weight: 700;
}

.faq details p { margin: 8px 0 4px; }

.end {
  background: #1a237e;
  color: #c5cae9;
  padding: 22px 0;
  font-size: 13px;
}

.end p { margin-bottom: 6px; }

@media (max-width: 860px) {
  .tiles { grid-template-columns: repeat(2, 1fr); }
  .bar-steps, .two { grid-template-columns: 1fr; }
}

.news-tiles-p { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.news-tiles-p li { background: #fff; border-radius: 4px; padding: 16px; box-shadow: 0 2px 0 #c5cae9; }
.news-tiles-p time { color: #00c853; font-size: 12px; font-weight: 700; }
.news-tiles-p h3 { margin: 6px 0 8px; }
@media (max-width: 800px) { .news-tiles-p { grid-template-columns: 1fr; } }

