:root {
  --bg: #f7f7f2;
  --ink: #263026;
  --muted: #687168;
  --green: #1f7a4d;
  --green-dark: #135434;
  --green-soft: #e2efe7;
  --line: #dddfd8;
  --white: #ffffff;
  --shadow: 0 24px 80px rgba(17, 38, 27, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  color-scheme: light;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

.site-shell {
  min-height: 100vh;
}

.hero {
  position: relative;
  min-height: 72vh;
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: 28px clamp(22px, 4vw, 72px) 72px;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 10px;
  background: var(--green);
  z-index: 3;
}

.hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: -2;
}

.hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(247, 247, 242, 0.98) 0%, rgba(247, 247, 242, 0.91) 44%, rgba(247, 247, 242, 0.42) 75%, rgba(247, 247, 242, 0.2) 100%),
    linear-gradient(0deg, rgba(247, 247, 242, 1) 0%, rgba(247, 247, 242, 0.06) 34%);
  z-index: -1;
}

.brand-bar {
  position: absolute;
  top: 34px;
  left: clamp(22px, 4vw, 72px);
  right: clamp(22px, 4vw, 72px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  z-index: 4;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-size: clamp(1rem, 1.6vw, 1.35rem);
  letter-spacing: 0;
}

.brand__mark {
  width: 28px;
  height: 28px;
  border: 3px solid var(--green);
  border-radius: 50%;
  position: relative;
  flex: 0 0 auto;
}

.brand__mark::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  left: 6px;
  top: 6px;
  background: var(--green);
  border-radius: 50%;
}

.brand strong {
  color: var(--green);
}

.brand__dot {
  color: var(--muted);
}

.brand-bar__tag {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green-dark);
  font-weight: 700;
  white-space: nowrap;
}

.hero__content {
  width: min(760px, 100%);
  padding-top: 88px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--green);
  font-size: clamp(0.9rem, 1.4vw, 1rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 11ch;
  margin-bottom: 26px;
  font-size: clamp(3.25rem, 8vw, 7.2rem);
  line-height: 0.94;
  letter-spacing: 0;
}

.hero__lead {
  max-width: 690px;
  margin-bottom: 24px;
  color: #394239;
  font-size: clamp(1.18rem, 2vw, 1.55rem);
}

.subject-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 34px;
}

.subject {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--muted);
  font-weight: 800;
}

.subject--active {
  border-color: transparent;
  background: var(--green-soft);
  color: var(--green-dark);
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 22px;
  border-radius: 999px;
  background: var(--green);
  color: var(--white);
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(31, 122, 77, 0.22);
}

.button:focus-visible {
  outline: 4px solid rgba(31, 122, 77, 0.28);
  outline-offset: 4px;
}

.launch-note {
  color: var(--muted);
  font-weight: 700;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(28px, 4vw, 64px);
  max-width: 1180px;
  margin: 0 auto;
  padding: 64px clamp(22px, 4vw, 72px) 84px;
}

.intro__text h2 {
  margin-bottom: 20px;
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.intro__text p:not(.section-kicker) {
  color: var(--muted);
  font-size: 1.15rem;
}

.features {
  display: grid;
  gap: 16px;
}

.feature {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
  padding: 22px 24px;
  box-shadow: var(--shadow);
}

.feature__number {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--green);
  font-size: 0.92rem;
  font-weight: 900;
}

.feature h3 {
  margin-bottom: 7px;
  font-size: 1.3rem;
}

.feature p {
  margin-bottom: 0;
  color: var(--muted);
}

@media (max-width: 760px) {
  .hero {
    min-height: 78vh;
    padding-bottom: 54px;
  }

  .hero__shade {
    background:
      linear-gradient(0deg, rgba(247, 247, 242, 1) 0%, rgba(247, 247, 242, 0.9) 42%, rgba(247, 247, 242, 0.55) 100%),
      linear-gradient(90deg, rgba(247, 247, 242, 0.98) 0%, rgba(247, 247, 242, 0.82) 100%);
  }

  .brand-bar {
    align-items: flex-start;
  }

  .brand-bar__tag {
    font-size: 0.88rem;
  }

  .hero__content {
    padding-top: 120px;
  }

  h1 {
    max-width: 10ch;
  }

  .intro {
    grid-template-columns: 1fr;
    padding-top: 44px;
  }
}

@media (max-width: 460px) {
  .brand-bar {
    flex-direction: column;
  }

  .hero__content {
    padding-top: 150px;
  }

  .brand {
    font-size: 1rem;
  }

  .hero__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }
}
