:root {
  --ink: #10251d;
  --ink-soft: #456057;
  --forest: #123c2d;
  --moss: #a8dc64;
  --paper: #f5f3ea;
  --line: rgba(16, 37, 29, 0.16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
.site-shell {
  min-height: 100vh;
  overflow: hidden;
  background:
    linear-gradient(rgba(16, 37, 29, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 37, 29, 0.035) 1px, transparent 1px),
    var(--paper);
  background-size: 40px 40px;
}
.site-header, .hero, .scope-section, .site-footer {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}
.site-header {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--line);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 750;
  letter-spacing: -0.01em;
  text-decoration: none;
}
.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: var(--forest);
  color: var(--moss);
  font-size: 12px;
  letter-spacing: -0.04em;
}
.header-status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #5c9a42;
  box-shadow: 0 0 0 5px rgba(92, 154, 66, 0.12);
}
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(340px, 0.75fr);
  gap: clamp(48px, 8vw, 112px);
  align-items: center;
  padding-block: clamp(72px, 10vw, 136px);
}
.eyebrow {
  margin: 0 0 22px;
  color: #47712f;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.hero h1 {
  max-width: 760px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 6.5vw, 88px);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.98;
}
.hero-description {
  max-width: 680px;
  margin: 34px 0 0;
  color: var(--ink-soft);
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.7;
}
.access-card {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 28px;
  background: var(--forest);
  color: #f7faef;
  box-shadow: 0 28px 70px rgba(18, 60, 45, 0.2);
}
.access-card::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -90px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(168, 220, 100, 0.08);
}
.access-card-topline {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: rgba(247, 250, 239, 0.72);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.lock-label { color: var(--moss); }
.access-graphic {
  position: relative;
  width: 180px;
  height: 180px;
  margin: 44px auto 40px;
  display: grid;
  place-items: center;
}
.graphic-ring {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(168, 220, 100, 0.34);
  border-radius: 50%;
}
.ring-two { inset: 22px; border-color: rgba(247, 250, 239, 0.2); }
.graphic-core {
  width: 88px;
  height: 88px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--moss);
  color: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
  font-weight: 700;
  letter-spacing: -0.04em;
}
.access-card h2 {
  position: relative;
  z-index: 1;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 32px;
  font-weight: 500;
  letter-spacing: -0.035em;
}
.access-card p {
  position: relative;
  z-index: 1;
  margin: 14px 0 24px;
  color: rgba(247, 250, 239, 0.72);
  font-size: 14px;
  line-height: 1.65;
}
.access-button {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 54px;
  padding: 0 18px;
  border-radius: 14px;
  background: var(--moss);
  color: var(--forest);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease, background-color 160ms ease;
}
.access-button:hover { transform: translateY(-2px); background: #b8e77b; }
.access-button:focus-visible, .brand:focus-visible {
  outline: 3px solid #7caa4b;
  outline-offset: 4px;
}
.scope-section {
  padding-block: 78px 96px;
  border-top: 1px solid var(--line);
}
.section-heading {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 42px;
}
.section-heading .eyebrow { margin-bottom: 7px; }
.section-heading h2 {
  max-width: 650px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4vw, 50px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.08;
}
.focus-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}
.focus-card {
  min-height: 245px;
  padding: 30px;
  border-right: 1px solid var(--line);
}
.focus-card:first-child { border-left: 1px solid var(--line); }
.focus-number {
  color: #638a45;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
}
.focus-card h3 {
  margin: 62px 0 12px;
  font-size: 17px;
  letter-spacing: -0.02em;
}
.focus-card p {
  max-width: 300px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.65;
}
.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-block: 28px 40px;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 12px;
}
@media (max-width: 860px) {
  .hero { grid-template-columns: 1fr; }
  .access-card { max-width: 520px; }
  .section-heading { grid-template-columns: 1fr; gap: 12px; }
  .focus-grid { grid-template-columns: 1fr; }
  .focus-card, .focus-card:first-child {
    min-height: auto;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    border-left: 1px solid var(--line);
  }
  .focus-card h3 { margin-top: 30px; }
}
@media (max-width: 560px) {
  .site-header, .hero, .scope-section, .site-footer {
    width: min(100% - 32px, 1180px);
  }
  .site-header { min-height: 78px; }
  .header-status {
    max-width: 120px;
    justify-content: flex-end;
    text-align: right;
    font-size: 9px;
  }
  .hero { padding-block: 56px 72px; }
  .hero h1 { font-size: clamp(42px, 14vw, 62px); }
  .access-card { padding: 22px; border-radius: 22px; }
  .access-graphic {
    width: 150px;
    height: 150px;
    margin-block: 36px 34px;
  }
  .scope-section { padding-block: 62px 72px; }
  .site-footer { flex-direction: column; gap: 8px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .access-button { transition: none; }
}
