:root {
  color-scheme: light;
  --ink: #0d1f1a;
  --muted: #52635b;
  --line: rgba(13, 31, 26, 0.14);
  --paper: #f8fbf7;
  --panel: #ffffff;
  --emerald: #0f7a4f;
  --emerald-dark: #075c3c;
  --mint: #dff4e8;
  --gold: #d9a441;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 15%, rgba(217, 164, 65, 0.16), transparent 28rem),
    linear-gradient(135deg, #f4faf4 0%, #f9fbf6 42%, #eef8f1 100%);
}

a {
  color: inherit;
}

.page-shell {
  width: min(1120px, calc(100% - 40px));
  min-height: 100vh;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.topbar {
  padding: 28px 0;
}

.company-lockup {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-weight: 760;
  text-decoration: none;
}

.emerald-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--emerald);
  box-shadow: 0 12px 30px rgba(15, 122, 79, 0.2);
}

.emerald-mark svg {
  width: 27px;
  height: 27px;
  fill: #fff;
}

.hero {
  flex: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
  gap: 48px;
  align-items: center;
  padding: 54px 0 70px;
}

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

.eyebrow,
.panel-label {
  margin: 0 0 16px;
  color: var(--emerald-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: clamp(3.3rem, 9vw, 7.4rem);
  line-height: 0.91;
  letter-spacing: 0;
}

.lead {
  max-width: 660px;
  color: var(--muted);
  font-size: clamp(1.12rem, 2vw, 1.42rem);
  line-height: 1.62;
}

.product-panel {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 28px 70px rgba(13, 31, 26, 0.12);
  backdrop-filter: blur(12px);
}

.product-panel p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.65;
}

.getgreen-card {
  display: flex;
  min-height: 148px;
  margin-bottom: 22px;
  padding: 24px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
  border: 1px solid rgba(15, 122, 79, 0.18);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff, var(--mint));
  text-align: center;
  text-decoration: none;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.getgreen-card:hover,
.getgreen-card:focus-visible {
  border-color: rgba(15, 122, 79, 0.42);
  box-shadow: 0 18px 38px rgba(15, 122, 79, 0.16);
  transform: translateY(-2px);
}

.getgreen-card img {
  width: min(230px, 100%);
  height: auto;
  display: block;
}

.getgreen-card span {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--emerald);
  color: #fff;
  font-weight: 800;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  padding: 0 0 58px;
}

.info-grid article {
  padding: 28px;
  border-top: 1px solid var(--line);
}

.info-grid h2 {
  margin-bottom: 12px;
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.info-grid p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.68;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 0 34px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.95rem;
}

footer a {
  color: var(--emerald-dark);
  font-weight: 760;
  text-decoration: none;
}

footer a:hover,
footer a:focus-visible {
  text-decoration: underline;
}

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

  .hero {
    grid-template-columns: 1fr;
    gap: 30px;
    align-items: start;
    padding: 28px 0 46px;
  }

  h1 {
    font-size: clamp(3.1rem, 15vw, 5.3rem);
  }

  .info-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

@media (max-width: 560px) {
  .topbar {
    padding: 20px 0;
  }

  .company-lockup {
    align-items: flex-start;
  }

  .hero {
    padding-top: 20px;
  }

  .product-panel,
  .info-grid article {
    padding: 22px;
  }

  footer {
    flex-direction: column;
  }
}
