@font-face {
  font-family: "Baloo 2";
  src: url("fonts/baloo-2-latin-400-normal.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Baloo 2";
  src: url("fonts/baloo-2-latin-500-normal.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Baloo 2";
  src: url("fonts/baloo-2-latin-600-normal.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Baloo 2";
  src: url("fonts/baloo-2-latin-700-normal.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  color-scheme: light;
  --navy: #0E1D2C;
  --navy-soft: #2c3a52;
  --navy-deep: #0E1D2C;
  --gold: #F5B000;
  --gold-dark: #B98600;
  --bg: #F7F5F0;
  --surface: #ffffff;
  --surface-soft: #f8fafc;
  --text: #253247;
  --muted: #657287;
  --border: #E0E8F0;
  --green: #1BA34A;
  --green-dark: #15833B;
  --green-soft: #E7F5EC;
  --shadow: 0 18px 48px rgba(17, 24, 39, 0.11);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Satoshi", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0 0 auto;
  z-index: -1;
  height: 300px;
  background: var(--green);
}

a {
  color: var(--green-dark);
  font-weight: 800;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}

a:hover {
  color: var(--navy);
}

a:focus-visible {
  outline: 3px solid rgba(27, 163, 74, 0.35);
  outline-offset: 3px;
}

.site-header {
  background: var(--green);
  color: #fff;
  border-bottom: 4px solid var(--gold);
}

.header-inner,
.content,
.site-footer {
  width: min(980px, calc(100% - 32px));
  margin: 0 auto;
}

.header-inner {
  padding: 24px 0 34px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: #fff;
  text-decoration: none;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24);
}

.brand-copy {
  display: grid;
  gap: 1px;
}

.brand-text {
  font-family: "Baloo 2", "Satoshi", system-ui, sans-serif;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: 0;
}

.brand-subtitle {
  color: #c9d4e5;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

.nav a {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #dfe7f3;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  padding: 7px 12px;
  background: rgba(255, 255, 255, 0.06);
  font-size: 14px;
  font-weight: 850;
}

.nav a:hover,
.nav a.active {
  color: var(--green-dark);
  border-color: #fff;
  background: #fff;
}

.hero {
  max-width: 760px;
  padding: 30px 0 8px;
}

h1 {
  margin: 0 0 10px;
  color: #fff;
  font-family: "Baloo 2", "Satoshi", system-ui, sans-serif;
  font-size: 44px;
  line-height: 1.08;
  letter-spacing: 0;
}

.subtitle {
  max-width: 720px;
  margin: 0;
  color: #d8e1ef;
  font-size: 17px;
  line-height: 1.55;
}

.content {
  padding: 28px 0 48px;
}

.card {
  position: relative;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px 24px 24px 26px;
  margin-bottom: 16px;
  box-shadow: var(--shadow);
}

.card::before {
  content: "";
  position: absolute;
  top: 18px;
  bottom: 18px;
  left: 0;
  width: 4px;
  border-radius: 0 4px 4px 0;
  background: var(--green);
}

.card:first-child {
  border-top: 4px solid var(--green);
}

.card:first-child::before {
  display: none;
}

.meta {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin: 0 0 10px;
  border: 1px solid #efd78f;
  border-radius: 999px;
  padding: 3px 10px;
  background: #fff8e3;
  color: #6f540d;
  font-size: 13px;
  font-weight: 850;
}

h2 {
  margin: 0 0 10px;
  color: var(--navy);
  font-family: "Baloo 2", "Satoshi", system-ui, sans-serif;
  font-size: 22px;
  line-height: 1.25;
  letter-spacing: 0;
}

h3 {
  margin: 20px 0 8px;
  color: var(--navy-soft);
  font-family: "Baloo 2", "Satoshi", system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.3;
  letter-spacing: 0;
}

p,
li {
  font-size: 15px;
}

p {
  margin: 0 0 12px;
}

p:last-child,
ul:last-child,
table:last-child {
  margin-bottom: 0;
}

ul {
  margin: 10px 0 0;
  padding-left: 22px;
}

li + li {
  margin-top: 7px;
}

.notice {
  border: 1px solid #efd78f;
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  padding: 14px 16px;
  background: #fff8e3;
  color: #4f3c0b;
  font-weight: 700;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
}

table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  font-size: 14px;
}

th,
td {
  border-bottom: 1px solid var(--border);
  padding: 12px;
  text-align: left;
  vertical-align: top;
}

th {
  background: var(--navy-soft);
  color: #fff;
  font-weight: 900;
}

tr:last-child td {
  border-bottom: 0;
}

tbody tr:nth-child(even) {
  background: var(--surface-soft);
}

.site-footer {
  border-top: 1px solid var(--border);
  color: var(--muted);
  padding: 22px 0 34px;
  font-size: 13px;
}

.site-footer p {
  font-size: 13px;
}

.status {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  border-radius: 999px;
  padding: 3px 9px;
  background: #e6f7f2;
  color: var(--green);
  font-weight: 900;
  font-size: 12px;
}

@media (max-width: 720px) {
  .header-inner {
    padding: 20px 0 28px;
  }

  .brand {
    margin-bottom: 14px;
  }

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

  .nav a:last-child:nth-child(3) {
    grid-column: 1 / -1;
  }

  .nav a {
    width: 100%;
    padding: 8px 10px;
    font-size: 13px;
  }

  h1 {
    font-size: 34px;
  }

  .subtitle {
    font-size: 16px;
  }

  .content {
    padding-top: 18px;
  }

  .card {
    padding: 18px 18px 18px 20px;
  }

  p,
  li {
    font-size: 14px;
  }
}

@media (max-width: 420px) {
  .header-inner,
  .content,
  .site-footer {
    width: min(980px, calc(100% - 24px));
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .brand-text {
    font-size: 18px;
  }

  .brand-subtitle {
    font-size: 11px;
  }
}
