:root {
  --ink: #eef2ea;
  --muted: #98a19a;
  --line: rgba(224, 235, 226, 0.14);
  --panel: rgba(17, 24, 21, 0.76);
  --acid: #b8f34a;
  --ground: #090d0b;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(circle at 76% 16%, rgba(85, 124, 72, 0.24), transparent 34rem),
    linear-gradient(rgba(255,255,255,.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.022) 1px, transparent 1px),
    var(--ground);
  background-size: auto, 48px 48px, 48px 48px, auto;
  font-family: "Manrope", sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(184,243,74,.025), transparent);
  transform: skewX(-14deg);
}

.page-shell { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }

.nav {
  height: 88px;
  display: flex;
  align-items: center;
  gap: 24px;
  border-bottom: 1px solid var(--line);
  font-family: "DM Mono", monospace;
}

.brand { display: flex; align-items: center; gap: 12px; color: var(--ink); text-decoration: none; letter-spacing: .18em; font-weight: 500; }
.brand-mark { display: grid; grid-template-columns: repeat(3, 4px); align-items: end; gap: 3px; width: 18px; height: 18px; }
.brand-mark i { display: block; background: var(--acid); }
.brand-mark i:nth-child(1) { height: 8px; }.brand-mark i:nth-child(2) { height: 18px; }.brand-mark i:nth-child(3) { height: 12px; }
.nav-note { margin-right: auto; color: #68716b; font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
.text-button { color: var(--muted); border: 0; background: none; font: inherit; cursor: pointer; }

main { min-height: calc(100vh - 88px); padding: clamp(72px, 12vh, 130px) 0 70px; display: flex; align-items: flex-start; }
.hero { max-width: 930px; }
.eyebrow { display: flex; align-items: center; gap: 10px; color: var(--acid); font: 500 11px/1 "DM Mono", monospace; letter-spacing: .15em; }
.eyebrow span { width: 28px; height: 1px; background: var(--acid); }
h1 { margin: 26px 0 24px; font-size: clamp(54px, 8vw, 104px); line-height: .96; letter-spacing: -.065em; font-weight: 500; }
h1 em { color: #9ba39e; font-style: normal; }
.lede { max-width: 650px; color: var(--muted); font-size: clamp(17px, 2vw, 21px); line-height: 1.65; }

.actions { margin-top: 38px; }
.primary-button {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-height: 56px;
  padding: 0 18px;
  color: #11150f;
  background: var(--acid);
  border: 1px solid var(--acid);
  text-decoration: none;
  font-weight: 700;
  transition: transform .18s ease, box-shadow .18s ease;
}
.primary-button:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(184,243,74,.14); }
.primary-button:focus-visible, .text-button:focus-visible { outline: 2px solid white; outline-offset: 4px; }
.primary-button b { margin-left: 18px; font-size: 20px; }
.google-g { display: grid; place-items: center; width: 25px; height: 25px; border-radius: 50%; background: white; color: #4285f4; font-weight: 700; }
.setup-note { color: #737c76; font: 11px/1.5 "DM Mono", monospace; }
.setup-note code { color: #aab3ac; }
.access-denied { max-width: 980px; }
.access-denied h1 { font-size: clamp(48px, 7vw, 88px); }
.access-denied .lede strong { color: var(--ink); font-family: "DM Mono", monospace; font-size: .82em; font-weight: 500; }

@media (max-width: 720px) {
  .page-shell { width: min(100% - 24px, 1180px); }
  .nav { height: 70px; }.nav-note { display: none; }
  main { padding-top: 64px; } h1 { font-size: clamp(48px, 15vw, 72px); }
}
