:root {
  color-scheme: light;
  --ink: #17211c;
  --muted: #5a6660;
  --line: #d8ded8;
  --paper: #fafbf7;
  --mint: #9edfc1;
  --amber: #f5c26b;
  --coral: #ef7a68;
  --blue: #6ba7de;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--paper);
}

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

a {
  color: inherit;
}

.shell {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
}

.hero {
  min-height: 88vh;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.78fr);
  gap: clamp(32px, 7vw, 88px);
  align-items: center;
  padding: 34px 0 42px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: clamp(54px, 10vh, 112px);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 720;
}

.brand img {
  display: block;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: clamp(0.82rem, 1.4vw, 0.94rem);
  font-weight: 740;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  max-width: 680px;
  font-size: clamp(4rem, 9vw, 8.6rem);
  line-height: 0.88;
  letter-spacing: 0;
}

.lede {
  max-width: 620px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(1.12rem, 2vw, 1.42rem);
  line-height: 1.5;
}

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

.primary {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
  padding: 0 20px;
  font-weight: 760;
  text-decoration: none;
}

.primary:hover {
  background: #29362f;
}

.visual {
  min-height: 440px;
  display: grid;
  place-items: center;
}

.visual img {
  width: min(100%, 470px);
  height: auto;
  display: block;
}

.signals {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
  margin: -4vh 0 56px;
}

.signals article {
  min-height: 160px;
  background: rgba(255, 255, 255, 0.58);
  padding: 26px;
}

.signals h2 {
  margin: 0 0 14px;
  font-size: 1rem;
}

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

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

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 24px 0 34px;
  }

  .brand {
    margin-bottom: 76px;
  }

  h1 {
    font-size: clamp(3.55rem, 18vw, 6rem);
  }

  .visual {
    min-height: 250px;
  }

  .visual img {
    width: min(100%, 360px);
  }

  .signals {
    grid-template-columns: 1fr;
    margin-top: 0;
  }
}
