/* ============================================================
   Shared dark hero — used by every landing page except index
   (index uses styles.css `section.hero{...}` directly which
    is the canonical source these rules were extracted from).
   ============================================================ */

section.hero{
  --h-bg:       #0a0908;
  --h-bg-2:     #121110;
  --h-bg-3:     #171615;
  --h-border:   rgba(255,255,255,.06);
  --h-border-2: rgba(255,255,255,.10);
  --h-border-3: rgba(255,255,255,.18);
  --h-text:     #f6f4ee;
  --h-muted:    #bfbdb6;
  --h-dim:      #8a8780;
  --h-faint:    #5a574f;
  --h-accent:   #0099ff;
  --h-good:     #80d962;
  --c-orange:   #ffb454;
  --c-purple:   #d2a6ff;
  --c-green:    #80d962;
  --c-cyan:     #5ac2ff;
  --c-comment:  #5c6370;
  --h-mono:     "JetBrains Mono",ui-monospace,"SF Mono",Menlo,monospace;

  position:relative;
  background:var(--h-bg);
  color:var(--h-text);
  overflow:hidden;
  padding:160px 0 80px;
  isolation:isolate;
  border-radius:0;
}
section.hero *{box-sizing:border-box}
section.hero .hero-pill{display:none}
section.hero .hero-meta{display:none}
section.hero h1 .accent{color:var(--h-text)}

section.hero .wrap{
  width:100%;max-width:1200px;margin:0 auto;padding:0 24px;
}
section.hero .hero-inner{text-align:center}

/* Optional eyebrow label above the h1 */
section.hero .hero-eyebrow{
  display:inline-block;
  font-family:var(--h-mono);
  font-size:11px;font-weight:500;
  letter-spacing:.12em;text-transform:uppercase;
  color:var(--h-dim);
  margin:0 0 18px;
}

/* Optional subtle grid background layer */
section.hero .hero-grid-bg{
  position:absolute;inset:0;z-index:-1;pointer-events:none;
  background-image:
    linear-gradient(to right, rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size:64px 64px;
  mask-image:radial-gradient(ellipse 80% 60% at 50% 30%, #000 30%, transparent 80%);
  -webkit-mask-image:radial-gradient(ellipse 80% 60% at 50% 30%, #000 30%, transparent 80%);
}

/* Pill (kept for parity with index hero markup) */
section.hero .hero-pill{
  display:inline-flex;align-items:center;gap:0;
  padding:6px;
  border:1px solid var(--h-border-2);
  border-radius:999px;
  background:rgba(255,255,255,.025);
  font-size:13px;
  margin-bottom:32px;
  box-shadow:none;
}
section.hero .hero-pill .pill-tag{
  display:inline-flex;align-items:center;
  height:26px;padding:0 12px;border-radius:999px;
  background:var(--h-accent);color:#0a0908;
  font-family:var(--h-mono);font-weight:600;font-size:11px;
  letter-spacing:.06em;text-transform:uppercase;
}
section.hero .hero-pill .pill-body{
  padding:0 14px 0 12px;color:var(--h-muted);font-size:13px;
}

/* H1 / sub / meta */
section.hero h1{
  font-family:"Inter",ui-sans-serif,system-ui,sans-serif;
  font-size:clamp(32px,4vw,52px);
  line-height:1.04;letter-spacing:-.035em;font-weight:600;
  color:var(--h-text);
  margin:0 auto 24px;max-width:none;
  text-wrap:balance;
}
section.hero h1 .accent{display:block;color:var(--h-muted)}
section.hero .hero-sub{
  font-size:clamp(15px,1.1vw,17px);
  color:var(--h-muted);
  max-width:62ch;margin:0 auto 28px;line-height:1.55;
}
section.hero .hero-actions{
  display:flex;flex-direction:row;gap:14px;align-items:center;
  flex-wrap:nowrap;justify-content:center;
}
section.hero .hero-meta{
  margin-top:18px;font-size:13px;color:var(--h-dim);
}
section.hero .hero-meta a{color:var(--c-cyan);text-decoration:underline;text-underline-offset:3px}
section.hero .hero-meta a:hover{color:var(--h-text)}

/* Buttons (scoped) */
section.hero .btn{
  display:inline-flex;align-items:center;justify-content:center;gap:8px;
  height:44px;padding:0 22px;border-radius:999px;
  background:var(--h-text);color:#0a0908;
  border:1px solid transparent;
  font-family:"Inter",ui-sans-serif,system-ui,sans-serif;
  font-size:14px;font-weight:600;letter-spacing:-.005em;
  white-space:nowrap;
  transition:transform .25s cubic-bezier(.16,1,.3,1),background .2s,box-shadow .3s;
  text-decoration:none;
}
section.hero .btn:hover{transform:translateY(-1px);background:#fff}
section.hero .btn-text{
  display:inline-flex;align-items:center;gap:6px;height:44px;padding:0 8px;
  color:var(--h-muted);font-size:14px;font-weight:500;
  transition:color .2s;text-decoration:none;
}
section.hero .btn-text:hover{color:var(--h-text)}
