.neon-home {
  --n-bg:        #0F172A;
  --n-bg-deep:   #060914;
  --n-surface:   #131B2E;
  --n-surface-2: #1B2540;
  --n-text:      #F8FAFC;
  --n-text-2:    #CBD5E1;
  --n-text-3:    #94A3B8;
  --n-gold:      #F59E0B;
  --n-gold-l:    #FBBF24;
  --n-purple:    #8B5CF6;
  --n-purple-l:  #A78BFA;
  --n-cyan:      #06B6D4;
  --n-green:     #10B981;
  --n-pink:      #EC4899;
  --n-red:       #EF4444;
  --n-border:    rgba(139,92,246,0.18);
  --n-border-h:  rgba(139,92,246,0.45);

  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--n-text);
  background: var(--n-bg);
  position: relative;
  overflow-x: hidden;
}

/* ── Global grid mesh background ── */
.neon-home::before {
  content: ''; position: fixed; inset: 0;
  background-image:
    linear-gradient(rgba(139,92,246,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139,92,246,0.05) 1px, transparent 1px);
  background-size: 90px 90px;
  mask-image: radial-gradient(ellipse 85% 70% at 50% 30%, #000 25%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 85% 70% at 50% 30%, #000 25%, transparent 80%);
  pointer-events: none;
  z-index: 0;
}
.neon-home > * { position: relative; z-index: 2; }

/* ── Site-wide animated beam network (Hub Network Beam) ── */
.neon-home #nBeamCanvas {
  position: fixed; inset: 0;
  width: 100vw; height: 100vh;
  pointer-events: none;
  z-index: 1;
  opacity: .85;
  mix-blend-mode: screen;
}
[data-theme="light"] .neon-home #nBeamCanvas { opacity: .55; mix-blend-mode: multiply; }

/* ── Override existing nav + footer to match neon ── */
body { background: var(--n-bg, #0F172A) !important; }
.sh-navbar { background: rgba(6,9,20,0.85) !important; backdrop-filter: blur(20px) saturate(140%); border-bottom: 1px solid rgba(139,92,246,0.2) !important; }
.sh-footer, footer { background: var(--n-bg-deep, #060914) !important; border-top: 1px solid rgba(139,92,246,0.2) !important; }

/* ── Typography ── */
.neon-home h1, .neon-home h2, .neon-home h3, .neon-home h4, .neon-home h5,
.neon-home .n-display, .neon-home .n-h1, .neon-home .n-h2 {
  font-family: 'Sora', 'Inter', sans-serif;
  font-weight: 700;
  letter-spacing: 0;
}
.neon-home p, .neon-home li, .neon-home span, .neon-home td, .neon-home a {
  font-family: 'Inter', sans-serif;
}

.neon-home .n-grad-gold {
  background: linear-gradient(135deg, #FBBF24 0%, #F59E0B 50%, #FBBF24 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: n-shimmer 6s ease-in-out infinite;
}
.neon-home .n-grad-purple {
  background: linear-gradient(135deg, #A78BFA 0%, #8B5CF6 50%, #06B6D4 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: n-shimmer 6s ease-in-out infinite;
}
@keyframes n-shimmer { 0%,100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }

.neon-home .n-glow-gold   { text-shadow: 0 0 12px rgba(245,158,11,.55), 0 0 30px rgba(245,158,11,.25); }
.neon-home .n-glow-purple { text-shadow: 0 0 12px rgba(139,92,246,.55), 0 0 30px rgba(139,92,246,.25); }
.neon-home .n-glow-cyan   { text-shadow: 0 0 12px rgba(6,182,212,.55), 0 0 30px rgba(6,182,212,.25); }

/* ── Sections ── */
.neon-home .n-sec { padding: 5rem 0; position: relative; }
.neon-home .n-sec-head { text-align: center; max-width: 760px; margin: 0 auto 3rem; }
.neon-home .n-eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: 'Inter', sans-serif;
  font-size: .76rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--n-gold);
  padding: .45rem 1rem;
  border-radius: 999px;
  background: rgba(245,158,11,.06);
  border: 1px solid rgba(245,158,11,.25);
  margin-bottom: 1.4rem;
  box-shadow: 0 0 24px rgba(245,158,11,.12), inset 0 0 10px rgba(245,158,11,.04);
}
.neon-home .n-eyebrow::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--n-gold); box-shadow: 0 0 8px var(--n-gold);
  animation: n-pulse 2s ease-in-out infinite;
}
@keyframes n-pulse { 0%,100% { opacity: .5; } 50% { opacity: 1; } }
.neon-home .n-eyebrow.purple { color: var(--n-purple-l); background: rgba(139,92,246,.06); border-color: rgba(139,92,246,.25); box-shadow: 0 0 16px rgba(139,92,246,.15), inset 0 0 10px rgba(139,92,246,.06); }
.neon-home .n-eyebrow.purple::before { background: var(--n-purple); box-shadow: 0 0 8px var(--n-purple); }
.neon-home .n-eyebrow.cyan { color: var(--n-cyan); background: rgba(6,182,212,.06); border-color: rgba(6,182,212,.25); box-shadow: 0 0 16px rgba(6,182,212,.15), inset 0 0 10px rgba(6,182,212,.06); }
.neon-home .n-eyebrow.cyan::before { background: var(--n-cyan); box-shadow: 0 0 8px var(--n-cyan); }

.neon-home .n-h2 {
  font-size: clamp(2rem, 4.2vw, 3rem);
  font-weight: 700;
  margin: 0 0 1rem;
  line-height: 1.08;
  letter-spacing: -.025em;
}
.neon-home .n-sub {
  font-size: 1.05rem; line-height: 1.65;
  color: var(--n-text-3);
  margin: 0 auto; max-width: 640px;
  font-family: 'Inter', sans-serif;
}

/* ── Buttons ── */
.neon-home .n-btn {
  display: inline-flex; align-items: center; gap: .6rem;
  padding: .85rem 1.7rem;
  font-family: 'Sora', 'Inter', sans-serif;
  font-size: .82rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  text-decoration: none;
  border-radius: 4px;
  border: 1px solid transparent;
  transition: transform .2s ease, box-shadow .25s ease, background .2s ease;
  position: relative; overflow: hidden;
  cursor: pointer;
}
.neon-home .n-btn-primary {
  background: linear-gradient(135deg, var(--n-gold), var(--n-gold-l));
  color: #0B0F1C;
  box-shadow: 0 0 0 1px rgba(245,158,11,.3), 0 8px 24px -6px rgba(245,158,11,.55), inset 0 1px 0 rgba(255,255,255,.3);
}
.neon-home .n-btn-primary:hover { transform: translateY(-2px); color: #0B0F1C; box-shadow: 0 0 0 1px rgba(245,158,11,.5), 0 14px 36px -8px rgba(245,158,11,.7), inset 0 1px 0 rgba(255,255,255,.4); }
.neon-home .n-btn-ghost {
  background: rgba(139,92,246,.08);
  color: var(--n-purple-l);
  border-color: rgba(139,92,246,.4);
  box-shadow: inset 0 0 12px rgba(139,92,246,.1);
}
.neon-home .n-btn-ghost:hover { background: rgba(139,92,246,.18); color: #fff; transform: translateY(-2px); box-shadow: 0 0 0 1px rgba(139,92,246,.5), 0 12px 30px -8px rgba(139,92,246,.45), inset 0 0 16px rgba(139,92,246,.15); }
.neon-home .n-btn::after {
  content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.2), transparent);
  transition: left .6s ease;
}
.neon-home .n-btn:hover::after { left: 100%; }

/* ── Reveal ── */
.neon-home .n-reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s ease, transform .8s ease; }
.neon-home .n-reveal.is-in { opacity: 1; transform: none; }
.neon-home .n-reveal[data-d="1"] { transition-delay: .08s; }
.neon-home .n-reveal[data-d="2"] { transition-delay: .16s; }
.neon-home .n-reveal[data-d="3"] { transition-delay: .24s; }
.neon-home .n-reveal[data-d="4"] { transition-delay: .32s; }
.neon-home .n-reveal[data-d="5"] { transition-delay: .40s; }
@media (prefers-reduced-motion: reduce) {
  .neon-home *, .neon-home *::before, .neon-home *::after { animation: none !important; transition: none !important; }
  .neon-home .n-reveal { opacity: 1 !important; transform: none !important; }
}

/* ════ TICKER ════ */
.neon-home .n-ticker {
  border-top: 1px solid var(--n-border);
  border-bottom: 1px solid var(--n-border);
  background: linear-gradient(180deg, rgba(139,92,246,.06), rgba(245,158,11,.04));
  overflow: hidden; position: relative;
}
.neon-home .n-ticker-track {
  display: flex; gap: 3rem; padding: .85rem 0;
  white-space: nowrap;
  animation: n-marquee 50s linear infinite;
  font-family: 'Inter', sans-serif;
  font-size: .85rem;
  color: var(--n-text-2);
}
.neon-home .n-ticker-item { display: inline-flex; align-items: center; gap: .55rem; }
.neon-home .n-ticker-item i { color: var(--n-gold); text-shadow: 0 0 8px rgba(245,158,11,.5); }
.neon-home .n-ticker-item strong { color: var(--n-text); font-weight: 600; }
@keyframes n-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ════ HERO (V3) ════ */
.neon-home .n-hero {
  position: relative;
  padding: 5rem 0 5rem;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.neon-home .n-hero-canvas {
  position: absolute; inset: 0;
  z-index: 0;
  pointer-events: none;
}
.neon-home .n-hero-canvas canvas {
  display: block; width: 100% !important; height: 100% !important;
  filter: drop-shadow(0 0 20px rgba(139,92,246,.2));
}
.neon-home .n-hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(50% 50% at 30% 30%, rgba(139,92,246,.22), transparent 60%),
    radial-gradient(40% 40% at 80% 30%, rgba(245,158,11,.14), transparent 60%),
    radial-gradient(60% 50% at 50% 100%, rgba(6,182,212,.10), transparent 60%);
  pointer-events: none;
  animation: n-blob-drift 22s ease-in-out infinite alternate;
  z-index: 1;
}
.neon-home .n-hero > .container { position: relative; z-index: 2; }
@keyframes n-blob-drift { 0% { transform: translate(0,0) scale(1); } 100% { transform: translate(2%,1%) scale(1.05); } }

.neon-home .n-hero-status {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: 'Inter', sans-serif;
  font-size: .82rem; font-weight: 500;
  color: var(--n-text-2);
  padding: .45rem .9rem;
  border-radius: 999px;
  background: rgba(16,185,129,.08);
  border: 1px solid rgba(16,185,129,.25);
  box-shadow: 0 0 24px rgba(16,185,129,.12);
}
.neon-home .n-hero-status::before {
  content: ''; width: 7px; height: 7px; border-radius: 50%;
  background: var(--n-green);
  box-shadow: 0 0 10px var(--n-green);
  animation: n-pulse 1.8s ease-in-out infinite;
}
.neon-home .n-hero-status strong { color: var(--n-text); font-weight: 600; }
.neon-home .n-hero h1 {
  font-size: clamp(2.8rem, 6.4vw, 5.2rem);
  font-weight: 800;
  line-height: .98;
  letter-spacing: -.04em;
  margin: 1.5rem 0 1.3rem;
}
.neon-home .n-hero h1 .n-line { display: block; }
.neon-home .n-hero-lead {
  font-size: 1.1rem; line-height: 1.7;
  color: var(--n-text-2);
  max-width: 600px;
  margin-bottom: 2rem;
}
.neon-home .n-hero-cta { display: flex; gap: .9rem; flex-wrap: wrap; }
.neon-home .n-hero-tags {
  display: flex; gap: .55rem; flex-wrap: wrap;
  margin-top: 2.2rem;
}
.neon-home .n-tag {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .4rem .9rem;
  font-size: .78rem; font-weight: 500;
  color: var(--n-text-2);
  background: rgba(139,92,246,.06);
  border: 1px solid rgba(139,92,246,.2);
  border-radius: 4px;
  transition: all .2s ease;
}
.neon-home .n-tag:hover { background: rgba(139,92,246,.14); color: #fff; border-color: rgba(139,92,246,.5); box-shadow: 0 0 12px rgba(139,92,246,.3); }
.neon-home .n-tag i { color: var(--n-gold); }

/* ── Hero right panel: terminal-style stat block ── */
.neon-home .n-bento {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .85rem;
}
.neon-home .n-cell {
  background: linear-gradient(180deg, rgba(139,92,246,.08), rgba(255,255,255,.01));
  border: 1px solid var(--n-border);
  border-radius: 6px;
  padding: 1.2rem;
  position: relative;
  overflow: hidden;
  transition: border-color .3s ease, box-shadow .3s ease, transform .3s ease;
}
.neon-home .n-cell.span-2 { grid-column: span 2; }
.neon-home .n-cell:hover { transform: translateY(-2px); border-color: var(--n-border-h); box-shadow: 0 0 0 1px var(--n-border-h), 0 14px 30px -10px rgba(139,92,246,.4), inset 0 0 16px rgba(139,92,246,.08); }
.neon-home .n-cell-label {
  font-family: 'Sora', 'Inter', sans-serif;
  font-size: .65rem; font-weight: 600;
  letter-spacing: .25em; text-transform: uppercase;
  color: var(--n-text-3);
  margin-bottom: .55rem;
}
.neon-home .n-cell-value {
  font-family: 'Sora', 'Inter', sans-serif;
  font-size: 1.7rem; font-weight: 700;
  color: var(--n-gold);
  text-shadow: 0 0 14px rgba(245,158,11,.4);
  font-variant-numeric: tabular-nums;
}
.neon-home .n-cell-desc { font-size: .8rem; color: var(--n-text-3); margin-top: .3rem; }
.neon-home .n-cell-icon {
  position: absolute; top: 1rem; right: 1rem;
  font-size: 1.3rem; color: var(--n-purple-l);
  opacity: .6;
}

/* ════ TRUST STRIP ════ */
.neon-home .n-trust {
  border-top: 1px solid var(--n-border);
  border-bottom: 1px solid var(--n-border);
  background: rgba(6,9,20,0.5);
  padding: 1.1rem 0;
}
.neon-home .n-trust-row {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 1.2rem 2rem;
  font-size: .78rem; color: var(--n-text-3);
  font-family: 'Sora', 'Inter', sans-serif;
  letter-spacing: .1em; text-transform: uppercase;
}
.neon-home .n-trust-row span { display: inline-flex; align-items: center; gap: .45rem; }
.neon-home .n-trust-row i { color: var(--n-gold); text-shadow: 0 0 8px rgba(245,158,11,.4); }

/* ════ STATS ════ */
.neon-home .n-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
@media (max-width: 720px) { .neon-home .n-stats { grid-template-columns: repeat(2, 1fr); } }
.neon-home .n-stat {
  text-align: center;
  padding: 2rem 1rem;
  background: linear-gradient(180deg, rgba(139,92,246,.06), rgba(255,255,255,0));
  border: 1px solid var(--n-border);
  border-radius: 6px;
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.neon-home .n-stat:hover { transform: translateY(-4px); border-color: var(--n-border-h); box-shadow: 0 0 0 1px var(--n-border-h), 0 0 30px rgba(139,92,246,.2); }
.neon-home .n-stat-num {
  font-family: 'Sora', 'Inter', sans-serif;
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  color: var(--n-gold);
  text-shadow: 0 0 18px rgba(245,158,11,.55), 0 0 36px rgba(245,158,11,.25);
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.neon-home .n-stat-lbl {
  font-family: 'Sora', 'Inter', sans-serif;
  font-size: .72rem; font-weight: 500;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--n-text-3);
  margin-top: .8rem;
}

/* ════ NEON CARD (universal product/service/tool) ════ */
.neon-home .n-card {
  --c-accent: var(--n-purple);
  position: relative; isolation: isolate;
  display: flex; flex-direction: column;
  padding: 1.5rem 1.4rem;
  background: linear-gradient(180deg, rgba(139,92,246,.06), rgba(255,255,255,.005));
  border: 1px solid var(--n-border);
  border-radius: 6px;
  text-decoration: none; color: inherit;
  overflow: hidden;
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.neon-home .n-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--c-accent), transparent);
  opacity: 0;
  transition: opacity .35s ease;
}
.neon-home .n-card::after {
  content: ''; position: absolute; top: -30%; right: -20%;
  width: 55%; height: 100%;
  background: radial-gradient(circle, var(--c-accent), transparent 60%);
  filter: blur(38px); opacity: 0;
  transition: opacity .4s ease;
  pointer-events: none;
}
.neon-home .n-card:hover {
  transform: translateY(-5px);
  border-color: color-mix(in srgb, var(--c-accent) 50%, transparent);
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--c-accent) 40%, transparent), 0 24px 50px -22px color-mix(in srgb, var(--c-accent) 50%, transparent), inset 0 0 22px color-mix(in srgb, var(--c-accent) 10%, transparent);
  color: inherit;
}
.neon-home .n-card:hover::before { opacity: 1; }
.neon-home .n-card:hover::after { opacity: .4; }

.neon-home .n-card-icon {
  width: 44px; height: 44px; border-radius: 6px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  background: color-mix(in srgb, var(--c-accent) 12%, transparent);
  color: var(--c-accent);
  border: 1px solid color-mix(in srgb, var(--c-accent) 35%, transparent);
  text-shadow: 0 0 10px color-mix(in srgb, var(--c-accent) 60%, transparent);
  margin-bottom: 1rem;
  transition: transform .35s ease, box-shadow .35s ease;
}
.neon-home .n-card:hover .n-card-icon { transform: rotate(-4deg) scale(1.08); box-shadow: 0 0 18px color-mix(in srgb, var(--c-accent) 40%, transparent); }

.neon-home .n-card h3, .neon-home .n-card h4 {
  font-family: 'Sora', 'Inter', sans-serif;
  font-size: 1.05rem; font-weight: 600;
  margin: 0 0 .4rem; color: var(--n-text);
  letter-spacing: 0;
}
.neon-home .n-card-tag {
  font-family: 'Sora', 'Inter', sans-serif;
  font-size: .65rem; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: .85rem;
}
.neon-home .n-card-desc {
  font-size: .9rem; line-height: 1.6;
  color: var(--n-text-3);
  margin: 0 0 1rem; flex: 1;
}
.neon-home .n-card-link {
  font-family: 'Sora', 'Inter', sans-serif;
  font-size: .72rem; font-weight: 600;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--c-accent);
  display: inline-flex; gap: .4rem; align-items: center;
}
.neon-home .n-card-link i { transition: transform .25s ease; }
.neon-home .n-card:hover .n-card-link i { transform: translateX(4px); }

.neon-home .n-pill {
  position: absolute; top: 1rem; right: 1rem;
  font-family: 'Sora', 'Inter', sans-serif;
  font-size: .58rem; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
  padding: .25rem .55rem;
  border-radius: 3px;
  background: rgba(16,185,129,.12);
  color: var(--n-green);
  border: 1px solid rgba(16,185,129,.35);
  z-index: 3;
}
.neon-home .n-pill.fork { background: rgba(245,158,11,.12); color: var(--n-gold-l); border-color: rgba(245,158,11,.35); }
.neon-home .n-pill.new  { background: rgba(236,72,153,.12); color: var(--n-pink); border-color: rgba(236,72,153,.4); }

/* ════ PRODUCT CARDS (override existing .sh-product-card) ════ */
.neon-home .sh-product-card {
  background: linear-gradient(180deg, rgba(139,92,246,.06), rgba(255,255,255,.005)) !important;
  border: 1px solid var(--n-border) !important;
  border-radius: 6px !important;
  overflow: hidden;
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
  position: relative;
}
.neon-home .sh-product-card:hover {
  transform: translateY(-5px);
  border-color: var(--n-border-h) !important;
  box-shadow: 0 0 0 1px var(--n-border-h), 0 24px 50px -22px rgba(139,92,246,.5), inset 0 0 18px rgba(139,92,246,.08) !important;
}
.neon-home .sh-product-thumb { overflow: hidden; border-radius: 6px 6px 0 0; }
.neon-home .sh-product-thumb img,
.neon-home .sh-product-thumb-placeholder { transition: transform .6s ease; }
.neon-home .sh-product-card:hover .sh-product-thumb img,
.neon-home .sh-product-card:hover .sh-product-thumb-placeholder { transform: scale(1.08); }
.neon-home .sh-product-title {
  font-family: 'Orbitron', sans-serif !important;
  font-size: .95rem !important; font-weight: 600 !important;
  color: var(--n-text) !important;
  letter-spacing: 0 !important;
}
.neon-home .sh-product-category {
  font-family: 'Orbitron', sans-serif !important;
  font-size: .62rem !important;
  letter-spacing: .2em !important; text-transform: uppercase;
  color: var(--n-purple-l) !important;
}
.neon-home .sh-product-desc { font-size: .85rem !important; color: var(--n-text-3) !important; line-height: 1.55 !important; }
.neon-home .sh-product-price { font-family: 'Orbitron', sans-serif !important; color: var(--n-gold) !important; text-shadow: 0 0 10px rgba(245,158,11,.35); font-weight: 700 !important; }
.neon-home .sh-product-price .badge-free { background: var(--n-green) !important; color: #061b0e !important; font-family: 'Orbitron', sans-serif !important; letter-spacing: .15em; font-size: .68rem; padding: .25rem .55rem; border-radius: 3px; }
.neon-home .sh-badge { font-family: 'Orbitron', sans-serif !important; letter-spacing: .12em; font-size: .58rem !important; padding: .25rem .5rem !important; border-radius: 3px !important; backdrop-filter: blur(8px); }
.neon-home .sh-badge-featured { background: rgba(245,158,11,.85) !important; color: #0B0F1C !important; box-shadow: 0 0 10px rgba(245,158,11,.5); }
.neon-home .sh-badge-new { background: rgba(236,72,153,.85) !important; color: #fff !important; box-shadow: 0 0 10px rgba(236,72,153,.5); }
.neon-home .sh-badge-popular { background: rgba(139,92,246,.85) !important; color: #fff !important; box-shadow: 0 0 10px rgba(139,92,246,.5); }
.neon-home .sh-badge-sale { background: rgba(239,68,68,.85) !important; color: #fff !important; box-shadow: 0 0 10px rgba(239,68,68,.5); }

/* ════ AUDIENCE / B2B-B2C CARDS ════ */
.neon-home .n-aud-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
@media (max-width: 800px) { .neon-home .n-aud-grid { grid-template-columns: 1fr; } }
.neon-home .n-aud {
  --c-accent: var(--n-purple);
  position: relative; isolation: isolate;
  padding: 2rem 1.8rem;
  background: linear-gradient(180deg, rgba(139,92,246,.10), rgba(255,255,255,.005));
  border: 1px solid var(--n-border);
  border-radius: 6px;
  overflow: hidden;
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.neon-home .n-aud.b2c { --c-accent: var(--n-cyan); background: linear-gradient(180deg, rgba(6,182,212,.10), rgba(255,255,255,.005)); }
.neon-home .n-aud:hover { transform: translateY(-4px); border-color: color-mix(in srgb, var(--c-accent) 50%, transparent); box-shadow: 0 0 0 1px color-mix(in srgb, var(--c-accent) 40%, transparent), 0 24px 50px -20px color-mix(in srgb, var(--c-accent) 50%, transparent); }
.neon-home .n-aud-h3 {
  font-family: 'Sora', 'Inter', sans-serif;
  font-size: 1.2rem; font-weight: 700;
  margin: .8rem 0 .4rem;
  color: var(--n-text);
}
.neon-home .n-aud-small { font-size: .72rem; color: var(--n-text-3); display: block; margin-top: .25rem; font-family: 'Inter', sans-serif; letter-spacing: 0; text-transform: none; }
.neon-home .n-aud-desc { color: var(--n-text-3); font-size: .9rem; line-height: 1.6; margin: 0 0 1rem; }
.neon-home .n-aud-list { list-style: none; padding: 0; margin: 0 0 1.4rem; display: grid; gap: .55rem; }
.neon-home .n-aud-list li { font-size: .85rem; color: var(--n-text-2); display: flex; gap: .5rem; align-items: flex-start; }
.neon-home .n-aud-list i { color: var(--c-accent); margin-top: 3px; flex-shrink: 0; text-shadow: 0 0 8px color-mix(in srgb, var(--c-accent) 60%, transparent); }

/* ════ COMPARE TABLE ════ */
.neon-home .n-compare {
  border: 1px solid var(--n-border);
  border-radius: 6px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(139,92,246,.04), transparent);
}
.neon-home .n-compare table { width: 100%; border-collapse: collapse; }
.neon-home .n-compare th, .neon-home .n-compare td { padding: 1rem 1.2rem; text-align: left; border-bottom: 1px solid var(--n-border); }
.neon-home .n-compare th { font-family: 'Sora', 'Inter', sans-serif; font-size: .7rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--n-text-3); background: rgba(6,9,20,.5); }
.neon-home .n-compare th.us { color: var(--n-gold); text-shadow: 0 0 10px rgba(245,158,11,.4); }
.neon-home .n-compare td { color: var(--n-text-3); font-size: .9rem; }
.neon-home .n-compare td.us { color: var(--n-text); }
.neon-home .n-compare tr:last-child td { border-bottom: 0; }
.neon-home .n-compare tbody tr { transition: background .25s ease; }
.neon-home .n-compare tbody tr:hover { background: rgba(139,92,246,.06); }
.neon-home .n-compare .check { color: var(--n-green); text-shadow: 0 0 8px rgba(16,185,129,.5); font-weight: 700; margin-right: .35rem; }

/* ════ FAQ ════ */
.neon-home .n-faq { display: grid; gap: .7rem; max-width: 820px; margin: 0 auto; }
.neon-home .n-faq-item {
  border: 1px solid var(--n-border);
  background: linear-gradient(180deg, rgba(139,92,246,.04), transparent);
  border-radius: 6px;
  overflow: hidden;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.neon-home .n-faq-item[open] { border-color: var(--n-border-h); box-shadow: 0 0 0 1px var(--n-border-h), 0 0 24px rgba(139,92,246,.18); background: linear-gradient(180deg, rgba(139,92,246,.08), transparent); }
.neon-home .n-faq-item summary {
  list-style: none; cursor: pointer;
  padding: 1.1rem 1.4rem;
  font-family: 'Sora', 'Inter', sans-serif;
  font-size: .9rem; font-weight: 600;
  color: var(--n-text);
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.neon-home .n-faq-item summary::-webkit-details-marker { display: none; }
.neon-home .n-faq-item summary::after {
  content: '+'; color: var(--n-purple-l); font-size: 1.4rem; font-weight: 300; line-height: 1;
  transition: transform .25s ease;
  text-shadow: 0 0 8px var(--n-purple);
}
.neon-home .n-faq-item[open] summary::after { transform: rotate(45deg); }
.neon-home .n-faq-body { padding: 0 1.4rem 1.2rem; color: var(--n-text-3); font-size: .9rem; line-height: 1.65; }
.neon-home .n-faq-body code { background: rgba(139,92,246,.15); color: var(--n-gold-l); padding: .1rem .35rem; border-radius: 3px; font-family: monospace; font-size: .85em; }
.neon-home .n-faq-body a { color: var(--n-purple-l); text-decoration: none; border-bottom: 1px solid var(--n-purple); }
.neon-home .n-faq-body a:hover { color: var(--n-gold-l); border-color: var(--n-gold); }

/* ════ UPDATE BANNER / CTA ═══ */
.neon-home .n-banner {
  position: relative; isolation: isolate;
  border: 1px solid var(--n-border);
  border-radius: 8px;
  padding: 3rem 2.2rem;
  background: linear-gradient(135deg, rgba(139,92,246,.10), rgba(245,158,11,.05));
  text-align: center;
  overflow: hidden;
  max-width: 920px; margin: 0 auto;
}
.neon-home .n-banner::before {
  content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 80%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--n-gold), transparent);
  box-shadow: 0 0 20px var(--n-gold);
}
.neon-home .n-years-badge {
  display: inline-block;
  font-family: 'Sora', 'Inter', sans-serif;
  font-size: 1.1rem; font-weight: 800;
  letter-spacing: .12em;
  color: var(--n-gold);
  text-shadow: 0 0 18px rgba(245,158,11,.55);
  padding: .5rem 1.2rem;
  border: 1px solid rgba(245,158,11,.45);
  border-radius: 4px;
  background: rgba(245,158,11,.06);
  margin-bottom: 1.2rem;
  box-shadow: 0 0 24px rgba(245,158,11,.2), inset 0 0 14px rgba(245,158,11,.08);
}

/* ════ TESTIMONIALS ════ */
.neon-home .n-testi {
  position: relative; isolation: isolate;
  padding: 1.6rem 1.4rem;
  background: linear-gradient(180deg, rgba(139,92,246,.06), rgba(255,255,255,.005));
  border: 1px solid var(--n-border);
  border-radius: 6px;
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.neon-home .n-testi:hover { transform: translateY(-4px); border-color: var(--n-border-h); box-shadow: 0 0 0 1px var(--n-border-h), 0 20px 40px -18px rgba(139,92,246,.4); }
.neon-home .n-testi-stars {
  color: var(--n-gold);
  text-shadow: 0 0 8px rgba(245,158,11,.4);
  font-size: .9rem;
  letter-spacing: .15em;
  margin-bottom: .6rem;
}
.neon-home .n-testi-text { color: var(--n-text-2); font-size: .9rem; line-height: 1.6; margin-bottom: 1rem; font-style: italic; }
.neon-home .n-testi-author { display: flex; align-items: center; gap: .7rem; }
.neon-home .n-testi-avatar {
  width: 38px; height: 38px; border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Sora', 'Inter', sans-serif;
  font-weight: 700; font-size: 1rem;
  color: #0B0F1C;
  background: linear-gradient(135deg, var(--n-gold), var(--n-gold-l));
  box-shadow: 0 0 14px rgba(245,158,11,.4);
}
.neon-home .n-testi-name { font-family: 'Sora', 'Inter', sans-serif; font-size: .82rem; font-weight: 600; color: var(--n-text); }
.neon-home .n-testi-role { font-size: .72rem; color: var(--n-text-3); }

/* ════════════════════════════════════════════════════════════════
   LIGHT / DARK THEME ADAPTER (v52 plugin compatibility)
   Re-maps the neon-home tokens when [data-theme="light"] is set.
   ════════════════════════════════════════════════════════════════ */
[data-theme="light"] .neon-home,
[data-theme="light"] body { background: #F6F4FF !important; }
[data-theme="light"] .neon-home {
  --n-bg:        #F6F4FF;
  --n-bg-deep:   #ECE7FA;
  --n-surface:   #FFFFFF;
  --n-surface-2: #F8F5FF;
  --n-text:      #1A1530;
  --n-text-2:    #3A3358;
  --n-text-3:    #6B6489;
  --n-gold:      #B45309;
  --n-gold-l:    #D97706;
  --n-purple:    #6D28D9;
  --n-purple-l:  #7C3AED;
  --n-cyan:      #0891B2;
  --n-green:     #059669;
  --n-pink:      #BE185D;
  --n-red:       #DC2626;
  --n-border:    rgba(109,40,217,0.18);
  --n-border-h:  rgba(109,40,217,0.45);
}
[data-theme="light"] .neon-home::before {
  background-image:
    linear-gradient(rgba(109,40,217,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(109,40,217,0.06) 1px, transparent 1px);
}
[data-theme="light"] .sh-navbar { background: rgba(255,255,255,0.85) !important; border-bottom: 1px solid rgba(109,40,217,0.2) !important; }
[data-theme="light"] .sh-footer, [data-theme="light"] footer { background: #ECE7FA !important; border-top: 1px solid rgba(109,40,217,0.2) !important; }

/* Light-mode card surfaces (much higher contrast) */
[data-theme="light"] .neon-home .n-card,
[data-theme="light"] .neon-home .n-cell,
[data-theme="light"] .neon-home .n-aud,
[data-theme="light"] .neon-home .n-testi,
[data-theme="light"] .neon-home .n-blog,
[data-theme="light"] .neon-home .n-stat,
[data-theme="light"] .neon-home .n-faq-item,
[data-theme="light"] .neon-home .n-compare,
[data-theme="light"] .neon-home .n-banner {
  background: #FFFFFF !important;
  border-color: rgba(109,40,217,0.18) !important;
}
[data-theme="light"] .neon-home .sh-product-card {
  background: #FFFFFF !important;
  border-color: rgba(109,40,217,0.18) !important;
}
[data-theme="light"] .neon-home .n-faq-item[open] {
  background: linear-gradient(180deg, #F5F1FF, #FFFFFF) !important;
}
[data-theme="light"] .neon-home .n-trust,
[data-theme="light"] .neon-home .n-ticker {
  background: rgba(255,255,255,0.7) !important;
}

/* Light-mode reduces neon glows so it looks tasteful, not gaudy */
[data-theme="light"] .neon-home .n-glow-gold,
[data-theme="light"] .neon-home .n-glow-purple,
[data-theme="light"] .neon-home .n-glow-cyan { text-shadow: none; }
[data-theme="light"] .neon-home .n-stat-num { text-shadow: 0 1px 0 rgba(245,158,11,.15); }
[data-theme="light"] .neon-home .n-card-icon { text-shadow: none; }

/* Light-mode hero canvas fades in */
[data-theme="light"] .neon-home .n-hero-canvas { opacity: .35; }

/* ════════════════════════════════════════════════════════════════
   CALM MODE, Theme 2 fallback. Hides heavy animations (3D scene +
   beam network) while keeping the neon look. Toggle = body class
   `sh-calm-mode` set from localStorage.shCalmMode === '1'.
   ════════════════════════════════════════════════════════════════ */
body.sh-calm-mode .neon-home #nHeroCanvas,
body.sh-calm-mode .neon-home #nBeamCanvas { display: none !important; }
body.sh-calm-mode .neon-home .n-hero::after { display: none; }

/* ── Calm-mode toggle (top-right, next to hamburger) ── */
.sh-calm-toggle {
  position: fixed;
  top: .85rem;
  right: calc(var(--sh-nav-gutter, 12px) + 48px);  /* clears the hamburger */
  z-index: 9996;              /* above v51-toast-stack (9995) and navbar */
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .42rem .8rem;
  border-radius: 999px;
  background: rgba(15,23,42,.78);
  color: #CBD5E1;
  border: 1px solid rgba(139,92,246,0.35);
  font-family: 'Inter', sans-serif;
  font-size: .72rem; font-weight: 600;
  letter-spacing: .04em;
  cursor: pointer;
  backdrop-filter: blur(12px);
  box-shadow: 0 6px 22px -8px rgba(139,92,246,.5);
  transition: all .2s ease;
  user-select: none;
  line-height: 1;
}
.sh-calm-toggle:hover { color: #fff; border-color: rgba(139,92,246,0.65); transform: translateY(-1px); }
.sh-calm-toggle i { font-size: 1rem; color: var(--n-gold, #F59E0B); transition: color .2s ease; }
body.sh-calm-mode .sh-calm-toggle i { color: var(--n-green, #10B981); }
[data-theme="light"] .sh-calm-toggle { background: rgba(255,255,255,.85); color: #3A3358; border-color: rgba(109,40,217,.35); }

/* Mobile: icon-only (collapses label) fits next to hamburger without crowding */
@media (max-width: 991.98px) {
  .sh-calm-toggle {
    padding: 0;
    right: calc(var(--sh-nav-gutter, 12px) + 48px); top: .85rem;
    width: 38px; height: 38px;
    justify-content: center;
    border-radius: 50%;
  }
  .sh-calm-toggle .sh-calm-label { display: none; }
  .sh-calm-toggle i { font-size: 1.05rem; }
}
/* The navbar is hamburger-driven at every width now, and the hamburger lives
   inside the centered .container. Anchoring to the viewport edge made these
   controls collide with it on wide screens (measured at 1366, 1600 and 1920),
   so --sh-nav-gutter mirrors Bootstrap's container maths and they track the
   container's right edge instead. */
:root { --sh-nav-gutter: 12px; }
@media (min-width: 576px)  { :root { --sh-nav-gutter: calc((100vw - 540px)  / 2 + 12px); } }
@media (min-width: 768px)  { :root { --sh-nav-gutter: calc((100vw - 720px)  / 2 + 12px); } }
@media (min-width: 992px)  { :root { --sh-nav-gutter: calc((100vw - 960px)  / 2 + 12px); } }
@media (min-width: 1200px) { :root { --sh-nav-gutter: calc((100vw - 1140px) / 2 + 12px); } }
@media (min-width: 1400px) { :root { --sh-nav-gutter: calc((100vw - 1320px) / 2 + 12px); } }
/* Hide when mobile menu is open (so it doesn't overlap nav items) */
body.sh-menu-open .sh-calm-toggle { display: none !important; }

/* ════ BLOG CARDS ════ */
.neon-home .n-blog {
  display: block;
  background: linear-gradient(180deg, rgba(139,92,246,.06), rgba(255,255,255,.005));
  border: 1px solid var(--n-border);
  border-radius: 6px;
  overflow: hidden;
  text-decoration: none; color: inherit;
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.neon-home .n-blog:hover { transform: translateY(-5px); border-color: var(--n-border-h); box-shadow: 0 0 0 1px var(--n-border-h), 0 24px 50px -22px rgba(139,92,246,.5); color: inherit; }
.neon-home .n-blog-thumb { height: 160px; overflow: hidden; background: linear-gradient(135deg, rgba(139,92,246,.15), rgba(6,182,212,.1)); display: flex; align-items: center; justify-content: center; }
.neon-home .n-blog-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.neon-home .n-blog:hover .n-blog-thumb img { transform: scale(1.06); }
.neon-home .n-blog-thumb i { font-size: 2.5rem; color: var(--n-purple); opacity: .6; text-shadow: 0 0 16px var(--n-purple); }
.neon-home .n-blog-body { padding: 1.2rem 1.3rem; }
.neon-home .n-blog-cat { font-family: 'Sora', 'Inter', sans-serif; font-size: .62rem; letter-spacing: .2em; text-transform: uppercase; color: var(--n-gold); margin-bottom: .5rem; }
.neon-home .n-blog-title { font-family: 'Sora', 'Inter', sans-serif; font-size: .95rem; font-weight: 600; color: var(--n-text); margin: 0 0 .4rem; line-height: 1.3; }
.neon-home .n-blog-excerpt { font-size: .82rem; color: var(--n-text-3); line-height: 1.55; margin: 0 0 .7rem; }
.neon-home .n-blog-meta { font-size: .7rem; color: var(--n-text-3); }

/* ================================================================
   SEVINHUB LIVING WORLDS, homepage section overlays
   Each canvas uses a different visual grammar tied to its content.
   ================================================================ */
/* overflow-x must be `clip`, not `hidden`: `hidden` turns <html> into a scroll
   container, which kills `position: sticky` on the site navbar (it stops sticking
   to the viewport on scroll). `clip` contains the same horizontal bleed without
   creating a scroll container, so the sticky navbar keeps working. */
html { max-width: 100%; overflow-x: clip; scroll-behavior: smooth; scroll-padding-top: 82px; }
html.sh-world-navigating { scroll-behavior: auto !important; scroll-snap-type: none !important; }
body { max-width: 100%; overflow-x: clip; }

.neon-home .sh-world {
  --world-accent: 139, 92, 246;
  isolation: isolate;
  overflow: clip;
  border-top: 1px solid rgba(var(--world-accent), .09);
  background:
    radial-gradient(ellipse 70% 60% at 86% 50%, rgba(var(--world-accent), .075), transparent 72%),
    linear-gradient(180deg, rgba(6, 9, 20, .12), rgba(6, 9, 20, .34));
  transition: background-color .6s ease, border-color .6s ease;
}
.neon-home .sh-world.is-world-active {
  border-top-color: rgba(var(--world-accent), .28);
  background-color: rgba(var(--world-accent), .018);
}
.neon-home .sh-world > .container { position: relative; z-index: 3; pointer-events: none; }
.neon-home .sh-world > .container > * { pointer-events: auto; }
.neon-home .sh-world[data-world="home"]     { --world-accent: 139, 92, 246; }
.neon-home .sh-world[data-world="pulse"]    { --world-accent: 6, 182, 212; }
.neon-home .sh-world[data-world="start"]    { --world-accent: 245, 158, 11; }
.neon-home .sh-world[data-world="tools"]    { --world-accent: 16, 185, 129; }
.neon-home .sh-world[data-world="products"] { --world-accent: 245, 158, 11; }
.neon-home .sh-world[data-world="work"]     { --world-accent: 167, 139, 250; }
.neon-home .sh-world[data-world="updates"]  { --world-accent: 16, 185, 129; }
.neon-home .sh-world[data-world="proof"]    { --world-accent: 6, 182, 212; }
.neon-home .sh-world[data-world="compare"]  { --world-accent: 245, 158, 11; }
.neon-home .sh-world[data-world="answers"]  { --world-accent: 167, 139, 250; }
.neon-home .sh-world[data-world="model"]    { --world-accent: 139, 92, 246; }
.neon-home .sh-world[data-world="security"] { --world-accent: 239, 68, 68; }
.neon-home .sh-world[data-world="launch"]   { --world-accent: 245, 158, 11; }
.neon-home .sh-world[data-world="tech"]     { --world-accent: 6, 182, 212; }
.neon-home .sh-world[data-world="sell"]     { --world-accent: 16, 185, 129; }

.sh-world-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: .85;
  overflow: hidden;
  transition: opacity .65s ease, filter .65s ease;
  filter: saturate(1) drop-shadow(0 28px 55px rgba(0, 0, 0, .28));
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 12%, #000 88%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 12%, #000 88%, transparent 100%);
}
.sh-world.is-world-active .sh-world-overlay { opacity: 1; filter: saturate(1.12) drop-shadow(0 30px 65px rgba(0, 0, 0, .38)); }
.sh-world-overlay canvas {
  display: block;
  width: 100%;
  height: 100%;
  filter: saturate(1.5) brightness(1.42) contrast(1.16) drop-shadow(0 0 14px rgba(var(--world-accent), .2));
  transition: transform .35s cubic-bezier(.16,1,.3,1), filter .35s ease;
}
.sh-world-overlay.sh-world-link {
  pointer-events: auto;
  cursor: pointer;
  color: inherit;
  text-decoration: none;
  outline: none;
}
.sh-world-overlay.sh-world-link:hover canvas,
.sh-world-overlay.sh-world-link:focus-visible canvas {
  transform: scale(1.025);
  filter: saturate(1.5) brightness(1.38) contrast(1.14) drop-shadow(0 0 18px rgba(var(--world-accent), .24));
}
.sh-world-overlay.sh-world-link:focus-visible {
  outline: 2px solid rgba(var(--world-accent), .9);
  outline-offset: -5px;
}
.sh-world-overlay.sh-world-link .sh-world-coordinate::after {
  content: '\2197';
  display: inline-grid;
  place-items: center;
  width: 19px;
  height: 19px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: .72rem;
  letter-spacing: 0;
  transition: transform .25s ease, background-color .25s ease;
}
.sh-world-overlay.sh-world-link:hover .sh-world-coordinate::after,
.sh-world-overlay.sh-world-link:focus-visible .sh-world-coordinate::after {
  transform: translate(2px,-2px);
  background: rgba(var(--world-accent), .12);
}
.sh-world-coordinate {
  position: absolute;
  right: max(18px, calc((100vw - 1320px) / 2));
  top: 22px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(var(--world-accent), .72);
  font: 600 .62rem/1 'Inter', sans-serif;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.sh-world-coordinate::before {
  content: '';
  width: 34px;
  height: 1px;
  background: currentColor;
  box-shadow: 0 0 8px currentColor;
}

/* Each section gets a dedicated art stage. The stage sits beside the
   heading, then the real cards begin below it with no overlap. */
.neon-home .n-sec.sh-world:not([data-world="pulse"]):not([data-world="updates"]):not([data-world="launch"]) .n-sec-head {
  width: min(48%, 620px);
  max-width: none;
  min-height: 340px;
  margin: 0 0 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
}
.neon-home .n-sec.sh-world:not([data-world="pulse"]):not([data-world="updates"]):not([data-world="launch"]) .n-sec-head .n-sub { margin-left: 0; }
.neon-home .n-sec.sh-world[data-world="tools"] .n-sec-head,
.neon-home .n-sec.sh-world[data-world="work"] .n-sec-head,
.neon-home .n-sec.sh-world[data-world="proof"] .n-sec-head,
.neon-home .n-sec.sh-world[data-world="answers"] .n-sec-head,
.neon-home .n-sec.sh-world[data-world="security"] .n-sec-head { margin-left: auto !important; margin-right: 0; }

.neon-home .n-sec.sh-world .sh-world-overlay {
  inset: 62px max(20px, calc((100vw - 1260px) / 2)) auto auto;
  width: min(46vw, 590px);
  height: 350px;
  border: 1px solid rgba(var(--world-accent), .25);
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(var(--world-accent), .12), rgba(8, 12, 28, .58) 48%, rgba(var(--world-accent), .035)),
    rgba(8, 12, 28, .46);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.08),
    inset 0 -28px 65px rgba(0,0,0,.22),
    0 0 0 1px rgba(var(--world-accent), .05),
    0 28px 80px rgba(0,0,0,.28),
    0 0 65px rgba(var(--world-accent), .1);
  transform: perspective(1100px) rotateY(-5deg) rotateX(2deg);
  transform-origin: center right;
  -webkit-mask-image: none;
  mask-image: none;
}
.neon-home .n-sec.sh-world .sh-world-overlay::before,
.neon-home .n-sec.sh-world .sh-world-overlay::after {
  content: '';
  position: absolute;
  pointer-events: none;
}
.neon-home .n-sec.sh-world .sh-world-overlay::before {
  inset: 12px;
  z-index: 0;
  border: 1px solid rgba(var(--world-accent), .14);
  border-radius: 19px;
  background: linear-gradient(110deg, rgba(255,255,255,.045), transparent 24%, transparent 72%, rgba(var(--world-accent), .05));
}
.neon-home .n-sec.sh-world .sh-world-overlay::after {
  z-index: 4;
  left: 9%;
  right: 9%;
  bottom: -16px;
  height: 28px;
  border-radius: 50%;
  background: rgba(var(--world-accent), .22);
  filter: blur(18px);
}
.neon-home .n-sec.sh-world .sh-world-overlay canvas { position: relative; z-index: 2; }
.neon-home .n-sec.sh-world .sh-world-overlay .sh-world-coordinate { z-index: 3; right: 22px; }

.neon-home .n-sec.sh-world[data-world="tools"] .sh-world-overlay,
.neon-home .n-sec.sh-world[data-world="work"] .sh-world-overlay,
.neon-home .n-sec.sh-world[data-world="proof"] .sh-world-overlay,
.neon-home .n-sec.sh-world[data-world="answers"] .sh-world-overlay,
.neon-home .n-sec.sh-world[data-world="security"] .sh-world-overlay {
  left: max(20px, calc((100vw - 1260px) / 2));
  right: auto;
  transform: perspective(1100px) rotateY(5deg) rotateX(2deg);
  transform-origin: center left;
}

/* Sections without a normal heading reserve a full visual stage first. */
.neon-home .n-sec.sh-world[data-world="pulse"] { padding-top: 29rem; }
.neon-home .n-sec.sh-world[data-world="pulse"] .sh-world-overlay {
  top: 52px;
  left: 50%;
  right: auto;
  width: min(76vw, 900px);
  height: 340px;
  transform: translateX(-50%) perspective(1100px) rotateX(3deg);
  transform-origin: center;
}
.neon-home .n-sec.sh-world[data-world="updates"],
.neon-home .n-sec.sh-world[data-world="launch"] { padding-top: 28rem; }
.neon-home .n-sec.sh-world[data-world="updates"] .sh-world-overlay,
.neon-home .n-sec.sh-world[data-world="launch"] .sh-world-overlay {
  top: 58px;
  left: 50%;
  right: auto;
  width: min(76vw, 900px);
  height: 330px;
  transform: translateX(-50%) perspective(1100px) rotateX(3deg);
  transform-origin: center;
}

/* Hero artwork has its own reserved stage, never underneath copy or cards. */
.neon-home .sh-hero-world-stage {
  position: relative;
  height: 270px;
  margin-bottom: 1.35rem;
  overflow: hidden;
  border: 1px solid rgba(var(--world-accent), .28);
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(var(--world-accent), .14), rgba(8, 12, 28, .6) 50%, rgba(245, 158, 11, .055)),
    rgba(8, 12, 28, .48);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.08),
    inset 0 -28px 65px rgba(0,0,0,.2),
    0 26px 70px rgba(0,0,0,.3),
    0 0 58px rgba(var(--world-accent), .13);
}
.neon-home .n-hero.sh-world .sh-hero-world-stage .sh-world-overlay {
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  border: 0;
  background: transparent;
  box-shadow: none;
  transform: none;
  -webkit-mask-image: none;
  mask-image: none;
}
.neon-home .n-hero.sh-world .sh-world-coordinate { right: 18px; top: 17px; }
.neon-home .n-hero.sh-world .sh-hero-world-stage::after {
  content: '';
  position: absolute;
  z-index: 2;
  left: 12%;
  right: 12%;
  bottom: -15px;
  height: 28px;
  border-radius: 50%;
  background: rgba(var(--world-accent), .26);
  filter: blur(18px);
  pointer-events: none;
}

/* The content stays legible while the world remains visible through it. */
.neon-home .sh-world .n-card,
.neon-home .sh-world .n-stat,
.neon-home .sh-world .n-banner,
.neon-home .sh-world .n-compare,
.neon-home .sh-world .n-faq-item,
.neon-home .sh-world .n-testi,
.neon-home .sh-world .sh-product-card {
  backdrop-filter: blur(15px) saturate(125%);
  -webkit-backdrop-filter: blur(15px) saturate(125%);
}
.neon-home .sh-world.is-world-active .n-sec-head {
  text-shadow: 0 14px 45px rgba(6, 9, 20, .95);
}

/* Direct section rail */
.sh-world-nav {
  position: fixed !important;
  z-index: 850 !important;
  left: 50%;
  right: auto;
  top: auto;
  bottom: 8px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: row;
  gap: 0;
  padding: 5px 8px;
  border: 1px solid rgba(148, 163, 184, .14);
  border-radius: 999px;
  background: rgba(6, 9, 20, .68);
  backdrop-filter: blur(18px) saturate(140%);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .28);
}
.sh-world-nav a {
  position: relative;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: var(--n-text-3);
  text-decoration: none;
  outline: none;
  flex: 0 0 44px;
}
.sh-world-nav a::after {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 0 currentColor;
  transition: width .25s ease, height .25s ease, color .25s ease, box-shadow .25s ease;
}
.sh-world-nav a:hover,
.sh-world-nav a:focus-visible,
.sh-world-nav a[aria-current="true"] { color: var(--n-gold-l); }
.sh-world-nav a:focus-visible { box-shadow: inset 0 0 0 2px var(--n-gold); }
.sh-world-nav a[aria-current="true"]::after { width: 11px; height: 11px; box-shadow: 0 0 14px currentColor; }
.sh-world-nav span {
  position: absolute;
  left: 50%;
  right: auto;
  top: auto;
  bottom: calc(100% + 9px);
  transform: translate(-50%, 5px);
  padding: 7px 10px;
  border: 1px solid rgba(245, 158, 11, .28);
  border-radius: 4px;
  background: rgba(6, 9, 20, .94);
  color: var(--n-text-2);
  font: 600 .68rem/1 'Inter', sans-serif;
  letter-spacing: .06em;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
}
.sh-world-nav a:hover span,
.sh-world-nav a:focus-visible span { opacity: 1; visibility: visible; transform: translate(-50%, 0); }

@media (min-width: 992px) and (pointer: fine) {
  html { scroll-snap-type: y proximity; }
  .neon-home .sh-world { scroll-snap-align: start; scroll-snap-stop: normal; }
}

@media (max-width: 767.98px) {
  .sh-world-nav {
    left: 50%;
    right: auto;
    top: auto;
    bottom: max(6px, env(safe-area-inset-bottom));
    transform: translateX(-50%);
    flex-direction: row;
    gap: 0;
    padding: 4px 6px;
    width: min(236px, calc(100vw - 156px));
    max-width: none;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scrollbar-width: none;
  }
  .sh-world-nav::-webkit-scrollbar { display: none; }
  .sh-world-nav a { width: 44px; height: 44px; flex: 0 0 44px; }
  .sh-world-nav span { display: none; }
  .sh-world-coordinate { right: 16px; top: 15px; font-size: .54rem; opacity: .74; }
  .sh-world-coordinate::before { width: 20px; }
  .sh-world-overlay {
    opacity: .74;
    -webkit-mask-image: linear-gradient(180deg, transparent 0, #000 8%, #000 92%, transparent 100%);
    mask-image: linear-gradient(180deg, transparent 0, #000 8%, #000 92%, transparent 100%);
  }
  .sh-world.is-world-active .sh-world-overlay { opacity: 1; }
  .neon-home .n-sec.sh-world:not([data-world="pulse"]):not([data-world="updates"]):not([data-world="launch"]) .n-sec-head {
    width: 100%;
    min-height: 0;
    margin: 0 auto 20.25rem;
    display: block;
    text-align: center;
  }
  .neon-home .n-sec.sh-world:not([data-world="pulse"]):not([data-world="updates"]):not([data-world="launch"]) .n-sec-head:has(+ .row) {
    margin-bottom: 23.25rem;
  }
  .neon-home .n-sec.sh-world:not([data-world="pulse"]):not([data-world="updates"]):not([data-world="launch"]) .n-sec-head .n-sub { margin-left: auto; }
  .neon-home .n-sec.sh-world .sh-world-overlay,
  .neon-home .n-sec.sh-world[data-world="tools"] .sh-world-overlay,
  .neon-home .n-sec.sh-world[data-world="work"] .sh-world-overlay,
  .neon-home .n-sec.sh-world[data-world="proof"] .sh-world-overlay,
  .neon-home .n-sec.sh-world[data-world="answers"] .sh-world-overlay,
  .neon-home .n-sec.sh-world[data-world="security"] .sh-world-overlay {
    top: var(--world-stage-top, 270px);
    left: 16px;
    right: 16px;
    width: auto;
    height: 235px;
    border-radius: 20px;
    transform: perspective(900px) rotateX(2deg);
    transform-origin: center;
  }
  .neon-home .n-sec.sh-world[data-world="pulse"],
  .neon-home .n-sec.sh-world[data-world="updates"],
  .neon-home .n-sec.sh-world[data-world="launch"] { padding-top: 22rem; }
  .neon-home .n-sec.sh-world[data-world="pulse"] .sh-world-overlay,
  .neon-home .n-sec.sh-world[data-world="updates"] .sh-world-overlay,
  .neon-home .n-sec.sh-world[data-world="launch"] .sh-world-overlay {
    top: 48px;
    left: 16px;
    right: 16px;
    width: auto;
    height: 245px;
    transform: perspective(900px) rotateX(2deg);
  }
  .neon-home .sh-hero-world-stage {
    height: 245px;
    margin: 1.1rem 0 1.4rem;
    border-radius: 20px;
  }
  .neon-home .n-hero.sh-world .sh-hero-world-stage .sh-world-overlay { inset: 0; width: 100%; height: 100%; }
  .neon-home #world-launch { padding-bottom: 8.5rem !important; }
}

body.sh-calm-mode .sh-world-overlay { opacity: .85 !important; filter: saturate(1); }
body.sh-calm-mode .sh-world-nav { display: flex !important; }
[data-theme="light"] .sh-world-nav { background: rgba(255, 255, 255, .84); border-color: rgba(109, 40, 217, .2); }
[data-theme="light"] .sh-world-nav span { background: rgba(255, 255, 255, .96); color: #3A3358; }
[data-theme="light"] .neon-home .sh-world {
  background:
    radial-gradient(ellipse 70% 60% at 86% 50%, rgba(var(--world-accent), .06), transparent 72%),
    rgba(248, 245, 255, .3);
}
[data-theme="light"] .sh-world-overlay canvas { filter: saturate(1.18) brightness(.82) contrast(1.2); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; scroll-snap-type: none !important; }
  .sh-world-overlay { opacity: .85 !important; filter: saturate(1) !important; }
}

/* ── Investigation list (2026-09-10) ───────────────────────────────────────
   The OSINT cases used to be large .n-card boxes, which meant only three fit
   and the section dominated the page. This is a dense list in the same spirit
   as the free tools browser but with its own look: one line per case, severity
   readable at a glance, all twenty within reach. */
.n-cases { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 6px; }
@media (max-width: 767px) { .n-cases { grid-template-columns: 1fr; } }
.n-case {
  display: grid; grid-template-columns: auto auto 1fr auto; align-items: center; gap: .6rem;
  padding: .6rem .8rem; border-radius: 9px; text-decoration: none;
  background: rgba(255,255,255,.025); border: 1px solid rgba(148,163,184,.12);
  transition: border-color .16s ease, background .16s ease, transform .16s ease;
}
.n-case:hover, .n-case:focus-visible {
  background: rgba(255,255,255,.05); border-color: rgba(148,163,184,.3); transform: translateX(2px);
}
.n-case-num { font-family: 'Orbitron', monospace; font-size: .6rem; letter-spacing: .06em; color: var(--n-text-3); white-space: nowrap; }
.n-case-dot { width: 7px; height: 7px; border-radius: 50%; flex: none; }
.n-case .sev-p1 { background: #ef4444; box-shadow: 0 0 7px rgba(239,68,68,.65); }
.n-case .sev-p2 { background: #f97316; box-shadow: 0 0 7px rgba(249,115,22,.55); }
.n-case .sev-p3 { background: #eab308; box-shadow: 0 0 7px rgba(234,179,8,.5); }
.n-case .sev-p4 { background: #22c55e; box-shadow: 0 0 7px rgba(34,197,94,.45); }
.n-case-ttl {
  font-size: .84rem; color: var(--n-text-2); line-height: 1.35;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.n-case:hover .n-case-ttl { color: var(--n-text); }
.n-case-go { font-size: .7rem; color: var(--n-text-3); flex: none; }
.n-case:hover .n-case-go { color: var(--n-purple-l); }
[data-theme="light"] .n-case { background: rgba(0,0,0,.02); border-color: rgba(15,23,42,.1); }
[data-theme="light"] .n-case:hover { background: rgba(0,0,0,.045); }

/* ── Stage anchor (2026-09-10) ─────────────────────────────────────────────
   On phones the section artwork is placed under a heading, and that heading
   reserves the space for it with a large bottom margin. The rule above keys off
   ".n-sec-head:has(+ .row)", so a heading followed by anything else reserved
   nothing and the artwork rendered on top of the content.

   A section can now nominate which heading the artwork belongs under with
   [data-world-stage-anchor]. That heading reserves the space, and the section's
   other headings give theirs back so no empty gap is left behind. */
@media (max-width: 767px) {
  .neon-home .n-sec.sh-world .n-sec-head[data-world-stage-anchor] { margin-bottom: 23.25rem !important; }
  .neon-home .n-sec.sh-world:has([data-world-stage-anchor]) .n-sec-head:not([data-world-stage-anchor]) { margin-bottom: 1.6rem !important; }
}
