:root {
  --ink: #171717;
  --muted: #5d646b;
  --paper: #fbfaf4;
  --panel: #ffffff;
  --soft: #f0eee3;
  --line: #d8d4c7;
  --line-strong: #191919;
  --sun: #ffd43b;
  --coral: #ff684c;
  --teal: #159a8c;
  --blue: #365dff;
  --ok: #207a55;
  --block: #b73635;
  --shadow: 0 16px 40px rgba(17, 17, 17, 0.09);
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(21, 154, 140, 0.055) 1px, transparent 1px),
    linear-gradient(180deg, rgba(54, 93, 255, 0.045) 1px, transparent 1px),
    var(--paper);
  background-size: 42px 42px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.58;
  overflow-x: hidden;
}

a {
  color: inherit;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 5;
  color: #fffdf4;
  background: rgba(17, 17, 17, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.topbar-inner,
.wrap,
.hero-inner,
.notice-inner {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.topbar-inner {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: 0;
}

.brand::before {
  width: 12px;
  height: 12px;
  background: var(--sun);
  border: 2px solid #fffdf4;
  border-radius: 50%;
  content: "";
}

.nav {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 14px;
}

.nav a {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  color: #e8e2d4;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 6px;
}

.nav a:hover {
  color: #111;
  background: var(--sun);
  border-color: var(--sun);
}

.notice {
  background: #fff1a6;
  color: #151515;
  font-size: 14px;
  border-bottom: 1px solid #e4c955;
}

.notice-inner {
  padding-top: 9px;
  padding-bottom: 9px;
  overflow-wrap: anywhere;
  white-space: normal;
}

.hero {
  position: relative;
  overflow: hidden;
  color: #fffdf4;
  background:
    repeating-linear-gradient(135deg, rgba(255, 212, 59, 0.16) 0 10px, transparent 10px 22px),
    linear-gradient(120deg, #121212 0%, #1c1b18 58%, #2a201c 100%);
  border-bottom: 3px solid var(--line-strong);
}

.hero::after {
  position: absolute;
  top: 48px;
  right: max(24px, calc((100vw - 1120px) / 2));
  width: 286px;
  height: 190px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(90deg, transparent 0 46%, rgba(255, 212, 59, 0.95) 46% 54%, transparent 54%),
    linear-gradient(0deg, transparent 0 44%, rgba(255, 104, 76, 0.9) 44% 56%, transparent 56%),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.1) 0 8px, transparent 8px 16px),
    rgba(255, 255, 255, 0.06);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.32);
  content: "";
  transform: rotate(-2deg);
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding-top: 72px;
  padding-bottom: 66px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  color: #111;
  background: var(--sun);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  line-height: 1.13;
  margin: 0;
  letter-spacing: 0;
}

h1 {
  max-width: 720px;
  margin-top: 18px;
  font-size: 64px;
  overflow-wrap: anywhere;
  word-break: normal;
  white-space: normal;
}

h2 {
  font-size: 28px;
  margin-bottom: 16px;
}

h3 {
  font-size: 19px;
  margin-bottom: 10px;
}

p {
  margin: 0;
}

main {
  overflow-x: hidden;
}

.hero p {
  max-width: 650px;
  margin-top: 18px;
  color: #efe7d6;
  font-size: 19px;
  overflow-wrap: anywhere;
  white-space: normal;
}

.hero-actions,
.hero-status {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.hero-status {
  max-width: 820px;
}

.hero-status div {
  min-width: 166px;
  flex: 1 1 166px;
  padding: 14px;
  background: rgba(255, 253, 244, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
}

.hero-status strong {
  display: block;
  color: var(--sun);
  font-size: 13px;
  text-transform: uppercase;
}

.hero-status span {
  display: block;
  margin-top: 4px;
  color: #fffdf4;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  color: #101010;
  background: var(--sun);
  border: 1px solid var(--sun);
  border-radius: 6px;
  font-weight: 850;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(255, 212, 59, 0.18);
}

.button.secondary {
  color: #fffdf4;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.38);
  box-shadow: none;
}

.button:hover {
  transform: translateY(-1px);
}

.band {
  padding: 52px 0;
}

.band.alt {
  background: #eeece2;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.answer {
  position: relative;
  padding: 20px 20px 20px 24px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-left: 7px solid var(--teal);
  border-radius: 8px;
  box-shadow: var(--shadow);
  margin-bottom: 24px;
}

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

.tile,
.panel,
.status-card {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 26px rgba(17, 17, 17, 0.06);
  padding: 20px;
}

.tile {
  position: relative;
  overflow: hidden;
  min-height: 156px;
  text-decoration: none;
}

.tile::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--sun), var(--coral), var(--teal), var(--blue));
  content: "";
}

.tile:hover {
  border-color: #171717;
  transform: translateY(-2px);
}

.tile h2 {
  margin-bottom: 9px;
  font-size: 21px;
  overflow-wrap: anywhere;
}

.tile p,
.panel p,
.status-card p,
li {
  color: var(--muted);
  overflow-wrap: anywhere;
}

.status-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 22px 0;
}

.status-card strong {
  display: block;
  color: var(--muted);
  font-size: 14px;
}

.status-card span {
  display: block;
  margin-top: 8px;
  font-size: 22px;
  font-weight: 900;
}

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

.status-table {
  width: 100%;
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  border-collapse: separate;
  border-spacing: 0;
  box-shadow: var(--shadow);
}

.status-table th,
.status-table td {
  padding: 15px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.status-table th {
  color: #fffdf4;
  background: #171717;
}

.status-table tr:last-child th,
.status-table tr:last-child td {
  border-bottom: 0;
}

.tag {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  color: var(--ink);
  background: #ece7d6;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 850;
}

.tag.ok {
  color: #fff;
  background: var(--ok);
}

.tag.block {
  color: #fff;
  background: var(--block);
}

.check-list {
  padding-left: 20px;
  margin: 0;
}

.check-list li {
  margin: 8px 0;
}

.source-note {
  margin-top: 20px;
  padding: 14px 16px;
  color: #102f2b;
  background: #dff4ef;
  border: 1px solid #9fd8cc;
  border-radius: 8px;
}

.footer {
  padding: 28px 0;
  color: #e9e1d1;
  background: #151515;
  border-top: 1px solid var(--line-strong);
  font-size: 14px;
}

.footer a {
  color: #fff5b8;
}

@media (max-width: 980px) {
  .hero::after {
    opacity: 0.28;
    right: 20px;
    width: 210px;
  }

  h1 {
    font-size: 48px;
  }

  .grid,
  .status-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 780px) {
  .topbar,
  .notice,
  .hero,
  .band,
  .footer {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .topbar-inner,
  .wrap,
  .hero-inner,
  .notice-inner {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding-left: 16px;
    padding-right: 16px;
  }

  .topbar-inner {
    min-height: 0;
    align-items: flex-start;
    flex-direction: column;
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .nav {
    width: 100%;
    gap: 6px;
  }

  .nav a {
    min-height: 32px;
    padding: 0 8px;
    font-size: 13px;
  }

  .hero::after {
    display: none;
  }

  .hero-inner {
    padding-top: 46px;
    padding-bottom: 46px;
  }

  h1 {
    font-size: 34px;
    line-height: 1.16;
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  h2 {
    font-size: 24px;
  }

  .hero p {
    font-size: 15px;
    word-break: break-word;
  }

  .eyebrow,
  .notice-inner {
    font-size: 12px;
  }

  .button {
    width: 100%;
  }

  .hero-status div,
  .answer,
  .panel,
  .tile,
  .status-card,
  .status-table {
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .hero-status {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .hero-status div {
    min-width: 0;
    width: 100%;
  }

  .grid,
  .status-cards,
  .split {
    grid-template-columns: 1fr;
  }

  .status-table {
    font-size: 14px;
  }
}
