/* ============================================================
   NOVEDOX · lux-alive layer (design only)
   The "living" polish pass: aurora hero, gold dust, border beams,
   drawn flourishes, kicker lines, progress bar, tilt states.
   Loaded after lux.css — adds, never removes. Every decorative
   animation is gated behind html.nvx-anim (never set under
   prefers-reduced-motion), and the global reduced-motion
   kill-switch in styles.min.css is a second safety net.
   ============================================================ */

/* ---------------------------------------------- scroll progress bar */
#lux-progress {
  position: fixed;
  inset: 0 0 auto 0;
  height: 3px;
  z-index: 95;
  pointer-events: none;
}
#lux-progress > span {
  display: block;
  height: 100%;
  transform: scaleX(0);
  transform-origin: 0 50%;
  background: linear-gradient(90deg, #B8912A, #E8C75B 55%, #D4AF37);
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.55);
}

/* ---------------------------------------------- navbar elevation */
#nvx-nav {
  transition: border-color 0.35s ease, box-shadow 0.35s ease, background-color 0.35s ease;
}
#nvx-nav.is-scrolled {
  border-bottom-color: rgba(212, 175, 55, 0.28);
  box-shadow: 0 12px 32px -20px rgba(11, 29, 38, 0.25);
}
/* Brand mark: gold halo on hover */
#nvx-nav a[aria-label="NOVEDOX home"] img {
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), filter 0.5s ease;
}
#nvx-nav a[aria-label="NOVEDOX home"]:hover img {
  filter: drop-shadow(0 4px 12px rgba(212, 175, 55, 0.5));
}
/* Wordmark "DOX" gradient breathes like the display headings */
.nvx-anim .nvx-brand [class*="bg-clip-text"] {
  background-size: 200% auto;
  animation: luxSheen 7s ease-in-out infinite;
}

/* ---------------------------------------------- hero: living backdrop */
.lux-hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.lux-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(11, 29, 38, 0.045) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(11, 29, 38, 0.045) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(72% 64% at 50% 30%, #000 35%, transparent 100%);
  mask-image: radial-gradient(72% 64% at 50% 30%, #000 35%, transparent 100%);
}
.nvx-anim .lux-hero-grid { animation: luxGridPan 60s linear infinite; }
@keyframes luxGridPan {
  to { background-position: 56px 56px; }
}

.lux-orb {
  position: absolute;
  border-radius: 9999px;
  filter: blur(70px);
  will-change: transform;
}
.lux-orb--gold {
  width: 34rem; height: 34rem;
  left: -8rem; top: -10rem;
  background: radial-gradient(closest-side, rgba(212, 175, 55, 0.20), transparent 70%);
}
.lux-orb--sea {
  width: 30rem; height: 30rem;
  right: -6rem; top: 4rem;
  background: radial-gradient(closest-side, rgba(14, 203, 129, 0.11), transparent 70%);
}
.lux-orb--sky {
  width: 36rem; height: 36rem;
  left: 32%; bottom: -16rem;
  background: radial-gradient(closest-side, rgba(30, 58, 106, 0.10), transparent 70%);
}
.nvx-anim .lux-orb--gold { animation: luxDriftA 22s ease-in-out infinite alternate; }
.nvx-anim .lux-orb--sea  { animation: luxDriftB 27s ease-in-out infinite alternate; }
.nvx-anim .lux-orb--sky  { animation: luxDriftA 32s ease-in-out infinite alternate-reverse; }
@keyframes luxDriftA {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to   { transform: translate3d(4rem, 2.5rem, 0) scale(1.12); }
}
@keyframes luxDriftB {
  from { transform: translate3d(0, 0, 0) scale(1.08); }
  to   { transform: translate3d(-3.5rem, 3rem, 0) scale(0.96); }
}

/* ---- rising gold dust (visible only when motion is armed) ---- */
.lux-dust { display: none; }
.nvx-anim .lux-dust {
  display: block;
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.lux-dust i {
  position: absolute;
  bottom: -14px;
  width: 5px; height: 5px;
  border-radius: 9999px;
  background: radial-gradient(circle at 32% 30%, #F5E3A0, #D4AF37 62%, rgba(212, 175, 55, 0));
  box-shadow: 0 0 6px rgba(212, 175, 55, 0.75);
  opacity: 0;
  animation: luxRiseA 12s linear infinite;
  will-change: transform, opacity;
}
@keyframes luxRiseA {
  0%   { transform: translate3d(0, 0, 0) scale(0.6); opacity: 0; }
  8%   { opacity: 0.65; }
  50%  { transform: translate3d(14px, -46vh, 0) scale(1); opacity: 0.5; }
  92%  { opacity: 0.4; }
  100% { transform: translate3d(-6px, -92vh, 0) scale(0.7); opacity: 0; }
}
@keyframes luxRiseB {
  0%   { transform: translate3d(0, 0, 0) scale(0.7); opacity: 0; }
  10%  { opacity: 0.55; }
  55%  { transform: translate3d(-18px, -50vh, 0) scale(1.05); opacity: 0.45; }
  90%  { opacity: 0.35; }
  100% { transform: translate3d(8px, -94vh, 0) scale(0.6); opacity: 0; }
}
.lux-dust i:nth-child(1)  { left: 6%;  width: 4px; height: 4px; animation-duration: 13s; animation-delay: 0s; }
.lux-dust i:nth-child(2)  { left: 14%; width: 3px; height: 3px; animation-name: luxRiseB; animation-duration: 16s; animation-delay: 2.4s; }
.lux-dust i:nth-child(3)  { left: 22%; width: 5px; height: 5px; animation-duration: 11s; animation-delay: 5s; }
.lux-dust i:nth-child(4)  { left: 30%; width: 3px; height: 3px; animation-name: luxRiseB; animation-duration: 17s; animation-delay: 1.2s; }
.lux-dust i:nth-child(5)  { left: 38%; width: 4px; height: 4px; animation-duration: 14s; animation-delay: 7.5s; }
.lux-dust i:nth-child(6)  { left: 46%; width: 6px; height: 6px; animation-name: luxRiseB; animation-duration: 12s; animation-delay: 3.6s; }
.lux-dust i:nth-child(7)  { left: 54%; width: 3px; height: 3px; animation-duration: 18s; animation-delay: 0.8s; }
.lux-dust i:nth-child(8)  { left: 62%; width: 4px; height: 4px; animation-name: luxRiseB; animation-duration: 13.5s; animation-delay: 6.2s; }
.lux-dust i:nth-child(9)  { left: 70%; width: 5px; height: 5px; animation-duration: 15s; animation-delay: 2s; }
.lux-dust i:nth-child(10) { left: 78%; width: 3px; height: 3px; animation-name: luxRiseB; animation-duration: 16.5s; animation-delay: 8.4s; }
.lux-dust i:nth-child(11) { left: 85%; width: 4px; height: 4px; animation-duration: 12.5s; animation-delay: 4.4s; }
.lux-dust i:nth-child(12) { left: 91%; width: 5px; height: 5px; animation-name: luxRiseB; animation-duration: 14.5s; animation-delay: 1.6s; }
.lux-dust i:nth-child(13) { left: 47%; width: 3px; height: 3px; animation-duration: 19s; animation-delay: 9.6s; }
.lux-dust i:nth-child(14) { left: 26%; width: 4px; height: 4px; animation-name: luxRiseB; animation-duration: 15.5s; animation-delay: 11s; }
/* Fewer specks on small screens */
@media (max-width: 640px) {
  .lux-dust i:nth-child(n + 8) { display: none; }
}

/* ---------------------------------------------- hero: product motion */
.nvx-anim .lux-float-soft { animation: luxFloatSoft 7s ease-in-out infinite; }
@keyframes luxFloatSoft {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}
/* Glow pool + halo breathe in the same rhythm */
.nvx-anim .lux-shadow-breathe { animation: luxBreathe 7s ease-in-out infinite; }
@keyframes luxBreathe {
  0%, 100% { transform: scaleX(1); opacity: 1; }
  50%      { transform: scaleX(0.88); opacity: 0.65; }
}
.nvx-anim .nvx-product-glow::before { animation: luxGlowBreathe 7s ease-in-out infinite; }
@keyframes luxGlowBreathe {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.6; }
}

/* ---------------------------------------------- hero: drawn flourish */
.lux-flourish {
  position: absolute;
  left: -2%;
  bottom: -0.24em;
  width: 104%;
  height: 0.34em;
  overflow: visible;
}
.lux-flourish path {
  stroke: #D4AF37;
  stroke-width: 5;
  fill: none;
  stroke-linecap: round;
  opacity: 0.85;
}
.nvx-anim .lux-flourish path {
  stroke-dasharray: 300;
  stroke-dashoffset: 300;
}
.nvx-anim .lux-stagger.is-in .lux-flourish path {
  animation: luxDraw 1.1s cubic-bezier(0.65, 0, 0.35, 1) 0.85s forwards;
}
@keyframes luxDraw { to { stroke-dashoffset: 0; } }

/* ---------------------------------------------- hero: CTA pulse ring */
.nvx-anim .lux-pulse-cta {
  animation: luxRing 3.4s cubic-bezier(0.4, 0, 0.2, 1) infinite 2.2s;
}
@keyframes luxRing {
  0%   { box-shadow: 0 8px 24px -10px rgba(11, 29, 38, 0.4), 0 0 0 0 rgba(212, 175, 55, 0.45); }
  45%  { box-shadow: 0 8px 24px -10px rgba(11, 29, 38, 0.4), 0 0 0 14px rgba(212, 175, 55, 0); }
  100% { box-shadow: 0 8px 24px -10px rgba(11, 29, 38, 0.4), 0 0 0 14px rgba(212, 175, 55, 0); }
}

/* ---------------------------------------------- hero: CTA row
   The two hero buttons sit side by side at every width, including small
   phones. On narrow screens they share the row equally; the label is kept
   on one line and allowed to tighten rather than wrap or overflow. */
.lux-cta {
  white-space: nowrap;
  line-height: 1.15;
}
/* Cap the row so the pair never stretches oddly wide on a phone, while the
   desktop layout (sm: and up) keeps its natural left-aligned sizing. */
@media (max-width: 639.98px) {
  .lux-cta-row {
    margin-inline: auto;
    width: 100%;
    max-width: 26rem;
  }
  .lux-cta {
    letter-spacing: -0.012em;
  }
}
/* Very small handsets (iPhone SE and similar): trim padding and type a touch
   more so both labels still fit comfortably on one line. The primary button
   also drops its arrow there — the label alone carries the action. */
@media (max-width: 379.98px) {
  .lux-cta-row { gap: 0.5rem; }
  .lux-cta {
    padding-inline: 0.625rem;
    font-size: 0.8125rem;
    letter-spacing: -0.024em;
    gap: 0.25rem;
  }
  .lux-cta svg { display: none; }
}

/* ---------------------------------------------- trust chips */
.lux-chip {
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}
.lux-chip:hover {
  transform: translateY(-3px);
  border-color: rgba(212, 175, 55, 0.5);
  background-color: #FFFFFF;
  box-shadow: 0 12px 26px -14px rgba(212, 175, 55, 0.45);
}

/* ---------------------------------------------- rotating border beam */
@property --lux-a {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}
.lux-beam { position: relative; }
/* ::after (not ::before) so it never collides with .nvx-aurora::before */
.lux-beam::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 40;
  border-radius: inherit;
  padding: 1.5px;
  background: conic-gradient(
    from var(--lux-a),
    transparent 0deg 306deg,
    rgba(212, 175, 55, 0.55) 330deg,
    #F0D98C 342deg,
    rgba(212, 175, 55, 0.55) 354deg,
    transparent 360deg
  );
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  pointer-events: none;
}
.nvx-anim .lux-beam::after { animation: luxBeamSpin 7s linear infinite; }
@keyframes luxBeamSpin { to { --lux-a: 360deg; } }

/* ---------------------------------------------- market cards: tilt */
[data-lux-tilt] {
  transition: transform 0.2s ease-out, border-color 0.25s ease, box-shadow 0.25s ease;
  transform-style: preserve-3d;
}

/* ---------------------------------------------- 3 steps: living path */
.nvx-anim .lux-connector { overflow: visible; }
.nvx-anim .lux-connector::after {
  content: "";
  position: absolute;
  top: -1px;
  bottom: -1px;
  left: -20%;
  width: 18%;
  border-radius: 2px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.9), transparent);
  animation: luxTravel 3.6s ease-in-out infinite;
}
@keyframes luxTravel { to { left: 102%; } }
/* Step chips flash gold once as they arrive (staggered by data-d) */
.nvx-anim .nvx-reveal.is-in .lux-step {
  animation: luxStepGlow 1.3s cubic-bezier(0.16, 1, 0.3, 1) 0.35s;
}
@keyframes luxStepGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
  45% {
    border-color: rgba(212, 175, 55, 0.7);
    color: #8C6D1F;
    box-shadow: 0 0 30px 2px rgba(212, 175, 55, 0.35);
  }
}

/* ---------------------------------------------- movers rows */
#nvx-gainers > div,
#nvx-losers > div {
  transition: background-color 0.25s ease;
}
#nvx-gainers > div:hover,
#nvx-losers > div:hover {
  background-color: rgba(212, 175, 55, 0.06);
}

/* ---------------------------------------------- FAQ: gold accents */
details.group {
  transition: border-color 0.35s ease, box-shadow 0.35s ease;
}
details.group:hover {
  border-color: rgba(212, 175, 55, 0.45);
  box-shadow: 0 14px 34px -24px rgba(11, 29, 38, 0.3);
}
details.group[open] { border-color: rgba(212, 175, 55, 0.45); }
details.group[open] summary { color: #8C6D1F; }
details.group summary { transition: color 0.3s ease; }

/* ---------------------------------------------- footer: gold touches */
footer a[aria-label] {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              background-color 0.3s ease, border-color 0.3s ease,
              color 0.3s ease, box-shadow 0.3s ease;
}
footer a[aria-label]:hover {
  transform: translateY(-3px);
  background: linear-gradient(135deg, #E5C55C, #B8912A);
  border-color: transparent;
  color: #0B1D26;
  box-shadow: 0 10px 22px -8px rgba(212, 175, 55, 0.55);
}
footer input:focus {
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.16);
}

/* ---------------------------------------------- back-to-top button */
#lux-top {
  position: fixed;
  right: 1.25rem;
  bottom: calc(5.25rem + env(safe-area-inset-bottom));
  z-index: 45;
  display: grid;
  place-items: center;
  height: 46px;
  width: 46px;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  color: #0B1D26;
  background: linear-gradient(135deg, #EBCF74, #C49E31);
  box-shadow: 0 12px 28px -10px rgba(184, 145, 42, 0.65);
  opacity: 0;
  transform: translateY(14px) scale(0.9);
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}
#lux-top.is-on {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
#lux-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px -10px rgba(184, 145, 42, 0.8);
}
#lux-top svg { height: 20px; width: 20px; }
@media (min-width: 1024px) {
  #lux-top { right: 1.75rem; bottom: 1.75rem; }
}

/* ============================================================
   v2 · deep-lux pass — light/dark band rhythm, readability,
   richer hero. Dark bands: ticker, sessions, stats, closing CTA.
   ============================================================ */

/* ---- readability: lift the lightest grey on white surfaces ---- */
.text-nvx-muted { color: #5A6673; }

/* ---- hero: warm champagne wash + stronger gold orb ---- */
#top {
  background:
    radial-gradient(90% 60% at 78% 0%, rgba(212, 175, 55, 0.10), transparent 60%),
    linear-gradient(180deg, #FCF9F0 0%, #F7F9FB 42%, #F7F9FB 100%);
}
.lux-orb--gold {
  background: radial-gradient(closest-side, rgba(212, 175, 55, 0.26), transparent 70%);
}

/* ---- hero: gold market sparkline that draws itself ---- */
.lux-spark {
  position: absolute;
  left: 0; right: 0;
  top: 27%;
  height: 16%;
  width: 100%;
  opacity: 0.85;
}
.lux-spark-line {
  fill: none;
  stroke-width: 2.75;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 6px rgba(212, 175, 55, 0.55));
}
.lux-spark-fill { opacity: 0.55; }
.lux-spark-dot { fill: #D4AF37; opacity: 0.85; }
.nvx-anim .lux-spark-line {
  stroke-dasharray: 1500;
  stroke-dashoffset: 1500;
  animation: luxSparkDraw 2.6s cubic-bezier(0.65, 0, 0.35, 1) 0.6s forwards;
}
.nvx-anim .lux-spark-fill {
  opacity: 0;
  animation: luxSparkFillIn 1.2s ease 2.5s forwards;
}
.nvx-anim .lux-spark-dot {
  opacity: 0;
  animation: luxSparkDot 2.2s ease-in-out 3.2s infinite;
}
@keyframes luxSparkDraw { to { stroke-dashoffset: 0; } }
@keyframes luxSparkFillIn { to { opacity: 0.55; } }
@keyframes luxSparkDot {
  0%, 100% { opacity: 0.9; }
  50%      { opacity: 0.3; }
}
@media (max-width: 1023px) { .lux-spark { display: none; } }

/* ---- dark ticker tape (classes set in markup; live colors here) ---- */
.lux-ticker-dark .text-nvx-green { color: #34D67E; }
.lux-ticker-dark .text-nvx-red { color: #F87171; }
.lux-ticker-dark .text-nvx-muted { color: #7E8FA0; }

/* ---- shared dark-band vocabulary ---- */
.lux-dark { color: #E8ECF2; }
.lux-dark h2 { color: #FFFFFF; }
.lux-dark .lux-kicker { color: #E2C063; }
.lux-dark .text-nvx-dim { color: #B9C2CC; }
.lux-dark .text-nvx-muted { color: #8FA0AE; }
.lux-dark .text-nvx-text { color: #F1F4F8; }
.lux-dark .text-nvx-green { color: #34D67E; }
.lux-dark .text-nvx-red { color: #F87171; }
.lux-dark .nvx-glass {
  background: rgba(13, 27, 42, 0.68) !important;
  border-color: rgba(255, 255, 255, 0.10) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
.lux-dark .nvx-glass:hover {
  border-color: rgba(212, 175, 55, 0.45) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 26px 60px -24px rgba(0, 0, 0, 0.5);
}

/* ---- global sessions: midnight band, glowing map ---- */
.lux-sessions {
  background:
    radial-gradient(60% 50% at 50% 0%, rgba(212, 175, 55, 0.10), transparent 70%),
    radial-gradient(50% 60% at 85% 100%, rgba(30, 58, 106, 0.35), transparent 70%),
    linear-gradient(180deg, #0A1826 0%, #0B1D26 55%, #0A1622 100%);
}
.lux-sessions img[alt^="World map"] {
  filter: grayscale(1) brightness(1.9) sepia(0.8) saturate(2.2) hue-rotate(-6deg) !important;
  opacity: 0.6 !important;
  mix-blend-mode: screen;
}
.lux-sessions svg[aria-hidden="true"] path { stroke: rgba(226, 192, 99, 0.35); }

/* ---- stats strip: navy card, champagne-gradient numbers ---- */
.lux-stats {
  background:
    radial-gradient(70% 130% at 50% 0%, rgba(212, 175, 55, 0.12), transparent 60%),
    linear-gradient(160deg, #0D2130 0%, #0B1D26 60%, #0A1622 100%);
  border-color: rgba(212, 175, 55, 0.22);
  box-shadow: 0 30px 70px -35px rgba(11, 29, 38, 0.55);
}
.lux-stats .h-11.w-11 {
  background: rgba(212, 175, 55, 0.12);
  color: #E2C063;
}
.lux-stats [data-count] {
  background: linear-gradient(135deg, #F5E3A0, #D4AF37 55%, #C49E31);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent !important;
  -webkit-text-fill-color: transparent;
}

/* ---- closing CTA: navy-gold finale ---- */
.lux-cta-dark {
  background:
    radial-gradient(55% 80% at 20% 10%, rgba(212, 175, 55, 0.16), transparent 60%),
    radial-gradient(50% 70% at 85% 90%, rgba(30, 58, 106, 0.45), transparent 65%),
    linear-gradient(160deg, #0D2130 0%, #0B1D26 55%, #0A1622 100%);
  border-color: rgba(212, 175, 55, 0.25);
}

/* Gold pill buttons: same lift language as the navy ones */
a[class*="bg-nvx-gold"] {
  transition: background-color 0.3s ease,
              transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.35s ease;
  box-shadow: 0 10px 28px -12px rgba(212, 175, 55, 0.55);
}
a[class*="bg-nvx-gold"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px -12px rgba(212, 175, 55, 0.7);
}
a[class*="bg-nvx-gold"]:active { transform: translateY(0) scale(0.98); }

/* ---- market cards: midnight showcase — the artwork leads ---- */
.lux-mkt {
  background: linear-gradient(160deg, #102536 0%, #0B1D26 60%, #0A1622 100%);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 44px -24px rgba(11, 29, 38, 0.45);
}
.lux-mkt:hover {
  border-color: rgba(212, 175, 55, 0.55);
  box-shadow: 0 30px 70px -28px rgba(11, 29, 38, 0.65), 0 0 0 1px rgba(212, 175, 55, 0.2);
}
.lux-mkt-img {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  opacity: 0.88;
  filter: saturate(0.58) brightness(0.9) sepia(0.08);
  transform-origin: center;
  transition: transform 1.1s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease, filter 0.5s ease;
  will-change: transform;
}
.lux-mkt:hover .lux-mkt-img {
  transform: scale(1.07);
  opacity: 0.96;
  filter: saturate(0.72) brightness(0.95) sepia(0.05);
}
.lux-mkt-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(11, 29, 38, 0.20), rgba(11, 29, 38, 0.20)),
    linear-gradient(
      to top,
      rgba(10, 22, 34, 0.96) 12%,
      rgba(10, 22, 34, 0.72) 38%,
      rgba(10, 22, 34, 0.18) 66%,
      rgba(10, 22, 34, 0.05) 100%
    );
}
.lux-mkt-icon svg { height: 1.25rem; width: 1.25rem; }
@media (min-width: 1024px) {
  .lux-mkt-icon svg { height: 1.5rem; width: 1.5rem; }
}
.lux-mkt-icon {
  background: linear-gradient(145deg, rgba(212, 175, 55, 0.28), rgba(212, 175, 55, 0.10));
  color: #F0D98C;
  box-shadow: inset 0 0 0 1px rgba(226, 192, 99, 0.45), 0 4px 14px -6px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.lux-mkt-link svg { transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1); }
.lux-mkt:hover .lux-mkt-link svg { transform: translate(2px, -2px); }

/* ---- gold gradient frame (why cards + hero asset boxes) ---- */
.lux-why {
  border: 1.5px solid transparent !important;
  background:
    linear-gradient(180deg, #FFFFFF, #FBFCFE) padding-box,
    linear-gradient(135deg, rgba(212, 175, 55, 0.65), rgba(212, 175, 55, 0.14) 40%, rgba(184, 145, 42, 0.55) 100%) border-box !important;
  box-shadow: 0 10px 30px -22px rgba(184, 145, 42, 0.45);
}
.lux-why:hover {
  box-shadow: 0 24px 54px -26px rgba(184, 145, 42, 0.55), 0 0 0 1px rgba(212, 175, 55, 0.15);
}
/* Gold icon chip for light cards (feature bento etc.) */
.lux-gold-chip {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.20), rgba(212, 175, 55, 0.06));
  color: #8C6D1F;
  box-shadow: inset 0 0 0 1px rgba(184, 145, 42, 0.4);
}

/* ---------------------------------------------- reduced motion: still */
@media (prefers-reduced-motion: reduce) {
  .nvx-anim .lux-orb--gold, .nvx-anim .lux-orb--sea, .nvx-anim .lux-orb--sky,
  .nvx-anim .lux-hero-grid, .lux-dust i,
  .nvx-anim .lux-float-soft, .nvx-anim .lux-shadow-breathe,
  .nvx-anim .nvx-product-glow::before,
  .nvx-anim .lux-pulse-cta, .nvx-anim .lux-beam::after,
  .nvx-anim .lux-connector::after,
  .nvx-anim .nvx-reveal.is-in .lux-step,
  .nvx-anim .nvx-brand [class*="bg-clip-text"] { animation: none !important; }
  .nvx-anim .lux-flourish path { stroke-dashoffset: 0 !important; }
  .nvx-anim .lux-spark-line { stroke-dashoffset: 0 !important; animation: none !important; }
  .nvx-anim .lux-spark-fill { opacity: 0.55 !important; animation: none !important; }
  .nvx-anim .lux-spark-dot { opacity: 0.85 !important; animation: none !important; }
  .lux-chip:hover, footer a[aria-label]:hover, #lux-top:hover { transform: none; }
}
