/* NODE hero — content centered ON TOP of the original Framer hero background (orb glow +
   floating cards are kept untouched). We only hide the original VOIDAI text stack. */
section[data-framer-name="Hero"] .node-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7vmin 6vmin;
  pointer-events: none;       /* let the original background cards/orb sit behind, untouched */
}
/* Soft center scrim only behind the text, so the original background stays visible. */
.node-hero-overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(ellipse 46% 42% at 50% 50%, rgba(8,9,14,0.78) 0%, rgba(8,9,14,0.4) 50%, rgba(8,9,14,0) 78%);
}
/* Spline robot: centered behind the text, above the scrim so it stays bright. */
#node-robot {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;        /* keep the chat + buttons clickable */
}
#node-robot spline-viewer { width: 100%; height: 100%; }
.node-hero-overlay .node-hero-center {
  position: relative;
  z-index: 3;
  width: min(820px, 94%);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 22px;
  pointer-events: auto;
}
.node-hero-overlay .node-hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(240, 240, 255, 0.85);
  font-family: "JetBrains Mono", ui-monospace, Menlo, monospace;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.node-hero-overlay .node-hero-pill::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #b8b8ff;
  box-shadow: 0 0 12px #b8b8ff;
}
.node-hero-overlay .node-hero-headline {
  margin: 0;
  color: #f0f0ff;
  font-family: "JetBrains Mono", "JetBrains Mono Placeholder", ui-monospace, monospace;
  font-weight: 500;
  font-size: clamp(30px, 5.4vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  word-break: break-word;
  overflow-wrap: anywhere;
}
.node-hero-overlay .node-hero-headline em {
  font-style: normal;
  background: linear-gradient(180deg, #f0f0ff 0%, rgba(184, 184, 255, 0.55) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.node-hero-overlay .node-hero-sub {
  margin: 0;
  color: rgba(240, 240, 255, 0.72);
  font-family: "Inter", "Inter Placeholder", system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  max-width: 560px;
}
.node-hero-overlay .node-hero-ctas {
  display: flex;
  gap: 14px;
  margin-top: 10px;
  justify-content: center;
  flex-wrap: wrap;
}
/* Buttons mirror the top-right "Get Template" nav button exactly: transparent fill, inset
   glow, no border, JetBrains Mono 16px, color rgb(240,240,255), padding 10px 20px. */
.node-hero-overlay .node-hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 8px;
  font-family: "JetBrains Mono", var(--node-mono, ui-monospace, monospace);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: -0.32px;
  text-decoration: none;
  color: rgb(240, 240, 255);
  background: transparent;
  border: 0;
  box-shadow: inset 0 0 12px 0 rgba(105, 105, 150, 0.4);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.node-hero-overlay .node-hero-btn:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.03);
  /* match the nav CTA's hover: inset glow + a crisp 1px periwinkle outline (ring,
     so there's no layout shift) */
  box-shadow: inset 0 0 16px 0 rgba(120, 125, 180, 0.6), 0 0 0 1px rgba(184, 184, 255, 0.35);
}
/* Primary reads a touch brighter while keeping the identical chrome. */
.node-hero-overlay .node-hero-btn-primary {
  box-shadow: inset 0 0 14px 0 rgba(140, 140, 195, 0.55);
}

@font-face {
  font-family: "Fragment Mono";
  src: url("/node.framer.website/fonts/fragment-mono.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* Keep the original hero background (orb glow + floating cards). Hide ONLY the original
   VOIDAI text stack (pill + wordmark + subtext + buttons); our centered content replaces it. */
section[data-framer-name="Hero"] .framer-rxuu3z {
  display: none !important;
}

@media (max-width: 600px) {
  .node-hero-overlay { padding: 8vmin 6vmin; }
  .node-hero-overlay .node-hero-sub { font-size: 15px; }
  .node-hero-overlay .node-hero-ctas { width: 100%; }
}
