:root {
  color-scheme: light;
  --ink: #1d2521;
  --muted: #627067;
  --line: #d9dfd7;
  --surface: #f5f3eb;
  --paper: #fffcf2;
  --accent: #b83f2f;
  --accent-2: #2f7d68;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background:
    radial-gradient(circle at 78% 22%, rgba(184, 63, 47, 0.13), transparent 28rem),
    linear-gradient(145deg, var(--paper), var(--surface));
}

body {
  min-height: 100%;
  margin: 0;
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

.shell {
  width: min(100%, 1080px);
  min-height: 100vh;
  margin: 0 auto;
  padding: 40px clamp(20px, 5vw, 64px);
  display: grid;
  align-items: center;
}

.hero {
  min-height: calc(100vh - 80px);
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: clamp(36px, 7vw, 84px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0;
}

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

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

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent-2);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  max-width: min(700px, 100%);
  margin: 0;
  font-size: clamp(3.6rem, 8vw, 6.8rem);
  line-height: 0.94;
  letter-spacing: 0;
}

.intro {
  max-width: min(610px, 100%);
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(1.12rem, 2vw, 1.42rem);
  line-height: 1.48;
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.signal-grid div {
  min-height: 116px;
  padding: 22px 24px 18px 0;
  border-right: 1px solid var(--line);
}

.signal-grid div:last-child {
  border-right: 0;
}

.number {
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 800;
}

.signal-grid p {
  margin: 16px 0 0;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  font-weight: 700;
  line-height: 1.25;
}

@media (max-width: 720px) {
  .shell {
    min-height: 100vh;
    padding: 28px 20px;
    overflow: hidden;
  }

  .hero {
    min-height: calc(100vh - 56px);
  }

  .hero-copy {
    width: calc(100vw - 40px);
    max-width: calc(100vw - 40px);
  }

  h1 {
    width: 100%;
    font-size: clamp(2.75rem, 13vw, 4.15rem);
    line-height: 0.98;
  }

  .intro {
    width: 100%;
  }

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

  .signal-grid div {
    min-height: 0;
    padding: 18px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .signal-grid div:last-child {
    border-bottom: 0;
  }
}
