:root {
  color-scheme: light;
  --ink: #121512;
  --muted: #5d665f;
  --paper: #f8f5ef;
  --paper-deep: #eee7dc;
  --accent: #1f7a57;
  --accent-soft: #dbeee4;
  --line: rgba(18, 21, 18, 0.12);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(31, 122, 87, 0.07) 1px, transparent 1px),
    linear-gradient(rgba(31, 122, 87, 0.055) 1px, transparent 1px),
    radial-gradient(circle at 32% 18%, #ffffff 0 16%, transparent 34%),
    var(--paper);
  background-size:
    34px 34px,
    34px 34px,
    100% 100%,
    auto;
}

body::before {
  position: fixed;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    repeating-linear-gradient(
      120deg,
      transparent 0 18px,
      rgba(18, 21, 18, 0.025) 18px 19px
    );
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), transparent 72%);
}

.page-shell {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: clamp(24px, 5vw, 72px);
}

.hero {
  width: min(760px, 100%);
  padding-block: clamp(24px, 8vh, 72px);
}

.brand-mark {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 22px;
  background:
    linear-gradient(145deg, #ffffff, var(--accent-soft)),
    var(--accent-soft);
  box-shadow: 0 22px 60px rgba(31, 122, 87, 0.14);
}

.brand-mark span {
  color: var(--accent);
  font-size: 34px;
  font-weight: 800;
  line-height: 1;
}

.eyebrow {
  margin: 34px 0 10px;
  color: var(--accent);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(3rem, 12vw, 7.5rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.lede {
  margin: clamp(20px, 3vw, 30px) 0 0;
  font-size: clamp(1.5rem, 4vw, 2.7rem);
  line-height: 1.12;
  font-weight: 700;
}

.subcopy {
  max-width: 560px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.16rem);
  line-height: 1.65;
}

.status-line {
  width: fit-content;
  max-width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: clamp(28px, 5vw, 48px);
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  color: var(--muted);
  font-size: 0.95rem;
  backdrop-filter: blur(12px);
}

.status-dot {
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(31, 122, 87, 0.12);
}

@media (max-width: 520px) {
  .page-shell {
    place-items: start center;
  }

  .brand-mark {
    width: 62px;
    height: 62px;
    border-radius: 18px;
  }

  .status-line {
    align-items: flex-start;
    border-radius: 18px;
  }

  .status-dot {
    margin-top: 5px;
  }
}
