:root {
  --green-950: #0c231b;
  --green-850: #12372a;
  --green-700: #23634b;
  --green-500: #4a9f70;
  --mint-100: #dff4e8;
  --sky-100: #dceef2;
  --amber-200: #f2d48a;
  --paper: #f6f3ea;
  --ink: #14211c;
  --muted: #5c6a63;
  --line: rgba(20, 33, 28, 0.14);
  --shadow: 0 22px 70px rgba(12, 35, 27, 0.24);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", system-ui, sans-serif;
  color: var(--ink);
  background: var(--paper);
}

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

a {
  color: inherit;
}

.site-header {
  position: fixed;
  z-index: 10;
  inset: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 5vw, 64px);
  color: #fff;
  background: linear-gradient(to bottom, rgba(12, 35, 27, 0.78), transparent);
}

.brand,
.nav-links {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 54px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 6px;
}

.nav-links {
  gap: clamp(14px, 3vw, 34px);
  font-size: 0.94rem;
}

.nav-links a {
  text-decoration: none;
  opacity: 0.9;
}

.nav-links a:hover {
  opacity: 1;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  padding: 120px clamp(18px, 5vw, 64px) 58px;
  color: #fff;
  overflow: hidden;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(12, 35, 27, 0.88), rgba(12, 35, 27, 0.44) 52%, rgba(12, 35, 27, 0.08)),
    linear-gradient(0deg, rgba(12, 35, 27, 0.78), transparent 48%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 840px;
  padding-bottom: 6vh;
}

.eyebrow,
.section-label,
.panel-kicker {
  margin: 0 0 16px;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

h1,
h2 {
  margin: 0;
  font-family: "Lora", Georgia, serif;
  line-height: 1.02;
  letter-spacing: 0;
}

h1 {
  max-width: 780px;
  font-size: clamp(3.2rem, 8vw, 7.5rem);
}

h2 {
  font-size: clamp(2.1rem, 4vw, 4.5rem);
}

h3 {
  margin: 0;
  font-size: 1.15rem;
}

.hero-copy {
  max-width: 660px;
  margin: 22px 0 0;
  font-size: clamp(1.05rem, 1.8vw, 1.36rem);
  line-height: 1.68;
  color: rgba(255, 255, 255, 0.88);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 800;
  border: 1px solid transparent;
}

.button svg {
  width: 19px;
  height: 19px;
}

.primary {
  background: var(--mint-100);
  color: var(--green-950);
}

.secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
}

.dark.secondary {
  color: var(--green-950);
  border-color: rgba(12, 35, 27, 0.28);
}

.dark.primary {
  background: var(--green-950);
  color: #fff;
}

.launch-panel {
  position: absolute;
  z-index: 1;
  right: clamp(18px, 5vw, 64px);
  bottom: 58px;
  width: min(360px, calc(100% - 36px));
  padding: 22px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(246, 243, 234, 0.12);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.launch-panel strong {
  display: block;
  font-size: 1.45rem;
  line-height: 1.2;
}

.launch-panel p {
  margin: 12px 0 0;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
}

.intro-section,
.vision-section,
.cta-section {
  display: grid;
  gap: clamp(24px, 5vw, 70px);
  padding: clamp(64px, 9vw, 120px) clamp(18px, 5vw, 64px);
}

.intro-section {
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.85fr);
  align-items: end;
  background: var(--paper);
}

.intro-section > p,
.vision-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.82;
}

.section-label {
  color: var(--green-700);
}

.feature-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-block: 1px solid var(--line);
}

.feature-card {
  min-height: 260px;
  padding: clamp(24px, 4vw, 42px);
  background: #fffaf0;
}

.feature-card svg {
  width: 34px;
  height: 34px;
  color: var(--green-700);
  margin-bottom: 28px;
}

.feature-card p {
  color: var(--muted);
  line-height: 1.65;
}

.vision-section {
  grid-template-columns: minmax(280px, 0.95fr) minmax(300px, 0.9fr);
  align-items: center;
  background: #fffaf0;
}

.vision-media {
  min-height: 580px;
  border-radius: 8px;
  overflow: hidden;
}

.vision-media img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.vision-copy {
  max-width: 620px;
}

.vision-copy p {
  margin-top: 22px;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 32px 0 0;
}

.metrics div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.metrics dt {
  font-size: 2.15rem;
  font-weight: 800;
  color: var(--green-700);
}

.metrics dd {
  margin: 4px 0 0;
  color: var(--muted);
}

.cta-section {
  grid-template-columns: minmax(280px, 1fr) auto;
  align-items: center;
  background: var(--mint-100);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 24px clamp(18px, 5vw, 64px);
  color: rgba(255, 255, 255, 0.76);
  background: var(--green-950);
}

.site-footer a {
  color: #fff;
  text-decoration: none;
}

@media (max-width: 980px) {
  .hero {
    min-height: 100vh;
  }

  .launch-panel {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 28px;
  }

  .intro-section,
  .vision-section,
  .cta-section {
    grid-template-columns: 1fr;
  }

  .feature-band {
    grid-template-columns: repeat(2, 1fr);
  }

  .vision-media {
    min-height: 420px;
  }
}

@media (max-width: 640px) {
  .site-header {
    align-items: flex-start;
  }

  .nav-links {
    display: none;
  }

  .hero {
    padding-top: 104px;
  }

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

  .feature-band,
  .metrics {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: auto;
  }

  .site-footer {
    flex-direction: column;
  }
}
