﻿/* ============================================================
   NEXACORE â€” "Astral Console" theme overlay
   Loaded AFTER main.css. Overrides typography, hero, nav,
   cards, buttons, sections and footer to give Nexacore a
   distinct futuristic / tech-console identity vs IRFC + Sarva.
   ============================================================ */

:root {
  /* Typography swap â€” futuristic / technical */
  --font: 'Inter', 'Segoe UI', system-ui, sans-serif;
  --font-display: 'Space Grotesk', 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', ui-monospace, SFMono-Regular, Menlo, monospace;

  /* Sharper corners â€” engineered feel */
  --radius: 8px;
  --radius-sm: 4px;
  --radius-lg: 12px;
  --nav-h: 72px;

  /* Tighten contrast â€” push the emerald/teal further */
  --border: rgba(52, 211, 153, 0.16);
  --border-hover: rgba(94, 234, 212, 0.55);
  --accent-glow: rgba(94, 234, 212, 0.55);
  --violet-glow: rgba(16, 185, 129, 0.45);
  --gradient-btn: linear-gradient(120deg, #5eead4 0%, #10b981 50%, #84cc16 100%);
  --gradient-accent: linear-gradient(120deg, #14b8a6 0%, #5eead4 100%);
  --gradient-text: linear-gradient(110deg, #d1fae5 10%, #5eead4 45%, #34d399 70%, #a3e635 100%);
  --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 0 1px var(--border);
  --shadow-glow: 0 0 40px rgba(94, 234, 212, 0.15);
}

html[data-theme="nexacore"] body,
body.theme-nexacore {
  font-family: var(--font);
  letter-spacing: 0;
  background:
    radial-gradient(900px 500px at 85% -10%, rgba(16, 185, 129, 0.18), transparent 60%),
    radial-gradient(700px 400px at 10% 100%, rgba(20, 184, 166, 0.12), transparent 60%),
    linear-gradient(180deg, #04130e 0%, #04130e 60%, #020a07 100%);
}

/* Always-on console grid overlay (subtle, behind everything) */
body.theme-nexacore::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(52, 211, 153, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(52, 211, 153, 0.045) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, #000 30%, transparent 85%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, #000 30%, transparent 85%);
}

/* Lift page content above the ::after grid overlay (z-index: 0).
   Do NOT include .site-nav here — it must keep its main.css values
   (position: fixed; z-index: 1000) so the Shop dropdown menu stacks
   above main content; otherwise hero elements intercept clicks. */
body.theme-nexacore main,
body.theme-nexacore .site-footer {
  position: relative;
  z-index: 1;
}

/* â”€â”€â”€ Navigation: monospace, underline-only links â”€â”€â”€ */
body.theme-nexacore .site-nav {
  background: rgba(4, 19, 14, 0.55);
  border-bottom: 1px solid rgba(16, 185, 129, 0.08);
  backdrop-filter: blur(28px) saturate(1.5);
  -webkit-backdrop-filter: blur(28px) saturate(1.5);
}

body.theme-nexacore .site-nav.scrolled {
  background: rgba(4, 19, 14, 0.95);
  border-bottom-color: rgba(94, 234, 212, 0.35);
  box-shadow: 0 1px 0 rgba(94, 234, 212, 0.18), 0 18px 50px rgba(0, 0, 0, 0.55);
}

body.theme-nexacore .brand {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
}

body.theme-nexacore .site-logo img {
  filter: drop-shadow(0 0 10px rgba(94, 234, 212, 0.45));
}

body.theme-nexacore .nav-links {
  gap: 2px;
}

body.theme-nexacore .nav-links > li > a {
  position: relative;
  padding: 8px 14px;
  border-radius: 0;
  background: transparent !important;
  color: #a7f3d0;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.2s;
}

body.theme-nexacore .nav-links > li > a::before {
  content: '';
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 4px;
  height: 2px;
  background: linear-gradient(90deg, #5eead4, #34d399);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 0 10px rgba(94, 234, 212, 0.55);
}

body.theme-nexacore .nav-links > li > a:hover {
  color: #fff;
  background: transparent !important;
}
body.theme-nexacore .nav-links > li > a:hover::before { transform: scaleX(1); }

/* â”€â”€â”€ Buttons: rectangular, sharp, with arrow â”€â”€â”€ */
body.theme-nexacore .btn {
  border-radius: 6px;
  font-family: var(--font-display);
  letter-spacing: 0.02em;
  text-transform: none;
}

body.theme-nexacore .btn-primary {
  background: var(--gradient-btn);
  color: #02110a;
  box-shadow: 0 6px 24px rgba(94, 234, 212, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}
body.theme-nexacore .btn-primary:hover {
  box-shadow: 0 10px 38px rgba(94, 234, 212, 0.55), 0 0 0 1px rgba(94, 234, 212, 0.5);
}

body.theme-nexacore .btn-ghost {
  border: 1px solid rgba(52, 211, 153, 0.35);
  background: rgba(16, 185, 129, 0.04);
  color: #d1fae5;
}
body.theme-nexacore .btn-ghost:hover {
  border-color: var(--border-hover);
  background: rgba(94, 234, 212, 0.06);
  box-shadow: 0 0 0 1px rgba(94, 234, 212, 0.35);
}

body.theme-nexacore .btn-accent {
  background: linear-gradient(110deg, #5eead4, #14b8a6);
  color: #02110a;
}

body.theme-nexacore .hero-cta .btn::before {
  content: '';
  width: 0;
}

/* â”€â”€â”€ Hero: console split-screen â”€â”€â”€ */
body.theme-nexacore .hero {
  padding: calc(var(--nav-h) + 56px) 0 100px;
  background:
    radial-gradient(ellipse 90% 60% at 80% 20%, rgba(94, 234, 212, 0.16), transparent 60%),
    radial-gradient(ellipse 70% 50% at 10% 90%, rgba(132, 204, 22, 0.14), transparent 55%),
    linear-gradient(180deg, rgba(4, 19, 14, 0.5) 0%, transparent 90%);
}

body.theme-nexacore .hero-grid-bg {
  background-image:
    linear-gradient(rgba(94, 234, 212, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(94, 234, 212, 0.08) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 90% 70% at 70% 30%, #000 25%, transparent 80%);
  opacity: 0.9;
  animation-duration: 6s;
}

body.theme-nexacore .hero-stars {
  background-image:
    radial-gradient(1px 1px at 20px 30px, rgba(94, 234, 212, 0.6), transparent),
    radial-gradient(1px 1px at 90px 130px, rgba(255, 255, 255, 0.35), transparent),
    radial-gradient(1.5px 1.5px at 180px 70px, rgba(52, 211, 153, 0.7), transparent),
    radial-gradient(1px 1px at 260px 210px, rgba(163, 230, 53, 0.5), transparent),
    radial-gradient(1px 1px at 340px 40px, rgba(94, 234, 212, 0.35), transparent);
  background-size: 420px 300px;
}

body.theme-nexacore .hero-orb { filter: blur(120px); opacity: 0.85; }

body.theme-nexacore .hero-content::before {
  content: '> nexacore.systems --launch';
  display: block;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: rgba(94, 234, 212, 0.7);
  letter-spacing: 0.04em;
  margin-bottom: 14px;
}

body.theme-nexacore .hero-badge {
  border-radius: 4px;
  background: rgba(94, 234, 212, 0.08);
  border: 1px solid rgba(94, 234, 212, 0.4);
  color: #5eead4;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
body.theme-nexacore .hero-badge i {
  background: linear-gradient(120deg, #5eead4, #10b981);
  color: #02110a;
}

body.theme-nexacore .hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.045em;
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  line-height: 1.02;
}

body.theme-nexacore .hero-sub {
  font-size: 1.06rem;
  color: #a7f3d0;
  font-family: var(--font);
  font-weight: 400;
}

body.theme-nexacore .stats-strip {
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  padding: 1px;
  background: linear-gradient(120deg, rgba(94, 234, 212, 0.25), rgba(16, 185, 129, 0.15));
  border-radius: 8px;
  margin-top: 56px;
}

body.theme-nexacore .stat-item {
  border-radius: 0;
  border: none;
  background: rgba(6, 35, 24, 0.85);
  padding: 22px 14px;
}

body.theme-nexacore .stat-item:hover {
  background: rgba(13, 61, 44, 0.95);
  transform: none;
  box-shadow: inset 0 0 0 1px rgba(94, 234, 212, 0.5);
}

body.theme-nexacore .stat-item strong {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 1.7rem;
  letter-spacing: -0.02em;
  background: linear-gradient(120deg, #5eead4, #34d399);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

body.theme-nexacore .stat-item span {
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.7rem;
  color: rgba(167, 243, 208, 0.7);
}

/* Mockup card â†’ terminal style */
body.theme-nexacore .mockup-card {
  border-radius: 10px;
  background: rgba(6, 35, 24, 0.85);
  border: 1px solid rgba(16, 185, 129, 0.3);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(94, 234, 212, 0.15);
}

body.theme-nexacore .mockup-bar {
  background: rgba(2, 10, 7, 0.7);
  border-bottom: 1px solid rgba(16, 185, 129, 0.2);
}

body.theme-nexacore .mockup-url {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: #5eead4;
}

/* Logo marquee â€” terminal tag style */
body.theme-nexacore .logo-marquee {
  padding: 36px 0;
  border-block: 1px solid rgba(16, 185, 129, 0.18);
  background: linear-gradient(90deg, rgba(6, 35, 24, 0.6), rgba(10, 50, 37, 0.7), rgba(6, 35, 24, 0.6));
}

body.theme-nexacore .marquee-track span {
  border-radius: 4px;
  border: 1px solid rgba(94, 234, 212, 0.25);
  background: rgba(94, 234, 212, 0.05);
  color: #86efac;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

body.theme-nexacore .marquee-track span::before {
  content: '//';
  color: #5eead4;
  font-size: 0.85rem;
  margin-right: 4px;
}

/* â”€â”€â”€ Sections â”€â”€â”€ */
body.theme-nexacore .section { padding: 120px 0; }

body.theme-nexacore .section-alt {
  background:
    linear-gradient(180deg, transparent, rgba(16, 185, 129, 0.04) 50%, transparent),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'><defs><pattern id='c' x='0' y='0' width='200' height='200' patternUnits='userSpaceOnUse'><circle cx='30' cy='30' r='1.2' fill='%235eead4' opacity='0.18'/><circle cx='130' cy='90' r='1' fill='%2334d399' opacity='0.18'/><circle cx='70' cy='160' r='1.4' fill='%2314b8a6' opacity='0.2'/><path d='M30 30 L130 90 M130 90 L70 160' stroke='%2334d399' stroke-width='0.4' opacity='0.18'/></pattern></defs><rect width='200' height='200' fill='url(%23c)'/></svg>");
  background-size: cover, 240px 240px;
}

body.theme-nexacore .section-label {
  font-family: var(--font-mono);
  border-radius: 4px;
  background: rgba(94, 234, 212, 0.08);
  border: 1px solid rgba(94, 234, 212, 0.3);
  color: #5eead4;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
body.theme-nexacore .section-label::before {
  content: '[ ';
  color: rgba(94, 234, 212, 0.7);
}
body.theme-nexacore .section-label::after {
  content: ' ]';
  color: rgba(94, 234, 212, 0.7);
}

body.theme-nexacore .section h2,
body.theme-nexacore .page-hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

/* â”€â”€â”€ Feature cards: sharp + neon border â”€â”€â”€ */
body.theme-nexacore .feature-card {
  border-radius: 8px;
  background: linear-gradient(165deg, rgba(10, 50, 37, 0.85), rgba(6, 35, 24, 0.95));
  border: 1px solid rgba(16, 185, 129, 0.2);
  padding: 32px 26px 30px;
}

body.theme-nexacore .feature-card::before {
  background: linear-gradient(135deg, rgba(94, 234, 212, 0.65), rgba(16, 185, 129, 0.4) 50%, rgba(132, 204, 22, 0.3));
  padding: 1px;
}

body.theme-nexacore .feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.55), 0 0 32px rgba(94, 234, 212, 0.18);
  border-color: rgba(94, 234, 212, 0.5);
}

body.theme-nexacore .feature-card .card-num {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(94, 234, 212, 0.75);
  background: rgba(94, 234, 212, 0.08);
  border: 1px solid rgba(94, 234, 212, 0.4);
  padding: 4px 10px;
  border-radius: 4px;
  letter-spacing: 0.1em;
  line-height: 1;
  top: 22px;
  right: 22px;
}

body.theme-nexacore .feature-icon {
  border-radius: 8px;
  width: 48px;
  height: 48px;
}

body.theme-nexacore .feature-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  font-size: 1.2rem;
}

body.theme-nexacore .feature-card p {
  font-family: var(--font);
  font-size: 0.92rem;
  color: #86efac;
}

body.theme-nexacore .feature-link {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #5eead4;
  opacity: 1;
  transform: none;
}
body.theme-nexacore .feature-link::after {
  content: '_';
  margin-left: 4px;
  animation: nxCursor 1.1s steps(1) infinite;
}
@keyframes nxCursor { 50% { opacity: 0; } }
body.theme-nexacore .feature-card:hover .feature-link {
  color: #99f6e4;
  transform: translateX(4px);
}

/* â”€â”€â”€ Product cards: sharp corner, mono price â”€â”€â”€ */
body.theme-nexacore .product-card {
  border-radius: 8px;
  border-color: rgba(16, 185, 129, 0.22);
}
body.theme-nexacore .product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(94, 234, 212, 0.55);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.55), 0 0 24px rgba(94, 234, 212, 0.18);
}

body.theme-nexacore .product-img::before {
  background: linear-gradient(145deg, #062318 0%, #04130e 50%, #020a07 100%);
}

body.theme-nexacore .product-badge {
  border-radius: 4px;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.65rem;
  background: rgba(94, 234, 212, 0.15);
  color: #99f6e4;
  border: 1px solid rgba(94, 234, 212, 0.45);
}

body.theme-nexacore .product-body { padding: 18px 20px 22px; }
body.theme-nexacore .product-body h3 {
  font-family: var(--font-display);
  font-weight: 600;
}
body.theme-nexacore .product-price {
  font-family: var(--font-mono);
  font-weight: 700;
  color: #99f6e4;
  font-size: 1.05rem;
}

/* â”€â”€â”€ Testimonials â”€â”€â”€ */
body.theme-nexacore .testimonial-card {
  border-radius: 8px;
  border: 1px solid rgba(16, 185, 129, 0.18);
  background: linear-gradient(160deg, rgba(10, 50, 37, 0.85), rgba(6, 35, 24, 0.92));
  padding: 26px 24px;
}
body.theme-nexacore .testimonial-card::before {
  content: 'âŸ¦';
  font-family: var(--font-mono);
  font-size: 2.4rem;
  color: rgba(94, 234, 212, 0.35);
  top: 14px;
  right: 22px;
}
body.theme-nexacore .testimonial-stars { color: #5eead4; }
body.theme-nexacore .testimonial-author {
  font-family: var(--font-mono);
  letter-spacing: 0.06em;
  font-size: 0.82rem;
}

/* â”€â”€â”€ CTA band: terminal panel â”€â”€â”€ */
body.theme-nexacore .cta-band {
  border-radius: 10px;
  border: 1px solid rgba(94, 234, 212, 0.35);
  background:
    linear-gradient(135deg, rgba(13, 61, 44, 0.92) 0%, rgba(4, 19, 14, 0.95) 100%),
    radial-gradient(circle at 50% 0%, rgba(94, 234, 212, 0.25), transparent 50%);
  padding: 64px 48px;
}
body.theme-nexacore .cta-band::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #5eead4, #34d399, #5eead4, transparent);
  box-shadow: 0 0 18px rgba(94, 234, 212, 0.6);
}
body.theme-nexacore .cta-band::after { display: none; }
body.theme-nexacore .cta-band h2 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.03em;
}

/* â”€â”€â”€ Footer: terminal credit row â”€â”€â”€ */
body.theme-nexacore .site-footer {
  border-top: 1px solid rgba(94, 234, 212, 0.2);
  padding: 80px 0 32px;
  background:
    linear-gradient(180deg, rgba(6, 35, 24, 1) 0%, #020a07 100%);
}
body.theme-nexacore .site-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(94, 234, 212, 0.7), transparent);
  box-shadow: 0 0 14px rgba(94, 234, 212, 0.55);
}
body.theme-nexacore .site-footer { position: relative; }

body.theme-nexacore .footer-grid h4 {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #5eead4;
}

body.theme-nexacore .footer-grid h4::before {
  content: '/ ';
  color: rgba(94, 234, 212, 0.65);
}

body.theme-nexacore .footer-grid a {
  font-family: var(--font);
  font-weight: 400;
  color: #6ee7b7;
  font-size: 0.88rem;
}
body.theme-nexacore .footer-grid a:hover {
  color: #99f6e4;
  padding-left: 2px;
}

body.theme-nexacore .footer-bottom {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(110, 231, 183, 0.75);
}
body.theme-nexacore .footer-bottom > span::before {
  content: 'â—† ';
  color: #5eead4;
}

/* â”€â”€â”€ Page hero â”€â”€â”€ */
body.theme-nexacore .page-hero {
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(94, 234, 212, 0.12), transparent 60%),
    linear-gradient(180deg, rgba(6, 35, 24, 0.95) 0%, rgba(4, 19, 14, 0.6) 100%);
}

body.theme-nexacore .page-hero h1 {
  font-family: var(--font-display);
  letter-spacing: -0.035em;
}

/* â”€â”€â”€ Forms / form-control retains main.css base; ensure mono touch for inputs â”€â”€â”€ */
body.theme-nexacore .form-label {
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.74rem;
  color: #a7f3d0;
}

body.theme-nexacore .form-control,
body.theme-nexacore .form-select {
  border-radius: 6px;
  background: rgba(7, 9, 28, 0.7);
  border-color: rgba(16, 185, 129, 0.3);
}

/* Coin cards â”€ tech tiles */
body.theme-nexacore .coin-package-card {
  border-radius: 8px;
  border-color: rgba(16, 185, 129, 0.25);
}
body.theme-nexacore .coin-package-card.popular {
  border-color: rgba(94, 234, 212, 0.65);
  box-shadow: 0 0 40px rgba(94, 234, 212, 0.18);
}
body.theme-nexacore .coin-amount {
  font-family: var(--font-mono);
  color: #99f6e4;
}

/* Scrollbar */
body.theme-nexacore::-webkit-scrollbar-thumb,
body.theme-nexacore ::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #5eead4, #10b981);
  border-radius: 4px;
}

/* Subtle reveal anim â€” slight slide from right (different feel vs IRFC up) */
body.theme-nexacore .reveal {
  transform: translateX(-24px);
}
body.theme-nexacore .reveal.visible {
  transform: translateX(0);
}

/* Reactive Nexacore mobile drawer â”€ keep readable */
body.theme-nexacore .mobile-drawer {
  background: rgba(4, 19, 14, 0.98);
}
body.theme-nexacore .mobile-drawer a {
  border-radius: 4px;
  border-color: rgba(16, 185, 129, 0.25);
  background: rgba(10, 50, 37, 0.7);
  font-family: var(--font-display);
}

/* Tightening some headings everywhere */
body.theme-nexacore h1,
body.theme-nexacore h2,
body.theme-nexacore h3,
body.theme-nexacore .brand {
  font-family: var(--font-display);
}

body.theme-nexacore p,
body.theme-nexacore .form-control,
body.theme-nexacore .form-select,
body.theme-nexacore .nav-actions .btn,
body.theme-nexacore .footer-grid {
  font-family: var(--font);
}

body.theme-nexacore code,
body.theme-nexacore .badge-cart,
body.theme-nexacore .badge-cat {
  font-family: var(--font-mono);
}

body.theme-nexacore .badge-cart {
  border-radius: 4px;
  background: linear-gradient(120deg, #5eead4, #10b981);
  color: #02110a;
}

/* CTA arrow appended to primary buttons in hero / cards */
body.theme-nexacore .hero-cta .btn-primary::before {
  content: '';
}
body.theme-nexacore .btn-primary > i.bi,
body.theme-nexacore .btn-accent > i.bi {
  margin-left: 4px;
}

/* Hide IRFC-style "+" trust avatars and turn into mono tags */
body.theme-nexacore .hero-trust-avatars {
  display: none;
}
body.theme-nexacore .hero-trust {
  padding: 10px 14px;
  border: 1px dashed rgba(94, 234, 212, 0.35);
  border-radius: 6px;
  background: rgba(94, 234, 212, 0.04);
  width: max-content;
  max-width: 100%;
}
body.theme-nexacore .hero-trust p {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #a7f3d0;
}
body.theme-nexacore .hero-trust strong { color: #5eead4; }

@media (max-width: 992px) {
  body.theme-nexacore .hero-trust { margin-left: auto; margin-right: auto; }
}

/* ─── Nav "Shop" dropdown — emerald console, fully opaque, consistent items ─── */
body.theme-nexacore .dropdown-menu,
body.theme-nexacore .dropdown-menu-dark {
  background: linear-gradient(180deg, #062318 0%, #04130e 100%);
  border: 1px solid rgba(16, 185, 129, 0.4);
  border-radius: 8px;
  padding: 6px 0;
  box-shadow:
    0 16px 48px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(94, 234, 212, 0.12),
    inset 0 1px 0 rgba(94, 234, 212, 0.08);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  min-width: 220px;
  margin-top: 6px;
  opacity: 1;
}

body.theme-nexacore .dropdown-menu .dropdown-item,
body.theme-nexacore .dropdown-menu-dark .dropdown-item,
body.theme-nexacore .nav-links .dropdown-menu .dropdown-item,
body.theme-nexacore .nav-links .dropdown-menu-dark .dropdown-item,
body.theme-nexacore .nav-links .dropdown-menu li > a,
body.theme-nexacore .nav-links .dropdown-menu-dark li > a {
  color: #d1fae5 !important;
  background: transparent !important;
  font-family: var(--font), 'Inter', sans-serif !important;
  font-weight: 500 !important;
  font-size: 0.88rem !important;
  letter-spacing: 0.02em !important;
  padding: 10px 18px !important;
  border-radius: 0 !important;
  opacity: 1 !important;
  filter: none !important;
  text-shadow: none !important;
  text-transform: none !important;
  position: relative;
  transition: color 0.18s ease, background 0.18s ease, padding-left 0.18s ease;
}

body.theme-nexacore .dropdown-menu .dropdown-item::before,
body.theme-nexacore .dropdown-menu-dark .dropdown-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: linear-gradient(180deg, #5eead4, #34d399);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.18s ease;
}

body.theme-nexacore .dropdown-menu .dropdown-item:hover,
body.theme-nexacore .dropdown-menu .dropdown-item:focus,
body.theme-nexacore .dropdown-menu-dark .dropdown-item:hover,
body.theme-nexacore .dropdown-menu-dark .dropdown-item:focus,
body.theme-nexacore .nav-links .dropdown-menu .dropdown-item:hover,
body.theme-nexacore .nav-links .dropdown-menu .dropdown-item:focus,
body.theme-nexacore .nav-links .dropdown-menu-dark .dropdown-item:hover,
body.theme-nexacore .nav-links .dropdown-menu-dark .dropdown-item:focus,
body.theme-nexacore .nav-links .dropdown-menu li > a:hover,
body.theme-nexacore .nav-links .dropdown-menu li > a:focus,
body.theme-nexacore .nav-links .dropdown-menu-dark li > a:hover,
body.theme-nexacore .nav-links .dropdown-menu-dark li > a:focus {
  background: rgba(16, 185, 129, 0.14) !important;
  color: #5eead4 !important;
  padding-left: 22px !important;
  opacity: 1 !important;
}

body.theme-nexacore .dropdown-menu .dropdown-item:hover::before,
body.theme-nexacore .dropdown-menu .dropdown-item:focus::before,
body.theme-nexacore .dropdown-menu-dark .dropdown-item:hover::before,
body.theme-nexacore .dropdown-menu-dark .dropdown-item:focus::before {
  transform: scaleY(1);
}

body.theme-nexacore .dropdown-menu .dropdown-item.active,
body.theme-nexacore .dropdown-menu .dropdown-item:active,
body.theme-nexacore .dropdown-menu-dark .dropdown-item.active,
body.theme-nexacore .dropdown-menu-dark .dropdown-item:active,
body.theme-nexacore .nav-links .dropdown-menu .dropdown-item.active,
body.theme-nexacore .nav-links .dropdown-menu-dark .dropdown-item.active {
  background: rgba(20, 184, 166, 0.2) !important;
  color: #5eead4 !important;
  opacity: 1 !important;
}

body.theme-nexacore .dropdown-menu .dropdown-divider,
body.theme-nexacore .dropdown-menu-dark .dropdown-divider {
  border-top: 1px solid rgba(52, 211, 153, 0.28);
  opacity: 1;
  margin: 4px 12px;
}

body.theme-nexacore .dropdown-toggle::after {
  border-top-color: #5eead4;
  vertical-align: 0.18em;
  margin-left: 0.4em;
}

body.theme-nexacore .nav-links .dropdown-item.reveal,
body.theme-nexacore .nav-links .dropdown-menu .reveal {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}
