:root {
  color-scheme: dark;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: #f4fff7;
  background: #06120d;
  font-synthesis: none;
  --green: #00d10b;
  --green-bright: #00ff15;
  --green-dark: #009b08;
  --ink: #050706;
  --muted: #b9c9bd;
  --line: rgba(255, 255, 255, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 86% 12%, rgba(0, 255, 21, 0.2), transparent 28rem),
    linear-gradient(135deg, #06120d 0%, #092318 52%, #06120d 100%);
}

a {
  color: inherit;
}

.site-header,
main,
footer {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  text-decoration: none;
}

.brand-mark {
  width: 46px;
  height: 46px;
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  object-fit: cover;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.brand small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

nav {
  display: flex;
  gap: 28px;
}

nav a,
footer a {
  color: var(--muted);
  text-decoration: none;
}

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

.hero {
  min-height: 670px;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(300px, 0.7fr);
  gap: 72px;
  align-items: center;
  padding: 70px 0 90px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 8vw, 6.9rem);
  line-height: 0.92;
  letter-spacing: -0.065em;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2rem, 4vw, 3.75rem);
  line-height: 1;
  letter-spacing: -0.045em;
}

.lead {
  max-width: 680px;
  color: #d7e7dc;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
}

.button-primary {
  color: var(--ink);
  background: var(--green);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #7cff9f;
}

.button-secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: var(--green);
}

.crest {
  aspect-ratio: 1;
  padding: 12px;
  border: 1px solid rgba(0, 255, 21, 0.55);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.3);
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.38);
  transform: rotate(-3deg);
  overflow: hidden;
}

.crest img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.campaign {
  overflow: hidden;
  margin-bottom: 32px;
  border: 1px solid rgba(0, 255, 21, 0.45);
  border-radius: 28px;
  background: var(--green);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
}

.campaign img {
  width: 100%;
  height: auto;
  display: block;
}

.about,
.contact {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  padding: 100px 0;
  border-top: 1px solid var(--line);
}

.about-copy,
.contact > div > p {
  color: #d7e7dc;
  font-size: 1.08rem;
  line-height: 1.8;
}

.contact-card {
  display: grid;
  gap: 0;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.045);
  font-style: normal;
}

.contact-card div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.contact-card div:last-child {
  border-bottom: 0;
}

.contact-card span {
  color: var(--muted);
}

.contact-card a {
  color: var(--green);
  font-weight: 800;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 34px 0 52px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
}

footer p {
  margin: 0;
}

.legal-page {
  max-width: 820px;
  padding: 90px 0 120px;
}

.legal-page h1 {
  font-size: clamp(3rem, 7vw, 5.7rem);
}

.legal-updated {
  margin-bottom: 70px;
  color: var(--muted);
}

.legal-page section {
  margin-top: 46px;
}

.legal-page h2 {
  margin-bottom: 14px;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
}

.legal-page section p {
  color: #d7e7dc;
  line-height: 1.8;
}

.legal-page section a {
  color: var(--green);
}

@media (max-width: 800px) {
  nav {
    display: none;
  }

  .hero,
  .about,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 50px;
    padding-top: 64px;
  }

  .crest {
    width: min(420px, 100%);
    margin-inline: auto;
  }

  .about,
  .contact {
    gap: 24px;
    padding: 72px 0;
  }
}

@media (max-width: 520px) {
  .site-header,
  main,
  footer {
    width: min(100% - 28px, 1120px);
  }

  .hero {
    min-height: auto;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .contact-card div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  footer {
    flex-direction: column;
  }
}
