:root {
  --ink: #101411;
  --paper: #f2efe6;
  --muted: #756f63;
  --signal: #d8ff6e;
  --line: rgba(16, 20, 17, 0.16);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  font-family: "IBM Plex Mono", Consolas, monospace;
  background:
    radial-gradient(circle at 18% 18%, rgba(216, 255, 110, 0.3), transparent 26rem),
    radial-gradient(circle at 80% 18%, rgba(16, 20, 17, 0.1), transparent 30rem),
    linear-gradient(90deg, rgba(16, 20, 17, 0.05) 1px, transparent 1px),
    linear-gradient(rgba(16, 20, 17, 0.05) 1px, transparent 1px),
    var(--paper);
  background-size: auto, auto, 44px 44px, 44px 44px, auto;
}

a {
  color: inherit;
}

.home-shell {
  width: min(1120px, calc(100% - 36px));
  min-height: 100vh;
  display: grid;
  align-items: center;
  margin: 0 auto;
  padding: 4rem 0;
}

.home-hero {
  max-width: 780px;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: clamp(1.4rem, 5vw, 4rem);
  background: rgba(242, 239, 230, 0.72);
  box-shadow: 0 30px 90px rgba(16, 20, 17, 0.12);
  backdrop-filter: blur(16px);
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 {
  max-width: 720px;
  margin: 0 0 1rem;
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(3rem, 9vw, 6.6rem);
  font-weight: 600;
  letter-spacing: -0.07em;
  line-height: 0.86;
}

.home-hero p:not(.eyebrow) {
  max-width: 660px;
  margin: 0 0 1.6rem;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.7;
}

.primary-link {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  padding: 0.74rem 1rem;
  background: var(--ink);
  color: var(--paper);
  font-weight: 700;
  text-decoration: none;
}

.primary-link:hover {
  background: var(--signal);
  color: var(--ink);
}
