:root {
  color-scheme: dark;
  --green: #43ff18;
  --green-soft: #9cff36;
  --pitch: #06170d;
  --shell: #07110b;
  --cream: #fffcef;
  --ink: #101827;
  --muted: #566158;
  --line: rgba(255, 255, 255, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  color: #fff;
  background:
    radial-gradient(circle at 15% 10%, rgba(67, 255, 24, 0.16), transparent 28rem),
    radial-gradient(circle at 90% 75%, rgba(67, 255, 24, 0.09), transparent 25rem),
    linear-gradient(145deg, #092416, var(--pitch) 55%, #020704);
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid var(--line);
  background: rgba(4, 15, 9, 0.88);
  backdrop-filter: blur(16px);
}

.nav {
  width: min(1120px, calc(100% - 32px));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 38px;
  border: 1px solid rgba(67, 255, 24, 0.6);
  border-radius: 12px;
  color: var(--green);
  background: #07150c;
  font-weight: 1000;
  font-style: italic;
  box-shadow: 0 0 26px rgba(67, 255, 24, 0.13);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-links a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.94rem;
  font-weight: 750;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--green);
}

.hero,
.page-shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  padding: 92px 0 70px;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 54px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 7px 11px;
  border: 1px solid rgba(67, 255, 24, 0.45);
  border-radius: 999px;
  color: var(--green);
  background: rgba(67, 255, 24, 0.07);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin-top: 0;
  letter-spacing: -0.035em;
}

.hero h1 {
  max-width: 760px;
  margin: 20px 0 18px;
  font-size: clamp(3rem, 8vw, 6.6rem);
  line-height: 0.91;
}

.hero h1 span {
  color: var(--green);
}

.lead {
  max-width: 690px;
  margin: 0;
  color: rgba(255, 255, 255, 0.73);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.65;
}

.hero-card {
  padding: 26px;
  border: 1px solid rgba(67, 255, 24, 0.28);
  border-radius: 28px;
  background: rgba(7, 17, 11, 0.86);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.36);
}

.hero-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--green);
  font-size: 1.7rem;
}

.hero-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

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

.link-card {
  min-height: 180px;
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: 25px;
  text-decoration: none;
  background: rgba(7, 17, 11, 0.82);
  transition: transform 160ms ease, border-color 160ms ease;
}

.link-card:hover {
  transform: translateY(-3px);
  border-color: rgba(67, 255, 24, 0.62);
}

.link-card h2 {
  margin-bottom: 8px;
  font-size: 1.45rem;
}

.link-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  line-height: 1.55;
}

.arrow {
  margin-top: 24px;
  color: var(--green);
  font-weight: 900;
}

.page-shell {
  padding: 56px 0 90px;
}

.page-heading {
  max-width: 830px;
  margin: 0 auto 24px;
}

.page-heading h1 {
  margin: 16px 0 12px;
  font-size: clamp(2.4rem, 7vw, 4.8rem);
  line-height: 0.98;
}

.page-heading p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.document {
  max-width: 830px;
  margin: 0 auto;
  padding: clamp(24px, 5vw, 52px);
  border-radius: 28px;
  color: var(--ink);
  background: var(--cream);
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.34);
}

.document h2 {
  margin-top: 2.1rem;
  margin-bottom: 0.7rem;
  color: #07532c;
  font-size: 1.55rem;
}

.document h3 {
  margin-top: 1.55rem;
  margin-bottom: 0.45rem;
  font-size: 1.15rem;
}

.document p,
.document li {
  color: #26322a;
  line-height: 1.7;
}

.document a {
  color: #066b36;
  font-weight: 750;
}

.notice {
  margin: 20px 0;
  padding: 17px 19px;
  border-left: 5px solid var(--green);
  border-radius: 12px;
  color: #15231a;
  background: #eefbdd;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 900;
}

.button-primary {
  color: #07110b !important;
  background: var(--green);
}

.button-secondary {
  border: 1px solid rgba(7, 17, 11, 0.25);
  color: var(--ink) !important;
  background: #fff;
}

.site-footer {
  padding: 32px 16px 44px;
  border-top: 1px solid var(--line);
  color: rgba(255, 255, 255, 0.57);
  text-align: center;
  font-size: 0.9rem;
}

@media (max-width: 760px) {
  .nav {
    min-height: 64px;
  }

  .nav-links a:not(:last-child) {
    display: none;
  }

  .hero {
    padding: 62px 0 44px;
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero h1 {
    font-size: clamp(3.2rem, 18vw, 5.3rem);
  }

  .grid {
    grid-template-columns: 1fr;
    padding-bottom: 64px;
  }

  .page-shell {
    padding-top: 38px;
  }
}
