:root {
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #102027;
  background: #f6f8f8;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 64px;
  padding: 0 28px;
  background: #ffffff;
  border-bottom: 1px solid #dce5e4;
}

.brand {
  font-weight: 800;
  letter-spacing: 0;
}

nav {
  display: flex;
  gap: 18px;
}

a {
  color: #08645b;
  font-weight: 700;
}

main {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 40px 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 10px;
  color: #0b6f67;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 12px;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(36px, 5vw, 68px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin: 0 0 10px;
  font-size: 20px;
}

p {
  color: #455f62;
  line-height: 1.55;
}

iframe {
  border: 0;
  max-width: 100%;
}

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

article {
  min-height: 150px;
  padding: 22px;
  background: #ffffff;
  border: 1px solid #dce5e4;
  border-radius: 8px;
}

@media (max-width: 900px) {
  .hero,
  .grid {
    grid-template-columns: 1fr;
  }

  .topbar {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    padding: 16px;
  }
}
