:root {
  font-family:
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: #182b23;
  background: #f4f5ef;
  font-synthesis: none;
  line-height: 1.6;
  --green: #216b42;
  --line: #d8ddd2;
  --muted: #667166;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
}
main {
  max-width: 1160px;
  margin: auto;
  padding: 0 40px;
}
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  padding: 27px 0;
}
.brand {
  font-size: 13px;
  letter-spacing: 0.14em;
  font-weight: 750;
  text-decoration: none;
}
.badge {
  font-size: 12px;
  border: 1px solid var(--line);
  padding: 5px 12px;
  border-radius: 20px;
}
.hero {
  padding: 64px 0 56px;
}
h1 {
  font-size: clamp(66px, 10vw, 112px);
  line-height: 0.98;
  letter-spacing: -0.065em;
  margin: 16px 0 26px;
  font-weight: 650;
}
.dot {
  color: var(--green);
}
.eyebrow {
  font-size: 11px;
  letter-spacing: 0.16em;
  font-weight: 750;
  color: var(--green);
}
.intro {
  font-size: 19px;
  color: var(--muted);
  line-height: 1.8;
}
.facts {
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
  margin: 32px 0;
}
dt {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 7px;
}
dd {
  margin: 0;
  font-size: 14px;
}
a {
  color: var(--green);
  text-underline-offset: 4px;
}
button,
.button {
  display: inline-block;
  background: var(--green);
  color: white;
  border: 0;
  border-radius: 5px;
  padding: 15px 24px;
  font: inherit;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
}
button:disabled {
  opacity: 0.45;
  cursor: default;
}
button:focus-visible,
a:focus-visible {
  outline: 3px solid #91b985;
  outline-offset: 4px;
}
[hidden] {
  display: none !important;
}
section:not(.hero) {
  padding: 34px 0 40px;
  border-top: 1px solid var(--line);
}
h2 {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.025em;
  margin: 0 0 14px;
}
.section-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
}
.section-heading span {
  font-size: 14px;
}
.section-heading strong {
  color: var(--green);
  font-size: 21px;
}
.subtle {
  font-size: 13px;
  color: var(--muted);
}
.mono {
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 12px;
}
.wrap {
  overflow-wrap: anywhere;
}
.table-scroll {
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 6px;
  margin: 20px 0;
}
table {
  border-collapse: collapse;
  width: 100%;
  font-size: 13px;
  text-align: left;
}
th {
  background: #eaeee4;
  font-weight: 600;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.03em;
}
th,
td {
  padding: 13px 17px;
  border-bottom: 1px solid var(--line);
  white-space: nowrap;
}
tr:last-child td {
  border-bottom: 0;
}
.long {
  min-width: 180px;
  max-width: 350px;
  white-space: normal;
  overflow-wrap: anywhere;
}
.empty {
  padding: 26px 0;
  color: var(--muted);
}
.error {
  color: #a33128;
  font-size: 14px;
  overflow-wrap: anywhere;
}
.error:empty {
  display: none;
}
footer {
  border-top: 1px solid var(--line);
  padding: 23px 0 32px;
  font-size: 12px;
  color: var(--muted);
}
.registration {
  max-width: 840px;
}
.registration h1 {
  font-size: 86px;
}
.identity {
  border: 1px solid var(--line);
  background: #eaeee4;
  border-radius: 6px;
  padding: 16px 22px;
  margin: 30px 0;
}
.identity p {
  margin: 6px 0 0;
  font-weight: 600;
}
.steps {
  list-style: none;
  counter-reset: steps;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 0;
  margin: 30px 0;
}
.steps li {
  counter-increment: steps;
  font-size: 13px;
  color: var(--muted);
}
.steps li:before {
  content: counter(steps);
  display: inline-grid;
  place-items: center;
  width: 23px;
  height: 23px;
  border: 1px solid var(--line);
  border-radius: 50%;
  margin-right: 9px;
}
.steps li.complete {
  color: var(--green);
}
.steps li.complete:before {
  content: "✓";
  background: var(--green);
  color: white;
  border-color: var(--green);
}
@media (max-width: 600px) {
  main {
    padding: 0 20px;
  }
  .hero {
    padding: 42px 0;
  }
  .registration h1 {
    font-size: 64px;
  }
  .facts {
    gap: 22px;
  }
  .facts dd {
    overflow-wrap: anywhere;
  }
  .facts div {
    max-width: 100%;
  }
  .section-heading {
    display: block;
  }
  .steps {
    grid-template-columns: 1fr;
  }
  .intro {
    font-size: 16px;
  }
  .badge {
    font-size: 10px;
  }
  .brand {
    font-size: 11px;
  }
}

.ranking-method {
  margin-top: 28px;
}
.ranking-method h3 {
  font-size: 16px;
  font-weight: 600;
  margin: 20px 0 10px;
}
.formula {
  padding: 14px 16px;
  background: #eaeee4;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-size: 12px;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}
