:root {
  color-scheme: dark;
  --bg: #07110d;
  --panel: #0f1b17;
  --panel-2: #14241e;
  --text: #eef8f2;
  --muted: #95a59d;
  --line: rgba(255, 255, 255, 0.1);
  --mint: #2ce08b;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(44, 224, 139, 0.14), transparent 32rem),
    linear-gradient(180deg, #07110d 0%, #09130f 52%, #050908 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

a {
  color: var(--mint);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.wrap {
  width: min(1040px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar,
.footer {
  border-bottom: 1px solid var(--line);
  background: rgba(7, 17, 13, 0.78);
  backdrop-filter: blur(18px);
}

.topbar-inner,
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-weight: 800;
}

.brand img {
  width: 36px;
  height: 36px;
  border-radius: 10px;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.hero {
  padding: 56px 0 28px;
}

.eyebrow {
  color: var(--mint);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1 {
  max-width: 820px;
  margin: 12px 0 0;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.05;
}

h2 {
  margin: 34px 0 12px;
  font-size: 24px;
  line-height: 1.2;
}

h3 {
  margin: 24px 0 10px;
  font-size: 18px;
}

p,
li {
  color: #c9d6d0;
}

.lead {
  max-width: 760px;
  margin-top: 18px;
  color: #b8c8c0;
  font-size: 18px;
}

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

.card {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(15, 27, 23, 0.82);
  padding: 20px;
}

.doc {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(15, 27, 23, 0.72);
  padding: 28px;
  margin: 22px 0 52px;
}

.meta {
  color: var(--muted);
  font-size: 14px;
}

.table {
  width: 100%;
  border-collapse: collapse;
  margin: 18px 0 10px;
  overflow-wrap: anywhere;
}

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

.table th {
  width: 34%;
  color: var(--muted);
  font-weight: 700;
}

.notice {
  border-left: 3px solid var(--mint);
  background: rgba(44, 224, 139, 0.08);
  padding: 14px 16px;
  color: #d7f7e6;
}

.footer {
  border-top: 1px solid var(--line);
  border-bottom: 0;
  margin-top: 64px;
}

@media (max-width: 720px) {
  .topbar-inner,
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .grid {
    grid-template-columns: 1fr;
  }

  .doc {
    padding: 20px;
  }

  .table th,
  .table td {
    display: block;
    width: 100%;
  }

  .table th {
    border-bottom: 0;
    padding-bottom: 2px;
  }

  .table td {
    padding-top: 0;
  }
}
