/*
 * NF Theme
 * Production storefront styling.
*/

:root {
  --altcha-border-width: 1px;
  --altcha-border-radius: .5rem;
  --altcha-color-base: rgba(255, 255, 255, 0.05);
  --altcha-color-border: rgba(255, 255, 255, 0.05);
  --altcha-color-text: #fff;
  --altcha-color-border-focus: currentColor;
  --altcha-color-error-text: #ef4444;
  --altcha-color-footer-bg: #f4f4f4;
  --altcha-max-width: 540px;
}

.mask-img {
  filter: brightness(1.35);
}

/* ============ DESIGN TOKENS ============ */
:root {
  --nf-bg: #050507;
  --nf-bg-2: #07060c;
  --nf-bg-3: #0c0a14;
  --nf-panel: rgba(18, 16, 26, 0.55);
  --nf-panel-strong: rgba(22, 19, 32, 0.82);
  --nf-border: rgba(255, 255, 255, 0.08);
  --nf-border-soft: rgba(255, 255, 255, 0.05);
  --nf-border-strong: rgba(255, 255, 255, 0.16);
  --nf-text: #f5f3ff;
  --nf-muted: rgba(245, 243, 255, 0.56);
  --nf-faint: rgba(245, 243, 255, 0.36);
  --nf-pink: #a3ff12;
  --nf-pink-soft: #c6ff63;
  --nf-violet: #7cd600;
  --nf-violet-deep: #1c4d00;
  --nf-cyan: #7cd600;
  --nf-green: #34f5b3;
  --nf-amber: #ffb547;
  --nf-grad: linear-gradient(120deg, #a3ff12 0%, #8ad400 32%, #7cd600 65%, #4f9e00 100%);
  --nf-grad-soft: linear-gradient(120deg, rgba(163, 255, 18, 0.18), rgba(124, 214, 0, 0.18));
  --nf-shadow-sm: 0 4px 16px rgba(0, 0, 0, 0.32);
  --nf-shadow-md: 0 18px 48px rgba(0, 0, 0, 0.42);
  --nf-shadow-glow: 0 30px 100px -20px rgba(124, 214, 0, 0.55);
  --nf-radius-sm: 12px;
  --nf-radius: 20px;
  --nf-radius-lg: 28px;
  --nf-radius-xl: 36px;
  --nf-shell: 1240px;
}

/* ============ BASE ============ */
* {
  scroll-margin-top: 96px;
}

html.scroll-smooth {
  scroll-behavior: smooth;
}

body.nf-theme {
  background: var(--nf-bg);
  color: var(--nf-text);
  /* `clip` prevents horizontal scroll WITHOUT creating a scroll container,
     so `position: sticky` on the navbar keeps working (overflow:hidden breaks it). */
  overflow-x: clip;
  font-feature-settings: "ss01", "ss02", "cv11";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.nf-theme * {
  letter-spacing: -0.005em !important;
}

.nf-theme img,
.nf-theme svg {
  max-width: 100%;
}

::selection {
  background: rgba(163, 255, 18, 0.32);
  color: #fff;
}

/* ============ BACKGROUND ============ */
.nf-global-bg {
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  overflow: hidden;
  background: radial-gradient(circle at 50% -10%, rgba(79, 158, 0, 0.18), transparent 55%), var(--nf-bg);
}

.nf-global-bg::before,
.nf-global-bg::after {
  content: "";
  position: absolute;
  width: 60vmax;
  height: 60vmax;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.42;
  will-change: transform;
}

.nf-global-bg::before {
  top: -22vmax;
  left: -12vmax;
  background: radial-gradient(circle, rgba(163, 255, 18, 0.55), transparent 60%);
  animation: nf-aurora-1 26s ease-in-out infinite alternate;
}

.nf-global-bg::after {
  top: 18vmax;
  right: -18vmax;
  background: radial-gradient(circle, rgba(124, 214, 0, 0.55), transparent 60%);
  animation: nf-aurora-2 32s ease-in-out infinite alternate;
}

/* SVG grain noise */
body.nf-theme::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.06;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.85'/></svg>");
}

@keyframes nf-aurora-1 {
  0%   { transform: translate3d(0, 0, 0) scale(1); }
  100% { transform: translate3d(8vmax, 6vmax, 0) scale(1.15); }
}

@keyframes nf-aurora-2 {
  0%   { transform: translate3d(0, 0, 0) scale(1); }
  100% { transform: translate3d(-6vmax, 8vmax, 0) scale(1.2); }
}

/* ============ LAYOUT HELPERS ============ */
.nf-shell {
  width: min(100% - 32px, var(--nf-shell));
  margin-inline: auto;
}

.nf-section {
  position: relative;
  padding: 92px 0;
}

.nf-section-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 48px;
  max-width: 760px;
}

.nf-section-head--center {
  align-items: center;
  text-align: center;
  margin-inline: auto;
}

.nf-section-head h2 {
  margin: 0;
  font-size: clamp(2rem, 3.4vw, 2.85rem);
  line-height: 1.04;
  font-weight: 800;
  color: var(--nf-text);
  letter-spacing: -0.025em !important;
}

.nf-section-head h2 strong,
.nf-section-head h2 .nf-grad-text {
  background: var(--nf-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.nf-section-head p {
  max-width: 580px;
  margin: 0;
  color: var(--nf-muted);
  font-size: 1.02rem;
  line-height: 1.65;
}

.nf-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px 6px 8px;
  border: 1px solid var(--nf-border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
  color: var(--nf-text);
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em !important;
}

.nf-eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--nf-grad);
  box-shadow: 0 0 14px rgba(163, 255, 18, 0.75);
  animation: nf-pulse 2.4s ease-in-out infinite;
}

@keyframes nf-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.55; transform: scale(0.78); }
}

/* Reuse pill alias */
.nf-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px 6px 8px;
  border: 1px solid var(--nf-border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
  color: var(--nf-text);
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em !important;
}

.nf-pill__dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--nf-grad);
  box-shadow: 0 0 14px rgba(163, 255, 18, 0.75);
  animation: nf-pulse 2.4s ease-in-out infinite;
}

.nf-kicker {
  display: inline-block;
  color: var(--nf-pink-soft);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em !important;
}

/* ============ BUTTONS ============ */
.nf-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid var(--nf-border);
  border-radius: 999px;
  color: #fff;
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  cursor: pointer;
  isolation: isolate;
  transition: transform .35s cubic-bezier(.2,.7,0,1),
              border-color .25s ease,
              box-shadow .25s ease;
}

.nf-button svg,
.nf-button i {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  transition: transform .35s cubic-bezier(.2,.7,0,1);
}

.nf-button:hover svg,
.nf-button:hover i {
  transform: translateX(3px);
}

.nf-button::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: inherit;
  opacity: 0;
  background: var(--nf-grad);
  filter: blur(14px);
  transition: opacity .3s ease;
}

.nf-button:hover {
  transform: translateY(-2px);
}

.nf-button:hover::before {
  opacity: 0.45;
}

.nf-button--primary {
  background: var(--nf-grad);
  border-color: transparent;
  box-shadow: 0 12px 32px -10px rgba(124, 214, 0, 0.6),
              inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.nf-button--secondary {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.nf-button--secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(163, 255, 18, 0.42);
}

.nf-button--ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.12);
}

/* ============ NAVBAR ============ */
.nf-theme header {
  z-index: 45;
}

.nf-nav-wrap {
  position: relative;
  padding: 0;
  transition: padding .6s cubic-bezier(.2,.7,0,1);
}

.nf-nav-wrap.is-scrolled {
  padding: 14px 16px 0;
}

.nf-nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  max-width: 100%;
  min-height: 72px;
  margin: 0 auto;
  padding: 14px 32px;
  border: 1px solid transparent;
  border-bottom-color: transparent;
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
  transition:
    border-radius .55s cubic-bezier(.2,.7,0,1),
    padding .55s cubic-bezier(.2,.7,0,1),
    width .55s cubic-bezier(.2,.7,0,1),
    max-width .55s cubic-bezier(.2,.7,0,1),
    min-height .55s cubic-bezier(.2,.7,0,1),
    background .35s ease,
    box-shadow .35s ease,
    border-color .35s ease;
}

.nf-nav-wrap.is-scrolled .nf-nav {
  width: min(100%, var(--nf-shell));
  max-width: var(--nf-shell);
  min-height: 64px;
  padding: 8px 8px 8px 22px;
  border-radius: 999px;
  border-color: var(--nf-border);
  border-bottom-color: var(--nf-border);
  background: rgba(8, 7, 12, 0.72);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.5),
              inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.nf-nav__brand {
  display: inline-flex;
  align-items: center;
  min-width: 130px;
  justify-self: start;
}

.nf-nav__brand img {
  width: auto;
  max-width: 140px;
  max-height: 34px;
  display: block;
}

.nf-nav__links {
  display: flex;
  align-items: center;
  gap: 2px;
  position: relative;
  justify-self: center;
}

.nf-nav__links a,
.nf-nav__links button {
  position: relative;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(245, 243, 255, 0.62);
  cursor: pointer;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 10px 16px;
  text-decoration: none;
  transition: color .2s ease;
}

.nf-nav__links a::before,
.nf-nav__links button::before {
  content: "";
  position: absolute;
  inset: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  opacity: 0;
  transform: scale(.85);
  transition: opacity .25s ease, transform .25s cubic-bezier(.2,.7,0,1);
  z-index: -1;
}

.nf-nav__links a:hover,
.nf-nav__links button:hover,
.nf-nav__links .is-active {
  color: #fff;
}

.nf-nav__links a:hover::before,
.nf-nav__links button:hover::before,
.nf-nav__links .is-active::before {
  opacity: 1;
  transform: scale(1);
}

.nf-nav__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-self: end;
}

.nf-lang {
  border: 1px solid var(--nf-border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(245, 243, 255, 0.72);
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 800;
  min-width: 36px;
  height: 36px;
  transition: background .2s ease, color .2s ease;
}

.nf-lang:hover {
  background: rgba(255, 255, 255, 0.09);
  color: #fff;
}

.nf-cart {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 40px;
  padding: 0 16px;
  border: 1px solid rgba(163, 255, 18, 0.38);
  border-radius: 999px;
  background: rgba(163, 255, 18, 0.06);
  color: var(--nf-pink-soft);
  font-size: 0.86rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform .25s cubic-bezier(.2,.7,0,1), background .25s ease, border-color .25s ease;
}

.nf-cart:hover {
  transform: translateY(-1px);
  background: rgba(163, 255, 18, 0.12);
  border-color: rgba(163, 255, 18, 0.6);
}

.nf-cart svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.nf-cart__label {
  color: inherit;
  white-space: nowrap;
}

.nf-cart__count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--nf-grad);
  color: #0a070f;
  font-size: 0.66rem;
  font-weight: 900;
}

/* Discord (and similar) round icon button in the nav */
.nf-nav-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--nf-border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(245, 243, 255, 0.78);
  text-decoration: none;
  transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
}

.nf-nav-icon:hover {
  transform: translateY(-1px);
  background: rgba(163, 255, 18, 0.1);
  border-color: rgba(163, 255, 18, 0.42);
  color: var(--nf-pink-soft);
}

.nf-nav-icon svg {
  width: 20px;
  height: 20px;
}

/* keep the top bar compact on mobile */
@media (max-width: 900px) {
  .nf-cart__label { display: none; }
  .nf-cart { padding: 0 12px; gap: 6px; }
  .nf-nav-icon { display: none; }
}

.nf-menu {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  width: 42px;
  height: 42px;
  border: 1px solid var(--nf-border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
}

.nf-menu span {
  width: 17px;
  height: 2px;
  border-radius: 99px;
  background: #fff;
  transition: transform .3s ease, opacity .3s ease;
}

.nf-nav__mobile-actions {
  display: none;
}

/* ============ HERO (NEW STRUCTURE) ============ */
.nf-hero {
  position: relative;
  overflow: hidden;
  padding: 96px 0 72px;
}

.nf-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  -webkit-mask-image: linear-gradient(180deg, transparent 0, #000 90px);
  mask-image: linear-gradient(180deg, transparent 0, #000 90px);
}

.nf-hero__bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 38%, #000 0%, transparent 75%);
}

.nf-hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.6;
}

.nf-hero__orb--pink {
  width: 540px;
  height: 540px;
  top: -120px;
  left: -160px;
  background: radial-gradient(circle, rgba(163, 255, 18, 0.6), transparent 65%);
  animation: nf-orb-float 14s ease-in-out infinite alternate;
}

.nf-hero__orb--violet {
  width: 620px;
  height: 620px;
  bottom: -200px;
  right: -180px;
  background: radial-gradient(circle, rgba(124, 214, 0, 0.55), transparent 65%);
  animation: nf-orb-float 18s ease-in-out infinite alternate-reverse;
}

@keyframes nf-orb-float {
  0%   { transform: translate3d(0,0,0); }
  100% { transform: translate3d(40px, -50px, 0); }
}

.nf-hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 28px;
}

.nf-hero__copy {
  display: grid;
  gap: 26px;
  max-width: 820px;
  justify-items: center;
}

.nf-hero__title {
  margin: 0;
  color: #fff;
  font-family: 'Space Grotesk', 'Rubik', system-ui, sans-serif;
  font-size: clamp(2.4rem, 4.6vw, 3.9rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.045em !important;
  overflow-wrap: normal;
  word-break: keep-all;
  text-wrap: balance;
}

.nf-hero__title-static {
  display: inline;
}

.nf-hero__title-after {
  display: block;
  margin-top: 0.12em;
}

.nf-hero__title .nf-hero__rotator {
  display: inline;
  font-weight: 800;
  background: var(--nf-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  white-space: nowrap;
}

.nf-hero__title .nf-hero__rotator .typing-words {
  display: inline-block;
  transition: opacity .35s ease;
}

.nf-hero__title .nf-hero__rotator .typing-words.is-swapping {
  opacity: 0;
}

@keyframes nf-caret-blink {
  50% { opacity: 0; }
}

@keyframes nf-shimmer-text {
  to { background-position: 200% center; }
}

.nf-hero__subtitle {
  max-width: 560px;
  margin: 0;
  color: var(--nf-muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.nf-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.nf-hero__trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
  padding-top: 14px;
  border-top: 1px solid var(--nf-border-soft);
}

.nf-hero__avatars {
  display: flex;
}

.nf-hero__avatars span {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 2px solid #0a0710;
  margin-left: -8px;
  background: var(--nf-grad);
  background-size: 200% 200%;
  animation: nf-avatar-shift 6s ease infinite;
}

.nf-hero__avatars span:nth-child(2) { background-position: 50% 50%; margin-left: -10px; }
.nf-hero__avatars span:nth-child(3) { background-position: 100% 50%; margin-left: -10px; }
.nf-hero__avatars span:nth-child(4) {
  background: rgba(255,255,255,0.08);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 800;
  margin-left: -10px;
}

@keyframes nf-avatar-shift {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}

.nf-hero__trust-text {
  display: grid;
  gap: 2px;
}

.nf-hero__stars {
  color: var(--nf-amber);
  letter-spacing: 0.05em !important;
  font-size: 0.86rem;
}

.nf-hero__trust-text small {
  color: var(--nf-muted);
  font-size: 0.78rem;
}

/* Hero showcase */
.nf-hero__showcase {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Decorative orbital rings */
.nf-hero__rings {
  position: absolute;
  inset: 0;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nf-hero__rings span {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.06);
  animation: nf-ring-spin 22s linear infinite;
}

.nf-hero__rings span:nth-child(1) {
  width: 360px;
  height: 360px;
  border-color: rgba(163, 255, 18, 0.18);
  border-top-color: rgba(163, 255, 18, 0.55);
}

.nf-hero__rings span:nth-child(2) {
  width: 480px;
  height: 480px;
  border-color: rgba(124, 214, 0, 0.14);
  border-right-color: rgba(124, 214, 0, 0.45);
  animation-duration: 30s;
  animation-direction: reverse;
}

.nf-hero__rings span:nth-child(3) {
  width: 600px;
  height: 600px;
  border-style: dashed;
  border-color: rgba(255, 255, 255, 0.05);
  border-left-color: rgba(124, 214, 0, 0.28);
  animation-duration: 44s;
}

@keyframes nf-ring-spin {
  to { transform: rotate(360deg); }
}

/* Hero panel card */
.nf-feed {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 440px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--nf-radius-lg);
  background: linear-gradient(170deg, rgba(28, 22, 42, 0.92), rgba(14, 12, 22, 0.96));
  backdrop-filter: blur(24px) saturate(160%);
  box-shadow:
    0 50px 100px -30px rgba(163, 255, 18, 0.32),
    0 30px 60px -20px rgba(124, 214, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  animation: nf-feed-float 8s ease-in-out infinite;
  transition: border-color .35s ease, box-shadow .45s ease;
}

.nf-feed:hover {
  border-color: rgba(163, 255, 18, 0.45);
  box-shadow:
    0 60px 120px -28px rgba(163, 255, 18, 0.55),
    0 36px 70px -18px rgba(124, 214, 0, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.nf-feed:hover .nf-feed__item {
  border-color: var(--nf-border);
  background: rgba(255, 255, 255, 0.05);
}

.nf-feed__item {
  transition: transform .35s cubic-bezier(.2,.7,0,1), background .35s ease, border-color .35s ease;
}

.nf-feed__item:hover {
  transform: translateY(-2px) translateX(2px);
  border-color: rgba(163, 255, 18, 0.45) !important;
  background: rgba(163, 255, 18, 0.08) !important;
}

@keyframes nf-feed-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}

.nf-feed::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(160deg, rgba(163, 255, 18, 0.14), transparent 55%);
  pointer-events: none;
}

.nf-feed > * { position: relative; z-index: 1; }

.nf-feed__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.nf-feed__title {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 0.88rem;
  font-weight: 800;
}

.nf-feed__dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--nf-green);
  box-shadow: 0 0 14px rgba(52, 245, 179, 0.9);
  animation: nf-pulse 1.8s ease-in-out infinite;
}

.nf-feed__count {
  font-size: 0.74rem;
  color: var(--nf-muted);
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--nf-border);
}

.nf-feed__list {
  display: grid;
  gap: 10px;
}

.nf-feed__item {
  display: grid;
  grid-template-columns: 36px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--nf-border-soft);
  transform-origin: top center;
  animation: nf-feed-item 12s ease-in-out infinite;
}

.nf-feed__item:nth-child(1) { animation-delay: 0s; }
.nf-feed__item:nth-child(2) { animation-delay: -3s; }
.nf-feed__item:nth-child(3) { animation-delay: -6s; }
.nf-feed__item:nth-child(4) { animation-delay: -9s; }

@keyframes nf-feed-item {
  0%, 6%   { opacity: 0; transform: translateY(-8px) scale(.96); }
  10%, 20% { opacity: 1; transform: translateY(0) scale(1); border-color: rgba(163, 255, 18, 0.4); background: rgba(163, 255, 18, 0.08); }
  30%, 100%{ opacity: 1; transform: translateY(0) scale(1); border-color: var(--nf-border-soft); background: rgba(255, 255, 255, 0.03); }
}

.nf-feed__avatar {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: var(--nf-grad);
  background-size: 200% 200%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 0.86rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
  animation: nf-avatar-shift 7s ease-in-out infinite;
}

.nf-feed__item:nth-child(1) .nf-feed__avatar { background-position: 0% 50%; }
.nf-feed__item:nth-child(2) .nf-feed__avatar { background-position: 60% 50%; }
.nf-feed__item:nth-child(3) .nf-feed__avatar { background-position: 100% 50%; }
.nf-feed__item:nth-child(4) .nf-feed__avatar { background-position: 30% 50%; }

.nf-feed__avatar::before {
  content: attr(data-letter);
}

.nf-feed__body {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.nf-feed__body strong {
  color: #fff;
  font-size: 0.86rem;
  font-weight: 800;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nf-feed__body span {
  color: var(--nf-muted);
  font-size: 0.74rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nf-feed__price {
  color: var(--nf-green);
  font-size: 0.92rem;
  font-weight: 800;
}

.nf-feed__footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--nf-border-soft);
}

.nf-feed__footer small {
  display: block;
  color: var(--nf-muted);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em !important;
  margin-bottom: 2px;
}

.nf-feed__footer strong {
  color: #fff;
  font-size: 1.18rem;
  font-weight: 800;
}

.nf-feed__footer div:last-child { text-align: right; }
.nf-feed__footer div:last-child strong {
  background: var(--nf-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.nf-feed__spark {
  height: 36px;
  display: flex;
  align-items: center;
}

.nf-feed__spark svg {
  width: 100%;
  height: 100%;
}

/* Floating verified badge */
.nf-floating-badge {
  position: absolute;
  z-index: 3;
  right: -6%;
  bottom: 10%;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px 12px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(14, 12, 22, 0.92);
  backdrop-filter: blur(18px);
  box-shadow:
    0 20px 50px -10px rgba(0, 0, 0, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  animation: nf-feed-float 6s ease-in-out infinite;
  animation-delay: -2s;
}

.nf-floating-badge svg {
  width: 18px;
  height: 18px;
  padding: 6px;
  border-radius: 999px;
  background: var(--nf-grad);
  color: #fff;
  box-shadow: 0 8px 20px -4px rgba(163, 255, 18, 0.6);
  box-sizing: content-box;
}

.nf-floating-badge strong {
  display: block;
  color: #fff;
  font-size: 0.86rem;
  font-weight: 800;
}

.nf-floating-badge span {
  display: block;
  color: var(--nf-muted);
  font-size: 0.72rem;
}

/* ============ TRUST STRIP (after hero) ============ */
.nf-trust-strip {
  position: relative;
  z-index: 1;
  padding: 22px 0;
  margin-top: -8px; /* pull up into the hero so the dark band disappears */
  border: 0;
  background: transparent;
  overflow: hidden;
}

.nf-trust-strip::before,
.nf-trust-strip::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg,
              transparent 0%,
              rgba(255, 255, 255, 0.08) 18%,
              rgba(163, 255, 18, 0.16) 50%,
              rgba(255, 255, 255, 0.08) 82%,
              transparent 100%);
  pointer-events: none;
}

.nf-trust-strip::before { top: 0; }
.nf-trust-strip::after  { bottom: 0; }

.nf-trust-strip__inner {
  display: flex;
  width: max-content;
  animation: nf-marquee 42s linear infinite;
  will-change: transform;
}

/* Two identical groups side-by-side; we translate by -50% so the second
   group lands exactly where the first started → perfectly seamless loop,
   and one group always covers the viewport so there is never empty space. */
.nf-trust-strip__group {
  display: flex;
  align-items: center;
  gap: 26px;
  padding-right: 26px; /* same gap between groups as inside, so the seam is invisible */
  flex-shrink: 0;
}

/* Real brand logos as round chips (replaces the old text labels) */
.nf-trust-strip__group .nf-brand-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 50px;
  height: 50px;
  padding: 0;
  gap: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.09);
  opacity: 0.8;
  filter: grayscale(0.12);
  transition: opacity .25s ease, transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.nf-trust-strip__group .nf-brand-chip::before {
  content: none !important;
  display: none !important;
}

.nf-trust-strip__group .nf-brand-chip img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  display: block;
}

.nf-trust-strip__group .nf-brand-chip:hover {
  opacity: 1;
  filter: none;
  transform: translateY(-2px);
  border-color: rgba(163, 255, 18, 0.4);
  box-shadow: 0 10px 24px -14px rgba(163, 255, 18, 0.8);
}

.nf-trust-strip__group span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: rgba(245, 243, 255, 0.52);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: -0.005em !important;
  white-space: nowrap;
  transition: color .25s ease;
}

.nf-trust-strip__group span:hover {
  color: #fff;
}

.nf-trust-strip__group span::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: var(--nf-pink);
  opacity: 0.55;
}

/* ============ STATS ============ */
.nf-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.nf-stat-card {
  position: relative;
  min-height: 190px;
  overflow: hidden;
  padding: 24px;
  border: 1px solid var(--nf-border);
  border-radius: var(--nf-radius);
  background: linear-gradient(170deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015));
  backdrop-filter: blur(14px);
  transition: transform .35s cubic-bezier(.2,.7,0,1), border-color .25s ease;
}

.nf-stat-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(400px circle at var(--mx, 50%) var(--my, 50%), rgba(163, 255, 18, 0.16), transparent 50%);
  opacity: 0;
  transition: opacity .3s ease;
  pointer-events: none;
}

.nf-stat-card:hover {
  transform: translateY(-4px);
  border-color: rgba(163, 255, 18, 0.32);
}

.nf-stat-card:hover::before {
  opacity: 1;
}

.nf-stat-card > * {
  position: relative;
  z-index: 1;
}

.nf-stat-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  border: 1px solid var(--nf-border);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--nf-pink-soft);
}

.nf-stat-card__icon svg,
.nf-stat-card__icon i {
  width: 22px;
  height: 22px;
  font-size: 22px;
}

.nf-stat-card h3 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em !important;
}

.nf-stat-card p {
  margin: 0;
  color: var(--nf-muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

/* ============ PRICE COMPARISON ============ */
.nf-pricing {
  position: relative;
}

.nf-price-panel {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  gap: 40px;
  overflow: hidden;
  padding: 44px;
  border: 1px solid var(--nf-border);
  border-radius: var(--nf-radius-xl);
  background: linear-gradient(160deg, rgba(163, 255, 18, 0.18), transparent 38%),
              linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  backdrop-filter: blur(20px);
  color: #fff;
  text-decoration: none;
  box-shadow: var(--nf-shadow-md),
              inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: transform .4s cubic-bezier(.2,.7,0,1), box-shadow .4s ease;
}

.nf-price-panel:hover {
  transform: translateY(-4px);
  box-shadow: var(--nf-shadow-glow),
              inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.nf-price-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to right, #000, transparent 80%);
  pointer-events: none;
}

.nf-price-panel > * {
  position: relative;
  z-index: 1;
}

.nf-price-panel__copy h3 {
  margin: 14px 0 18px;
  max-width: 620px;
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.03em !important;
}

.nf-price-panel__copy h3 strong {
  display: block;
  background: var(--nf-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.nf-price-panel__copy p {
  max-width: 620px;
  margin: 0;
  color: var(--nf-muted);
  font-size: 1rem;
  line-height: 1.7;
}

.nf-price-panel__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.nf-price-panel__chips span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  border: 1px solid var(--nf-border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(245, 243, 255, 0.78);
  font-size: 0.78rem;
  font-weight: 700;
}

.nf-price-panel__chips span::before {
  content: "✓";
  color: var(--nf-green);
  font-weight: 900;
  font-size: 0.78rem;
}

.nf-price-panel__compare {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: 26px;
  border: 1px solid var(--nf-border-strong);
  border-radius: var(--nf-radius);
  background: rgba(5, 5, 8, 0.6);
  backdrop-filter: blur(20px);
}

.nf-price-row {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 6px 14px;
  padding: 14px 18px;
}

.nf-price-row small {
  margin-right: auto; /* label left, price + tag grouped on the right */
  white-space: nowrap;
  color: var(--nf-muted);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em !important;
}

.nf-price-row strong {
  color: rgba(255, 255, 255, 0.4);
  font-size: 1.7rem;
  font-weight: 800;
  white-space: nowrap;
  text-decoration: line-through;
  text-decoration-color: rgba(163, 255, 18, 0.6);
}

.nf-price-row span {
  color: var(--nf-green);
  font-size: 0.8rem;
  font-weight: 800;
}

/* Hot row: label on the left (centered), price + (Lifetime) stacked on the right */
.nf-price-row--hot {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  column-gap: 16px;
  row-gap: 2px;
}

.nf-price-row--hot small {
  grid-column: 1;
  grid-row: 1 / span 2;
  align-self: center;
  margin-right: 0;
}

.nf-price-row--hot strong {
  grid-column: 2;
  grid-row: 1;
  justify-self: end;
  color: #fff;
  font-size: 2rem;
  background: var(--nf-grad);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-decoration: none;
  animation: nf-shimmer-text 5s linear infinite;
}

.nf-price-row--hot span {
  grid-column: 2;
  grid-row: 2;
  justify-self: end;
}

.nf-price-wave {
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--nf-pink), var(--nf-violet), transparent);
  opacity: 0.7;
}

.nf-price-panel__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
  margin-top: 8px;
  border-radius: 999px;
  background: #fff;
  color: #0a070f;
  font-weight: 800;
  font-size: 0.92rem;
  transition: transform .25s cubic-bezier(.2,.7,0,1);
}

.nf-price-panel__button::after {
  content: "→";
  font-size: 1.1rem;
  transition: transform .25s ease;
}

.nf-price-panel:hover .nf-price-panel__button::after {
  transform: translateX(4px);
}

/* ============ PRODUCTS ============ */
.nf-products__slider {
  width: 100%;
  overflow: hidden;
  padding: 8px 0 12px;
  mask-image: linear-gradient(to right, transparent 0, #000 6%, #000 94%, transparent 100%);
}

.nf-products__slider .splide__track {
  overflow: visible;
}

.nf-products__slider .splide__slide {
  width: 320px;
}

.nf-products__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  perspective: 1200px;
}

.nf-products__slider .splide__list {
  perspective: 1200px;
}

.nf-products__all {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

.nf-product-card {
  position: relative;
  display: block;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid var(--nf-border);
  border-radius: var(--nf-radius);
  background: linear-gradient(170deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
  backdrop-filter: blur(12px);
  color: #fff;
  text-decoration: none;
  box-shadow: var(--nf-shadow-sm);
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform .55s cubic-bezier(.2,.7,0,1),
              border-color .3s ease,
              box-shadow .4s ease;
}

/* During pointer move, switch to a snappy linear transition so motion feels live. */
.nf-product-card.is-tilting {
  transition: transform .08s linear,
              border-color .3s ease,
              box-shadow .4s ease;
}

.nf-product-card__shine {
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  opacity: 0;
  background: radial-gradient(280px circle at var(--mx, 50%) var(--my, 50%),
              rgba(255, 255, 255, 0.16),
              transparent 45%);
  mix-blend-mode: overlay;
  transition: opacity .35s ease;
  z-index: 2;
}

.nf-product-card:hover .nf-product-card__shine {
  opacity: 1;
}

.nf-product-card__content,
.nf-product-card__media {
  transform: translateZ(20px);
}

.nf-product-card__badges {
  transform: translateZ(40px);
}

.nf-product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(360px circle at var(--mx, 50%) var(--my, 50%), rgba(163, 255, 18, 0.22), transparent 45%);
  opacity: 0;
  transition: opacity .35s ease;
  pointer-events: none;
  z-index: 2;
}

/* CSS hover only handles non-transform props — JS owns transform to avoid jitter. */
.nf-product-card:hover {
  border-color: rgba(163, 255, 18, 0.4);
  box-shadow: 0 24px 60px -16px rgba(124, 214, 0, 0.42);
}

/* Touch / no-hover fallback: just a soft lift. */
@media (hover: none) {
  .nf-product-card:active {
    transform: translateY(-3px);
  }
}

.nf-product-card:hover::before {
  opacity: 1;
}

.nf-product-card__media {
  position: relative;
  aspect-ratio: 1 / 1;
  margin: 8px;
  overflow: hidden;
  border-radius: var(--nf-radius-sm);
  background: rgba(255, 255, 255, 0.04);
}

.nf-product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  transition: transform .6s cubic-bezier(.2,.7,0,1), filter .5s ease;
}

.nf-product-card:hover .nf-product-card__media img {
  transform: scale(1.08);
  filter: saturate(1.15) contrast(1.04);
}

.nf-product-card__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: rgba(163, 255, 18, 0.45);
}

.nf-product-card__placeholder svg {
  width: 82px;
  height: 82px;
}

.nf-product-card__badges {
  position: absolute;
  top: 10px;
  right: 10px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px;
  max-width: calc(100% - 20px);
  z-index: 3;
}

.nf-product-card__badges span {
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: color-mix(in srgb, var(--badge-color) 70%, #000);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  backdrop-filter: blur(8px);
}

.nf-product-card__soldout {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  z-index: 3;
}

.nf-product-card__soldout span {
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-weight: 800;
  font-size: 0.84rem;
}

.nf-product-card__content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr); /* keep track from growing to max-content */
  gap: 18px;
  padding: 14px 20px 20px;
}

.nf-product-card__content h3 {
  margin: 0;
  color: #fff;
  font-size: 1.18rem;
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.02em !important;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nf-product-card__content p {
  min-height: 1.4em;
  margin: 4px 0 0;
  color: var(--nf-muted);
  font-size: 0.84rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal; /* allow the description to wrap (2-line clamp handles overflow) */
}

.nf-product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-top: 14px;
  border-top: 1px solid var(--nf-border-soft);
  min-width: 0;
}

.nf-product-card__footer strong {
  min-width: 0;
  background: var(--nf-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 1.05rem;
  font-weight: 800;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nf-product-card__footer span {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--nf-border);
  color: #fff;
  font-size: 0.74rem;
  font-weight: 700;
  transition: background .25s ease, transform .25s ease;
}

.nf-product-card:hover .nf-product-card__footer span {
  background: var(--nf-grad);
  border-color: transparent;
}

/* ============ FEATURED ============ */
.nf-featured-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  overflow: hidden;
  border: 1px solid var(--nf-border);
  border-radius: var(--nf-radius-xl);
  background: linear-gradient(135deg, rgba(124, 214, 0, 0.18), transparent 44%),
              rgba(12, 10, 18, 0.82);
  backdrop-filter: blur(20px);
  box-shadow: var(--nf-shadow-md), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.nf-featured-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(600px circle at var(--mx, 80%) var(--my, 50%), rgba(163, 255, 18, 0.18), transparent 45%);
  pointer-events: none;
  opacity: 0;
  transition: opacity .4s ease;
}

.nf-featured-card:hover::after {
  opacity: 1;
}

.nf-featured-card__media {
  position: relative;
  min-height: 460px;
  background: rgba(255, 255, 255, 0.04);
  overflow: hidden;
}

.nf-featured-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 60%, rgba(12, 10, 18, 0.6));
  pointer-events: none;
}

.nf-featured-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .8s cubic-bezier(.2,.7,0,1);
}

.nf-featured-card:hover .nf-featured-card__media img {
  transform: scale(1.05);
}

.nf-featured-card__content {
  position: relative;
  display: grid;
  align-content: center;
  gap: 22px;
  padding: 52px;
}

.nf-featured-card__content::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.5;
  mask-image: radial-gradient(ellipse 80% 90% at 70% 50%, #000 0%, transparent 72%);
  pointer-events: none;
}

.nf-featured-card__content > * {
  position: relative;
  z-index: 1;
}

.nf-featured-card__content h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1.03;
  font-weight: 800;
  letter-spacing: -0.03em !important;
}

.nf-featured-card__content p {
  max-width: 540px;
  margin: 0;
  color: var(--nf-muted);
  font-size: 1rem;
  line-height: 1.75;
}

.nf-featured-card__content .nf-button {
  justify-self: start;
}

.nf-featured-card__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(8, 6, 14, 0.78);
  backdrop-filter: blur(10px);
  border: 1px solid var(--nf-border-strong);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em !important;
}

.nf-featured-card__perks {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 16px;
}

.nf-featured-card__perks li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(245, 243, 255, 0.85);
  font-size: 0.9rem;
  font-weight: 600;
}

.nf-featured-card__perks svg {
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  padding: 4px;
  border-radius: 8px;
  background: rgba(163, 255, 18, 0.14);
  color: var(--nf-pink-soft);
  box-sizing: content-box;
}

.nf-featured-card__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 22px;
  margin-top: 4px;
  border-top: 1px solid var(--nf-border-soft);
}

.nf-featured-card__price small {
  display: block;
  color: var(--nf-muted);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.08em !important;
  margin-bottom: 4px;
}

.nf-featured-card__price strong {
  display: block;
  background: var(--nf-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em !important;
}

/* ============ BENTO (Why-us) ============ */
.nf-bento__grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-auto-rows: 160px;
  gap: 14px;
}

.nf-bento-card {
  position: relative;
  overflow: hidden;
  padding: 26px;
  border: 1px solid var(--nf-border);
  border-radius: var(--nf-radius);
  background: linear-gradient(170deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.015));
  backdrop-filter: blur(14px);
  transition: transform .4s cubic-bezier(.2,.7,0,1), border-color .25s ease;
  grid-column: span 2;
  grid-row: span 2;
}

.nf-bento-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(400px circle at var(--mx, 50%) var(--my, 50%), rgba(163, 255, 18, 0.16), transparent 50%);
  opacity: 0;
  transition: opacity .35s ease;
  pointer-events: none;
}

.nf-bento-card:hover {
  transform: translateY(-4px);
  border-color: rgba(163, 255, 18, 0.32);
}

.nf-bento-card:hover::after {
  opacity: 1;
}

.nf-bento-card > * {
  position: relative;
  z-index: 1;
}

/* Bento layout — 6-col asymmetric */
.nf-bento-card--wide {
  grid-column: span 4;
}

.nf-bento-card--full {
  grid-column: span 6;
}

.nf-bento-card--tall {
  grid-row: span 3;
}

.nf-bento-card--hot {
  background: linear-gradient(160deg, rgba(163, 255, 18, 0.22), rgba(124, 214, 0, 0.06)),
              rgba(12, 10, 18, 0.82);
  border-color: rgba(163, 255, 18, 0.2);
}

.nf-bento-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  border: 1px solid var(--nf-border);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--nf-pink-soft);
  font-weight: 800;
  font-size: 0.78rem;
}

.nf-bento-card h3 {
  max-width: 420px;
  margin: 0 0 10px;
  color: #fff;
  font-size: 1.32rem;
  line-height: 1.16;
  font-weight: 800;
  letter-spacing: -0.02em !important;
}

.nf-bento-card p {
  max-width: 500px;
  margin: 0;
  color: var(--nf-muted);
  font-size: 0.92rem;
  line-height: 1.62;
}

.nf-mini-terminal {
  display: grid;
  gap: 6px;
  max-width: 430px;
  margin-top: 22px;
  padding: 14px 16px;
  border: 1px solid var(--nf-border);
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.34);
  color: rgba(245, 243, 255, 0.7);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.76rem;
}

.nf-mini-terminal span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.nf-mini-terminal span::before {
  content: "›";
  color: var(--nf-cyan);
  font-weight: 800;
}

.nf-mini-terminal span:first-child::before {
  color: var(--nf-pink);
}

.nf-delivery-orbit {
  position: absolute;
  right: 28px;
  bottom: 28px;
  width: 120px;
  height: 120px;
  border: 1px dashed rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  animation: nf-rotate 12s linear infinite;
}

.nf-delivery-orbit::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -7px;
  transform: translateX(-50%);
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: var(--nf-pink);
  box-shadow: 0 0 22px rgba(163, 255, 18, 0.85);
}

.nf-delivery-orbit::after {
  content: "";
  position: absolute;
  left: 16px;
  bottom: 16px;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--nf-violet);
  box-shadow: 0 0 14px rgba(124, 214, 0, 0.85);
}

@keyframes nf-rotate {
  to { transform: rotate(360deg); }
}

.nf-checklist {
  position: absolute;
  right: 22px;
  bottom: 24px;
  display: grid;
  gap: 10px;
  width: 160px;
}

.nf-checklist span {
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--nf-pink), rgba(255, 255, 255, 0.08));
}

.nf-checklist span:nth-child(2) { width: 72%; opacity: 0.7; }
.nf-checklist span:nth-child(3) { width: 46%; opacity: 0.4; }

.nf-sales-bars {
  position: absolute;
  right: 24px;
  bottom: 24px;
  display: flex;
  align-items: end;
  gap: 8px;
  height: 110px;
}

.nf-sales-bars span {
  width: 16px;
  border-radius: 99px 99px 4px 4px;
  background: linear-gradient(180deg, var(--nf-pink), var(--nf-violet));
  animation: nf-bars 1.7s ease-in-out infinite alternate;
}

.nf-sales-bars span:nth-child(1) { height: 42px; animation-delay: -.1s; }
.nf-sales-bars span:nth-child(2) { height: 78px; animation-delay: -.4s; }
.nf-sales-bars span:nth-child(3) { height: 58px; animation-delay: -.7s; }
.nf-sales-bars span:nth-child(4) { height: 96px; animation-delay: -1s; }
.nf-sales-bars span:nth-child(5) { height: 68px; animation-delay: -1.3s; }

.nf-payment-rail {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.nf-payment-rail span {
  padding: 9px 13px;
  border: 1px solid var(--nf-border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(245, 243, 255, 0.78);
  font-size: 0.78rem;
  font-weight: 700;
  transition: background .25s ease, transform .25s ease;
}

.nf-payment-rail span:hover {
  background: rgba(163, 255, 18, 0.18);
  transform: translateY(-2px);
}

/* ============ Payments bento + orbit ============ */
.nf-bento-card--payments {
  padding: 0;
  overflow: hidden;
}

.nf-bento-card--payments .nf-bento-card__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 380px);
  align-items: center;
  gap: 24px;
  /* Tight vertical padding: the bento grid pins this card to 350px tall, so the
     orbit (below) has to fit the ~310px content area or overflow:hidden clips it. */
  padding: 20px 32px;
  height: 100%;
}

.nf-payment-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.nf-payment-chips span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 13px 8px 10px;
  border: 1px solid var(--nf-border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(245, 243, 255, 0.84);
  font-size: 0.78rem;
  font-weight: 700;
  transition: background .25s ease, transform .25s ease, border-color .25s ease;
}

.nf-payment-chips span img {
  width: 16px;
  height: 16px;
  object-fit: contain;
  opacity: 0.92;
}

.nf-payment-chips span:hover {
  background: rgba(163, 255, 18, 0.18);
  border-color: rgba(163, 255, 18, 0.4);
  transform: translateY(-2px);
}

.nf-orbit {
  position: relative;
  /* 300px so the dashed outer ring + chips fit inside the 350px-tall card's
     content area (the bento grid fixes the card height). */
  width: 300px;
  height: 300px;
  justify-self: end;
  align-self: center;
  margin: 0;
}

.nf-orbit::before,
.nf-orbit::after {
  content: "";
  position: absolute;
  inset: 50%;
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: var(--nf-pink);
  filter: blur(1px);
  opacity: 0.7;
  pointer-events: none;
}

.nf-orbit__center {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 70px;
  height: 70px;
  border-radius: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--nf-grad);
  color: #fff;
  box-shadow:
    0 18px 40px -8px rgba(163, 255, 18, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  z-index: 3;
}

.nf-orbit__center svg {
  width: 30px;
  height: 30px;
}

.nf-orbit__center::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 28px;
  border: 1px solid rgba(163, 255, 18, 0.32);
  animation: nf-pulse-soft 2.4s ease-in-out infinite;
}

@keyframes nf-pulse-soft {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50%      { transform: scale(1.15); opacity: 0; }
}

.nf-orbit__ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px dashed rgba(255, 255, 255, 0.1);
  animation: nf-rotate var(--dur, 22s) linear infinite;
}

.nf-orbit__ring--inner {
  inset: 22%;
  border-color: rgba(163, 255, 18, 0.22);
  --dur: 22s;
  --count: 6;
}

.nf-orbit__ring--outer {
  inset: 0;
  border-color: rgba(124, 214, 0, 0.22);
  --dur: 34s;
  --count: 8;
  animation-direction: reverse;
}

/* Slot: positioning shell, rotates with parent. */
.nf-orbit__slot {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  transform: rotate(calc(360deg / var(--count) * var(--i))) translateY(calc(var(--orbit-r) * -1));
}

.nf-orbit__ring--inner .nf-orbit__slot { --orbit-r: 66px; }
.nf-orbit__ring--outer .nf-orbit__slot { --orbit-r: 122px; }

/* Chip: counter-rotates so logo stays upright. */
.nf-orbit__chip {
  position: absolute;
  top: -24px;
  left: -24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(160deg, rgba(34, 28, 50, 0.92), rgba(12, 10, 20, 0.96));
  backdrop-filter: blur(8px);
  color: rgba(245, 243, 255, 0.92);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.55),
              inset 0 1px 0 rgba(255, 255, 255, 0.12);
  /* Counter rotation: opposite of slot's index rotation + counter of parent ring spin */
  transform: rotate(calc(360deg / var(--count) * var(--i) * -1));
  animation: nf-orbit-counter var(--dur, 22s) linear infinite;
  transition: border-color .25s ease, background .25s ease, transform .25s ease;
}

/* The chip counter-spin must OPPOSE its ring's spin so the logo stays upright
   (otherwise the two rotations add up and the chip tumbles a full turn — which
   also swings the rounded-square corners out past the orbit box). Inner ring
   spins CW (nf-rotate normal) → chip counter runs normal (CCW -360). Outer ring
   spins CCW (ring animation-direction:reverse) → chip counter runs reverse. */
.nf-orbit__ring--inner .nf-orbit__chip {
  animation-direction: normal;
}

.nf-orbit__ring--outer .nf-orbit__chip {
  animation-direction: reverse;
}

@keyframes nf-orbit-counter {
  to { transform: rotate(calc(360deg / var(--count) * var(--i) * -1 - 360deg)); }
}

.nf-orbit__chip svg,
.nf-orbit__chip img {
  width: 23px;
  height: 23px;
  object-fit: contain;
}

.nf-orbit__chip:hover {
  border-color: rgba(163, 255, 18, 0.55);
  background: linear-gradient(160deg, rgba(48, 34, 70, 0.96), rgba(18, 14, 28, 0.98));
  box-shadow: 0 14px 34px -6px rgba(163, 255, 18, 0.45),
              inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

/* ============ BLOG CARDS ============ */
.nf-blog-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--nf-border);
  border-radius: var(--nf-radius);
  background: linear-gradient(170deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
  backdrop-filter: blur(12px);
  color: #fff;
  text-decoration: none;
  box-shadow: var(--nf-shadow-sm);
  transform-style: preserve-3d;
  transition: transform .55s cubic-bezier(.2,.7,0,1),
              border-color .3s ease,
              box-shadow .4s ease;
}

.nf-blog-card.is-tilting {
  transition: transform .08s linear, border-color .3s ease, box-shadow .4s ease;
}

.nf-blog-card:hover {
  border-color: rgba(163, 255, 18, 0.4);
  box-shadow: 0 24px 60px -16px rgba(124, 214, 0, 0.42);
}

.nf-blog-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
}

.nf-blog-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  transition: transform .6s cubic-bezier(.2,.7,0,1), filter .5s ease;
}

.nf-blog-card:hover .nf-blog-card__media img {
  transform: scale(1.06);
  filter: saturate(1.1);
}

.nf-blog-card__placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(163, 255, 18, 0.2), rgba(124, 214, 0, 0.1));
}

.nf-blog-card__body {
  display: grid;
  gap: 12px;
  padding: 22px 22px 24px;
}

.nf-blog-card__meta {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--nf-muted);
  font-size: 0.78rem;
  font-weight: 600;
}

.nf-blog-card__title {
  margin: 0;
  color: #fff;
  font-size: 1.18rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em !important;
}

.nf-blog-card__title--large {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.05;
  letter-spacing: -0.03em !important;
}

.nf-blog-card__excerpt {
  margin: 0;
  color: var(--nf-muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.nf-blog-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
  color: var(--nf-pink-soft);
  font-size: 0.84rem;
  font-weight: 800;
}

.nf-blog-card__cta svg {
  width: 16px;
  height: 16px;
  transition: transform .35s cubic-bezier(.2,.7,0,1);
}

.nf-blog-card:hover .nf-blog-card__cta svg {
  transform: translateX(4px);
}

.nf-blog-card--large {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 0;
  margin-bottom: 32px;
}

.nf-blog-card--large .nf-blog-card__media {
  aspect-ratio: auto;
  min-height: 360px;
}

.nf-blog-card--large .nf-blog-card__body {
  padding: 40px;
  align-content: center;
  gap: 18px;
}

@media (max-width: 900px) {
  .nf-blog-card--large {
    grid-template-columns: 1fr;
  }
  .nf-blog-card--large .nf-blog-card__media { min-height: 220px; }
  .nf-blog-card--large .nf-blog-card__body { padding: 28px; }
}

/* ============ FEEDBACKS MARQUEE ============ */
.nf-feedbacks__marquee {
  overflow: hidden;
  padding: 8px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}

.nf-feedbacks__row {
  display: flex;
  width: max-content;
  animation: nf-marquee 46s linear infinite;
}

.nf-feedbacks__row--reverse {
  animation-direction: reverse;
  animation-duration: 58s;
}

.nf-feedbacks__row--slow {
  animation-duration: 72s;
}

.nf-feedbacks__row > div {
  display: flex;
}

.nf-feedbacks__marquee:hover .nf-feedbacks__row {
  animation-play-state: paused;
}

.nf-feedbacks__marquee .inline-flex {
  width: 360px;
  min-height: 150px;
  margin: 0 10px;
  border-color: var(--nf-border);
  border-radius: var(--nf-radius);
  background: linear-gradient(170deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.015));
  backdrop-filter: blur(12px);
}

@keyframes nf-marquee {
  to { transform: translateX(-50%); }
}

/* ============ FAQ refresh ============ */
.nf-theme .max-w-7xl .bg-\[\#0d0d0d\] {
  background: linear-gradient(170deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015)) !important;
  backdrop-filter: blur(14px);
  border-color: var(--nf-border) !important;
  border-radius: var(--nf-radius) !important;
  transition: border-color .3s ease, transform .3s ease, box-shadow .3s ease;
}

.nf-theme .max-w-7xl .bg-\[\#0d0d0d\]:hover {
  border-color: rgba(163, 255, 18, 0.32) !important;
  transform: translateY(-2px);
  box-shadow: 0 14px 32px -10px rgba(124, 214, 0, 0.32);
}

.nf-theme .bg-\[\#260923\] {
  background: rgba(255, 255, 255, 0.04) !important;
  border-color: var(--nf-border) !important;
  border-radius: 999px !important;
  padding: 6px 14px !important;
  font-size: 0.74rem !important;
  text-transform: uppercase;
  letter-spacing: 0.06em !important;
  font-weight: 700;
}

/* ============ STATIC CONTENT PAGES (terms / privacy / refund / faq / blog post) ============ */
.nf-theme .editor {
  color: rgba(245, 243, 255, 0.84);
  font-size: 1rem;
  line-height: 1.75;
}

.nf-theme .editor h1,
.nf-theme .editor h2,
.nf-theme .editor h3,
.nf-theme .editor h4 {
  color: #fff;
  font-weight: 800;
  letter-spacing: -0.02em !important;
  margin: 1.4em 0 0.6em;
  line-height: 1.2;
}
.nf-theme .editor h1 { font-size: 1.85rem; }
.nf-theme .editor h2 { font-size: 1.5rem; }
.nf-theme .editor h3 { font-size: 1.2rem; }
.nf-theme .editor h4 { font-size: 1rem; }
.nf-theme .editor h1:first-child,
.nf-theme .editor h2:first-child,
.nf-theme .editor h3:first-child { margin-top: 0; }

.nf-theme .editor p {
  margin: 0 0 1em;
}

.nf-theme .editor a {
  color: var(--nf-pink-soft);
  text-decoration: underline;
  text-decoration-color: rgba(132, 224, 0, 0.35);
  text-underline-offset: 3px;
  transition: color .2s ease, text-decoration-color .2s ease;
}

.nf-theme .editor a:hover {
  color: #fff;
  text-decoration-color: var(--nf-pink);
}

.nf-theme .editor ul,
.nf-theme .editor ol {
  padding-left: 1.4em;
  margin: 0 0 1em;
}

.nf-theme .editor li {
  margin-bottom: 0.4em;
}

.nf-theme .editor strong { color: #fff; font-weight: 700; }

.nf-theme .editor code,
.nf-theme .editor pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--nf-border);
  border-radius: 6px;
  padding: 1px 6px;
  font-size: 0.92em;
}

.nf-theme .editor pre {
  padding: 12px 14px;
  overflow-x: auto;
}

.nf-theme .editor blockquote {
  border-left: 3px solid var(--nf-pink);
  padding: 4px 16px;
  margin: 1em 0;
  color: var(--nf-muted);
  background: rgba(163, 255, 18, 0.06);
  border-radius: 0 12px 12px 0;
}

.nf-theme .editor img {
  border-radius: var(--nf-radius-sm);
}

/* Tighten the wrapper card the editor sits inside */
.nf-theme .editor + *,
.nf-theme .max-w-4xl .bg-\[\#0d0d0d\],
.nf-theme .max-w-7xl .bg-product-page-section {
  background: linear-gradient(170deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.012)) !important;
  border-color: var(--nf-border) !important;
}

/* ============ FOOTER ============ */
.nf-footer-section {
  padding-top: 80px;
}

.nf-footer {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--nf-border-soft);
  background: linear-gradient(180deg, rgba(8, 6, 14, 0.6), rgba(5, 5, 7, 0.92));
  backdrop-filter: blur(18px);
}

.nf-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 0%, #000, transparent 75%);
  pointer-events: none;
}

.nf-footer__wordmark {
  position: absolute;
  left: 50%;
  top: 46%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  font-family: 'Syne', 'Space Grotesk', system-ui, sans-serif;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: clamp(4rem, 13.5vw, 13rem);
  font-weight: 800;
  text-transform: uppercase;
  white-space: nowrap;
  letter-spacing: -0.05em !important;
  line-height: 0.85;
  user-select: none;
  pointer-events: none;
}

.nf-footer__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 56px 0;
}

.nf-footer__brand img {
  width: auto;
  max-width: 150px;
  max-height: 42px;
}

.nf-footer__brand p {
  max-width: 440px;
  margin: 18px 0 0;
  color: var(--nf-muted);
  line-height: 1.7;
  font-size: 0.94rem;
}

.nf-footer__socials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.nf-footer__socials a,
.nf-footer__bottom a {
  color: rgba(245, 243, 255, 0.62);
  text-decoration: none;
  transition: color .2s ease;
}

.nf-footer__socials a:hover,
.nf-footer__bottom a:hover {
  color: #fff;
}

.nf-footer__socials a {
  padding: 9px 14px;
  border: 1px solid var(--nf-border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.82rem;
  font-weight: 700;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}

.nf-footer__socials a:hover {
  background: rgba(163, 255, 18, 0.14);
  border-color: rgba(163, 255, 18, 0.32);
}

.nf-footer__cta {
  display: grid;
  justify-items: end;
  gap: 12px;
}

.nf-footer__cta > span {
  color: #fff;
  font-weight: 800;
  letter-spacing: -0.02em !important;
}

.nf-footer__bottom {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0 32px;
  border-top: 1px solid var(--nf-border-soft);
  color: rgba(245, 243, 255, 0.48);
  font-size: 0.86rem;
}

.nf-footer__bottom p {
  margin: 0;
}

.nf-footer__bottom div {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
}

/* ============ FLOATING SOCIAL BUTTONS ============ */
.nf-floating-social {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  pointer-events: none; /* let only the buttons receive clicks */
}

.nf-floating-social__btn {
  pointer-events: auto;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  height: 52px;
  padding: 0 8px 0 20px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(8, 7, 12, 0.82);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  color: #fff;
  text-decoration: none;
  box-shadow:
    0 14px 30px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  white-space: nowrap;
  transition:
    transform .3s cubic-bezier(.2,.7,0,1),
    border-color .25s ease,
    background .25s ease,
    box-shadow .35s ease;
}

.nf-floating-social__label {
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: -0.005em !important;
  line-height: 1;
}

.nf-floating-social__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  flex: 0 0 36px;
  transition: background .25s ease, transform .35s cubic-bezier(.2,.7,0,1);
}

.nf-floating-social__btn:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow:
    0 22px 44px rgba(0, 0, 0, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.nf-floating-social__btn:hover .nf-floating-social__icon {
  transform: rotate(-8deg) scale(1.06);
}

.nf-floating-social__btn svg {
  width: 20px;
  height: 20px;
}

.nf-floating-social__btn--discord .nf-floating-social__icon {
  background: linear-gradient(140deg, #5865f2, #4752c4);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.nf-floating-social__btn--discord:hover {
  border-color: rgba(88, 101, 242, 0.55);
  box-shadow:
    0 22px 44px -10px rgba(88, 101, 242, 0.65),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.nf-floating-social__btn--telegram .nf-floating-social__icon {
  background: linear-gradient(140deg, #2aabee, #229ed9);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.nf-floating-social__btn--telegram:hover {
  border-color: rgba(42, 171, 238, 0.55);
  box-shadow:
    0 22px 44px -10px rgba(42, 171, 238, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

@media (max-width: 520px) {
  .nf-floating-social {
    right: 14px;
    bottom: 14px;
    gap: 8px;
  }
  .nf-floating-social__btn {
    height: 44px;
    padding: 0 6px 0 14px;
    gap: 10px;
  }
  .nf-floating-social__label {
    font-size: 0.78rem;
  }
  .nf-floating-social__icon {
    width: 32px;
    height: 32px;
    flex: 0 0 32px;
  }
  .nf-floating-social__btn svg {
    width: 18px;
    height: 18px;
  }
}

/* ============ REVEAL ANIMATIONS ============ */
/* Only hide reveal targets once JS confirms it can re-show them */
html.nf-reveal-ready [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s cubic-bezier(.2,.7,0,1), transform .8s cubic-bezier(.2,.7,0,1);
}

html.nf-reveal-ready [data-reveal].is-in {
  opacity: 1;
  transform: none;
}

[data-reveal][data-reveal-delay="1"] { transition-delay: .08s; }
[data-reveal][data-reveal-delay="2"] { transition-delay: .16s; }
[data-reveal][data-reveal-delay="3"] { transition-delay: .24s; }
[data-reveal][data-reveal-delay="4"] { transition-delay: .32s; }
[data-reveal][data-reveal-delay="5"] { transition-delay: .4s; }

/* ============ RESPONSIVE ============ */
@media (min-width: 1280px) {
  .nf-hero__title {
    font-size: 4rem;
  }
}

@media (max-width: 1100px) {
  .nf-hero__inner,
  .nf-price-panel,
  .nf-featured-card {
    grid-template-columns: 1fr;
  }

  .nf-hero__copy {
    max-width: 820px;
  }

  .nf-hero__showcase {
    max-width: 720px;
    width: 100%;
    margin: 0 auto;
    min-height: 460px;
  }

  .nf-stat-grid,
  .nf-products__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nf-bento__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-rows: 180px;
  }

  .nf-bento-card,
  .nf-bento-card--wide {
    grid-column: span 2;
    grid-row: span 2;
  }

  .nf-bento-card--full {
    grid-column: span 4;
    grid-row: span 2;
  }

  .nf-bento-card--tall {
    grid-row: span 2;
  }
}

@media (max-width: 900px) {
  .nf-nav__links {
    position: fixed;
    left: 16px;
    right: 16px;
    top: 88px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 18px;
    border: 1px solid var(--nf-border);
    border-radius: var(--nf-radius);
    background: rgba(8, 7, 12, 0.94);
    backdrop-filter: blur(28px);
    box-shadow: var(--nf-shadow-md);
  }

  .nf-nav__links--open {
    display: flex;
  }

  .nf-nav__links a,
  .nf-nav__links button {
    width: 100%;
    text-align: left;
    padding: 14px 16px;
  }

  .nf-nav__mobile-actions {
    display: flex;
    gap: 8px;
    padding-top: 8px;
  }

  .nf-lang {
    display: none;
  }

  .nf-menu {
    display: flex;
  }
}

@media (max-width: 760px) {
  .nf-section {
    padding: 64px 0;
  }

  .nf-section-head {
    margin-bottom: 36px;
  }

  .nf-section-head h2 {
    font-size: 1.95rem;
  }

  .nf-hero {
    padding: 64px 0 48px;
  }

  .nf-hero__title {
    font-size: 3.1rem;
  }

  .nf-hero__showcase {
    min-height: 460px;
  }

  .nf-hero__rings span:nth-child(1) { width: 280px; height: 280px; }
  .nf-hero__rings span:nth-child(2) { width: 380px; height: 380px; }
  .nf-hero__rings span:nth-child(3) { width: 480px; height: 480px; }

  .nf-floating-badge {
    right: 0;
    bottom: 0;
  }

  .nf-products__grid {
    grid-template-columns: 1fr;
  }

  /* Stats: 2 compact tiles per row on mobile instead of giant full-width cards */
  .nf-stat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  .nf-stats .nf-stat-card {
    min-height: 0;
    padding: 16px 14px;
    border-radius: 16px;
  }
  .nf-stat-card__iconwrap { margin-bottom: 10px; }
  .nf-stats .nf-stat-card__icon { width: 40px; height: 40px; }
  .nf-stat-card__icon svg,
  .nf-stat-card__icon i { width: 18px; height: 18px; font-size: 18px; }
  .nf-stat-card__halo { width: 70px; height: 70px; }
  .nf-stat-card__ring { width: 54px; height: 54px; }
  .nf-stat-card h3 { font-size: 1.15rem; margin-bottom: 5px; }
  .nf-stat-card p { font-size: 0.76rem; line-height: 1.4; }

  .nf-bento__grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .nf-bento-card,
  .nf-bento-card--wide,
  .nf-bento-card--tall,
  .nf-bento-card--full {
    grid-column: auto;
    grid-row: auto;
    min-height: 240px;
  }

  .nf-bento-card--payments .nf-bento-card__inner {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
    padding: 28px 20px 26px;
  }

  /* Orbit must sit fully INSIDE its box: the card has overflow:hidden, so any
     chip whose radius (orbit-r) + half-chip (24px) exceeds the box half gets
     clipped — that was cutting off the bottom ring on phones. Box half = 130px,
     so keep outer chips at <=104+24=128px. */
  .nf-orbit {
    justify-self: center;
    width: 260px;
    height: 260px;
    margin: 4px 0 0;
  }

  .nf-orbit__ring--inner .nf-orbit__slot { --orbit-r: 62px; }
  .nf-orbit__ring--outer .nf-orbit__slot { --orbit-r: 104px; }

  .nf-price-panel {
    padding: 26px;
  }

  .nf-price-panel__copy h3 {
    font-size: 2.1rem;
  }

  .nf-featured-card__media {
    min-height: 280px;
  }

  .nf-featured-card__content {
    padding: 32px;
  }

  .nf-featured-card__perks {
    grid-template-columns: 1fr;
  }

  .nf-products__slider .splide__slide {
    width: 78vw;
  }

  .nf-footer__inner,
  .nf-footer__bottom {
    grid-template-columns: 1fr;
    display: grid;
    justify-items: start;
  }

  .nf-footer__cta {
    justify-items: start;
  }

  .nf-footer__bottom div {
    justify-content: flex-start;
  }
}

@media (max-width: 520px) {
  .nf-shell {
    width: min(100% - 24px, var(--nf-shell));
  }

  .nf-nav-wrap {
    padding-inline: 10px;
  }

  .nf-nav {
    min-height: 56px;
    padding: 6px 6px 6px 16px;
  }

  .nf-nav__brand img {
    max-width: 118px;
  }

  .nf-cart,
  .nf-menu {
    width: 40px;
    height: 40px;
  }

  .nf-hero__title {
    font-size: 2.55rem;
  }

  .nf-hero__subtitle,
  .nf-section-head p {
    font-size: 0.96rem;
  }

  .nf-hero__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .nf-button {
    width: 100%;
    white-space: normal;
    text-align: center;
    min-height: 48px;
  }

  .nf-floating-badge {
    padding: 8px 14px 8px 8px;
  }

  .nf-floating-badge span {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .nf-theme *,
  .nf-theme *::before,
  .nf-theme *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html.nf-reveal-ready [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

/* Production polish */
:root {
  --nf-bg: #09090b;
  --nf-bg-2: #100c1a;
  --nf-bg-3: #15101f;
  --nf-panel: rgba(18, 13, 26, 0.74);
  --nf-panel-strong: rgba(22, 16, 32, 0.92);
  --nf-border: rgba(255, 255, 255, 0.1);
  --nf-border-soft: rgba(255, 255, 255, 0.06);
  --nf-border-strong: rgba(255, 255, 255, 0.18);
  --nf-text: #f6f4fb;
  --nf-muted: rgba(233, 230, 245, 0.64);
  --nf-faint: rgba(233, 230, 245, 0.42);
  --nf-pink: #84e000;
  --nf-pink-soft: #d4ff8f;
  --nf-violet: #4e9e00;
  --nf-violet-deep: #2f7a00;
  --nf-cyan: #a3ff12;
  --nf-green: #34d399;
  --nf-amber: #fbbf24;
  --nf-purple: #a3ff12;
  --nf-purple-soft: #7cd600;
  --nf-grad: linear-gradient(135deg, #a3ff12 0%, #7cd600 46%, #84e000 100%);
  --nf-grad-soft: linear-gradient(135deg, rgba(163, 255, 18, 0.14), rgba(124, 214, 0, 0.12), rgba(132, 224, 0, 0.10));
  --nf-radius-sm: 10px;
  --nf-radius: 14px;
  --nf-radius-lg: 18px;
  --nf-radius-xl: 22px;
  --nf-shell: 1220px;
}

body.nf-theme,
body.nf-theme * {
  letter-spacing: 0 !important;
}

body.nf-theme {
  background:
    linear-gradient(180deg, rgba(9, 9, 11, 0.96), rgba(9, 9, 11, 1)),
    #09090b;
}

.nf-global-bg {
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(180deg, #0c0a12 0%, #09090b 55%, #0d0b13 100%);
  background-size: 72px 72px, 72px 72px, auto;
}

.nf-global-bg::before,
.nf-global-bg::after,
.nf-hero__orb,
.nf-hero__rings {
  display: none !important;
}

.nf-section {
  padding: 76px 0;
}

.nf-section-head {
  gap: 14px;
  margin-bottom: 34px;
}

.nf-section-head h2 {
  max-width: 780px;
  font-size: clamp(2rem, 3vw, 3.15rem);
  line-height: 1.08;
}

.nf-section-head p {
  max-width: 650px;
  font-size: 1rem;
}

.nf-pill,
.nf-eyebrow {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  border-color: rgba(255, 255, 255, 0.12);
  color: rgba(247, 248, 251, 0.84);
  letter-spacing: 0 !important;
  text-transform: none;
}

.nf-pill__dot,
.nf-eyebrow::before,
.nf-feed__dot {
  background: var(--nf-cyan);
  box-shadow: 0 0 18px rgba(163, 255, 18, 0.58);
}

.nf-kicker {
  color: var(--nf-cyan);
  letter-spacing: 0 !important;
  text-transform: none;
}

.nf-button {
  min-height: 46px;
  border-radius: 999px;
  box-shadow: none;
}

.nf-button--primary {
  color: #ffffff;
  background: linear-gradient(135deg, #7cd600, #a3ff12);
  border-color: transparent;
  box-shadow: 0 18px 42px -24px rgba(163, 255, 18, 0.75);
}

.nf-button--secondary,
.nf-button--ghost {
  background: rgba(255, 255, 255, 0.055);
  border-color: rgba(255, 255, 255, 0.12);
}

.nf-button:hover {
  transform: translateY(-1px);
}

.nf-nav {
  background: rgba(9, 9, 11, 0.78);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.nf-nav-wrap.is-scrolled .nf-nav {
  border-radius: 999px;
  background: rgba(11, 9, 17, 0.86);
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.34);
}

.nf-cart {
  background: rgba(163, 255, 18, 0.06);
  color: var(--nf-pink-soft);
}

.nf-hero {
  min-height: calc(100vh - 110px);
  display: flex;
  align-items: center;
  padding: 82px 0 34px;
}

.nf-hero__bg::before {
  opacity: 0.8;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(180deg, #000 0%, rgba(0,0,0,.72) 56%, transparent 100%);
}

.nf-hero__inner {
  grid-template-columns: minmax(0, 0.96fr) minmax(440px, 0.86fr);
  gap: 58px;
}

.nf-hero__copy {
  gap: 22px;
}

.nf-hero__title {
  font-family: 'Space Grotesk', Rubik, system-ui, sans-serif;
  font-size: clamp(3rem, 5.2vw, 5.9rem);
  font-weight: 800;
  line-height: 0.98;
}

.nf-hero__title .nf-hero__rotator {
  width: fit-content;
  padding-bottom: 4px;
  background: var(--nf-grad);
  background-size: 160% auto;
}

.nf-hero__subtitle {
  max-width: 620px;
  color: rgba(231, 236, 244, 0.74);
  font-size: 1.04rem;
}

.nf-hero__trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  border: 0;
  padding: 2px 0 0;
}

.nf-hero__metric {
  min-height: 82px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.nf-hero__metric strong,
.nf-affiliate-metric strong {
  display: block;
  color: #fff;
  font-size: 1.48rem;
  line-height: 1;
}

.nf-hero__metric span,
.nf-affiliate-metric span {
  display: block;
  margin-top: 8px;
  color: var(--nf-muted);
  font-size: 0.82rem;
}

.nf-hero__showcase {
  min-height: 0;
  align-items: stretch;
}

.nf-command-center {
  position: relative;
  width: 100%;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(28, 19, 42, 0.94), rgba(14, 10, 21, 0.96)),
    #100c1a;
  box-shadow: 0 34px 90px -46px rgba(0, 0, 0, 0.9);
}

.nf-command-center::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(163, 255, 18, 0.14), transparent 28%),
    linear-gradient(180deg, rgba(255,255,255,0.08), transparent 35%);
}

.nf-command-center > * {
  position: relative;
  z-index: 1;
}

.nf-command-center__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 12px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nf-command-center__top span {
  display: block;
  color: var(--nf-muted);
  font-size: 0.78rem;
}

.nf-command-center__top strong {
  display: block;
  margin-top: 4px;
  color: #fff;
  font-size: 1.05rem;
}

.nf-status-pill {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  color: #6ee7b7 !important;
  background: rgba(52, 211, 153, 0.1);
  border: 1px solid rgba(52, 211, 153, 0.24);
}

.nf-status-pill span:first-child {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--nf-green);
}

.nf-command-center__products {
  display: grid;
  gap: 10px;
  padding: 16px 0;
}

.nf-command-product {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  min-height: 78px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  color: inherit;
  text-decoration: none;
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}

.nf-command-product:hover {
  transform: translateX(3px);
  border-color: rgba(163, 255, 18, 0.34);
  background: rgba(255, 255, 255, 0.07);
}

.nf-command-product__image {
  width: 58px;
  height: 58px;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.nf-command-product__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nf-command-product__copy {
  min-width: 0;
}

.nf-command-product__copy strong {
  display: block;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nf-command-product__copy small,
.nf-command-product__price {
  color: var(--nf-muted);
  font-size: 0.8rem;
}

.nf-command-product__price {
  color: #fff;
  font-weight: 800;
}

.nf-delivery-board {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  padding-top: 2px;
}

.nf-delivery-board > div {
  min-height: 118px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.nf-delivery-board > div > span {
  display: block;
  width: 20px;
  height: 20px;
  margin-bottom: 14px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.22);
}

.nf-delivery-board .is-done > span {
  border-color: rgba(163, 255, 18, 0.7);
  background: radial-gradient(circle at center, #a3ff12 0 34%, transparent 38%);
}

.nf-delivery-board strong {
  display: block;
  color: #fff;
  font-size: 0.9rem;
}

.nf-delivery-board small {
  display: block;
  margin-top: 6px;
  color: var(--nf-muted);
  font-size: 0.76rem;
  line-height: 1.35;
}

.nf-floating-badge {
  right: 18px;
  bottom: -18px;
  border-radius: 8px;
  background: rgba(11, 9, 17, 0.96);
  border-color: rgba(163, 255, 18, 0.24);
  box-shadow: 0 20px 60px rgba(0,0,0,.38);
}

.nf-trust-strip {
  border-block: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255,255,255,.025);
}

.nf-trust-strip__group span {
  color: rgba(231, 236, 244, 0.68);
  letter-spacing: 0 !important;
}

.nf-search-trigger {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  width: min(100%, 560px);
  min-height: 52px;
  padding: 0 16px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  background: rgba(255,255,255,.06);
  color: rgba(247,248,251,.78);
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease;
}

.nf-search-trigger:hover,
.nf-search-trigger:focus-within {
  border-color: rgba(163, 255, 18, 0.34);
  background: rgba(255,255,255,.08);
}

.nf-search-trigger input,
.nf-search-field input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: none;
  background: transparent;
  color: #fff;
}

.nf-search-trigger span {
  color: var(--nf-faint);
  font-size: 0.78rem;
}

.nf-search-modal {
  display: inline-block;
  width: min(100% - 24px, 820px);
  max-height: min(720px, calc(100vh - 72px));
  margin: 32px 0;
  overflow: hidden auto;
  padding: 20px;
  text-align: left;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  background: rgba(13, 10, 19, 0.98);
  color: var(--nf-text);
  box-shadow: 0 30px 100px rgba(0,0,0,.54);
}

.nf-search-field {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  width: 100%;
  min-height: 52px;
  padding: 0 14px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  background: rgba(255,255,255,.06);
}

.nf-search-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  background: rgba(255,255,255,.045);
  color: #fff;
}

.nf-stat-grid,
.nf-products__grid {
  gap: 14px;
}

.nf-stat-card,
.nf-product-card,
.nf-featured-card,
.nf-price-panel,
.nf-bento-card,
.nf-blog-card {
  border-radius: 12px !important;
  background: linear-gradient(180deg, rgba(255,255,255,.065), rgba(255,255,255,.025)) !important;
  border-color: rgba(255,255,255,.1) !important;
  box-shadow: none !important;
}

.nf-product-card {
  overflow: hidden;
}

.nf-product-card__media {
  background: rgba(255,255,255,.04);
}

.nf-product-card__media img {
  object-fit: cover;
}

.nf-product-card__content {
  gap: 18px;
}

.nf-product-card__content h3 {
  font-size: 1.04rem;
  line-height: 1.25;
}

.nf-product-card__content p {
  min-height: 42px;
  color: rgba(231,236,244,.6);
}

.nf-product-card__footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 12px;
  align-items: end;
}

.nf-product-card__footer > span:last-child {
  grid-column: 2;
  color: var(--nf-cyan);
}

.nf-product-card__stock {
  grid-column: 1;
  color: rgba(231,236,244,.48);
  font-size: 0.76rem;
  font-weight: 700;
}

.nf-product-card__footer strong {
  grid-column: 1;
  color: #fff;
}

.nf-featured-card {
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
}

.nf-featured-card__media {
  border-radius: 12px 0 0 12px;
}

.nf-featured-card__content {
  padding: clamp(28px, 4vw, 52px);
}

.nf-featured-card__perks,
.nf-price-panel__chips,
.nf-payment-chips {
  gap: 8px;
}

.nf-featured-card__perks li,
.nf-price-panel__chips span,
.nf-payment-chips span {
  border-radius: 999px;
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.1);
}

.nf-bento__grid {
  grid-auto-rows: 168px;
  gap: 14px;
}

.nf-bento-card__icon {
  border-radius: 8px;
  background: rgba(163, 255, 18,.1);
  color: #e2ffbf;
  border-color: rgba(163, 255, 18,.18);
}

.nf-orbit__center,
.nf-orbit__chip {
  border-radius: 8px;
}

.nf-price-panel {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.55fr);
  color: inherit;
}

.nf-price-row {
  border-radius: 8px;
}

.nf-price-row--hot {
  background: linear-gradient(135deg, rgba(163, 255, 18,.16), rgba(78, 158, 0,.1));
  border-color: rgba(163, 255, 18,.25);
}

.nf-price-panel__button {
  border-radius: 999px;
  background: linear-gradient(135deg, #7cd600, #a3ff12);
  color: #ffffff;
}

.nf-footer {
  background: rgba(9, 9, 11, 0.92);
}

.nf-footer__wordmark {
  opacity: .5;
}

.nf-floating-social__btn {
  border-radius: 999px;
}

.nf-account-page {
  padding: 82px 0 96px;
}

.nf-account-layout {
  display: grid;
  grid-template-columns: minmax(240px, 300px) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.nf-account-sidebar > div,
.nf-theme .bg-white\/\[0\.025\],
.nf-theme .bg-white\/5 {
  border-color: rgba(255,255,255,.1) !important;
  border-radius: 12px !important;
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.025)) !important;
}

.nf-account-main {
  display: grid;
  gap: 16px;
}

.nf-account-hero,
.nf-affiliate-card,
.nf-affiliate-table-card {
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255,255,255,.065), rgba(255,255,255,.025));
}

.nf-account-hero {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  align-items: end;
  padding: clamp(24px, 4vw, 38px);
}

.nf-account-hero h1,
.nf-affiliate-table-card h2 {
  margin: 8px 0 0;
  color: #fff;
  font-weight: 800;
  line-height: 1.06;
}

.nf-account-hero h1 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.nf-account-hero p {
  max-width: 660px;
  margin: 14px 0 0;
  color: rgba(231,236,244,.68);
  line-height: 1.65;
}

.nf-affiliate-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(220px, .55fr) minmax(220px, .55fr);
  gap: 16px;
}

.nf-affiliate-card {
  padding: 20px;
}

.nf-affiliate-card--link {
  display: grid;
  gap: 16px;
}

.nf-affiliate-card__head,
.nf-affiliate-table-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.nf-affiliate-card__head span {
  color: var(--nf-muted);
  font-size: 0.86rem;
}

.nf-affiliate-card__head button,
.nf-table-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid rgba(163, 255, 18,.24);
  border-radius: 999px;
  background: rgba(163, 255, 18,.1);
  color: #e2ffbf;
  font-weight: 800;
  font-size: 0.82rem;
  text-decoration: none;
}

.nf-affiliate-link {
  display: block;
  width: 100%;
  min-height: 58px;
  padding: 16px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  background: rgba(0,0,0,.18);
  color: #fff;
  text-align: left;
  font: inherit;
  font-weight: 750;
  overflow-wrap: anywhere;
  cursor: pointer;
}

.nf-affiliate-card p {
  margin: 0;
  color: rgba(231,236,244,.62);
  line-height: 1.6;
}

.nf-affiliate-table-card {
  padding: 22px;
}

.nf-table-wrap {
  margin-top: 20px;
  overflow: auto;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 8px;
}

.nf-table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  color: rgba(247,248,251,.84);
  font-size: 0.92rem;
}

.nf-table th,
.nf-table td {
  padding: 15px 18px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  text-align: left;
}

.nf-table th {
  color: rgba(231,236,244,.48);
  font-size: 0.76rem;
  text-transform: uppercase;
}

.nf-table tbody tr:hover {
  background: rgba(255,255,255,.035);
}

.nf-empty-state {
  margin-top: 20px;
  padding: 28px;
  border: 1px dashed rgba(255,255,255,.14);
  border-radius: 8px;
  color: var(--nf-muted);
}

.nf-empty-state strong {
  display: block;
  color: #fff;
  font-size: 1.05rem;
}

.nf-empty-state p {
  max-width: 560px;
  margin: 8px 0 0;
}

@media (max-width: 1100px) {
  .nf-hero {
    min-height: 0;
  }

  .nf-hero__inner,
  .nf-featured-card,
  .nf-price-panel,
  .nf-account-layout,
  .nf-affiliate-grid {
    grid-template-columns: 1fr;
  }

  .nf-featured-card__media {
    border-radius: 12px 12px 0 0;
  }
}

@media (max-width: 760px) {
  .nf-section {
    padding: 58px 0;
  }

  .nf-hero {
    padding-top: 54px;
  }

  .nf-hero__title {
    font-size: clamp(2.4rem, 12vw, 3.4rem);
  }

  .nf-hero__trust,
  .nf-delivery-board {
    grid-template-columns: 1fr;
  }

  .nf-command-product {
    grid-template-columns: 52px minmax(0, 1fr);
  }

  .nf-command-product__price {
    grid-column: 2;
    justify-self: start;
  }

  .nf-account-hero {
    align-items: stretch;
    flex-direction: column;
  }

  .nf-affiliate-table-card__head {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* =====================================================================
   PURPLE PREMIUM LAYER — final identity polish (2026 SaaS)
   Loaded last so it wins the cascade over the production block.
   ===================================================================== */

/* Ambient aura: a calm purple→pink wash behind the grid for depth. */
.nf-global-bg {
  background:
    radial-gradient(60% 50% at 50% -8%, rgba(163, 255, 18, 0.20), transparent 70%),
    radial-gradient(45% 40% at 88% 12%, rgba(132, 224, 0, 0.12), transparent 72%),
    radial-gradient(50% 45% at 8% 32%, rgba(163, 255, 18, 0.12), transparent 75%),
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.024) 1px, transparent 1px),
    linear-gradient(180deg, #0b0a12 0%, #09090b 55%, #0a0810 100%) !important;
  background-size:
    auto, auto, auto, 72px 72px, 72px 72px, auto !important;
}

::selection { background: rgba(163, 255, 18, 0.36); color: #fff; }

/* Refined scrollbar */
.nf-theme ::-webkit-scrollbar { width: 11px; height: 11px; }
.nf-theme ::-webkit-scrollbar-track { background: #0c0a12; }
.nf-theme ::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #a3ff12, #2f7a00);
  border: 3px solid #0c0a12;
  border-radius: 999px;
}
.nf-theme ::-webkit-scrollbar-thumb:hover { background: linear-gradient(180deg, #6fcf00, #a3ff12); }

/* Eyebrow / pill dot → branded purple glow */
.nf-pill__dot,
.nf-eyebrow::before,
.nf-feed__dot {
  background: var(--nf-grad) !important;
  box-shadow: 0 0 16px rgba(163, 255, 18, 0.7) !important;
}
.nf-kicker { color: var(--nf-purple-soft); }
.nf-trust-strip__group span::before { background: var(--nf-purple-soft); opacity: 0.7; }

/* Primary button — vivid gradient, layered glow, soft top sheen */
.nf-button--primary {
  color: #fff !important;
  background: var(--nf-grad) !important;
  background-size: 160% 160% !important;
  border-color: transparent !important;
  box-shadow:
    0 14px 36px -12px rgba(163, 255, 18, 0.75),
    0 2px 8px -2px rgba(132, 224, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.28) !important;
  transition: transform .35s cubic-bezier(.2,.7,0,1), box-shadow .35s ease, background-position .6s ease;
}
.nf-button--primary:hover {
  background-position: 100% 0 !important;
  box-shadow:
    0 20px 50px -12px rgba(163, 255, 18, 0.9),
    0 4px 14px -2px rgba(132, 224, 0, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.32) !important;
}
.nf-cart {
  background: rgba(163, 255, 18, 0.06);
  color: var(--nf-pink-soft);
  border-color: rgba(163, 255, 18, 0.38);
  box-shadow: none;
}
.nf-cart__count { background: var(--nf-grad); color: #0e2400; }
.nf-price-panel__button { background: var(--nf-grad) !important; color: #fff !important; }

/* Navbar — transparent at top, glass pill on scroll */
.nf-nav {
  background: transparent !important;
  background-image: none !important;
  border-bottom: 1px solid transparent;
}
.nf-nav-wrap.is-scrolled .nf-nav {
  background: rgba(13, 11, 20, 0.82) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  backdrop-filter: blur(24px) saturate(160%) !important;
  -webkit-backdrop-filter: blur(24px) saturate(160%) !important;
  box-shadow:
    0 20px 54px -20px rgba(0, 0, 0, 0.7),
    0 0 0 1px rgba(163, 255, 18, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.06) !important;
}
.nf-nav__links a:hover::before,
.nf-nav__links button:hover::before,
.nf-nav__links .is-active::before {
  background: rgba(163, 255, 18, 0.16);
}
.nf-nav__links .is-active { color: #fff; }

/* Nav auth buttons (Login ghost / Register primary) */
.nf-nav__auth { display: inline-flex; align-items: center; gap: 8px; }
.nf-nav-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
  border: 1px solid transparent;
  text-decoration: none;
  transition: transform .25s cubic-bezier(.2,.7,0,1), background .25s ease, border-color .25s ease, box-shadow .3s ease;
}
.nf-nav-btn--ghost {
  color: rgba(246, 244, 251, 0.82);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.12);
}
.nf-nav-btn--ghost:hover { color: #fff; background: rgba(255, 255, 255, 0.09); border-color: rgba(255, 255, 255, 0.2); transform: translateY(-1px); }
.nf-nav-btn--primary {
  color: #fff;
  background: var(--nf-grad);
  background-size: 160% 160%;
  box-shadow: 0 10px 26px -10px rgba(163, 255, 18, 0.8), inset 0 1px 0 rgba(255, 255, 255, 0.28);
}
.nf-nav-btn--primary:hover { transform: translateY(-1px); background-position: 100% 0; box-shadow: 0 16px 34px -10px rgba(163, 255, 18, 0.95), inset 0 1px 0 rgba(255, 255, 255, 0.32); }
.nf-nav-btn svg { width: 16px; height: 16px; }

/* Premium card cluster — restore soft depth + purple-tinted glass edge */
.nf-stat-card,
.nf-product-card,
.nf-featured-card,
.nf-price-panel,
.nf-bento-card,
.nf-blog-card,
.nf-command-center {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.022)),
    rgba(17, 14, 26, 0.55) !important;
  border-color: rgba(255, 255, 255, 0.09) !important;
  box-shadow:
    0 1px 0 0 rgba(255, 255, 255, 0.05) inset,
    0 18px 44px -28px rgba(0, 0, 0, 0.9) !important;
}
.nf-stat-card:hover,
.nf-product-card:hover,
.nf-bento-card:hover,
.nf-blog-card:hover {
  border-color: rgba(163, 255, 18, 0.42) !important;
  box-shadow:
    0 1px 0 0 rgba(255, 255, 255, 0.08) inset,
    0 26px 60px -22px rgba(163, 255, 18, 0.5) !important;
}
.nf-featured-card:hover,
.nf-price-panel:hover {
  border-color: rgba(163, 255, 18, 0.35) !important;
  box-shadow: 0 30px 80px -32px rgba(163, 255, 18, 0.55) !important;
}

/* Spotlight glows on cards → brand purple */
.nf-stat-card::before,
.nf-product-card::before,
.nf-bento-card::after,
.nf-featured-card::after {
  background: radial-gradient(380px circle at var(--mx, 50%) var(--my, 50%), rgba(163, 255, 18, 0.22), transparent 50%) !important;
}

/* Product card CTA + price pop */
.nf-product-card__footer > span:last-child { color: var(--nf-purple-soft); }
.nf-product-card:hover .nf-product-card__footer span {
  background: var(--nf-grad);
  border-color: transparent;
  color: #fff;
}

/* Command center: faint purple aurora at the top edge */
.nf-command-center::before {
  background:
    linear-gradient(90deg, rgba(163, 255, 18, 0.18), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 36%) !important;
}
.nf-command-product:hover { border-color: rgba(163, 255, 18, 0.4) !important; }

/* Gradient-text headings get a touch more saturation depth */
.nf-section-head h2 strong,
.nf-section-head h2 .nf-grad-text,
.nf-hero__title .nf-hero__rotator {
  background: var(--nf-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* FAQ accordion (Tailwind markup) — branded purple hover */
.nf-theme .max-w-7xl .bg-\[\#0d0d0d\]:hover {
  border-color: rgba(163, 255, 18, 0.4) !important;
  box-shadow: 0 18px 40px -24px rgba(163, 255, 18, 0.5) !important;
}

/* Footer wordmark — bold brand watermark behind the columns */
.nf-footer__wordmark {
  background-image: linear-gradient(180deg, rgba(132, 224, 0, 0.13) 0%, rgba(47, 122, 0, 0.07) 100%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  opacity: 1;
}
.nf-footer__socials a:hover { background: rgba(163, 255, 18, 0.16); border-color: rgba(163, 255, 18, 0.35); }

/* Nav auth responsive: desktop pair vs in-menu stack on mobile */
.nf-nav__mobile-lang { display: none; }
@media (min-width: 901px) {
  .nf-nav__auth { display: inline-flex; }
}
@media (max-width: 900px) {
  .nf-nav__auth { display: none; }
  .nf-nav__mobile-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    margin-top: 6px;
    padding-top: 14px;
    border-top: 1px solid var(--nf-border-soft);
  }
  .nf-nav__mobile-actions .nf-nav-btn {
    width: 100%;
    height: 46px;
    justify-content: center;
  }
  .nf-nav__mobile-lang {
    display: flex;
    gap: 8px;
    margin-top: 2px;
  }
  .nf-nav__mobile-lang .nf-lang {
    flex: 1;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}

/* =====================================================================
   MODERN STORE PASS v1 — product tiles that read like a real storefront
   Appended last so it wins the cascade over the production + premium blocks.
   ===================================================================== */

/* Buy area: price-forward header + full-width CTA button (à la reference) */
.nf-product-card__buy {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 2px;
  padding-top: 16px;
  border-top: 1px solid var(--nf-border-soft);
}

.nf-product-card__priceblock {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  min-width: 0;
}

.nf-product-card__avail {
  flex: 0 0 auto;
  color: rgba(231, 236, 244, 0.5);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em !important;
}

.nf-product-card__price {
  min-width: 0;
  margin: 0;
  background: var(--nf-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: clamp(1.2rem, 1.02rem + 0.6vw, 1.5rem);
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nf-product-card__action {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 46px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid var(--nf-border);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 800;
  transition: background .3s ease, border-color .3s ease, box-shadow .35s ease;
}

.nf-product-card__action svg {
  width: 17px;
  height: 17px;
  transition: transform .3s cubic-bezier(.2, .7, 0, 1);
}

.nf-product-card:hover .nf-product-card__action {
  background: var(--nf-grad);
  border-color: transparent;
  box-shadow:
    0 14px 30px -12px rgba(163, 255, 18, 0.8),
    inset 0 1px 0 rgba(255, 255, 255, 0.26);
}

.nf-product-card:hover .nf-product-card__action svg {
  transform: translateX(4px);
}

/* slightly taller card to host the richer buy area cleanly */
.nf-product-card {
  min-height: 452px;
}

/* Stats: bolder, more confident headline numbers (premium store energy) */
.nf-stat-card h3 {
  font-size: clamp(1.55rem, 1.3rem + 0.8vw, 1.95rem);
  letter-spacing: -0.03em !important;
}
.nf-stat-card__icon {
  color: var(--nf-purple-soft);
  background: rgba(163, 255, 18, 0.1);
  border-color: rgba(163, 255, 18, 0.2);
}

/* Hero panel: real "best sellers" CTA replacing the fake delivery-board mock */
.nf-command-center__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 48px;
  margin-top: 14px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
  transition: background .3s ease, border-color .3s ease, box-shadow .35s ease;
}
.nf-command-center__cta svg {
  width: 17px;
  height: 17px;
  transition: transform .3s cubic-bezier(.2, .7, 0, 1);
}
.nf-command-center__cta:hover {
  background: var(--nf-grad);
  border-color: transparent;
  box-shadow:
    0 14px 30px -12px rgba(163, 255, 18, 0.8),
    inset 0 1px 0 rgba(255, 255, 255, 0.26);
}
.nf-command-center__cta:hover svg {
  transform: translateX(4px);
}

/* =====================================================================
   MARKETPLACE LOOK — centered vivid hero + neon product boxes (2026)
   ===================================================================== */

/* ---- Hero: centered, punchy, brand-badge ---- */
.nf-hero--center { text-align: center; }

.nf-hero--center .nf-hero__inner {
  display: block !important;
  max-width: 940px;
  margin-inline: auto;
}

.nf-hero--center .nf-hero__copy {
  align-items: center !important;
  text-align: center;
  gap: 28px !important;
  max-width: 720px;
  margin-inline: auto; /* center the copy box inside the hero inner */
}

.nf-hero--center .nf-pill { margin-inline: auto; }

.nf-hero--center .nf-hero__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  font-size: clamp(2.7rem, 6vw, 5.3rem) !important;
  line-height: 1.0;
  letter-spacing: -0.03em !important;
}

.nf-hero--center .nf-hero__title-static { color: #fff; }

/* Rotating platform name → solid vivid brand badge (not clip-text) */
.nf-hero--center .nf-hero__rotator {
  width: auto !important;
  display: inline-block;
  padding: 0.06em 0.4em 0.12em;
  border-radius: 20px;
  background: var(--nf-grad) !important;
  background-size: 180% 180% !important;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  box-shadow:
    0 26px 64px -20px rgba(163, 255, 18, 0.95),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  animation: nf-badge-shift 6s ease-in-out infinite;
}

@keyframes nf-badge-shift {
  0%, 100% { background-position: 0 0; }
  50%      { background-position: 100% 0; }
}

.nf-hero--center .nf-hero__subtitle {
  margin-inline: auto;
  max-width: 660px;
  text-align: center;
  font-size: 1.1rem;
}

.nf-hero--center .nf-hero__actions { justify-content: center; }

/* Hero rating line (left column, understated social proof) */
.nf-hero__rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 2px;
}

.nf-hero__rating small {
  color: var(--nf-muted);
  font-size: 0.84rem;
}

/* ── Hero price comparison (right column) ── */
.nf-compare {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 470px;
  padding: 22px;
  border: 1px solid var(--nf-border);
  border-radius: var(--nf-radius-lg);
  background: linear-gradient(180deg, rgba(22, 18, 32, 0.80), rgba(13, 11, 20, 0.88));
  backdrop-filter: blur(18px);
  box-shadow: var(--nf-shadow-md);
}

.nf-compare__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.nf-compare__head-us {
  display: inline-flex;
  align-items: center;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.04em !important;
  color: #fff;
  padding: 4px 11px;
  border-radius: 999px;
  background: var(--nf-grad);
  box-shadow: 0 6px 18px -6px rgba(163, 255, 18, 0.7);
}

.nf-compare__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.nf-compare__row {
  display: grid;
  grid-template-columns: 34px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 11px 12px;
  border-radius: 12px;
  border: 1px solid var(--nf-border-soft);
  background: rgba(255, 255, 255, 0.02);
  transition: border-color .3s ease, background .3s ease;
}

.nf-compare__row:hover {
  border-color: rgba(163, 255, 18, 0.3);
  background: rgba(255, 255, 255, 0.04);
}

.nf-compare__brand {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--nf-border);
}

.nf-compare__brand img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  display: block;
}

.nf-compare__name {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nf-compare__prices {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.nf-compare__old {
  color: var(--nf-muted);
  font-size: 0.82rem;
  text-decoration: line-through;
  text-decoration-color: rgba(255, 255, 255, 0.35);
}

.nf-compare__new {
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
}

.nf-compare__save {
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--nf-green);
  background: rgba(52, 245, 179, 0.12);
  border: 1px solid rgba(52, 245, 179, 0.28);
  padding: 3px 7px;
  border-radius: 999px;
}

.nf-compare__foot {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--nf-border-soft);
  color: var(--nf-muted);
  font-size: 0.86rem;
}

.nf-compare__foot strong {
  color: var(--nf-pink);
  font-size: 1.45rem;
  font-weight: 800;
  line-height: 1;
}

/* Hero ambient color glow */
.nf-hero__glow {
  position: absolute;
  left: 50%;
  top: 38%;
  width: 78vw;
  height: 62vh;
  transform: translate(-50%, -50%);
  pointer-events: none;
  background:
    radial-gradient(50% 50% at 50% 50%, rgba(163, 255, 18, 0.40), transparent 70%),
    radial-gradient(42% 42% at 68% 42%, rgba(132, 224, 0, 0.26), transparent 72%),
    radial-gradient(40% 40% at 30% 58%, rgba(124, 214, 0, 0.22), transparent 74%);
  filter: blur(10px);
}

/* ---- Product cards: glowing neon "box" ---- */
.nf-product-card {
  border-color: rgba(163, 255, 18, 0.22) !important;
}

.nf-product-card__media {
  aspect-ratio: 1 / 1;
  margin: 10px 10px 0;
  padding: 18px;
  border-radius: 14px !important;
  overflow: visible;
  background:
    radial-gradient(82% 72% at 50% 24%, rgba(163, 255, 18, 0.42), transparent 66%),
    radial-gradient(72% 64% at 50% 108%, rgba(132, 224, 0, 0.30), transparent 74%),
    #0b0a12 !important;
}

.nf-product-card__media img {
  object-fit: scale-down !important;
  transform: none;
  filter:
    drop-shadow(0 16px 26px rgba(0, 0, 0, 0.55))
    drop-shadow(0 10px 34px rgba(163, 255, 18, 0.55));
  transition: transform .55s cubic-bezier(.2, .7, 0, 1), filter .4s ease;
}

.nf-product-card:hover .nf-product-card__media img {
  transform: scale(1.07) translateY(-3px);
}

.nf-product-card:hover {
  border-color: rgba(124, 214, 0, 0.6) !important;
  box-shadow:
    inset 0 0 0 1px rgba(124, 214, 0, 0.28),
    0 30px 72px -24px rgba(163, 255, 18, 0.75) !important;
}

/* =====================================================================
   ELEVATION LAYER v1 — premium neon / glass polish (rosa-magenta)
   Appended last so it wins the cascade. Purely additive, low-risk.
   ===================================================================== */

/* ---------- 1) Neon scroll-progress bar (scroll-driven, no JS) ---------- */
.nf-scroll-progress {
  position: fixed;
  inset: 0 0 auto 0;
  height: 3px;
  z-index: 80;
  transform: scaleX(0);
  transform-origin: 0 50%;
  background: linear-gradient(90deg, #a3ff12 0%, #7cd600 40%, #c6ff63 65%, #8ad400 100%);
  box-shadow: 0 0 18px rgba(163, 255, 18, 0.85), 0 1px 6px rgba(163, 255, 18, 0.55);
  pointer-events: none;
  will-change: transform;
}
@media (prefers-reduced-motion: no-preference) {
  .nf-scroll-progress {
    animation: nf-progress-grow linear both;
    animation-timeline: scroll(root block);
  }
}
@keyframes nf-progress-grow { from { transform: scaleX(0); } to { transform: scaleX(1); } }

/* ---------- 2) Cursor-follow ambient glow (desktop only) ---------- */
.nf-cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  z-index: -1;
  pointer-events: none;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(163, 255, 18, 0.10), rgba(138, 212, 0, 0.05) 40%, transparent 64%);
  opacity: 0;
  transition: opacity .6s ease;
  will-change: transform;
}
@media (hover: hover) and (pointer: fine) {
  .nf-cursor-glow.is-live { opacity: 1; }
}

/* ---------- 3) Deeper background: pink vignette + drifting tint ---------- */
.nf-global-bg {
  box-shadow:
    inset 0 -160px 240px -40px rgba(0, 0, 0, 0.55),
    inset 0 0 280px 70px rgba(0, 0, 0, 0.3);
}
body.nf-theme::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(46% 36% at 82% 8%, rgba(163, 255, 18, 0.12), transparent 70%),
    radial-gradient(40% 34% at 12% 88%, rgba(138, 212, 0, 0.10), transparent 72%);
  animation: nf-bg-drift 30s ease-in-out infinite alternate;
}
@keyframes nf-bg-drift {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to   { transform: translate3d(-2%, 1.5%, 0) scale(1.08); }
}

/* ---------- 4) Primary button sheen sweep on hover ---------- */
.nf-button--primary::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 32%, rgba(255, 255, 255, 0.38) 48%, transparent 64%);
  background-size: 240% 100%;
  background-position: 200% 0;
  mix-blend-mode: overlay;
}
.nf-button--primary:hover::after { animation: nf-btn-sheen .85s cubic-bezier(.2,.7,0,1); }
@keyframes nf-btn-sheen { from { background-position: 200% 0; } to { background-position: -80% 0; } }

/* ---------- 5) Neon custom scrollbar ---------- */
html { scrollbar-color: #8ad400 var(--nf-bg-2); scrollbar-width: thin; }
.nf-theme ::-webkit-scrollbar { width: 11px; height: 11px; }
.nf-theme ::-webkit-scrollbar-track { background: var(--nf-bg-2); }
.nf-theme ::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #a3ff12, #8ad400);
  border-radius: 999px;
  border: 3px solid var(--nf-bg-2);
}
.nf-theme ::-webkit-scrollbar-thumb:hover { background: linear-gradient(180deg, #c6ff63, #a3ff12); }

/* ---------- 6) Accessible neon focus ring ---------- */
.nf-theme a:focus-visible,
.nf-theme button:focus-visible,
.nf-theme summary:focus-visible,
.nf-theme input:focus-visible,
.nf-theme select:focus-visible,
.nf-theme textarea:focus-visible,
.nf-theme .nf-button:focus-visible {
  outline: 2px solid rgba(163, 255, 18, 0.9);
  outline-offset: 3px;
  border-radius: 10px;
}

/* ---------- 7) Animated shimmer on gradient headings ---------- */
.nf-section-head h2 strong,
.nf-section-head h2 .nf-grad-text {
  background-size: 220% auto;
  animation: nf-shimmer-text 9s linear infinite;
}

/* ---------- 8) Floating social: graceful entrance + soft idle glow ---------- */
@media (prefers-reduced-motion: no-preference) {
  .nf-floating-social__btn--discord  { animation: nf-fab-in .6s .12s both; }
  .nf-floating-social__btn--telegram { animation: nf-fab-in .6s .22s both; }
}
@keyframes nf-fab-in {
  from { opacity: 0; transform: translateY(18px) scale(.9); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* =====================================================================
   FIX PASS v2 — calmer (non-"AI") background + right-sized, centered products
   Appended last so it wins the cascade.
   ===================================================================== */

/* ---------- BACKGROUND: drop the floating "AI" gradient blobs ---------- */
.nf-global-bg::before,
.nf-global-bg::after { display: none !important; }

.nf-global-bg {
  background:
    radial-gradient(92% 52% at 50% -6%, rgba(163, 255, 18, 0.10), transparent 62%),
    linear-gradient(180deg, #0b0711 0%, #08060c 45%, #050308 100%) !important;
  box-shadow: inset 0 -220px 260px -70px rgba(0, 0, 0, 0.72) !important;
}

/* Intentional, subtle grid texture (masked to the top) instead of blobs */
body.nf-theme::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-color: transparent;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px) !important;
  background-size: 56px 56px !important;
  background-position: 50% 0 !important;
  -webkit-mask-image: radial-gradient(ellipse 78% 58% at 50% 0%, #000, transparent 80%);
  mask-image: radial-gradient(ellipse 78% 58% at 50% 0%, #000, transparent 80%);
  animation: none !important;
  transform: none !important;
}

/* Hero: remove floating orbs + its own grid, tame the central glow */
.nf-hero__orb--pink,
.nf-hero__orb--violet,
.nf-hero__bg::before { display: none !important; }

.nf-hero__glow {
  width: 58vw !important;
  height: 42vh !important;
  top: 32% !important;
  opacity: 0.5 !important;
  filter: blur(26px) !important;
  background: radial-gradient(50% 50% at 50% 50%, rgba(163, 255, 18, 0.24), transparent 72%) !important;
}

/* ---------- PRODUCTS: real CSS grid, aligned to the shell (never cut) ----------
   Uses 1fr columns so it ALWAYS fits the container at any width/zoom and lines
   up edge-to-edge with the other sections (stats, bento). No flex overflow. */
.nf-products__grid {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 18px !important;
  justify-content: stretch !important;
  max-width: none !important;
  margin-inline: 0 !important;
  perspective: 1200px;
}

.nf-products__grid > * {
  min-width: 0;
  display: flex;
}

.nf-products__grid > * > .nf-product-card,
.nf-products__grid .nf-product-card {
  width: 100%;
}

@media (max-width: 1080px) {
  .nf-products__grid { grid-template-columns: repeat(3, minmax(0, 1fr)) !important; }
}
@media (max-width: 760px) {
  .nf-products__grid { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
}
@media (max-width: 520px) {
  .nf-products__grid {
    grid-template-columns: minmax(0, 1fr) !important;
  }
}

/* Compact tiles — no giant square media */
.nf-product-card {
  min-height: 0 !important;
}

.nf-product-card__media {
  aspect-ratio: auto !important;
  height: 144px !important;
  margin: 8px 8px 0 !important;
  padding: 14px !important;
}

.nf-product-card__content {
  padding: 16px !important;
  gap: 12px !important;
}

.nf-product-card__content h3 { font-size: 0.96rem !important; }

.nf-product-card__content p {
  font-size: 0.82rem !important;
  min-height: 0 !important;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.nf-product-card__buy { padding-top: 14px !important; }
.nf-product-card__action { height: 42px !important; font-size: 0.84rem !important; }

@media (max-width: 540px) {
  .nf-product-card__media { height: 168px !important; }
}

/* =====================================================================
   MOBILE: collapse the floating Discord/Telegram bar to compact icon FABs
   so the labelled pills don't crowd or overlap bottom CTAs (cart checkout,
   ticket send button, etc.). Same brand colours; placed last to win the
   cascade over the production block. The aria-label/title on each <a>
   keeps the channel name accessible once the visible label is hidden.
   ===================================================================== */
@media (max-width: 560px) {
  .nf-floating-social {
    right: 14px;
    bottom: 14px;
    gap: 10px;
  }
  .nf-floating-social__btn {
    width: 50px;
    height: 50px;
    padding: 0;
    gap: 0;
    justify-content: center;
  }
  .nf-floating-social__label {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    border: 0;
  }
  .nf-floating-social__icon {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
  }
}

/* =====================================================================
   MOBILE NAV MENU FIX — the open hamburger panel was narrow, translucent
   and had no z-index, so page content bled through and it looked buggy.
   Make it a SOLID, full-width dropdown above everything, with a dimming
   scrim that closes the menu on tap. Appended last to win the cascade.
   ===================================================================== */
.nf-nav__scrim { display: none; }

@media (max-width: 900px) {
  /* The navbar's backdrop-filter makes .nf-nav a stacking context at z-auto,
     which trapped the menu BELOW the sibling scrim (z-80) — the scrim painted
     over the menu and dimmed its white text to grey. Lift .nf-nav above the
     scrim so the menu renders at full brightness while the page stays dimmed. */
  .nf-nav {
    position: relative !important;
    z-index: 90 !important;
  }

  .nf-nav__links {
    /* The navbar has backdrop-filter, which makes it the containing block for
       this fixed panel. Anchor with viewport units so it spans the real screen
       width instead of being trapped at the narrow navbar width. */
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) !important;
    width: calc(100vw - 24px) !important;
    max-width: none !important;
    top: 74px !important;
    gap: 4px !important;
    padding: 12px !important;
    border-radius: 16px !important;
    background: #100c1a !important;            /* solid + opaque, no see-through */
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    box-shadow: 0 28px 60px -22px rgba(0, 0, 0, 0.9) !important;
    z-index: 90 !important;                     /* above content + floating FABs (60) */
    max-height: calc(100dvh - 90px);
    overflow-y: auto;
  }

  .nf-nav__links a,
  .nf-nav__links button {
    width: 100% !important;
    text-align: left !important;
    justify-content: flex-start !important;
    padding: 13px 16px !important;
    border-radius: 10px !important;
    color: #ffffff !important;                       /* full white — readable on the solid dark panel */
    opacity: 1 !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
  }
  .nf-nav__links .nf-nav__mobile-lang .nf-lang {
    color: rgba(255, 255, 255, 0.6) !important;
  }

  /* full-screen dim behind the panel (starts below the navbar so the bar
     stays visible); tap anywhere on it to close the menu */
  .nf-nav__scrim {
    display: block;
    position: fixed;
    top: 58px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(5, 4, 10, 0.62);
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
    z-index: 80;
  }
}

/* =====================================================================
   MOBILE: price-comparison banner overflow fix. The price strings are
   real ranges (e.g. "7.99€-15.99€" / "0.15€-0.20€") set white-space:nowrap
   at 1.7–2rem; the single-column grid track grew to that min-content and
   .nf-price-panel{overflow:hidden} clipped the copy + prices at the edge.
   Let the tracks shrink (minmax(0,…) + min-width:0) and scale the prices.
   ===================================================================== */
@media (max-width: 760px) {
  .nf-price-panel {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 22px !important;
    padding: 20px !important;
  }
  .nf-price-panel > * { min-width: 0 !important; }

  .nf-price-panel__compare { padding: 16px !important; }

  .nf-price-row { padding: 12px 14px !important; }
  .nf-price-row,
  .nf-price-row--hot { grid-template-columns: minmax(0, 1fr) auto !important; }
  .nf-price-row small { min-width: 0 !important; white-space: normal !important; }

  /* shrink the price numbers so the real ranges fit on a phone */
  .nf-price-row strong { font-size: 1.2rem !important; }
  .nf-price-row--hot strong { font-size: 1.45rem !important; }
}

@media (max-width: 380px) {
  .nf-price-row strong { font-size: 1.05rem !important; }
  .nf-price-row--hot strong { font-size: 1.25rem !important; }
}

/* =====================================================================
   MOBILE: hide the decorative bento graphics. They are absolutely
   positioned (bottom-right of each card) and, on the short single-column
   mobile cards, they overlap the card text — the "Detailed Instructions"
   checklist bar in particular crossed the paragraph and looked like a bug.
   They are aria-hidden flourishes, so dropping them on phones is clean.
   ===================================================================== */
@media (max-width: 760px) {
  .nf-checklist,
  .nf-delivery-orbit,
  .nf-sales-bars { display: none !important; }
}

/* =====================================================================
   MOBILE: with the decorations hidden, the cards' 240px min-height left a
   ~70px empty gap under the text — the cards looked oddly tall/unbalanced.
   Let each card hug its own content and give the stack a bit more breathing
   room so the section reads as clean separate cards, not a cramped block.
   ===================================================================== */
@media (max-width: 760px) {
  /* grid-auto-rows:168px (from the production block) forced fixed-height rows
     that clipped the text once decorations were gone — let rows size to content */
  .nf-bento__grid {
    gap: 18px !important;
    grid-auto-rows: auto !important;
  }
  .nf-bento-card,
  .nf-bento-card--wide,
  .nf-bento-card--tall,
  .nf-bento-card--full {
    min-height: 0 !important;
    height: auto !important;
  }
}

/* =====================================================================
   TOUCH DEVICES: the spotlight JS uses `pointermove` (which also fires on
   touch) to position a card's pink ::after glow, and :hover sticks after a
   tap/scroll on touch — so the glow stayed frozen at the last finger X,
   showing a stray pink bar at a card's right edge. Disable the hover-only
   glow + lift on touch so nothing can stick. Desktop (hover:hover) is
   unaffected. The `*` on the selectors beats the `:hover` source specificity.
   ===================================================================== */
@media (hover: none) {
  .nf-bento-card::after,
  .nf-bento-card:hover::after,
  .nf-featured-card::after,
  .nf-featured-card:hover::after { opacity: 0 !important; }

  .nf-bento-card:hover,
  .nf-featured-card:hover,
  .nf-product-card:hover { transform: none !important; }

  .nf-bento-card:hover { border-color: var(--nf-border) !important; }
  .nf-product-card:hover::before { opacity: 0 !important; }
}


/* =====================================================================
   PRICE COMPARE — "Compare Our Pricings" purple stage with a platform
   (logo + retail vs our price) that auto-cycles. Brand purple/magenta.
   ===================================================================== */
.nf-cmp {
  --acc: #a3ff12;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: clamp(18px, 2.4vw, 26px);
  overflow: hidden;
  min-height: 440px;
  padding: clamp(28px, 3.4vw, 48px);
  padding-bottom: clamp(22px, 2.6vw, 30px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 26px;
  isolation: isolate;
  background:
    radial-gradient(85% 80% at 24% 116%, rgba(132, 224, 0, 0.6), transparent 58%),
    radial-gradient(70% 90% at 62% 122%, rgba(95, 191, 0, 0.5), transparent 60%),
    radial-gradient(60% 70% at 85% -10%, rgba(47, 122, 0, 0.35), transparent 60%),
    linear-gradient(160deg, #08140a 0%, #0c2410 46%, #123a17 100%);
  box-shadow: 0 40px 120px -50px rgba(95, 191, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

/* main content row (copy | showcase) sits above the fx layer */
.nf-cmp__main {
  position: relative;
  z-index: 1;
  flex: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.04fr);
  gap: clamp(20px, 3vw, 44px);
  align-items: center;
}

/* ---- background fx layer ---- */
.nf-cmp__bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }

.nf-cmp__grid {
  position: absolute; inset: -1px;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 46px 46px;
  -webkit-mask-image: radial-gradient(125% 120% at 50% 35%, #000 48%, transparent 86%);
  mask-image: radial-gradient(125% 120% at 50% 35%, #000 48%, transparent 86%);
}

.nf-cmp__beam {
  position: absolute; left: 50%; top: 55%;
  width: 160%; aspect-ratio: 1; transform: translate(-50%, -50%);
  background: conic-gradient(from 200deg, transparent 0 66%, rgba(255, 255, 255, 0.07) 74%, transparent 82%);
  opacity: 0.7;
}
.nf-cmp.is-cmp-ready .nf-cmp__beam { animation: nf-cmp-spin 26s linear infinite; }

.nf-cmp__node {
  position: absolute; width: 7px; height: 7px; border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.7), 0 0 22px var(--acc);
  opacity: 0.55;
}
.nf-cmp.is-cmp-ready .nf-cmp__node { animation: nf-cmp-twinkle 5s ease-in-out infinite; }
.nf-cmp__bg > .nf-cmp__node:nth-child(3)  { left: 14%; top: 24%; animation-delay: .0s; }
.nf-cmp__bg > .nf-cmp__node:nth-child(4)  { left: 30%; top: 70%; animation-delay: .8s; transform: scale(.7); }
.nf-cmp__bg > .nf-cmp__node:nth-child(5)  { left: 54%; top: 18%; animation-delay: 1.6s; transform: scale(.6); }
.nf-cmp__bg > .nf-cmp__node:nth-child(6)  { left: 70%; top: 64%; animation-delay: 2.2s; }
.nf-cmp__bg > .nf-cmp__node:nth-child(7)  { left: 86%; top: 30%; animation-delay: 1.1s; transform: scale(.8); }
.nf-cmp__bg > .nf-cmp__node:nth-child(8)  { left: 92%; top: 78%; animation-delay: 3.0s; transform: scale(.6); }
.nf-cmp__bg > .nf-cmp__node:nth-child(9)  { left: 46%; top: 86%; animation-delay: 2.6s; transform: scale(.5); }

/* ---- left copy column ---- */
.nf-cmp__left,
.nf-cmp__right { position: relative; z-index: 1; }

.nf-cmp__left { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; }

.nf-cmp__brand {
  font-size: 1rem; font-weight: 800; letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: clamp(14px, 2vw, 22px);
}
.nf-cmp__brand::first-letter { color: #fff; }

.nf-cmp__title {
  margin: 0 0 16px;
  font-size: clamp(2.3rem, 4.6vw, 3.9rem);
  font-weight: 900;
  line-height: 0.94;
  letter-spacing: -0.035em;
  color: #fff;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.35);
}
.nf-cmp__title em {
  font-style: normal;
  font-size: 0.3em;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  vertical-align: middle;
  margin-left: 0.5em;
  color: rgba(255, 255, 255, 0.82);
}

.nf-cmp__sub {
  margin: 0 0 clamp(22px, 3vw, 30px);
  max-width: 42ch;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
  line-height: 1.65;
}

.nf-cmp__cta {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 52px; padding: 0 30px;
  border-radius: 999px;
  background: #fff;
  color: #1a0a2e;
  font-weight: 800; font-size: 0.98rem;
  text-decoration: none;
  box-shadow: 0 16px 40px -16px rgba(255, 255, 255, 0.5);
  transition: transform .25s cubic-bezier(.2,.7,0,1), box-shadow .25s ease;
}
.nf-cmp__cta::after { content: "\2192"; font-size: 1.15rem; transition: transform .25s ease; }
.nf-cmp__cta:hover { transform: translateY(-2px); box-shadow: 0 22px 52px -16px rgba(255, 255, 255, 0.65); }
.nf-cmp__cta:hover::after { transform: translateX(4px); }

/* ---- right showcase column ---- */
.nf-cmp__right {
  display: flex; flex-direction: column; justify-content: center;
  gap: clamp(18px, 2.4vw, 30px);
}

.nf-cmp__stage {
  position: relative;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 14px;
  min-height: clamp(150px, 20vw, 210px);
}
.nf-cmp__halo {
  position: absolute; left: 50%; top: 42%; transform: translate(-50%, -50%);
  width: clamp(220px, 26vw, 320px); aspect-ratio: 1;
  background: radial-gradient(circle, var(--acc), transparent 62%);
  opacity: 0.5; filter: blur(34px);
  transition: background .5s ease;
  pointer-events: none;
}
.nf-cmp__ring {
  position: absolute; left: 50%; top: 42%; transform: translate(-50%, -50%);
  width: clamp(200px, 24vw, 300px); aspect-ratio: 1;
  border-radius: 50%;
  border: 1.5px solid transparent;
  border-top-color: rgba(255, 255, 255, 0.55);
  border-right-color: rgba(255, 255, 255, 0.12);
  opacity: 0.55;
  pointer-events: none;
}
.nf-cmp.is-cmp-ready .nf-cmp__ring { animation: nf-cmp-spin 11s linear infinite; }

.nf-cmp__logo {
  position: relative; z-index: 1;
  width: clamp(150px, 20vw, 230px);
  height: clamp(116px, 15vw, 170px);
  object-fit: contain;
  filter: brightness(0) invert(1) drop-shadow(0 0 20px var(--acc)) drop-shadow(0 0 48px var(--acc)) blur(0px);
  transition: opacity .42s ease, transform .5s cubic-bezier(.2,.7,0,1), filter .5s ease;
}
.nf-cmp__tag {
  position: relative; z-index: 1;
  display: inline-flex; align-items: center;
  padding: 6px 15px; border-radius: 999px;
  background: rgba(0, 0, 0, 0.32);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff; font-weight: 800; font-size: 0.9rem;
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  transition: opacity .42s ease, transform .5s cubic-bezier(.2,.7,0,1);
}

/* price cards */
.nf-cmp__cards { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.nf-cmp__card {
  position: relative; overflow: hidden;
  padding: clamp(16px, 1.8vw, 22px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
}
.nf-cmp__card small {
  display: block; margin-bottom: 8px;
  font-size: 0.82rem; font-weight: 700; color: rgba(255, 255, 255, 0.72);
}
.nf-cmp__card strong {
  display: block;
  font-size: clamp(1.25rem, 2.4vw, 1.7rem); font-weight: 800; line-height: 1.05;
  color: #fff; white-space: nowrap; font-variant-numeric: tabular-nums;
  transition: opacity .42s ease, transform .5s cubic-bezier(.2,.7,0,1);
}
.nf-cmp__card--their strong { color: rgba(255, 255, 255, 0.7); }
.nf-cmp__card--our {
  border-color: rgba(255, 255, 255, 0.42);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.05));
  box-shadow: 0 0 34px -8px var(--acc), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}
.nf-cmp__card--our::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(80% 120% at 100% 0%, var(--acc), transparent 60%);
  opacity: 0.16; transition: background .5s ease; pointer-events: none;
}
.nf-cmp__card--our em {
  display: block; margin-top: 3px;
  font-style: normal; font-size: 0.74rem; font-weight: 700;
  color: rgba(255, 255, 255, 0.72);
}

/* bottom bar: CHEAPEST PRICES | cycle dots | ORDER NOW */
.nf-cmp__bar {
  position: relative; z-index: 3;
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 12px;
  padding-top: clamp(8px, 1.4vw, 14px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.nf-cmp__foot {
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.16em;
  text-transform: uppercase; color: rgba(255, 255, 255, 0.5);
}
.nf-cmp__foot--left  { justify-self: start; }
.nf-cmp__foot--right { justify-self: end; color: rgba(255, 255, 255, 0.82); }

.nf-cmp__dots {
  justify-self: center;
  display: flex; gap: 8px;
}
.nf-cmp__dot {
  width: 8px; height: 8px; padding: 0; border: none; border-radius: 999px; cursor: pointer;
  background: rgba(255, 255, 255, 0.3);
  transition: width .35s cubic-bezier(.2,.7,0,1), background .35s ease;
}
.nf-cmp__dot:hover { background: rgba(255, 255, 255, 0.6); }
.nf-cmp__dot.is-active { width: 24px; background: #fff; }

/* ---- swap transition (logo + tag + prices fade/slide together) ---- */
.nf-cmp.is-swapping .nf-cmp__logo {
  opacity: 0; transform: translateY(16px) scale(0.86);
  filter: brightness(0) invert(1) drop-shadow(0 0 20px var(--acc)) drop-shadow(0 0 48px var(--acc)) blur(10px);
}
.nf-cmp.is-swapping .nf-cmp__tag { opacity: 0; transform: translateY(10px); }
.nf-cmp.is-swapping .nf-cmp__card strong { opacity: 0; transform: translateY(9px); }

/* ---- keyframes ---- */
@keyframes nf-cmp-spin { to { transform: translate(-50%, -50%) rotate(360deg); } }
@keyframes nf-cmp-twinkle {
  0%, 100% { opacity: 0.25; }
  50% { opacity: 0.85; }
}

/* ---- responsive ---- */
@media (max-width: 900px) {
  .nf-cmp { min-height: 0; }
  .nf-cmp__main { grid-template-columns: 1fr; }
  .nf-cmp__left { align-items: flex-start; text-align: left; }
  .nf-cmp__cta { width: 100%; }
  .nf-cmp__stage { margin-top: 6px; }
}
@media (max-width: 560px) {
  .nf-cmp__bar { grid-template-columns: 1fr; justify-items: center; gap: 8px; }
  .nf-cmp__foot--left { display: none; }
  .nf-cmp__foot--right { justify-self: center; order: 2; }
  .nf-cmp__dots { order: 1; }
}
@media (max-width: 480px) {
  .nf-cmp__cards { grid-template-columns: 1fr; }
  .nf-cmp__title { font-size: clamp(2rem, 9vw, 2.6rem); }
}

/* ---- reduced motion ---- */
@media (prefers-reduced-motion: reduce) {
  .nf-cmp__beam, .nf-cmp__ring, .nf-cmp__node { animation: none !important; }
  .nf-cmp__logo, .nf-cmp__tag, .nf-cmp__card strong { transition: none !important; }
}

/* =====================================================================
   PRICE COMPARE — "more love" upgrades: savings badge, brand-tint wash,
   struck retail price, trust row, countdown dots, 3D hover tilt.
   ===================================================================== */

/* 3D tilt needs perspective on the parent (scoped to this section only) */
.nf-cmp-section .nf-shell { perspective: 1500px; }

/* keep the card's transform snappy for tilt (override reveal's .8s transform) */
html.nf-reveal-ready .nf-cmp.is-cmp-ready,
.nf-cmp.is-cmp-ready {
  transition: opacity .8s cubic-bezier(.2,.7,0,1),
              transform .25s cubic-bezier(.2,.7,0,1),
              box-shadow .35s ease;
  will-change: transform;
}

/* brand-colour ambient wash that cross-fades with every platform */
.nf-cmp__tint {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(58% 68% at 82% 6%, var(--acc), transparent 60%),
    radial-gradient(48% 58% at 10% 94%, var(--acc), transparent 62%);
  opacity: 0.18;
  mix-blend-mode: screen;
  transition: background .6s ease;
}

/* tighten copy spacing now that a trust row sits under the subtitle */
.nf-cmp__sub { margin-bottom: clamp(14px, 1.8vw, 18px); }

/* trust row */
.nf-cmp__trust {
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px 16px;
  margin: 0 0 clamp(20px, 2.6vw, 28px);
}
.nf-cmp__trust-item {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.82rem; font-weight: 700; color: rgba(255, 255, 255, 0.82);
}
.nf-cmp__trust-item strong { color: #fff; font-weight: 800; }
.nf-cmp__trust-item--rate { gap: 5px; }
.nf-cmp__stars {
  color: #ffd24a; font-size: 0.82rem; letter-spacing: 1px;
  text-shadow: 0 0 10px rgba(255, 210, 74, 0.55);
}
.nf-cmp__trust-ico { font-size: 0.92rem; filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.3)); }

/* retail price now reads as the expensive/old one */
.nf-cmp__card--their strong {
  color: rgba(255, 255, 255, 0.62);
  text-decoration: line-through;
  text-decoration-color: rgba(163, 255, 18, 0.9);
  text-decoration-thickness: 2px;
}

/* savings badge on the Our-price card */
.nf-cmp__save {
  position: absolute; top: 10px; right: 10px; z-index: 2;
  display: inline-flex; align-items: center;
  padding: 4px 11px; border-radius: 999px;
  font-size: 0.82rem; font-weight: 900; letter-spacing: -0.01em;
  color: #06140d;
  background: linear-gradient(135deg, #6ee7b7, #34d399);
  box-shadow: 0 6px 18px -6px rgba(52, 211, 153, 0.85);
}
.nf-cmp__save.is-pop { animation: nf-cmp-pop .5s cubic-bezier(.2, 1.4, .3, 1); }
@keyframes nf-cmp-pop {
  0% { transform: scale(.4); opacity: 0; }
  60% { transform: scale(1.12); opacity: 1; }
  100% { transform: scale(1); opacity: 1; }
}

/* cycle dots double as a per-platform countdown bar */
.nf-cmp__dot { position: relative; overflow: hidden; }
.nf-cmp__dot.is-active { background: rgba(255, 255, 255, 0.28); }
.nf-cmp__dot.is-active::after {
  content: ""; position: absolute; inset: 0; width: 0; border-radius: inherit;
  background: #fff;
  animation: nf-cmp-dotfill var(--cycle, 2600ms) linear forwards;
}
.nf-cmp.is-paused .nf-cmp__dot.is-active::after { animation-play-state: paused; }
@keyframes nf-cmp-dotfill { from { width: 0; } to { width: 100%; } }

/* reduced motion: drop the animated extras, keep final states legible */
@media (prefers-reduced-motion: reduce) {
  .nf-cmp.is-cmp-ready { transition: none !important; transform: none !important; }
  .nf-cmp__save.is-pop { animation: none !important; }
  .nf-cmp__dot.is-active::after { animation: none !important; width: 100%; }
  .nf-cmp__tint { transition: none !important; }
}

/* =====================================================================
   REVIEWS — richer marquee cards: avatar, name, verified badge, glow
   ===================================================================== */
.nf-review {
  flex: none; width: 360px; min-height: 172px;
  display: flex; flex-direction: column; gap: 12px;
  position: relative; overflow: hidden;
  margin: 0 10px; padding: 20px;
  border: 1px solid var(--nf-border); border-radius: 18px;
  background: linear-gradient(170deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  white-space: normal;
  transition: transform .3s cubic-bezier(.2,.7,0,1), border-color .3s ease, box-shadow .3s ease;
}
.nf-review:hover {
  transform: translateY(-4px);
  border-color: rgba(163, 255, 18, 0.35);
  box-shadow: 0 24px 52px -28px rgba(163, 255, 18, 0.6);
}
.nf-review::after {
  content: "\201D"; position: absolute; top: 2px; right: 16px;
  font-family: Georgia, "Times New Roman", serif; font-size: 4rem; line-height: 1;
  color: rgba(255, 255, 255, 0.06); pointer-events: none;
}
.nf-review__top { display: flex; align-items: center; gap: 10px; }
.nf-review__avatar {
  flex: none; width: 40px; height: 40px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1rem; color: #fff;
  background: linear-gradient(140deg, #a3ff12, #4e9e00);
  box-shadow: 0 6px 16px -6px rgba(163, 255, 18, 0.7);
}
.nf-review__id { display: flex; flex-direction: column; gap: 1px; margin-right: auto; min-width: 0; }
.nf-review__name { font-size: 0.92rem; font-weight: 800; color: #fff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.nf-review__badge { display: inline-flex; align-items: center; gap: 4px; font-size: 0.7rem; font-weight: 700; color: var(--nf-green); }
.nf-review__badge svg { width: 12px; height: 12px; }
.nf-review__stars { display: flex; gap: 2px; flex: none; color: #ffd24a; }
.nf-review__stars svg { width: 15px; height: 15px; filter: drop-shadow(0 0 5px rgba(255, 210, 74, 0.4)); }
.nf-review__msg {
  margin: 0; font-size: 0.92rem; line-height: 1.5; color: rgba(245, 243, 255, 0.84);
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.nf-review__foot {
  margin-top: auto; display: flex; align-items: center; justify-content: space-between;
  padding-top: 10px; border-top: 1px solid var(--nf-border-soft);
}
.nf-review__platform { font-size: 0.72rem; font-weight: 700; color: var(--nf-muted); }
.nf-review__date { font-size: 0.72rem; color: rgba(245, 243, 255, 0.45); }

/* =====================================================================
   FAQ — glassy numbered accordion with accent bar + rotating + icon
   ===================================================================== */
.nf-faq { max-width: 860px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.nf-faq__item {
  position: relative; overflow: hidden;
  border: 1px solid var(--nf-border); border-radius: 16px;
  background: linear-gradient(170deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015));
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  transition: border-color .3s ease, box-shadow .3s ease;
}
.nf-faq__item::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: var(--nf-grad); transform: scaleY(0); transform-origin: top;
  transition: transform .35s ease;
}
.nf-faq__item:hover { border-color: rgba(255, 255, 255, 0.16); }
.nf-faq__item.is-open { border-color: rgba(163, 255, 18, 0.32); box-shadow: 0 18px 50px -30px rgba(163, 255, 18, 0.5); }
.nf-faq__item.is-open::before { transform: scaleY(1); }
.nf-faq__q {
  width: 100%; display: flex; align-items: center; gap: 16px;
  padding: clamp(15px, 2vw, 21px) clamp(18px, 2.2vw, 26px);
  background: none; border: none; text-align: left; color: #fff; cursor: pointer;
}
.nf-faq__n {
  flex: none; font-size: 0.9rem; font-weight: 800; font-variant-numeric: tabular-nums;
  background: var(--nf-grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.nf-faq__qt { flex: 1; font-size: clamp(1rem, 1.4vw, 1.18rem); font-weight: 700; line-height: 1.35; }
.nf-faq__icon {
  flex: none; width: 30px; height: 30px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--nf-border); color: #fff;
  transition: transform .35s cubic-bezier(.2,.7,0,1), background .3s ease, border-color .3s ease;
}
.nf-faq__icon svg { width: 15px; height: 15px; }
.nf-faq__item.is-open .nf-faq__icon { transform: rotate(135deg); background: var(--nf-grad); border-color: transparent; }
.nf-faq__a { overflow: hidden; max-height: 0; transition: max-height .35s cubic-bezier(.2,.7,0,1); }
.nf-faq__a-inner {
  padding: 0 clamp(18px, 2.2vw, 26px) clamp(16px, 2vw, 20px) clamp(50px, 5vw, 60px);
  color: var(--nf-muted); font-size: 0.96rem; line-height: 1.7;
}
.nf-faq__a-inner a { color: var(--nf-pink-soft); }
.nf-faq__a-inner a:hover { text-decoration: underline; }

/* =====================================================================
   HERO compare widget — a little life: hover rows + sequential glow
   ===================================================================== */
.nf-compare__row { position: relative; border-radius: 12px; transition: background .3s ease, transform .3s ease; }
.nf-compare__row:hover { background: rgba(255, 255, 255, 0.05); transform: translateX(2px); }
.nf-compare__row::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(163, 255, 18, 0.12), transparent);
  opacity: 0;
}
.nf-compare.is-in .nf-compare__row::before,
.is-in .nf-compare__row::before { animation: nf-compare-scan 7s ease-in-out infinite; }
.nf-compare__row:nth-child(1)::before { animation-delay: 0s; }
.nf-compare__row:nth-child(2)::before { animation-delay: .45s; }
.nf-compare__row:nth-child(3)::before { animation-delay: .9s; }
.nf-compare__row:nth-child(4)::before { animation-delay: 1.35s; }
.nf-compare__save { transition: transform .3s ease; }
.nf-compare.is-in .nf-compare__foot strong { animation: nf-cmp-foot-pulse 3.5s ease-in-out infinite; }

@keyframes nf-compare-scan {
  0%, 78%, 100% { opacity: 0; }
  10%, 18% { opacity: 1; }
}
@keyframes nf-cmp-foot-pulse {
  0%, 100% { text-shadow: 0 0 0 rgba(163, 255, 18, 0); }
  50% { text-shadow: 0 0 18px rgba(163, 255, 18, 0.7); }
}

@media (prefers-reduced-motion: reduce) {
  .nf-compare__row::before,
  .nf-compare.is-in .nf-compare__foot strong { animation: none !important; }
}

/* =====================================================================
   PERFORMANCE GATING — keep the look identical, stop paying for it when
   nobody can see it. The theme has ~34 infinite keyframe animations and
   dozens of blur()/backdrop-filter layers spread across every section;
   left running off-screen they keep weak GPUs compositing full-time.
   These rules only ever fire on content that is scrolled out of view or
   on a hidden tab, so on-screen rendering is pixel-for-pixel unchanged.
   Driven by the IntersectionObserver / visibilitychange hooks in
   layouts/master.njk (classes: .nf-offscreen on a section, .nf-tab-hidden
   on <html>). animation-play-state freezes a loop in place — when the
   class is removed it simply resumes, no restart, no visual pop.
   ===================================================================== */
.nf-offscreen,
.nf-offscreen *,
.nf-offscreen *::before,
.nf-offscreen *::after { animation-play-state: paused !important; }

html.nf-tab-hidden *,
html.nf-tab-hidden *::before,
html.nf-tab-hidden *::after { animation-play-state: paused !important; }

/* =====================================================================
   PREMIUM STAGES — bring the loved price-compare "stage" language to the
   Stats and Why-Choose-Us sections: a masked tech grid, a slow conic
   beam, soft brand glows behind the cards, and glowing icon chips with a
   halo + spinning ring. Same purple/pink palette, no new colours.
   Reuses the cmp keyframes (nf-cmp-spin). All loops are paused off-screen
   by the gating block above, so weak GPUs only pay for the visible one.
   ===================================================================== */

/* ---- shared backdrop used by both sections ---- */
.nf-stat-stage,
.nf-bento-stage { position: relative; }

.nf-stage-fx {
  position: absolute;
  inset: -14px -10px;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  border-radius: 30px;
}
.nf-stage-fx--wide { inset: -10px -8px; border-radius: 34px; }

.nf-stage-fx__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.038) 1px, transparent 1px);
  background-size: 46px 46px;
  -webkit-mask-image: radial-gradient(120% 120% at 50% 28%, #000 40%, transparent 84%);
  mask-image: radial-gradient(120% 120% at 50% 28%, #000 40%, transparent 84%);
  opacity: 0.7;
}

.nf-stage-fx__beam {
  position: absolute; left: 50%; top: 52%;
  width: 150%; aspect-ratio: 1; transform: translate(-50%, -50%);
  background: conic-gradient(from 210deg, transparent 0 66%, rgba(255, 255, 255, 0.05) 74%, transparent 82%);
  opacity: 0.6;
  animation: nf-cmp-spin 34s linear infinite;
}

.nf-stage-fx__glow {
  position: absolute; width: 52%; aspect-ratio: 1; border-radius: 50%;
  filter: blur(76px); opacity: 0.6;
}
.nf-stage-fx__glow--a { left: -8%; bottom: -24%; background: radial-gradient(circle, rgba(132, 224, 0, 0.85), transparent 66%); }
.nf-stage-fx__glow--b { right: -8%; top: -24%; background: radial-gradient(circle, rgba(47, 122, 0, 0.78), transparent 66%); }

/* keep real content above the fx */
.nf-stat-stage .nf-stat-grid,
.nf-bento-stage .nf-bento__grid { position: relative; z-index: 1; }

/* drop the special stage backdrop on stats + bento — sit on the plain page background */
.nf-bento-stage .nf-stage-fx,
.nf-stat-stage .nf-stage-fx { display: none; }

/* =================== STATS — premium glass stat cards =================== */
.nf-stats .nf-stat-card {
  min-height: 188px;
  border-color: rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(120% 92% at 50% 124%, rgba(47, 122, 0, 0.17), transparent 60%),
    linear-gradient(168deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 24px 60px -42px rgba(95, 191, 0, 0.7);
}
.nf-stats .nf-stat-card:hover {
  border-color: rgba(163, 255, 18, 0.42);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.13), 0 30px 72px -36px rgba(163, 255, 18, 0.6);
}

/* icon chip now sits inside a positioned wrap that hosts a halo + ring */
.nf-stat-card__iconwrap {
  position: relative;
  display: inline-flex;
  margin-bottom: 18px;
  isolation: isolate;
}
.nf-stats .nf-stat-card__icon {
  margin-bottom: 0;
  position: relative;
  z-index: 2;
  /* drop the boxy chip behind the glyph — keep just the icon over the halo+ring */
  background: transparent;
  border: 0;
}
.nf-stat-card__halo {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 98px; height: 98px; border-radius: 50%; z-index: 0;
  background: radial-gradient(circle, rgba(163, 255, 18, 0.55), transparent 62%);
  filter: blur(15px);
  animation: nf-stat-halo 4.6s ease-in-out infinite;
}
.nf-stat-card__ring {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 72px; height: 72px; border-radius: 50%; z-index: 1;
  border: 1.4px solid transparent;
  border-top-color: rgba(255, 255, 255, 0.6);
  border-right-color: rgba(163, 255, 18, 0.45);
  opacity: 0.65;
  animation: nf-cmp-spin 9s linear infinite;
}

@keyframes nf-stat-halo {
  0%, 100% { opacity: 0.5;  transform: translate(-50%, -50%) scale(1); }
  50%      { opacity: 0.92; transform: translate(-50%, -50%) scale(1.08); }
}

/* =================== WHY-CHOOSE-US — depth + glowing step badges ======= */
.nf-bento .nf-bento-card:not(.nf-bento-card--hot) {
  background:
    radial-gradient(125% 100% at 50% 132%, rgba(47, 122, 0, 0.14), transparent 62%),
    linear-gradient(168deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.018));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07);
}
.nf-bento .nf-bento-card:hover {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 28px 64px -40px rgba(163, 255, 18, 0.55);
}

/* the payment-methods card becomes the block's hero — same loved purple
   stage as the price-compare panel, so "payment methods" stops reading flat */
.nf-bento .nf-bento-card.nf-bento-card--payments {
  border-color: rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(95% 135% at 16% 106%, rgba(132, 224, 0, 0.62), transparent 60%),
    radial-gradient(85% 120% at 60% 110%, rgba(95, 191, 0, 0.52), transparent 62%),
    radial-gradient(70% 85% at 90% -8%, rgba(47, 122, 0, 0.42), transparent 60%),
    linear-gradient(160deg, #1d0b33 0%, #2c1149 48%, #3f1568 100%);
  box-shadow: 0 40px 110px -54px rgba(95, 191, 0, 0.75), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
.nf-bento .nf-bento-card.nf-bento-card--payments p {
  color: rgba(255, 255, 255, 0.78);
}

/* the "01–06" step badges go from a faint tile to a lit gradient chip */
.nf-bento .nf-bento-card__icon {
  border-color: transparent;
  background: linear-gradient(140deg, #a3ff12, #4e9e00);
  color: #fff;
  box-shadow: 0 10px 26px -12px rgba(163, 255, 18, 0.85), inset 0 1px 0 rgba(255, 255, 255, 0.28);
  letter-spacing: 0.04em;
}

/* a touch more punch on the payment orbit centre + chips */
.nf-bento-card--payments .nf-orbit__center {
  box-shadow:
    0 22px 48px -8px rgba(163, 255, 18, 0.65),
    inset 0 1px 0 rgba(255, 255, 255, 0.34);
}
.nf-bento-card--payments .nf-orbit__chip {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.14), 0 0 0 0 rgba(163, 255, 18, 0);
  transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}
.nf-bento-card--payments:hover .nf-orbit__chip {
  border-color: rgba(163, 255, 18, 0.32);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.14), 0 0 18px -4px rgba(163, 255, 18, 0.5);
}

/* respect reduced-motion: keep the look, drop the motion */
@media (prefers-reduced-motion: reduce) {
  .nf-stage-fx__beam,
  .nf-stat-card__halo,
  .nf-stat-card__ring { animation: none !important; }
}

/* mobile: the fx grid/glows would crowd the stacked cards — calm it down */
@media (max-width: 760px) {
  .nf-stage-fx__beam { display: none; }
  .nf-stage-fx { inset: -8px -6px; }
}

/* =====================================================================
   WHY-CHOOSE-US bento — colored image visuals, richer terminal, receipt
   mock, more motion. Fills the previously empty/bland cards.
   ===================================================================== */

/* shared glow behind a card visual */
.nf-bento-visual__halo {
  position: absolute; left: 50%; bottom: 4%; transform: translateX(-50%);
  width: 78%; aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle, rgba(163, 255, 18, 0.5), transparent 62%);
  filter: blur(36px); opacity: 0.5; pointer-events: none;
}

/* 02 — Instant Delivery: glossy 3D bolt */
/* keep the copy on the left so the bolt never sits on top of the text */
.nf-bento-card--delivery h3,
.nf-bento-card--delivery p { max-width: min(58%, 220px); }
.nf-bento-card--delivery .nf-bento-visual--bolt { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.nf-bento-visual--bolt img {
  position: absolute; right: 22px; bottom: 26px; z-index: 0;
  width: clamp(98px, 11vw, 132px); height: auto;
  /* recolour the pink/magenta bolt art to the theme green */
  filter: hue-rotate(140deg) saturate(1.25) brightness(1.02) drop-shadow(0 14px 30px rgba(95, 191, 0, 0.5));
  animation: nf-bolt-float 5s ease-in-out infinite;
}
.nf-bento-visual--bolt .nf-delivery-orbit {
  position: absolute; right: 16px; bottom: 20px; width: 132px; height: 132px;
  border: 1px dashed rgba(255, 255, 255, 0.16); border-radius: 999px;
  animation: nf-rotate 17s linear infinite;
}
.nf-bento-visual--bolt .nf-delivery-orbit::before {
  content: ""; position: absolute; top: -4px; left: 50%; margin-left: -4px;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--nf-cyan); box-shadow: 0 0 12px var(--nf-cyan);
}

/* 03 — Detailed Instructions: animated step indicator (1 → 4) */
.nf-bento-steps {
  position: absolute; left: 30px; right: 30px; bottom: 34px; z-index: 1;
  display: flex; align-items: center; justify-content: space-between;
}
.nf-bento-steps__bar {
  position: absolute; left: 17px; right: 17px; top: 50%; height: 3px; transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1); border-radius: 999px; z-index: 0; overflow: hidden;
}
.nf-bento-steps__bar i {
  position: absolute; inset: 0 auto 0 0; width: 66%; border-radius: 999px;
  background: linear-gradient(90deg, #4e9e00, #a3ff12);
  background-size: 200% auto; animation: nf-shimmer-text 3s linear infinite;
}
.nf-bento-steps__dot {
  position: relative; z-index: 1;
  width: 34px; height: 34px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 0.82rem; font-weight: 800; color: rgba(255, 255, 255, 0.55);
  background: #15101f; border: 1px solid var(--nf-border);
}
.nf-bento-steps__dot.is-done {
  color: #fff; background: linear-gradient(140deg, #a3ff12, #4e9e00); border-color: transparent;
}
.nf-bento-steps__dot.is-active {
  color: #fff; background: linear-gradient(140deg, #a3ff12, #4e9e00); border-color: transparent;
  box-shadow: 0 0 0 4px rgba(163, 255, 18, 0.18), 0 8px 22px -6px rgba(163, 255, 18, 0.85);
  animation: nf-steps-pulse 1.9s ease-in-out infinite;
}
@keyframes nf-steps-pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(163, 255, 18, 0.18), 0 8px 22px -6px rgba(163, 255, 18, 0.85); }
  50% { box-shadow: 0 0 0 8px rgba(163, 255, 18, 0.05), 0 8px 28px -4px rgba(163, 255, 18, 1); }
}

/* 01 — Support tickets: terminal window chrome + blinking cursor */
.nf-mini-terminal { position: relative; }
.nf-mini-terminal__bar {
  display: flex; align-items: center; gap: 6px;
  margin-bottom: 8px; padding-bottom: 9px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.nf-mini-terminal__bar i { width: 9px; height: 9px; border-radius: 50%; background: rgba(255, 255, 255, 0.2); }
.nf-mini-terminal__bar i:nth-child(1) { background: #ff5f57; }
.nf-mini-terminal__bar i:nth-child(2) { background: #febc2e; }
.nf-mini-terminal__bar i:nth-child(3) { background: #28c840; }
.nf-mini-terminal__bar em { margin-left: 6px; font-style: normal; font-size: 0.7rem; color: rgba(245, 243, 255, 0.4); }
.nf-mini-terminal__bar::before { content: none !important; }
.nf-term-ok { color: var(--nf-green); font-weight: 700; }
.nf-term-ok::after {
  content: ""; display: inline-block; width: 6px; height: 6px; margin-left: 6px; border-radius: 50%;
  background: var(--nf-green); box-shadow: 0 0 8px var(--nf-green);
  animation: nf-term-pulse 1.8s ease-in-out infinite; vertical-align: middle;
}
.nf-term-cursor {
  display: inline-block; width: 7px; height: 0.95em; margin-left: 4px; vertical-align: -2px;
  background: var(--nf-cyan); animation: nf-term-blink 1.1s steps(1) infinite;
}

/* 04 — No Hidden Fees: animated receipt mock + corner stamp */
.nf-bento-card--fees .nf-receipt {
  position: absolute; left: 26px; right: 26px; bottom: 20px; z-index: 1;
  padding: 11px 14px; border-radius: 12px; border: 1px solid var(--nf-border);
  background: rgba(0, 0, 0, 0.4); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  font-size: 0.8rem; box-shadow: 0 18px 42px -26px rgba(0, 0, 0, 0.85);
}
.nf-receipt__row { display: flex; justify-content: space-between; align-items: center; padding: 2.5px 0; color: var(--nf-muted); }
.nf-receipt__row b { color: #fff; font-weight: 700; font-variant-numeric: tabular-nums; }
.nf-receipt__free { color: var(--nf-green) !important; }
.nf-receipt__row--total { margin-top: 5px; padding-top: 8px; border-top: 1px dashed rgba(255, 255, 255, 0.16); }
.nf-receipt__row--total span { color: #fff; font-weight: 800; }
.nf-receipt__row--total b { font-size: 1rem; }
.nf-bento-card--fees .nf-receipt__stamp {
  position: absolute; top: 22px; right: 22px; z-index: 3; transform: rotate(7deg);
  padding: 4px 10px; border-radius: 8px; font-size: 0.68rem; font-weight: 900; letter-spacing: 0.05em; text-transform: uppercase;
  color: var(--nf-green); border: 1.6px solid var(--nf-green); background: rgba(52, 211, 153, 0.08);
  box-shadow: 0 0 22px -6px rgba(52, 211, 153, 0.7);
}
.nf-bento-card--fees.is-in .nf-receipt__stamp { animation: nf-stamp-pop .6s cubic-bezier(.2, 1.5, .3, 1) both .35s; }

@keyframes nf-bolt-float { 0%, 100% { transform: rotate(-6deg) translateY(0); } 50% { transform: rotate(-6deg) translateY(-9px); } }
@keyframes nf-step-float { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(-7px); } }
@keyframes nf-term-blink { 0%, 50% { opacity: 1; } 51%, 100% { opacity: 0; } }
@keyframes nf-term-pulse { 0%, 100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.5); opacity: .5; } }
@keyframes nf-stamp-pop {
  0% { opacity: 0; transform: rotate(7deg) scale(.4); }
  60% { opacity: 1; transform: rotate(7deg) scale(1.14); }
  100% { opacity: 1; transform: rotate(7deg) scale(1); }
}

@media (prefers-reduced-motion: reduce) {
  .nf-bento-visual--bolt img, .nf-bento-visual--steps img,
  .nf-bento-visual--bolt .nf-delivery-orbit, .nf-term-cursor,
  .nf-term-ok::after, .nf-bento-card--fees.is-in .nf-receipt__stamp { animation: none !important; }
}

/* bento mobile: let in-card visuals flow so they never overlap stacked text */
@media (max-width: 760px) {
  .nf-bento-card--fees,
  .nf-bento-card--steps { min-height: 0; }
  .nf-bento-card--fees .nf-receipt {
    position: static; left: auto; right: auto; bottom: auto; margin-top: 16px;
  }
  .nf-bento-steps {
    position: relative; left: auto; right: auto; bottom: auto; margin: 22px 8px 6px;
  }
  .nf-bento-card--delivery { min-height: 228px; }
  .nf-bento-visual--bolt img { width: 108px; right: 14px; bottom: 16px; }
}

/* mobile: keep footer legal links clear of the fixed social FABs (bottom-right) */
@media (max-width: 560px) {
  .nf-footer__bottom { padding-bottom: 96px; }
  .nf-footer__bottom div { flex-direction: column; align-items: flex-start; gap: 10px; }
}

/* =====================================================================
   PERF (mobile): lighter backdrop-blur on phones. backdrop-filter is the
   costliest thing to composite on mobile GPUs; at phone sizes a 7-16px blur
   is visually identical to 14-28px but far cheaper. Look stays the same.
   ===================================================================== */
@media (max-width: 760px) {
  .nf-nav {
    -webkit-backdrop-filter: blur(16px) saturate(160%);
    backdrop-filter: blur(16px) saturate(160%);
  }
  .nf-stat-card,
  .nf-bento-card,
  .nf-review,
  .nf-faq__item,
  .nf-product-card,
  .nf-featured-card,
  .nf-cmp__stage,
  .nf-cmp__card,
  .nf-mini-terminal,
  .nf-bento-card--fees .nf-receipt {
    -webkit-backdrop-filter: blur(7px);
    backdrop-filter: blur(7px);
  }
}

/* =====================================================================
   MOBILE MENU — clean action area. The broad menu-fix rule flattened the
   Login/Register/My-account buttons and EN/ES toggle into plain left text.
   Restore them as proper centered buttons + a tidy segmented lang toggle.
   Appended last + higher specificity to win the cascade.
   ===================================================================== */
@media (max-width: 900px) {
  .nf-nav__links .nf-nav__mobile-actions {
    margin-top: 10px !important;
    padding-top: 14px !important;
    gap: 9px !important;
  }
  .nf-nav__links .nf-nav__mobile-actions .nf-nav-btn {
    width: 100% !important;
    height: 48px !important;
    padding: 0 18px !important;
    justify-content: center !important;
    text-align: center !important;
    border-radius: 12px !important;
    font-size: 0.98rem !important;
    font-weight: 700 !important;
    gap: 8px !important;
  }
  .nf-nav__links .nf-nav__mobile-actions .nf-nav-btn--ghost {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.16) !important;
    color: #fff !important;
  }
  .nf-nav__links .nf-nav__mobile-actions .nf-nav-btn--primary {
    background: linear-gradient(135deg, #7cd600, #a3ff12) !important;
    border: 1px solid transparent !important;
    color: #fff !important;
    box-shadow: 0 14px 30px -12px rgba(163, 255, 18, 0.8) !important;
  }

  /* EN/ES as a clean segmented toggle */
  .nf-nav__links .nf-nav__mobile-lang {
    display: flex !important;
    gap: 5px !important;
    margin-top: 10px !important;
    padding: 4px !important;
    border-radius: 12px !important;
    background: rgba(255, 255, 255, 0.04) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
  }
  .nf-nav__links .nf-nav__mobile-lang .nf-lang {
    flex: 1 !important;
    height: 38px !important;
    padding: 0 !important;
    justify-content: center !important;
    text-align: center !important;
    border-radius: 9px !important;
    font-weight: 800 !important;
    font-size: 0.84rem !important;
    color: rgba(255, 255, 255, 0.6) !important;
    background: transparent !important;
    transition: background .2s ease, color .2s ease;
  }
  /* JS marks the inactive language with .opacity-50 → highlight the active one */
  .nf-nav__links .nf-nav__mobile-lang .nf-lang:not(.opacity-50) {
    color: #fff !important;
    background: rgba(255, 255, 255, 0.12) !important;
    opacity: 1 !important;
  }

  /* a touch darker scrim so page content doesn't bleed through */
  .nf-nav__scrim {
    background: rgba(4, 3, 8, 0.8) !important;
    -webkit-backdrop-filter: blur(3px) !important;
    backdrop-filter: blur(3px) !important;
  }
}

/* =====================================================================
   SPRING MARKET IDENTITY — chrome wordmark + electric green energy.
   Appended last so it wins the cascade over every earlier layer.
   ===================================================================== */
:root {
  --sm-lime: #a3ff12;
  --sm-green: #7cd600;
  --sm-green-deep: #2f5e00;
}

/* hide the cursor-follow glow (mouse effect removed by request) */
.nf-cursor-glow { display: none !important; }

/* ---- Cinematic energy background ---- */
.nf-global-bg {
  background:
    radial-gradient(58% 48% at 50% -4%, rgba(124, 214, 0, 0.20), transparent 60%),
    radial-gradient(40% 36% at 50% 30%, rgba(163, 255, 18, 0.10), transparent 72%),
    radial-gradient(75% 60% at 50% 116%, rgba(0, 0, 0, 0.65), transparent 60%),
    linear-gradient(180deg, #060a05 0%, #050706 55%, #07090a 100%) !important;
  background-size: auto !important;
}

/* ---- Chrome / liquid-metal marble headline (poster style) ---- */
.nf-chrome,
.nf-hero__title .nf-hero__title-static {
  background: linear-gradient(180deg, #ffffff 0%, #f0f5ec 26%, #ffffff 47%, #aeb9a6 64%, #ffffff 82%, #e7efe0 100%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  color: transparent !important;
  filter:
    drop-shadow(0 2px 0 #4e8c00)
    drop-shadow(0 4px 1px #2f5e00)
    drop-shadow(0 7px 12px rgba(0, 0, 0, 0.6))
    drop-shadow(0 0 22px rgba(163, 255, 18, 0.7))
    drop-shadow(0 0 60px rgba(124, 214, 0, 0.5)) !important;
}

.nf-hero__title .nf-hero__title-static {
  letter-spacing: -0.02em !important;
  text-shadow: none !important;
}

/* electric glow on the rotating accent word */
.nf-hero__title .nf-hero__rotator {
  filter: drop-shadow(0 0 16px rgba(163, 255, 18, 0.55)) drop-shadow(0 0 36px rgba(124, 214, 0, 0.4));
}

/* decorative underline bar removed for a cleaner, simpler hero */
.nf-hero__title::after {
  content: none;
}

/* ---- Cinematic hero stage: vignette + energy + lightning ---- */
.nf-hero {
  overflow: hidden;
  box-shadow: inset 0 0 220px 50px rgba(0, 0, 0, 0.6);
}

/* re-enable the decorative layers the production block had hidden */
.nf-hero__orb,
.nf-hero__grid,
.nf-hero__glow { display: block !important; }

.nf-hero__orb {
  position: absolute !important;
  border-radius: 50% !important;
  pointer-events: none !important;
  z-index: 0 !important;
}

.nf-hero__orb--pink {
  width: clamp(440px, 60vw, 820px) !important;
  height: clamp(440px, 60vw, 820px) !important;
  top: -22% !important;
  left: 50% !important;
  right: auto !important;
  background: radial-gradient(circle, rgba(163, 255, 18, 0.22), rgba(124, 214, 0, 0.08) 42%, transparent 70%) !important;
  filter: blur(56px) !important;
  opacity: 0.9 !important;
  animation: sm-core 5s ease-in-out infinite !important;
}

@keyframes sm-core {
  0%, 100% { opacity: 0.65; transform: translateX(-50%) scale(1); }
  50%      { opacity: 1;    transform: translateX(-50%) scale(1.08); }
}

.nf-hero__orb--violet {
  width: clamp(500px, 70vw, 960px) !important;
  height: clamp(360px, 45vw, 620px) !important;
  bottom: -32% !important;
  right: -16% !important;
  left: auto !important;
  background: radial-gradient(circle, rgba(124, 214, 0, 0.14), transparent 70%) !important;
  filter: blur(80px) !important;
  animation: none !important;
}

/* lightning layer A — framing bolts */
.nf-hero__grid {
  position: absolute !important;
  inset: 0 !important;
  z-index: 0 !important;
  pointer-events: none !important;
  background: center / cover no-repeat
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 600' preserveAspectRatio='xMidYMid slice'%3E%3Cg fill='none' stroke='%23a3ff12' stroke-width='2.4' stroke-linejoin='round' stroke-linecap='round'%3E%3Cpath d='M250 -20 L300 120 L250 150 L330 320 L292 342 L360 600'/%3E%3Cpath d='M300 120 L362 150'/%3E%3Cpath d='M330 320 L404 300'/%3E%3Cpath d='M950 -20 L900 140 L956 168 L880 340 L928 362 L860 600'/%3E%3Cpath d='M900 140 L846 164'/%3E%3Cpath d='M880 340 L818 322'/%3E%3C/g%3E%3C/svg%3E");
  filter: drop-shadow(0 0 6px #a3ff12) drop-shadow(0 0 18px #7cd600);
  mix-blend-mode: screen;
  opacity: 0.16;
  animation: sm-strike-a 4.5s steps(1, end) infinite;
}

@keyframes sm-strike-a {
  0%, 100% { opacity: 0.16; }
  2%  { opacity: 0.95; }
  4%  { opacity: 0.32; }
  6%  { opacity: 0.72; }
  8%  { opacity: 0.16; }
  42% { opacity: 0.16; }
  44% { opacity: 0.85; }
  46% { opacity: 0.22; }
  48% { opacity: 0.16; }
}

/* central flare + lightning layer B */
.nf-hero__glow {
  position: absolute !important;
  inset: 0 !important;
  z-index: 0 !important;
  pointer-events: none !important;
  background:
    radial-gradient(34% 40% at 50% 26%, rgba(163, 255, 18, 0.22), transparent 68%),
    radial-gradient(70% 60% at 50% 0%, rgba(124, 214, 0, 0.10), transparent 76%) !important;
  animation: sm-energy 4.5s ease-in-out infinite;
}

@keyframes sm-energy {
  0%, 100% { opacity: 0.85; }
  50%      { opacity: 1; }
}

.nf-hero__glow::before {
  content: "";
  position: absolute;
  inset: 0;
  background: center / cover no-repeat
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 600' preserveAspectRatio='xMidYMid slice'%3E%3Cg fill='none' stroke='%23c6ff63' stroke-width='2' stroke-linejoin='round' stroke-linecap='round'%3E%3Cpath d='M600 -20 L556 110 L612 132 L540 300 L598 322 L520 600'/%3E%3Cpath d='M556 110 L516 130'/%3E%3Cpath d='M540 300 L468 286'/%3E%3Cpath d='M150 -20 L186 150 L150 320'/%3E%3Cpath d='M1050 -20 L1016 160 L1052 330'/%3E%3C/g%3E%3C/svg%3E");
  filter: drop-shadow(0 0 6px #a3ff12) drop-shadow(0 0 16px #7cd600);
  mix-blend-mode: screen;
  opacity: 0.12;
  animation: sm-strike-b 5.2s steps(1, end) infinite;
  animation-delay: 2.2s;
}

@keyframes sm-strike-b {
  0%, 100% { opacity: 0.12; }
  2%   { opacity: 0.85; }
  3.5% { opacity: 0.2; }
  5%   { opacity: 0.6; }
  7%   { opacity: 0.12; }
  55%  { opacity: 0.12; }
  57%  { opacity: 0.7; }
  59%  { opacity: 0.18; }
}

.nf-hero__glow::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 200px;
  background: linear-gradient(180deg, transparent, var(--nf-bg));
  pointer-events: none;
}

/* ---- Section headings → green neon pop ---- */
.nf-section-head h2 strong,
.nf-section-head h2 .nf-grad-text {
  filter: drop-shadow(0 0 14px rgba(163, 255, 18, 0.4));
}

/* ---- Footer wordmark → faint chrome-green watermark ---- */
.nf-footer__wordmark {
  background: linear-gradient(180deg, rgba(163, 255, 18, 0.16), rgba(124, 214, 0, 0.02)) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  color: transparent !important;
  opacity: 0.6 !important;
}

/* ---- Primary buttons / pills → neon edge ---- */
.nf-button--primary {
  box-shadow:
    0 14px 36px -12px rgba(163, 255, 18, 0.8),
    0 0 0 1px rgba(163, 255, 18, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.35) !important;
}

.nf-pill__dot,
.nf-eyebrow::before,
.nf-feed__dot {
  box-shadow: 0 0 12px rgba(163, 255, 18, 0.9), 0 0 26px rgba(124, 214, 0, 0.6) !important;
}

::selection { background: rgba(163, 255, 18, 0.34); color: #0a1400; }

/* =====================================================================
   FINAL FIX — fully transparent navbar + remove background seams ("cortes")
   Appended last so it wins the cascade over every earlier layer.
   ===================================================================== */

/* ---- Navbar: 100% transparent in every state (no bg, blur, border, shadow) ---- */
.nf-nav-wrap,
.nf-nav-wrap.is-scrolled {
  background: transparent !important;
}
.nf-nav,
.nf-nav-wrap.is-scrolled .nf-nav {
  background: transparent !important;
  background-image: none !important;
  border: 1px solid transparent !important;
  box-shadow: none !important;
  -webkit-backdrop-filter: none !important;
  backdrop-filter: none !important;
}

/* ---- Remove the inset vignette frame that darkened the hero edges ----
   It created a dark band under the (now transparent) navbar and a seam where
   the hero met the next section. The fixed global background already carries
   the vignette, so the per-section frame is redundant. */
.nf-hero {
  box-shadow: none !important;
}

/* ---- Soft-fade every decorative hero layer at BOTH ends ----
   .nf-hero__bg only faded in at the top; overflow:hidden then clipped it flat
   at the bottom, leaving a hard horizontal cut where the hero met the next
   section. Mask both ends so the orbs/grid/glow dissolve smoothly. */
.nf-hero__bg {
  -webkit-mask-image: linear-gradient(180deg, transparent 0, #000 90px, #000 calc(100% - 140px), transparent 100%) !important;
  mask-image: linear-gradient(180deg, transparent 0, #000 90px, #000 calc(100% - 140px), transparent 100%) !important;
}

/* ---- Kill the hard seam at the bottom of the hero glow ----
   Its ::after faded to a SOLID --nf-bg colour that didn't match the cinematic
   global background, leaving a visible band. Drop it so the continuous fixed
   background shows through with no edge. */
.nf-hero__glow::after {
  background: transparent !important;
  height: 0 !important;
}

/* ---- Product cards → full-bleed poster (image cover, text overlaid) ----
   Matches the reference: portrait card, product art filling edge-to-edge with
   a dark scrim at the bottom, and title / subtitle / price + a solid pill
   button overlaid on top. Replaces the old "small image in a padded green box"
   look that read as a square. */
.nf-products__grid .nf-product-card,
.nf-products__slider .nf-product-card,
.nf-product-card {
  min-height: 0 !important;
  aspect-ratio: 3 / 4.25 !important;
  border-radius: 18px !important;
  background: #0b0a12 !important;
  overflow: hidden !important;
}

/* media = the WHOLE card, image covers edge-to-edge (no padding/green box) */
.nf-product-card__media {
  position: absolute !important;
  inset: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  height: auto !important;
  aspect-ratio: auto !important;
  border-radius: inherit !important;
  background: #0b0a12 !important;
  overflow: hidden !important;
}
.nf-product-card__media img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center top !important;
  padding: 0 !important;
  filter: none !important;
}
/* bottom scrim so the overlaid text stays readable over any artwork */
.nf-product-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(to top,
    rgba(8, 7, 14, 0.97) 0%,
    rgba(8, 7, 14, 0.86) 24%,
    rgba(8, 7, 14, 0.32) 48%,
    transparent 70%);
}
.nf-product-card:hover .nf-product-card__media img {
  transform: scale(1.05) !important;
}

/* text block overlaid at the bottom-left */
.nf-product-card__content {
  position: absolute !important;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 8px !important;
  padding: 18px !important;
  background: none !important;
  text-align: left !important;
}
.nf-product-card__content > div:first-child { display: flex; flex-direction: column; gap: 2px; }
.nf-product-card__content h3 {
  margin: 0 !important;
  font-size: 1.5rem !important;
  font-weight: 800 !important;
  line-height: 1.1 !important;
  color: #fff !important;
}
.nf-product-card__content p {
  margin: 0 !important;
  min-height: 0 !important;
  font-size: 0.85rem !important;
  color: rgba(231, 236, 244, 0.62) !important;
  -webkit-line-clamp: 1 !important;
}

.nf-product-card__buy {
  border-top: 0 !important;
  margin-top: 2px !important;
  padding-top: 0 !important;
  gap: 12px !important;
}
.nf-product-card__avail { display: none !important; }
.nf-product-card__priceblock { justify-content: flex-start !important; }
.nf-product-card__price {
  font-size: 1.4rem !important;
  font-weight: 800 !important;
}

/* solid pill button — always filled (brand green), sized to its text, left aligned */
.nf-product-card__action {
  width: auto !important;
  align-self: flex-start !important;
  height: 40px !important;
  padding: 0 20px !important;
  background: var(--nf-grad) !important;
  border-color: transparent !important;
  color: #0e2400 !important;
  box-shadow: 0 10px 26px -10px rgba(163, 255, 18, 0.7) !important;
}
.nf-product-card:hover .nf-product-card__action {
  filter: brightness(1.06) !important;
}

/* ---- Stats: clean, boxless cards (drop the grey glass panel) ----
   Just the icon chip + numbers + text sitting on the page background, like a
   minimal "features" row. Overrides the !important glass-card rules above. */
.nf-stats .nf-stat-card {
  background: none !important;
  border: 0 !important;
  box-shadow: none !important;
  -webkit-backdrop-filter: none !important;
  backdrop-filter: none !important;
  border-radius: 0 !important;
  /* overflow:hidden (from the base card) was clipping the icon's glow into a
     flat-cut shape now that the box is gone — let it spill onto the page */
  overflow: visible !important;
  padding: 22px 6px 6px !important;
  min-height: 0 !important;
}
.nf-stats .nf-stat-card:hover {
  background: none !important;
  border: 0 !important;
  box-shadow: none !important;
  transform: none !important;
}
.nf-stats .nf-stat-card::before { display: none !important; }

/* =====================================================================
   GREEN CTA — recolour every magenta gradient button to the theme green.
   The Tailwind arbitrary classes from-[#D304B8] / to-[#930080] are used by
   Add to Cart, Checkout, Buy, Login/Register modals, ticket create, etc.
   custom.css loads after built.css, so overriding the generated utilities
   recolours all of them at once (with dark text for contrast on neon green).
   ===================================================================== */
.from-\[\#D304B8\] {
  --tw-gradient-from: #a3ff12 var(--tw-gradient-from-position) !important;
  --tw-gradient-to: rgb(163 255 18 / 0) var(--tw-gradient-to-position) !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important;
  color: #0a1500 !important;
}
.to-\[\#930080\] {
  --tw-gradient-to: #5fbf00 var(--tw-gradient-to-position) !important;
}

/* =====================================================================
   CATEGORIES GRID — "Explore our products" icon tiles (Spring green).
   ===================================================================== */
.nf-cats__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(12px, 1.4vw, 20px);
  margin-top: clamp(28px, 4vw, 48px);
}
@media (min-width: 640px) {
  .nf-cats__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (min-width: 1024px) {
  .nf-cats__grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

.nf-cats__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 150px;
  padding: 26px 18px;
  border: 1px solid var(--nf-border);
  border-radius: 18px;
  background: var(--nf-panel);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  color: var(--nf-text);
  text-decoration: none;
  text-align: center;
  isolation: isolate;
  transition: transform .28s cubic-bezier(.2,.7,0,1), border-color .28s ease, background .28s ease, box-shadow .28s ease;
}
.nf-cats__card:hover {
  transform: translateY(-4px);
  border-color: rgba(163, 255, 18, 0.45);
  background: rgba(163, 255, 18, 0.05);
  box-shadow: 0 18px 44px -22px rgba(163, 255, 18, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.nf-cats__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  color: rgba(245, 243, 255, 0.7);
  transition: color .28s ease, transform .28s ease;
}
.nf-cats__icon svg { width: 34px; height: 34px; }
.nf-cats__icon img { width: 42px; height: 42px; object-fit: contain; }
.nf-cats__card:hover .nf-cats__icon { color: #a3ff12; transform: scale(1.08); }

.nf-cats__monogram {
  font-family: 'Syne', 'Space Grotesk', system-ui, sans-serif;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  background: var(--nf-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.nf-cats__name {
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #fff;
}

.nf-cats__count {
  margin-top: -6px;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(245, 243, 255, 0.45);
}
.nf-cats__card:hover .nf-cats__count { color: rgba(163, 255, 18, 0.85); }

/* =====================================================================
   CATALOG — lusive-style products page: search + top category pills + grid.
   ===================================================================== */
.nf-catalog__panel {
  margin: clamp(22px, 3vw, 36px) 0 clamp(20px, 2.4vw, 30px);
  padding: clamp(20px, 2.4vw, 30px);
  border: 1px solid var(--nf-border);
  border-radius: 22px;
  background:
    radial-gradient(120% 140% at 0% 0%, rgba(163, 255, 18, 0.06), transparent 55%),
    var(--nf-panel);
  box-shadow: 0 24px 60px -36px rgba(0, 0, 0, 0.9), inset 0 1px 0 rgba(255, 255, 255, 0.04);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

/* labelled groups (Keyword / Category) */
.nf-catalog__field { margin-bottom: clamp(16px, 2vw, 22px); }
.nf-catalog__field--last { margin-bottom: 0; }
.nf-catalog__label {
  display: block;
  margin: 0 0 10px 2px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245, 243, 255, 0.45);
}

.nf-catalog__search {
  position: relative;
  display: flex;
  align-items: center;
}
.nf-catalog__search svg {
  position: absolute;
  left: 18px;
  width: 18px;
  height: 18px;
  color: rgba(245, 243, 255, 0.45);
  pointer-events: none;
  transition: color .2s ease;
}
.nf-catalog__search input {
  width: 100%;
  height: 52px;
  padding: 0 18px 0 48px;
  border: 1px solid var(--nf-border);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--nf-text);
  font-size: 0.95rem;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.nf-catalog__search input::placeholder { color: rgba(245, 243, 255, 0.4); }
.nf-catalog__search input:hover { background: rgba(255, 255, 255, 0.05); }
.nf-catalog__search input:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(163, 255, 18, 0.55);
  box-shadow: 0 0 0 3px rgba(163, 255, 18, 0.14);
}
.nf-catalog__search:focus-within svg { color: rgba(163, 255, 18, 0.8); }

.nf-catalog__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.nf-chip {
  display: inline-flex;
  align-items: center;
  height: 40px;
  padding: 0 18px;
  border: 1px solid var(--nf-border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: rgba(245, 243, 255, 0.74);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: color .2s ease, border-color .2s ease, background .2s ease, transform .15s ease, box-shadow .2s ease;
}
.nf-chip:hover {
  color: #fff;
  background: rgba(163, 255, 18, 0.08);
  border-color: rgba(163, 255, 18, 0.45);
  transform: translateY(-1px);
}
.nf-chip:active { transform: translateY(0); }
.nf-chip.is-active {
  color: #0a1500;
  background: var(--nf-grad);
  border-color: transparent;
  box-shadow: 0 10px 26px -10px rgba(163, 255, 18, 0.85);
}

.nf-catalog__grid { margin-top: clamp(20px, 2.4vw, 30px); }

.nf-catalog__empty {
  margin-top: 40px;
  text-align: center;
  color: rgba(245, 243, 255, 0.55);
}
.nf-catalog__empty svg {
  width: 56px;
  height: 56px;
  margin: 0 auto 14px;
  color: rgba(245, 243, 255, 0.25);
}

/* =====================================================================
   CHILL MUSIC — floating play/pause control (bottom-left).
   ===================================================================== */
.nf-music {
  position: fixed;
  left: clamp(14px, 2vw, 26px);
  bottom: clamp(14px, 2vw, 26px);
  z-index: 60;
}
.nf-music__btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  border: 1px solid var(--nf-border, rgba(255, 255, 255, 0.1));
  background: rgba(16, 20, 10, 0.72);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  color: rgba(245, 243, 255, 0.82);
  cursor: pointer;
  box-shadow: 0 14px 34px -16px rgba(0, 0, 0, 0.8);
  transition: transform .28s cubic-bezier(.2,.7,0,1), border-color .28s ease, background .28s ease, color .28s ease, box-shadow .28s ease;
}
.nf-music__btn:hover {
  transform: translateY(-3px);
  color: #fff;
  border-color: rgba(163, 255, 18, 0.5);
  box-shadow: 0 18px 40px -18px rgba(163, 255, 18, 0.7);
}
.nf-music__btn:focus-visible {
  outline: none;
  border-color: rgba(163, 255, 18, 0.7);
  box-shadow: 0 0 0 3px rgba(163, 255, 18, 0.25);
}

/* Default (paused): show the note icon, hide the equalizer. */
.nf-music__ico { width: 22px; height: 22px; }
.nf-music__eq { display: none; align-items: flex-end; gap: 3px; height: 18px; }
.nf-music__eq i {
  width: 3px;
  height: 100%;
  border-radius: 2px;
  background: #a3ff12;
  transform-origin: bottom;
  animation: nf-eq 0.9s ease-in-out infinite;
}
.nf-music__eq i:nth-child(2) { animation-delay: .15s; }
.nf-music__eq i:nth-child(3) { animation-delay: .30s; }
.nf-music__eq i:nth-child(4) { animation-delay: .45s; }

/* Playing: swap to the animated equalizer + green glow. */
.nf-music.is-playing .nf-music__btn {
  color: #0a1500;
  background: var(--nf-grad, linear-gradient(135deg, #a3ff12, #6fd80a));
  border-color: transparent;
  box-shadow: 0 16px 40px -16px rgba(163, 255, 18, 0.85);
}
.nf-music.is-playing .nf-music__ico { display: none; }
.nf-music.is-playing .nf-music__eq { display: inline-flex; }
.nf-music.is-playing .nf-music__eq i { background: #0a1500; }

@keyframes nf-eq {
  0%, 100% { transform: scaleY(0.35); }
  50%      { transform: scaleY(1); }
}

/* Keep the music control clear of the floating social stack on phones. */
@media (max-width: 560px) {
  .nf-music__btn { width: 46px; height: 46px; }
}
@media (prefers-reduced-motion: reduce) {
  .nf-music__eq i { animation: none; }
  .nf-music__btn { transition: none; }
}