:root {
  --bg: #f7f9f6;
  --surface: #ffffff;
  --ink: #132019;
  --muted: #5d6b63;
  --line: #dfe8e0;
  --brand: #8cf000;
  --brand-dark: #3e7500;
  --blue: #2563eb;
  --amber: #b45309;
  --danger: #b42318;
  --shadow: 0 18px 55px rgba(19, 32, 25, .12);
  --radius: 8px;
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  overflow-x: hidden;
  max-width: 100%;
}

a {
  color: inherit;
}

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

.topbar {
  background: #111a14;
  color: #eef8ec;
  font-size: 13px;
}

.topbar .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.trust-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  padding: 10px 0;
  white-space: nowrap;
}

.dot {
  width: 9px;
  height: 9px;
  border-radius: 99px;
  background: var(--brand);
  box-shadow: 0 0 0 4px rgba(140, 240, 0, .14);
  flex: 0 0 auto;
}

.nav {
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 20;
}

.nav .wrap {
  min-height: 70px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) 220px;
  align-items: center;
  gap: 22px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  text-decoration: none;
  min-width: 0;
  white-space: nowrap;
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: #050705;
  color: var(--brand);
  display: grid;
  place-items: center;
  box-shadow: inset 0 0 26px rgba(140, 240, 0, .45);
  font-weight: 900;
  overflow: hidden;
  flex: 0 0 40px;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 14px;
  color: var(--muted);
  min-width: 0;
}

.nav-links a {
  text-decoration: none;
  white-space: nowrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
}

.button.primary {
  color: #091007;
  background: var(--brand);
  box-shadow: 0 12px 28px rgba(82, 145, 0, .22);
}

.button.dark {
  color: #fff;
  background: #111a14;
}

.button.ghost {
  color: var(--ink);
  background: #fff;
  border-color: var(--line);
}

.nav > .wrap > .button {
  width: 220px;
  flex: 0 0 auto;
}

.page-hero {
  padding: 64px 0 42px;
  background:
    radial-gradient(circle at 85% 10%, rgba(140, 240, 0, .18), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f7f9f6 100%);
}

.hero-grid,
.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 34px;
  align-items: start;
  min-width: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #cfe7c3;
  background: #f3ffe9;
  color: var(--brand-dark);
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 18px;
}

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

h1 {
  font-size: clamp(36px, 5vw, 60px);
}

h2 {
  font-size: clamp(27px, 3vw, 40px);
  margin-bottom: 12px;
}

h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

p {
  color: var(--muted);
}

.lead {
  max-width: 760px;
  color: var(--muted);
  font-size: 19px;
  margin: 18px 0 26px;
}

.actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

section {
  padding: 54px 0;
}

.section-head {
  max-width: 760px;
  margin-bottom: 24px;
}

.updated {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  min-width: 0;
}

.shadow {
  box-shadow: var(--shadow);
}

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 16px;
}

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

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

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

.icon {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-weight: 900;
  margin-bottom: 14px;
  color: #091007;
  background: var(--brand);
}

.list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 16px 0 0;
  list-style: none;
  color: var(--muted);
}

.list li {
  padding-left: 22px;
  position: relative;
}

.list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  background: var(--brand);
  border-radius: 99px;
}

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

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 660px;
}

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

th {
  background: #f1f6ef;
  font-size: 14px;
}

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

.note {
  border-left: 4px solid var(--amber);
  background: #fff8ed;
  border-radius: var(--radius);
  padding: 16px;
  color: #6f3e05;
}

.source-list a {
  color: var(--brand-dark);
  font-weight: 700;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.source-list p {
  color: var(--muted);
  margin-top: 8px;
}

.safe {
  border-left: 4px solid var(--brand);
  background: #f5ffec;
  border-radius: var(--radius);
  padding: 16px;
}

.faq details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px 18px;
}

.faq details + details {
  margin-top: 10px;
}

.faq summary {
  cursor: pointer;
  font-weight: 900;
}

.cta-band {
  background: #111a14;
  color: #fff;
  border-radius: var(--radius);
  padding: 32px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
}

.cta-band p {
  color: #cbd7ce;
  margin: 8px 0 0;
}

.form-grid {
  display: grid;
  gap: 14px;
}

label {
  display: grid;
  gap: 6px;
  font-weight: 800;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 46px;
  padding: 10px 12px;
  font: inherit;
  color: var(--ink);
  background: #fff;
}

textarea {
  min-height: 160px;
  resize: vertical;
}

footer {
  border-top: 1px solid var(--line);
  padding: 30px 0 88px;
  color: var(--muted);
  font-size: 14px;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-grid a {
  color: var(--muted);
  text-decoration: none;
  margin-left: 12px;
}

.mobile-sticky {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 30;
  padding: 10px 14px;
  background: rgba(255, 255, 255, .96);
  border-top: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.mobile-sticky .button {
  width: 100%;
}

@media (max-width: 980px) {
  .topbar .wrap,
  .grid-4,
  .grid-3 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-grid,
  .split,
  .cta-band {
    grid-template-columns: minmax(0, 1fr);
  }

  .nav-links {
    display: none;
  }

  .nav .wrap {
    grid-template-columns: auto 220px;
  }
}

@media (max-width: 640px) {
  .wrap {
    width: auto;
    max-width: none;
    margin-left: 12px;
    margin-right: 12px;
  }

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .topbar .wrap {
    display: grid;
    width: 100%;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-item {
    justify-content: flex-start;
    padding: 8px 12px;
    font-size: 12px;
    line-height: 1.25;
  }

  .dot {
    width: 8px;
    height: 8px;
    box-shadow: 0 0 0 3px rgba(140, 240, 0, .16);
  }

  .nav .wrap {
    min-height: 62px;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
  }

  .brand {
    gap: 9px;
    font-size: 15px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
  }

  .nav .button {
    width: auto;
    min-height: 42px;
    padding: 0 12px;
    font-size: 14px;
    justify-self: end;
  }

  .page-hero {
    padding: 28px 0 32px;
  }

  h1 {
    font-size: 38px;
    line-height: 1.08;
  }

  h2 {
    font-size: 28px;
  }

  .lead {
    font-size: 18px;
    line-height: 1.55;
    margin-bottom: 22px;
  }

  .eyebrow {
    max-width: 100%;
    align-items: flex-start;
    border-radius: 8px;
  }

  .actions,
  .button-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
  }

  .button {
    width: 100%;
  }

  section {
    padding: 42px 0;
  }

  .mobile-sticky {
    display: block;
  }
}
