@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Manrope:wght@500;600;700;800&display=swap");

:root {
  --bg: #121416;
  --bg-soft: #191c1e;
  --card: #1c2023;
  --line: #2a3330;
  --mint: #6ee7a8;
  --mint-2: #3dcc7a;
  --text: #e8ecea;
  --muted: #9aa6a0;
  --font: "Inter", "Segoe UI", sans-serif;
  --head: "Manrope", "Segoe UI", sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.75;
  min-height: 100vh;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--mint); text-decoration: none; }
.wrap { width: min(1080px, calc(100% - 48px)); margin: 0 auto; }

.site-header {
  position: sticky; top: 0; z-index: 40;
  background: #101214;
  border-bottom: 1px solid var(--line);
}
.site-header .header-inner { position: relative; }
.header-inner {
  width: min(1280px, calc(100% - 24px));
  margin: 0 auto;
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}
.logo {
  display: flex; align-items: center;
  line-height: 0;
  flex-shrink: 0;
}
.logo img { height: 42px; width: auto; max-width: 200px; object-fit: contain; }
.footer-logo { display: inline-flex; margin-bottom: 12px; }
.footer-logo img { height: 42px; }
#nav-check { display: none; }
.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--mint);
  width: 42px; height: 38px;
  cursor: pointer;
  font-size: 20px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
  margin-left: auto;
  justify-content: flex-end;
}
.main-nav > a, .nav-parent {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #dfe6e2;
  padding: 6px 7px;
  background: none;
  border: 0;
  cursor: pointer;
  font-family: var(--font);
  white-space: nowrap;
  flex-shrink: 0;
}
.main-nav .btn {
  padding: 7px 12px;
  font-size: 11px;
}
.nav-dropdown { position: relative; }
.nav-parent {
  display: flex; align-items: center; gap: 6px;
  color: var(--mint);
}
.caret {
  width: 0; height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid var(--mint);
}
.nav-dropdown:hover .caret,
.nav-dropdown:focus-within .caret {
  border-top: 0;
  border-bottom: 5px solid var(--mint);
}
.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 188px;
  background: #16191b;
  border: 1px solid var(--mint-2);
  border-radius: 8px;
  padding: 6px 0;
  z-index: 20;
}
.dropdown-menu a {
  display: block;
  color: #d5ddd8;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  border-bottom: 1px solid #262c2a;
}
.dropdown-menu a:last-child { border-bottom: 0; }
.dropdown-menu a:hover { color: var(--mint); }
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu { display: block; }

.nav-min {
  border: 1px solid var(--mint);
  color: var(--mint) !important;
  border-radius: 2px;
}
.nav-promo {
  background: var(--mint-2);
  color: #101214 !important;
  border-radius: 2px;
  padding: 8px 14px !important;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 18px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 2px;
  border: 1px solid transparent;
}
.btn-primary { background: var(--mint-2); color: #101214; }
.btn-ghost { background: transparent; color: var(--mint); border-color: var(--line); }
.btn-row { display: flex; flex-wrap: wrap; gap: 10px; margin: 22px 0; }

.content { padding: 48px 0 88px; }
.content h1, .content h2, .content h3 {
  font-family: var(--head);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.content h1 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); margin-bottom: 16px; }
.content h2 {
  font-size: 1.35rem;
  margin: 40px 0 14px;
  padding-left: 28px;
  position: relative;
}
.content h2::before {
  content: "";
  position: absolute;
  left: 0; top: 0.28em;
  width: 16px; height: 16px;
  background: no-repeat center / contain;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236ee7a8' stroke-width='1.6'%3E%3Cpath d='M4 16l8-12 8 12H4z'/%3E%3C/svg%3E");
}
.content p { color: var(--muted); margin-bottom: 14px; }
.content .lead { color: var(--text); font-size: 1.05rem; max-width: 70ch; }
.hero { margin-bottom: 28px; }
.hero-art { margin: 24px 0; border: 1px solid var(--line); }

.card, .plaque {
  background: var(--card);
  border: 1px solid var(--line);
  padding: 24px;
  margin: 24px 0;
}
.plaque { text-align: center; border-color: var(--mint-2); }
.plaque strong {
  display: block;
  font-family: var(--head);
  font-size: 1.35rem;
  color: var(--text);
  margin-bottom: 8px;
}

.table-wrap { overflow-x: auto; margin: 20px 0; border: 1px solid var(--line); }
table { width: 100%; border-collapse: collapse; }
th, td { padding: 12px 14px; text-align: left; border-bottom: 1px solid var(--line); }
th { background: var(--bg-soft); color: var(--mint); font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; }
td { color: var(--muted); }

.site-footer {
  border-top: 1px solid var(--line);
  padding: 36px 0 96px;
  background: #101214;
}
.site-footer p { color: var(--muted); margin-bottom: 12px; }
.foot-links { display: flex; flex-wrap: wrap; gap: 10px 16px; margin: 16px 0; }
.foot-links a { color: #c5d0cb; font-size: 13px; }
.disclaimer { font-size: 12px; }
.sticky-cta {
  position: fixed; right: 16px; bottom: 16px; z-index: 30;
}

@media (max-width: 980px) {
  .nav-toggle { display: flex; align-items: center; justify-content: center; }
  .main-nav {
    display: none;
    position: absolute;
    left: 0; right: 0; top: 64px;
    background: #101214;
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    flex-wrap: wrap;
    margin-left: 0;
    padding: 12px;
    gap: 8px;
  }
  #nav-check:checked ~ .main-nav { display: flex; }
  .dropdown-menu { position: static; display: block; border: 0; padding: 0; }
  .caret { display: none; }
}
