:root {
  --color-primary: #6da242;
  --color-forest: #2c5428;
  --color-leaf: #487433;
  --color-accent: #8ccb4f;
  --color-text: #2e3236;
  --color-dark: #1e2222;
  --color-bg: #f5f7f2;
  --color-sage: #e8efe3;
  --color-white: #ffffff;
  --shadow-soft: 0 24px 60px rgba(30, 34, 34, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.7;
  color: var(--color-text);
  background:
    radial-gradient(circle at 82% 18%, rgba(140, 203, 79, 0.2), transparent 28rem),
    linear-gradient(135deg, var(--color-bg) 0%, var(--color-sage) 100%);
}

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

.page-shell {
  width: min(1180px, calc(100% - 40px));
  min-height: 100vh;
  margin: 0 auto;
  padding: 28px 0 64px;
}

.nav {
  position: sticky;
  top: 20px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 18px 16px 22px;
  border: 1px solid rgba(44, 84, 40, 0.1);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 40px rgba(30, 34, 34, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand img {
  display: block;
  width: min(310px, 56vw);
  height: auto;
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 12px;
  font-weight: 700;
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.nav-cta {
  flex: 0 0 auto;
  padding: 0 20px;
  color: var(--color-white);
  background: var(--color-primary);
  box-shadow: 0 12px 24px rgba(109, 162, 66, 0.24);
}

.nav-cta:hover,
.button.primary:hover {
  background: var(--color-leaf);
  transform: translateY(-1px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  align-items: center;
  gap: 56px;
  min-height: calc(100vh - 154px);
  padding: 72px 0 32px;
}

.hero-content {
  max-width: 720px;
}

.eyebrow {
  display: inline-flex;
  margin: 0 0 18px;
  padding: 8px 14px;
  border: 1px solid rgba(109, 162, 66, 0.22);
  border-radius: 999px;
  color: var(--color-forest);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.58);
}

h1 {
  margin: 0;
  max-width: 760px;
  color: var(--color-dark);
  font-size: clamp(3rem, 7vw, 5.9rem);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.07em;
}

.hero-copy {
  max-width: 650px;
  margin: 28px 0 0;
  color: rgba(46, 50, 54, 0.78);
  font-size: clamp(1.05rem, 2vw, 1.24rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: 34px;
}

.button.primary {
  padding: 14px 24px;
  color: var(--color-white);
  background: var(--color-primary);
  box-shadow: 0 16px 30px rgba(109, 162, 66, 0.28);
}

.launch-note {
  color: rgba(46, 50, 54, 0.7);
  font-weight: 700;
}

.insight-card {
  position: relative;
  overflow: hidden;
  padding: 30px;
  border: 1px solid rgba(44, 84, 40, 0.1);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-soft);
}

.insight-card::before {
  position: absolute;
  inset: -120px -140px auto auto;
  width: 250px;
  height: 250px;
  border-radius: 999px;
  background: rgba(140, 203, 79, 0.22);
  content: "";
}

.card-header,
.metric-grid,
.signal-chart,
.insight-card p {
  position: relative;
}

.card-header {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: rgba(46, 50, 54, 0.66);
  font-size: 0.85rem;
  font-weight: 700;
}

.card-header strong {
  color: var(--color-primary);
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 30px;
}

.metric-grid div {
  padding: 20px;
  border-radius: 20px;
  background: var(--color-bg);
}

.metric-label {
  display: block;
  margin-bottom: 6px;
  color: rgba(46, 50, 54, 0.62);
  font-size: 0.82rem;
  font-weight: 700;
}

.metric-grid strong {
  color: var(--color-forest);
  font-size: 2rem;
  line-height: 1;
}

.signal-chart {
  display: flex;
  align-items: end;
  gap: 12px;
  height: 190px;
  margin-top: 28px;
  padding: 22px;
  border-radius: 24px;
  background:
    linear-gradient(rgba(46, 50, 54, 0.06) 1px, transparent 1px) 0 0 / 100% 25%,
    linear-gradient(180deg, rgba(232, 239, 227, 0.65), rgba(245, 247, 242, 0.95));
}

.signal-chart span {
  flex: 1;
  border-radius: 999px 999px 8px 8px;
  background: linear-gradient(180deg, var(--color-accent), var(--color-primary));
  box-shadow: 0 10px 22px rgba(109, 162, 66, 0.22);
}

.insight-card p {
  margin: 24px 0 0;
  color: rgba(46, 50, 54, 0.72);
  font-weight: 600;
}

@media (max-width: 920px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .insight-card {
    max-width: 560px;
  }
}

@media (max-width: 640px) {
  .page-shell {
    width: min(100% - 28px, 1180px);
    padding-top: 16px;
  }

  .nav {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-cta {
    width: 100%;
  }

  .hero {
    gap: 34px;
    padding-top: 48px;
  }

  h1 {
    letter-spacing: -0.05em;
  }

  .metric-grid {
    grid-template-columns: 1fr;
  }
}
