:root {
  --bg: #030600;
  --green: #9bff00;
  --green-dark: #6db300;
  --cream: #f5ecd7;
  --cream-muted: rgba(245, 236, 215, .76);
  --line: rgba(245, 236, 215, .18);
  --shadow: rgba(0, 0, 0, .52);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--bg);
}

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  color: var(--cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 50% 20%, rgba(92, 125, 28, .22), transparent 34rem),
    radial-gradient(circle at 78% 76%, rgba(70, 92, 24, .12), transparent 30rem),
    linear-gradient(180deg, #080b03 0%, #030600 72%, #000 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: .11;
  background-image:
    linear-gradient(rgba(255, 255, 255, .032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .032) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at 50% 24%, black, transparent 74%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background: linear-gradient(180deg, transparent 0%, transparent 68%, rgba(0, 0, 0, .62) 100%);
}

.page {
  position: relative;
  z-index: 3;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: clamp(28px, 5vw, 64px) 18px 132px;
}

.hero {
  width: min(1060px, 100%);
  margin-inline: auto;
  text-align: center;
  display: grid;
  justify-items: center;
}

.eyebrow {
  margin: 0 0 18px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--cream);
  background: rgba(0, 0, 0, .32);
  letter-spacing: .055em;
  font-size: 13px;
  font-weight: 800;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}

.logo {
  width: min(520px, 86vw);
  height: auto;
  display: block;
  filter: drop-shadow(0 24px 30px var(--shadow));
  animation: logoIn .7s ease-out both;
}

h1 {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.lead {
  max-width: 920px;
  margin: clamp(10px, 2vw, 16px) auto 0;
  color: var(--cream-muted);
  font-size: clamp(16px, 1.75vw, 24px);
  line-height: 1.36;
  font-weight: 650;
  text-shadow: 0 3px 12px rgba(0, 0, 0, .38);
}

.contact {
  position: relative;
  z-index: 6;
  margin-top: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 24px;
  border-radius: 999px;
  border: 1px solid rgba(245, 236, 215, .34);
  color: #071000;
  background: linear-gradient(180deg, #b9ff39, var(--green));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .34), 0 12px 22px rgba(0, 0, 0, .32);
  text-decoration: none;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: .02em;
  transition: transform .18s ease, filter .18s ease;
}

.contact:hover,
.contact:focus-visible {
  transform: translateY(-2px);
  filter: saturate(1.06);
  outline: none;
}

.tractor-shadow {
  position: fixed;
  z-index: 1;
  left: 0;
  top: clamp(18vh, 36vh, 46vh);
  width: clamp(980px, 88vw, 1680px);
  pointer-events: none;
  opacity: .055;
  transform: translateX(-115%) translateY(0);
  animation: tractorDrive 17s linear infinite;
  will-change: transform;
}

.tractor-shadow img {
  width: 100%;
  height: auto;
  display: block;
  filter: blur(.25px);
}

@keyframes tractorDrive {
  0% {
    transform: translateX(-120%) translateY(0);
  }
  100% {
    transform: translateX(115vw) translateY(8px);
  }
}

@keyframes logoIn {
  from { opacity: 0; transform: translateY(10px) scale(.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 820px) {
  .page {
    padding-top: 34px;
    padding-bottom: 170px;
    align-items: start;
  }

  .hero {
    width: min(94vw, 760px);
  }

  .eyebrow {
    margin-bottom: 13px;
    font-size: 12px;
    letter-spacing: .035em;
  }

  .logo {
    width: min(390px, 92vw);
  }

  .lead {
    max-width: 94vw;
    font-size: 17px;
    line-height: 1.42;
  }

  .contact {
    margin-top: 24px;
    min-height: 46px;
  }

  .tractor-shadow {
    top: 48vh;
    width: 760px;
    opacity: .055;
    animation-duration: 14s;
  }

}

@media (max-width: 430px) {
  .page {
    padding-bottom: 158px;
  }

  .eyebrow {
    max-width: 92vw;
    text-align: left;
  }

  .lead {
    font-size: 16px;
  }

}

