:root {
  color-scheme: light;
  --bg: #f7f6f2;
  --panel: #ffffff;
  --ink: #383838;
  --muted: #66645f;
  --line: #dedbd3;
  --accent: #28aa86;
  --accent-dark: #1f8b70;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--bg);
}

body {
  min-height: 100%;
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(247, 246, 242, 0.96)),
    var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100%, var(--max));
  min-height: 78px;
  margin: 0 auto;
  padding: 0 28px;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: min(210px, 46vw);
}

.brand-logo,
.hero-logo {
  display: block;
  width: 100%;
  height: auto;
}

.nav-links,
.site-footer nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--muted);
  font-size: 0.96rem;
}

.nav-links a:hover,
.site-footer a:hover {
  color: var(--ink);
}

.hero {
  display: grid;
  place-items: center;
  min-height: min(62vh, 610px);
  padding: 88px 28px 74px;
  text-align: center;
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 740;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  line-height: 0;
}

.hero-logo {
  width: min(700px, 78vw);
  max-height: 280px;
  object-fit: contain;
}

.rule {
  width: 78px;
  height: 5px;
  margin: -24px 0 28px;
  background: var(--accent);
}

.tagline {
  max-width: 860px;
  margin: 0;
  font-size: clamp(1.65rem, 3.8vw, 2.55rem);
  line-height: 1.16;
}

.summary {
  max-width: 760px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 2.1vw, 1.22rem);
  line-height: 1.65;
}

.signals {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  max-width: min(100%, 1400px);
  margin: 0 auto;
  padding: 50px 42px 60px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.signals article {
  min-width: 0;
  padding: 14px 28px;
  text-align: center;
}

.signals article + article {
  border-left: 1px solid var(--line);
}

.icon {
  display: inline-grid;
  width: 54px;
  height: 54px;
  margin-bottom: 20px;
  place-items: center;
  color: var(--accent);
}

.icon svg {
  width: 54px;
  height: 54px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.65;
}

.signals h2 {
  margin: 0 0 10px;
  font-size: 1.08rem;
  line-height: 1.2;
}

.signals p {
  margin: 0 auto;
  max-width: 24ch;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.site-footer {
  display: grid;
  justify-items: center;
  gap: 18px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 34px 28px 38px;
  color: var(--muted);
  text-align: center;
}

.site-footer p {
  margin: 0;
  font-size: 0.95rem;
}

@media (max-width: 1260px) {
  .signals {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 36px;
  }

  .signals article {
    border-left: 1px solid var(--line);
  }

  .signals article:nth-child(3n + 1) {
    border-left: 0;
  }
}

@media (max-width: 860px) {
  .site-header {
    min-height: 70px;
  }

  .nav-links {
    gap: 18px;
    font-size: 0.9rem;
  }

  .hero {
    min-height: 520px;
    padding-top: 72px;
  }

  .signals {
    grid-template-columns: repeat(2, 1fr);
  }

  .signals article:nth-child(3n + 1) {
    border-left: 1px solid var(--line);
  }

  .signals article:nth-child(odd) {
    border-left: 0;
  }
}

@media (max-width: 560px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
    padding: 22px;
  }

  .nav-links,
  .site-footer nav {
    flex-wrap: wrap;
    gap: 14px 20px;
  }

  .hero {
    min-height: auto;
    padding: 68px 22px 58px;
  }

  .hero h1 {
    width: 100%;
  }

  .hero-logo {
    width: min(430px, 88vw);
  }

  .rule {
    margin-top: -12px;
  }

  .signals {
    grid-template-columns: 1fr;
    padding: 28px 22px 34px;
  }

  .signals article,
  .signals article + article {
    border-left: 0;
  }
}
