:root {
  color-scheme: light;
  --ink: #15201d;
  --muted: #53615d;
  --paper: #f8f6ef;
  --card: #fffdf7;
  --line: rgba(21, 32, 29, 0.16);
  --green: #1e5f46;
  --green-dark: #123d2f;
  --gold: #c69335;
  --blue: #244a63;
  --shadow: 0 24px 70px rgba(16, 34, 28, 0.16);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(30, 95, 70, 0.1), transparent 38%),
    radial-gradient(circle at 84% 18%, rgba(198, 147, 53, 0.2), transparent 30%),
    var(--paper);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  background-image:
    linear-gradient(rgba(21, 32, 29, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21, 32, 29, 0.055) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.75), transparent 82%);
}

a {
  color: inherit;
}

.shell {
  width: min(1180px, calc(100% - 32px));
  min-height: 100vh;
  margin: 0 auto;
  padding: 32px 0;
  display: grid;
  align-items: center;
}

.hero {
  width: 100%;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 56px;
  font-weight: 800;
  letter-spacing: 0;
}

.mark {
  width: 54px;
  height: 54px;
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(30, 95, 70, 0.28);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 440px);
  gap: clamp(28px, 6vw, 80px);
  align-items: stretch;
}

.copy {
  max-width: 760px;
  align-self: center;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--green);
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(3.15rem, 8vw, 6.8rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.lede {
  max-width: 640px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.32rem);
  line-height: 1.55;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 850;
  text-decoration: none;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button:focus-visible {
  outline: 3px solid rgba(198, 147, 53, 0.42);
  outline-offset: 3px;
}

.button.primary {
  color: #fff;
  border-color: transparent;
  background: var(--green);
  box-shadow: 0 14px 30px rgba(30, 95, 70, 0.24);
}

.button.primary:hover,
.button.primary:focus-visible {
  background: var(--green-dark);
}

.button.secondary {
  background: rgba(255, 253, 247, 0.72);
}

.panel {
  display: grid;
  gap: 0;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 247, 0.8);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.panel > div {
  min-height: 150px;
  padding: 26px;
  border-bottom: 1px solid var(--line);
}

.panel > .logo-card {
  min-height: auto;
  display: grid;
  place-items: center;
  padding: 28px;
  background:
    linear-gradient(135deg, rgba(30, 95, 70, 0.08), transparent),
    rgba(255, 253, 247, 0.64);
}

.logo-card img {
  display: block;
  width: min(190px, 62vw);
  height: auto;
}

.panel > div:last-child {
  border-bottom: 0;
}

.number {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
}

h2 {
  margin: 10px 0 8px;
  color: var(--green-dark);
  font-size: 1.55rem;
  letter-spacing: 0;
}

.panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

@media (max-width: 820px) {
  .shell {
    align-items: start;
    padding: 24px 0;
  }

  .brand-lockup {
    margin-bottom: 42px;
  }

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

  .panel {
    margin-bottom: 12px;
  }
}

@media (max-width: 520px) {
  .shell {
    width: min(100% - 24px, 1180px);
  }

  .brand-lockup span {
    font-size: 0.95rem;
  }

  .mark {
    width: 46px;
    height: 46px;
  }

  .actions {
    display: grid;
  }

  .button {
    width: 100%;
  }
}
