:root {
  color-scheme: dark;
  --bg: #040604;
  --bg-deep: #010302;
  --ink: #f6f8ef;
  --muted: #b7c2af;
  --soft: rgba(246, 248, 239, 0.08);
  --soft-strong: rgba(246, 248, 239, 0.14);
  --panel: rgba(11, 18, 12, 0.88);
  --panel-strong: #0d150e;
  --lime: #9cff20;
  --lime-deep: #63d316;
  --gold: #d9ca76;
  --steel: #9fb2a4;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
  --max-width: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.5;
  background:
    linear-gradient(115deg, rgba(156, 255, 32, 0.16), transparent 27rem),
    linear-gradient(205deg, rgba(217, 202, 118, 0.08), transparent 30rem),
    linear-gradient(180deg, #0b150c 0%, var(--bg) 46%, var(--bg-deep) 100%);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(246, 248, 239, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(246, 248, 239, 0.035) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: linear-gradient(to bottom, #000 0%, transparent 78%);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header,
.hero,
.intro-section,
.site-footer {
  width: min(var(--max-width), calc(100% - 40px));
  margin: 0 auto;
}

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

.brand-link,
.site-nav,
.hero-actions,
.contact-band {
  display: flex;
  align-items: center;
}

.brand-link {
  min-width: 0;
  gap: 12px;
  font-size: 0.96rem;
  font-weight: 820;
}

.brand-mark {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  color: #071006;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--lime), var(--lime-deep));
  box-shadow: 0 0 34px rgba(156, 255, 32, 0.34);
  font-size: 0.76rem;
  font-weight: 950;
}

.site-nav {
  gap: 24px;
  color: rgba(246, 248, 239, 0.72);
  font-size: 0.92rem;
  font-weight: 720;
}

.site-nav a {
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.site-nav a:hover {
  color: var(--lime);
  transform: translateY(-1px);
}

.hero {
  min-height: calc(100svh - 82px);
  padding: 34px 0 58px;
  display: grid;
  align-content: center;
  gap: 32px;
  text-align: center;
}

.logo-plate {
  position: relative;
  width: min(100%, 920px);
  margin: 0 auto;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.logo-plate img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-height: 250px;
  object-fit: contain;
  border-radius: 4px;
  background: #f7f7f1;
  box-shadow:
    0 26px 70px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(0, 0, 0, 0.18);
}

.hero-copy {
  max-width: 840px;
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--lime);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

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

h1 {
  font-size: 4.9rem;
  line-height: 0.96;
  font-weight: 950;
}

h1 span {
  color: var(--lime);
}

h2 {
  max-width: 820px;
  font-size: 3.35rem;
  line-height: 1;
  font-weight: 900;
}

h3 {
  font-size: 1.18rem;
  line-height: 1.08;
  font-weight: 860;
}

.hero-text {
  max-width: 650px;
  margin: 24px auto 0;
  color: var(--muted);
  font-size: 1.22rem;
}

.hero-actions {
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.button {
  min-height: 50px;
  padding: 14px 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 850;
  line-height: 1.15;
  text-align: center;
  overflow-wrap: anywhere;
  white-space: normal;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #071006;
  background: linear-gradient(135deg, var(--lime), var(--lime-deep));
  box-shadow: 0 16px 42px rgba(99, 211, 22, 0.26);
}

.button-secondary {
  color: var(--ink);
  border-color: rgba(156, 255, 32, 0.28);
  background: rgba(246, 248, 239, 0.04);
}

.button-secondary:hover {
  border-color: rgba(156, 255, 32, 0.58);
}

.signal-strip {
  max-width: 890px;
  margin: 2px auto 0;
  padding: 14px 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  color: rgba(246, 248, 239, 0.76);
  border-top: 1px solid var(--soft);
  border-bottom: 1px solid var(--soft);
  font-size: 0.88rem;
  font-weight: 760;
}

.signal-strip span {
  flex: 1 1 180px;
  padding: 0 10px;
}

.signal-strip span + span {
  border-left: 1px solid var(--soft);
}

.intro-section {
  padding: 84px 0 96px;
  border-top: 1px solid var(--soft);
}

.section-heading {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 60px;
  align-items: end;
}

.feature-grid {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.feature-card {
  min-height: 248px;
  padding: 28px;
  border: 1px solid var(--soft);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(246, 248, 239, 0.055), rgba(246, 248, 239, 0.025)),
    var(--panel);
}

.feature-number {
  display: inline-flex;
  margin-bottom: 44px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
}

.feature-card p {
  margin: 18px 0 0;
  color: var(--muted);
}

.contact-band {
  width: 100%;
  justify-content: space-between;
  gap: 28px;
  margin: 0 0 72px;
  padding: 48px max(20px, calc((100% - var(--max-width)) / 2));
  border-top: 1px solid rgba(156, 255, 32, 0.18);
  border-bottom: 1px solid rgba(156, 255, 32, 0.18);
  background:
    linear-gradient(100deg, rgba(156, 255, 32, 0.12), transparent 44%),
    var(--panel-strong);
}

.contact-band h2 {
  font-size: 2.9rem;
  line-height: 1;
}

.contact-email {
  margin: 18px 0 0;
  color: rgba(246, 248, 239, 0.72);
  font-size: 1.02rem;
  font-weight: 720;
}

.contact-band .button {
  flex: 0 0 auto;
  min-width: 160px;
}

.site-footer {
  padding: 28px 0 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: rgba(246, 248, 239, 0.66);
  border-top: 1px solid var(--soft);
  font-size: 0.92rem;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--ink);
}

.site-footer a:hover {
  color: var(--lime);
}

@media (max-width: 900px) {
  .site-header {
    min-height: auto;
    padding: 18px 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .hero {
    min-height: auto;
    padding-top: 28px;
  }

  h1 {
    font-size: 4rem;
  }

  h2 {
    font-size: 2.8rem;
  }

  .section-heading,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .section-heading {
    gap: 18px;
  }

  .contact-band {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-band .button {
    width: 100%;
  }
}

@media (max-width: 760px) {
  .signal-strip {
    gap: 0;
    padding: 0;
  }

  .signal-strip span {
    flex-basis: 100%;
    padding: 12px 0;
  }

  .signal-strip span + span {
    border-top: 1px solid var(--soft);
    border-left: 0;
  }
}

@media (max-width: 560px) {
  .site-header,
  .hero,
  .intro-section,
  .site-footer {
    width: min(100% - 28px, var(--max-width));
  }

  .site-header {
    gap: 14px;
  }

  .site-nav {
    width: 100%;
    justify-content: space-between;
  }

  .hero {
    gap: 24px;
    padding: 18px 0 48px;
  }

  .logo-plate {
    width: 100%;
  }

  .logo-plate img {
    max-height: 132px;
    border-radius: 4px;
  }

  .eyebrow {
    margin-bottom: 12px;
    font-size: 0.75rem;
  }

  h1 {
    font-size: 2.72rem;
  }

  h2,
  .contact-band h2 {
    font-size: 2.2rem;
  }

  .hero-text {
    margin-top: 18px;
    font-size: 1.04rem;
  }

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

  .hero-actions {
    margin-top: 22px;
  }

  .intro-section {
    padding: 58px 0 66px;
  }

  .feature-card {
    min-height: auto;
    padding: 24px;
  }

  .feature-number {
    margin-bottom: 30px;
  }

  .contact-band {
    padding: 36px 14px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
