:root {
  --navy: #0c1a2e;
  --navy-mid: #132a45;
  --ink: #e8eef6;
  --muted: #9aadc4;
  --orange: #e87a2a;
  --leaf: #3d8f4a;
  --tie: #1a2740;
  --glow: rgba(232, 122, 42, 0.35);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: "DM Sans", system-ui, sans-serif;
  background: var(--navy);
  color: var(--ink);
  min-height: 100vh;
  overflow-x: hidden;
}

.stars {
  position: fixed;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(1.5px 1.5px at 12% 18%, rgba(255,255,255,.55), transparent),
    radial-gradient(1px 1px at 72% 28%, rgba(255,255,255,.4), transparent),
    radial-gradient(1.5px 1.5px at 38% 62%, rgba(255,255,255,.35), transparent),
    radial-gradient(1px 1px at 88% 74%, rgba(255,255,255,.45), transparent),
    radial-gradient(1px 1px at 22% 88%, rgba(255,255,255,.3), transparent),
    linear-gradient(165deg, #070f1c 0%, var(--navy) 42%, #0a1628 100%);
  pointer-events: none;
  animation: drift 48s linear infinite;
}

@keyframes drift {
  from { background-position: 0 0, 0 0, 0 0, 0 0, 0 0, 0 0; }
  to { background-position: 40px 80px, -30px 50px, 20px -40px, -50px 30px, 10px 60px, 0 0; }
}

.orbit-ring {
  position: fixed;
  width: min(90vw, 640px);
  height: min(90vw, 640px);
  border-radius: 50%;
  border: 1px dashed rgba(61, 143, 74, 0.25);
  top: 8vh;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
  pointer-events: none;
  animation: spin 120s linear infinite;
}

.orbit-ring::after {
  content: "";
  position: absolute;
  inset: 12%;
  border-radius: 50%;
  border: 1px dashed rgba(232, 122, 42, 0.2);
}

@keyframes spin {
  to { transform: translateX(-50%) rotate(360deg); }
}

.hero, .hybrid, .harvest, .foot {
  position: relative;
  z-index: 1;
}

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 1.5rem 4rem;
}

.logo {
  width: min(42vw, 220px);
  height: auto;
  border-radius: 8px;
  margin-bottom: 1.25rem;
  animation: float-in 1.1s ease-out both;
  filter: drop-shadow(0 12px 40px var(--glow));
}

@keyframes float-in {
  from { opacity: 0; transform: translateY(18px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.brand {
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  letter-spacing: 0.28em;
  font-size: 0.85rem;
  color: var(--ink);
  margin-bottom: 0.65rem;
  animation: float-in 1.1s ease-out 0.12s both;
}

.tag {
  font-family: "Instrument Serif", Georgia, serif;
  font-weight: 400;
  font-size: clamp(2.4rem, 7vw, 4.2rem);
  line-height: 1.05;
  color: var(--ink);
  margin-bottom: 1rem;
  animation: float-in 1.1s ease-out 0.2s both;
}

.lede {
  max-width: 34rem;
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--muted);
  margin-bottom: 1.75rem;
  animation: float-in 1.1s ease-out 0.28s both;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  animation: float-in 1.1s ease-out 0.36s both;
}

.cta {
  display: inline-block;
  padding: 0.75rem 1.35rem;
  background: var(--orange);
  color: #1a1008;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px var(--glow);
}

.cta.ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid rgba(232, 238, 246, 0.35);
}

.cta.ghost:hover {
  border-color: var(--leaf);
  box-shadow: none;
}

.hybrid, .harvest {
  padding: 4.5rem 1.5rem;
  max-width: 920px;
  margin: 0 auto;
}

.hybrid h2, .harvest h2 {
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 0.75rem;
}

.hybrid-lede, .harvest-lede {
  color: var(--muted);
  max-width: 36rem;
  line-height: 1.5;
  margin-bottom: 2rem;
}

.lanes {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .lanes { grid-template-columns: 1fr 1fr; }
}

.lane {
  padding: 1.5rem 0 0;
  border-top: 1px solid rgba(154, 173, 196, 0.25);
}

.lane h3 {
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  color: var(--orange);
}

.lane.space h3 { color: var(--leaf); }

.lane p {
  color: var(--muted);
  line-height: 1.5;
  font-size: 0.98rem;
}

.crops {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.crop {
  padding: 1.35rem 0;
  border-top: 1px solid rgba(154, 173, 196, 0.2);
  opacity: 0.55;
  transition: opacity 0.35s ease, padding 0.35s ease;
}

.crop.live {
  opacity: 1;
  padding: 1.6rem 0;
}

.crop .badge {
  display: inline-block;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
  color: var(--muted);
}

.crop .badge.space { color: var(--leaf); }
.crop .badge.ground { color: var(--orange); }

.crop .code {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  color: var(--muted);
  margin-bottom: 0.25rem;
}

.crop h3 {
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 1.45rem;
  margin-bottom: 0.35rem;
}

.crop .shape, .crop .limit {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.45;
  margin-bottom: 0.35rem;
}

.crop .num {
  font-size: 1rem;
  margin: 0.5rem 0;
  color: var(--ink);
}

.crop .num strong { color: var(--orange); }

.crop .status {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-top: 0.5rem;
  color: var(--muted);
}

.crop.live .status {
  color: var(--leaf);
}

.foot {
  padding: 3rem 1.5rem 4rem;
  text-align: center;
  border-top: 1px solid rgba(154, 173, 196, 0.15);
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.foot .fine {
  margin-top: 0.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.7;
}
