:root {
  color-scheme: dark;
  --ink: #f5f8f1;
  --muted: rgba(245, 248, 241, 0.72);
  --deep: #050706;
  --edge: rgba(245, 248, 241, 0.16);
  --green: #8ee58f;
  --paper: #eee7d8;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--deep);
  letter-spacing: 0;
}

a {
  color: inherit;
}

.site-shell {
  min-height: 100svh;
  background: var(--deep);
  overflow: hidden;
}

.hero {
  position: relative;
  min-height: 100svh;
  isolation: isolate;
}

.hero-media,
.hero-media img,
.shade {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: -3;
  overflow: hidden;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 44%;
  filter: saturate(0.94) contrast(1.04) brightness(0.78);
}

.shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(5, 7, 6, 0.97) 0%, rgba(5, 7, 6, 0.84) 34%, rgba(5, 7, 6, 0.42) 72%, rgba(5, 7, 6, 0.72) 100%),
    linear-gradient(180deg, rgba(5, 7, 6, 0.2) 0%, rgba(5, 7, 6, 0.06) 46%, rgba(5, 7, 6, 0.92) 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(1180px, 100%);
  min-height: 100svh;
  margin: 0 auto;
  display: grid;
  align-items: center;
  padding: clamp(46px, 7vw, 86px) clamp(22px, 6vw, 78px);
}

.hero-copy {
  max-width: 780px;
}

.hero-copy::before {
  content: "";
  display: block;
  width: min(13rem, 46vw);
  height: 1px;
  margin-bottom: 26px;
  background: linear-gradient(90deg, var(--green), var(--paper), transparent);
}

.kicker {
  margin: 0 0 16px;
  color: var(--paper);
  font-size: clamp(0.78rem, 0.95vw, 0.92rem);
  font-weight: 780;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  max-width: 10ch;
  font-size: clamp(4.4rem, 11vw, 10rem);
  line-height: 0.84;
  font-weight: 780;
  letter-spacing: 0;
  text-wrap: balance;
}

.follow {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 12px;
  margin: clamp(28px, 4vw, 42px) 0 0;
  color: var(--muted);
  font-size: clamp(0.98rem, 1.3vw, 1.08rem);
}

.follow a {
  color: var(--green);
  font-weight: 780;
  text-decoration: none;
  border-bottom: 1px solid rgba(142, 229, 143, 0.52);
}

.follow a:hover {
  border-bottom-color: var(--green);
}

@media (max-width: 720px) {
  .hero-media img {
    object-position: center top;
  }

  .shade {
    background:
      linear-gradient(180deg, rgba(5, 7, 6, 0.18) 0%, rgba(5, 7, 6, 0.72) 38%, rgba(5, 7, 6, 0.98) 100%),
      linear-gradient(90deg, rgba(5, 7, 6, 0.84) 0%, rgba(5, 7, 6, 0.24) 100%);
  }

  .hero-inner {
    min-height: 100svh;
    align-items: end;
    padding: 44px 22px 64px;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(3.15rem, 17vw, 5.5rem);
    line-height: 0.92;
  }

  .follow {
    gap: 8px 12px;
  }
}
