/* ============================================================
   TECH INNOVATORS — LUXURY REDESIGN
   World-class editorial magazine aesthetics
   ============================================================ */

/* ── LUXURY FONTS ── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400;1,600&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,300&family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

:root {
  --lux-serif: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --lux-sans: 'Space Grotesk', 'DM Sans', system-ui, sans-serif;
  --lux-gold: #c9a84c;
  --lux-gold-light: #e8c96d;
  --lux-gold-dim: rgba(201,168,76,.15);
  --lux-dark: #0a0906;
  --lux-charcoal: #1a1916;
  --accent-r: #e8380a;
}

/* ── ANIMATED GRADIENT BACKGROUND ON HERO ── */
@keyframes gradShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes fadeUp {
  from { opacity:0; transform:translateY(28px); }
  to   { opacity:1; transform:none; }
}
@keyframes slideInLeft {
  from { opacity:0; transform:translateX(-24px); }
  to   { opacity:1; transform:none; }
}
@keyframes pulseGlow {
  0%,100% { box-shadow: 0 0 0 0 rgba(201,168,76,0); }
  50%      { box-shadow: 0 0 24px 4px rgba(201,168,76,.22); }
}
@keyframes tickerScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes countUp {
  from { opacity:0; transform: scale(.8); }
  to   { opacity:1; transform: scale(1); }
}
@keyframes borderGlow {
  0%,100% { border-color: rgba(201,168,76,.2); }
  50%      { border-color: rgba(201,168,76,.7); }
}

/* ══ LUXURY TICKER ════════════════════════════════════════════ */
.lux-ticker-wrap {
  background: var(--lux-dark);
  border-bottom: 1px solid rgba(201,168,76,.2);
  height: 40px;
  overflow: hidden;
  display: flex;
  position: relative;
}
.lux-ticker-label {
  flex-shrink: 0;
  background: linear-gradient(90deg, var(--accent-r), #c2410c);
  color: #fff;
  font-family: var(--lux-sans);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
  z-index: 2;
}
.lux-ticker-label::after {
  content: '';
  position: absolute;
  right: -10px;
  top: 0; bottom: 0;
  width: 20px;
  background: linear-gradient(90deg, #c2410c, transparent);
}
.lux-ticker-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #fff;
  animation: pulseGlow 1.2s ease-in-out infinite;
}
.lux-ticker-track {
  flex: 1;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.lux-ticker-items {
  display: inline-flex;
  white-space: nowrap;
  animation: tickerScroll 60s linear infinite;
  font-family: var(--lux-sans);
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,.65);
  align-items: center;
  gap: 0;
}
.lux-ticker-items:hover { animation-play-state: paused; }
.lux-ticker-item { padding: 0 28px; cursor: pointer; transition: color .15s; }
.lux-ticker-item:hover { color: var(--lux-gold); }
.lux-ticker-sep { color: rgba(201,168,76,.4); font-size: 14px; user-select: none; }

/* ══ LUXURY MASTHEAD ══════════════════════════════════════════ */
.lux-masthead {
  background: var(--paper);
  border-bottom: 1px solid var(--border);
  padding: 0;
  position: relative;
}
.lux-masthead::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--lux-gold), var(--accent-r), var(--lux-gold), transparent);
  background-size: 200% auto;
  animation: shimmer 4s linear infinite;
}
.lux-masthead-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 80px;
  gap: 20px;
}
@media(max-width: 768px) {
  .lux-masthead-inner { grid-template-columns: 1fr auto; height: 64px; }
  .lux-masthead-right { display: none !important; }
}
.lux-masthead-left {
  display: flex;
  align-items: center;
  gap: 16px;
}
.lux-logo-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
}
.lux-logo {
  font-family: var(--lux-sans);
  font-size: clamp(18px, 2.8vw, 38px);
  font-weight: 700;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--ink);
  line-height: 1;
  white-space: nowrap;
}
.lux-logo span.dot { color: var(--accent-r); }
.lux-logo-rule {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--lux-gold), transparent);
  margin: 4px 0;
}
.lux-logo-tagline {
  font-family: var(--lux-sans);
  font-size: 8px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--ink-3);
}
.lux-masthead-left-actions {
  display: none;
  flex-direction: column;
  gap: 3px;
}
@media(min-width: 900px) { .lux-masthead-left-actions { display: flex; } }
.lux-date-chip {
  font-family: var(--lux-sans);
  font-size: 10px;
  color: var(--ink-3);
  letter-spacing: .5px;
}
.lux-edition-num {
  font-family: var(--lux-serif);
  font-size: 11px;
  font-style: italic;
  color: var(--lux-gold);
}
.lux-masthead-right {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: flex-end;
}
.lux-search-wrap {
  position: relative;
}
.lux-search {
  font-family: var(--lux-sans);
  font-size: 13px;
  padding: 9px 16px 9px 38px;
  border: 1.5px solid var(--border);
  border-radius: 100px;
  background: var(--p2);
  color: var(--ink);
  outline: none;
  width: 200px;
  transition: border-color .2s, width .3s, box-shadow .2s;
}
.lux-search:focus {
  border-color: var(--lux-gold);
  box-shadow: 0 0 0 3px var(--lux-gold-dim);
  width: 260px;
}
.lux-search-icon {
  position: absolute;
  left: 13px; top: 50%;
  transform: translateY(-50%);
  color: var(--ink-3);
  font-size: 15px;
  pointer-events: none;
}
.lux-subscribe-btn {
  font-family: var(--lux-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 10px 22px;
  background: linear-gradient(135deg, var(--lux-gold), #b8870a);
  color: var(--lux-dark);
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: opacity .15s, transform .1s, box-shadow .2s;
  white-space: nowrap;
  animation: pulseGlow 3s ease-in-out infinite;
}
.lux-subscribe-btn:hover {
  opacity: .9;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(201,168,76,.4);
}
.lux-dark-toggle {
  width: 40px; height: 22px;
  background: rgba(0,0,0,.1);
  border-radius: 100px;
  position: relative;
  cursor: pointer;
  border: 1.5px solid var(--border);
  transition: background .3s;
  flex-shrink: 0;
}
.lux-dark-toggle.on { background: var(--lux-gold); border-color: var(--lux-gold); }
.lux-dark-toggle::after {
  content: '';
  position: absolute;
  top: 2px; left: 2px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: #fff;
  transition: transform .3s;
  box-shadow: 0 1px 4px rgba(0,0,0,.2);
}
.lux-dark-toggle.on::after { transform: translateX(18px); }

/* ══ LUXURY NAV ═══════════════════════════════════════════════ */
.lux-nav {
  background: var(--lux-dark);
  position: sticky;
  top: 0;
  z-index: 200;
  border-bottom: 1px solid rgba(201,168,76,.15);
  transition: box-shadow .25s;
}
.lux-nav.scrolled {
  box-shadow: 0 4px 32px rgba(0,0,0,.4);
}
.lux-nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  height: 48px;
  gap: 4px;
  overflow: hidden;
}
.lux-nav-link {
  font-family: var(--lux-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  padding: 0 12px;
  height: 48px;
  display: flex;
  align-items: center;
  border-bottom: 2px solid transparent;
  transition: color .15s, border-color .15s, background .15s;
  white-space: nowrap;
  position: relative;
}
.lux-nav-link:hover { color: #fff; background: rgba(255,255,255,.05); }
.lux-nav-link.active { color: var(--lux-gold); border-bottom-color: var(--lux-gold); }
.lux-nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 50%;
  transform: translateX(-50%);
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--lux-gold);
}
.lux-nav-right {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.lux-nav-cta {
  font-family: var(--lux-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 7px 18px;
  background: transparent;
  border: 1px solid rgba(201,168,76,.4);
  color: var(--lux-gold);
  border-radius: 100px;
  cursor: pointer;
  transition: .2s;
  white-space: nowrap;
}
.lux-nav-cta:hover {
  background: var(--lux-gold);
  color: var(--lux-dark);
  border-color: var(--lux-gold);
}
.lux-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
}
.lux-hamburger span {
  display: block; width: 22px; height: 2px;
  background: rgba(255,255,255,.7);
  border-radius: 2px; transition: .25s;
}
@media(max-width: 899px) {
  .lux-nav-link { display: none; }
  .lux-hamburger { display: flex; }
}
.lux-mobile-nav {
  display: none;
  position: absolute; top: 48px; left: 0; right: 0;
  background: #111;
  border-bottom: 1px solid rgba(255,255,255,.08);
  z-index: 199;
  flex-direction: column;
  box-shadow: 0 12px 36px rgba(0,0,0,.4);
}
.lux-mobile-nav.open { display: flex; }
.lux-mobile-nav .lux-nav-link {
  display: flex;
  height: auto;
  padding: 14px 24px;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,.05);
  font-size: 13px;
}

/* ══ MARKET BAR ═══════════════════════════════════════════════ */
.lux-market-bar {
  background: #0d0c0b;
  border-bottom: 1px solid rgba(201,168,76,.12);
  height: 38px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.lux-market-label {
  flex-shrink: 0;
  padding: 0 18px;
  font-family: var(--lux-sans);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--lux-gold);
  border-right: 1px solid rgba(201,168,76,.2);
}
.lux-market-scroll {
  flex: 1;
  overflow: hidden;
}
.lux-market-items {
  display: inline-flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  animation: tickerScroll 45s linear infinite;
}
.lux-market-items:hover { animation-play-state: paused; }
.lux-mitem {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 22px;
  border-right: 1px solid rgba(255,255,255,.05);
}
.lux-mitem-name {
  font-family: var(--lux-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .5px;
  color: rgba(255,255,255,.4);
  text-transform: uppercase;
}
.lux-mitem-val {
  font-family: var(--lux-sans);
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,.85);
}
.lux-mitem-chg {
  font-family: var(--lux-sans);
  font-size: 10px;
  font-weight: 700;
  padding: 1px 6px;
  border-radius: 3px;
}
.lux-up { background: rgba(16,185,129,.15); color: #34d399; }
.lux-dn { background: rgba(239,68,68,.15); color: #f87171; }
.lux-market-time {
  flex-shrink: 0;
  padding: 0 16px;
  font-family: var(--lux-sans);
  font-size: 10px;
  color: rgba(255,255,255,.25);
  border-left: 1px solid rgba(255,255,255,.06);
}

/* ══ LUXURY HERO ══════════════════════════════════════════════ */
.lux-hero {
  position: relative;
  background: var(--lux-dark);
  overflow: hidden;
}
.lux-hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(.35) saturate(1.2);
  transition: transform 12s ease;
  transform: scale(1.05);
}
.lux-hero-bg.loaded { transform: scale(1); }
.lux-hero-vignette {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, transparent 0%, rgba(0,0,0,.6) 100%);
}
.lux-hero-gradient {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,9,6,.98) 0%, rgba(10,9,6,.5) 45%, transparent 100%);
}
.lux-hero-content {
  position: relative;
  z-index: 3;
  max-width: var(--max);
  margin: 0 auto;
  padding: 80px 28px 56px;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: end;
}
@media(max-width: 900px) {
  .lux-hero-content { grid-template-columns: 1fr; padding: 56px 20px 40px; gap: 32px; }
  .lux-hero-sidebar { display: none; }
}
.lux-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--lux-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--lux-gold);
  margin-bottom: 18px;
  animation: slideInLeft .6s ease both;
}
.lux-hero-eyebrow-line {
  display: block; width: 32px; height: 1px;
  background: var(--lux-gold);
}
.lux-hero-tag {
  background: rgba(201,168,76,.15);
  border: 1px solid rgba(201,168,76,.3);
  color: var(--lux-gold);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 3px 12px;
  border-radius: 100px;
  font-family: var(--lux-sans);
}
.lux-hero-title {
  font-family: var(--lux-serif);
  font-size: clamp(30px, 4.5vw, 62px);
  font-weight: 600;
  line-height: 1.08;
  color: #fff;
  margin-bottom: 18px;
  letter-spacing: -.5px;
  animation: fadeUp .7s ease .1s both;
}
.lux-hero-title em { font-style: italic; color: var(--lux-gold-light); }
.lux-hero-deck {
  font-family: var(--lux-sans);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255,255,255,.6);
  max-width: 560px;
  margin-bottom: 28px;
  animation: fadeUp .7s ease .2s both;
}
.lux-hero-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  animation: fadeUp .7s ease .3s both;
  flex-wrap: wrap;
}
.lux-hero-author-chip {
  display: flex;
  align-items: center;
  gap: 10px;
}
.lux-hero-av {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 2px solid rgba(201,168,76,.4);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--lux-sans);
  font-size: 13px;
  font-weight: 700;
}
.lux-hero-author-name {
  font-family: var(--lux-sans);
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,.7);
}
.lux-hero-date {
  font-family: var(--lux-sans);
  font-size: 12px;
  color: rgba(255,255,255,.4);
}
.lux-hero-read-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--lux-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 12px 28px;
  background: transparent;
  border: 1px solid rgba(201,168,76,.5);
  color: var(--lux-gold);
  border-radius: 100px;
  cursor: pointer;
  transition: .2s;
  text-decoration: none;
}
.lux-hero-read-btn:hover {
  background: var(--lux-gold);
  color: var(--lux-dark);
  border-color: var(--lux-gold);
  box-shadow: 0 8px 28px rgba(201,168,76,.35);
}
.lux-hero-read-arrow {
  font-size: 16px;
  transition: transform .2s;
}
.lux-hero-read-btn:hover .lux-hero-read-arrow { transform: translateX(4px); }

/* Hero sidebar — trending */
.lux-hero-sidebar {
  padding-bottom: 4px;
  animation: fadeUp .7s ease .25s both;
}
.lux-sidebar-title {
  font-family: var(--lux-sans);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(201,168,76,.5);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(201,168,76,.15);
  display: flex;
  align-items: center;
  gap: 10px;
}
.lux-sidebar-title::before {
  content: '';
  display: block;
  width: 16px; height: 1px;
  background: rgba(201,168,76,.5);
}
.lux-stack-item {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  cursor: pointer;
  transition: opacity .15s;
  align-items: flex-start;
}
.lux-stack-item:hover { opacity: .75; }
.lux-stack-num {
  font-family: var(--lux-serif);
  font-size: 28px;
  font-weight: 300;
  color: rgba(201,168,76,.3);
  line-height: 1;
  flex-shrink: 0;
  width: 28px;
  margin-top: -2px;
}
.lux-stack-thumb {
  width: 56px; height: 44px;
  border-radius: 6px;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}
.lux-stack-title {
  font-family: var(--lux-serif);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.3;
  color: rgba(255,255,255,.85);
}
.lux-stack-meta {
  font-family: var(--lux-sans);
  font-size: 11px;
  color: rgba(255,255,255,.35);
  margin-top: 4px;
}

/* Hero nav-dots */
.lux-hero-dots {
  position: absolute;
  bottom: 24px;
  right: 28px;
  display: flex;
  gap: 6px;
  z-index: 4;
}
.lux-hero-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,.3);
  cursor: pointer;
  transition: .2s;
}
.lux-hero-dot.active {
  background: var(--lux-gold);
  width: 20px;
  border-radius: 3px;
}

/* ══ SECTION STYLING ══════════════════════════════════════════ */
.lux-section {
  padding: 56px 0;
}
.lux-section-alt {
  background: var(--p2);
}
.lux-section-dark {
  background: var(--lux-dark);
  color: #fff;
}
.lux-section-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 28px;
}
.lux-section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 32px;
  gap: 16px;
}
.lux-section-title-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
}
.lux-section-rule {
  width: 40px; height: 2px;
  background: linear-gradient(90deg, var(--lux-gold), var(--accent-r));
  border-radius: 1px;
  flex-shrink: 0;
}
.lux-section-h2 {
  font-family: var(--lux-serif);
  font-size: clamp(22px, 2.8vw, 34px);
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -.3px;
}
.lux-section-h2.light { color: #fff; }
.lux-section-see-all {
  font-family: var(--lux-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--lux-gold);
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  transition: gap .15s;
}
.lux-section-see-all:hover { gap: 10px; }

/* ══ LUXURY CARD GRID ═════════════════════════════════════════ */
/* Big + small layout */
.lux-lead-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 32px;
}
@media(min-width: 768px) { .lux-lead-grid { grid-template-columns: 3fr 2fr; } }

/* Big overlay card */
.lux-big-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  group: true;
}
.lux-big-card-img {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .7s cubic-bezier(.25,.46,.45,.94);
}
.lux-big-card:hover .lux-big-card-img { transform: scale(1.06); }
.lux-big-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.92) 0%, rgba(0,0,0,.4) 55%, transparent 100%);
  transition: background .4s;
}
.lux-big-card:hover .lux-big-card-overlay {
  background: linear-gradient(to top, rgba(0,0,0,.96) 0%, rgba(0,0,0,.55) 60%, rgba(0,0,0,.05) 100%);
}
.lux-big-card-body {
  position: relative; z-index: 2;
  padding: 28px;
  width: 100%;
}
.lux-big-card-cat {
  font-family: var(--lux-sans);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--lux-gold);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 12px;
}
.lux-big-card-cat::before {
  content: ''; display: block;
  width: 16px; height: 1px;
  background: var(--lux-gold);
}
.lux-big-card-title {
  font-family: var(--lux-serif);
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 600;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 12px;
  transition: color .2s;
}
.lux-big-card:hover .lux-big-card-title { color: var(--lux-gold-light); }
.lux-big-card-deck {
  font-family: var(--lux-sans);
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,.6);
  line-height: 1.6;
  margin-bottom: 16px;
  display: none;
}
@media(min-width: 640px) { .lux-big-card-deck { display: block; } }
.lux-big-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--lux-sans);
  font-size: 11px;
  color: rgba(255,255,255,.45);
}
.lux-big-card-arrow {
  position: absolute;
  top: 20px; right: 20px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 16px;
  transition: .25s;
  backdrop-filter: blur(4px);
}
.lux-big-card:hover .lux-big-card-arrow {
  background: var(--lux-gold);
  border-color: var(--lux-gold);
  color: var(--lux-dark);
  transform: rotate(45deg) scale(1.1);
}

/* Small stacked card */
.lux-small-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.lux-small-card {
  display: flex;
  gap: 14px;
  padding: 16px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--paper);
  cursor: pointer;
  transition: transform .2s, box-shadow .2s, border-color .2s, background .2s;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
}
.lux-small-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--lux-gold), var(--accent-r));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .25s;
}
.lux-small-card:hover {
  transform: translateX(4px);
  box-shadow: 0 8px 28px rgba(0,0,0,.08);
  border-color: rgba(201,168,76,.4);
}
.lux-small-card:hover::before { transform: scaleY(1); }
.lux-small-card-img {
  width: 72px; height: 58px;
  border-radius: 8px;
  background-size: cover; background-position: center;
  flex-shrink: 0;
  overflow: hidden;
  transition: transform .4s;
}
.lux-small-card:hover .lux-small-card-img { transform: scale(1.06); }
.lux-small-card-cat {
  font-family: var(--lux-sans);
  font-size: 9px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--lux-gold); margin-bottom: 5px;
}
.lux-small-card-title {
  font-family: var(--lux-serif);
  font-size: 15px; font-weight: 600;
  line-height: 1.3; color: var(--ink);
  transition: color .15s;
}
.lux-small-card:hover .lux-small-card-title { color: var(--accent-r); }
.lux-small-card-meta {
  font-family: var(--lux-sans);
  font-size: 11px; color: var(--ink-3); margin-top: 5px;
}

/* ══ 3-COL GRID CARDS ═════════════════════════════════════════ */
.lux-grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media(min-width: 640px) { .lux-grid-3 { grid-template-columns: 1fr 1fr; } }
@media(min-width: 900px) { .lux-grid-3 { grid-template-columns: 1fr 1fr 1fr; } }

.lux-grid-card {
  background: var(--paper);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: transform .25s, box-shadow .25s, border-color .25s;
  position: relative;
}
.lux-grid-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0,0,0,.12);
  border-color: rgba(201,168,76,.3);
}
.lux-grid-card-img {
  height: 180px;
  background-size: cover; background-position: center;
  transition: transform .5s cubic-bezier(.25,.46,.45,.94);
  position: relative;
  overflow: hidden;
}
.lux-grid-card:hover .lux-grid-card-img { transform: scale(1.07); }
.lux-grid-card-body { padding: 18px 20px 20px; }
.lux-grid-card-cat {
  font-family: var(--lux-sans);
  font-size: 9px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--lux-gold);
  margin-bottom: 10px;
  display: flex; align-items: center; gap: 7px;
}
.lux-grid-card-cat::before {
  content: ''; display: block;
  width: 14px; height: 1px;
  background: var(--lux-gold);
}
.lux-grid-card-title {
  font-family: var(--lux-serif);
  font-size: 18px; font-weight: 600;
  line-height: 1.3; color: var(--ink);
  margin-bottom: 10px;
  transition: color .15s;
}
.lux-grid-card:hover .lux-grid-card-title { color: var(--accent-r); }
.lux-grid-card-excerpt {
  font-family: var(--lux-sans);
  font-size: 12.5px; font-weight: 300;
  color: var(--ink-3); line-height: 1.6;
  margin-bottom: 14px;
}
.lux-grid-card-meta {
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--lux-sans); font-size: 11px; color: var(--ink-3);
}
.lux-grid-card-number {
  position: absolute;
  top: 12px; left: 12px;
  font-family: var(--lux-serif);
  font-size: 32px; font-weight: 300;
  color: rgba(255,255,255,.18);
  line-height: 1;
}

/* ══ HORIZONTAL SCROLL STRIP ═════════════════════════════════ */
.lux-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(240px, 1fr));
  gap: 16px;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 8px;
  cursor: grab;
}
@media(min-width: 1024px) {
  .lux-strip { grid-template-columns: repeat(4, 1fr); overflow: visible; cursor: default; }
}
.lux-strip::-webkit-scrollbar { display: none; }
.lux-strip:active { cursor: grabbing; }

.lux-strip-card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  flex-shrink: 0;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.lux-strip-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0,0,0,.12);
  border-color: rgba(201,168,76,.3);
}
.lux-strip-img {
  height: 140px;
  background-size: cover; background-position: center;
  transition: transform .45s;
  overflow: hidden;
}
.lux-strip-card:hover .lux-strip-img { transform: scale(1.07); }
.lux-strip-body { padding: 14px 16px 16px; }
.lux-strip-cat {
  font-family: var(--lux-sans); font-size: 9px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--lux-gold); margin-bottom: 8px;
}
.lux-strip-title {
  font-family: var(--lux-serif);
  font-size: 15px; font-weight: 600; line-height: 1.35;
  color: var(--ink); transition: color .15s;
}
.lux-strip-card:hover .lux-strip-title { color: var(--accent-r); }
.lux-strip-meta { font-family: var(--lux-sans); font-size: 11px; color: var(--ink-3); margin-top: 8px; }

/* ══ EDITORIAL PULL QUOTE ════════════════════════════════════ */
.lux-pull-section {
  background: var(--lux-dark);
  padding: 64px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.lux-pull-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(201,168,76,.06) 0%, transparent 65%);
}
.lux-pull-mark {
  font-family: var(--lux-serif);
  font-size: 120px; line-height: .6;
  color: rgba(201,168,76,.12);
  user-select: none;
  display: block; margin-bottom: -20px;
}
.lux-pull-quote {
  font-family: var(--lux-serif);
  font-size: clamp(22px, 3.5vw, 40px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.45;
  color: rgba(255,255,255,.85);
  max-width: 860px;
  margin: 0 auto 24px;
  position: relative;
  z-index: 1;
}
.lux-pull-cite {
  font-family: var(--lux-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--lux-gold);
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.lux-pull-cite::before, .lux-pull-cite::after {
  content: ''; display: block;
  width: 32px; height: 1px;
  background: rgba(201,168,76,.4);
}

/* ══ STATS BAND ══════════════════════════════════════════════ */
.lux-stats-band {
  background: linear-gradient(135deg, var(--lux-dark) 0%, #1a0533 50%, #0c1445 100%);
  padding: 48px 0;
  position: relative;
  overflow: hidden;
}
.lux-stats-band::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a84c' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.lux-stats-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
@media(min-width: 640px) { .lux-stats-inner { grid-template-columns: repeat(4, 1fr); } }
.lux-stat-item {
  text-align: center;
  position: relative;
  z-index: 1;
  animation: countUp .6s ease both;
}
.lux-stat-num {
  font-family: var(--lux-serif);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 300;
  line-height: 1;
  color: var(--lux-gold);
  display: block;
  margin-bottom: 8px;
}
.lux-stat-label {
  font-family: var(--lux-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
}
.lux-stat-divider {
  position: absolute;
  right: 0; top: 50%; transform: translateY(-50%);
  width: 1px; height: 40px;
  background: rgba(201,168,76,.15);
}

/* ══ OPINION CARDS ════════════════════════════════════════════ */
.lux-opinions-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media(min-width: 640px) { .lux-opinions-grid { grid-template-columns: 1fr 1fr; } }
@media(min-width: 1024px) { .lux-opinions-grid { grid-template-columns: repeat(4, 1fr); } }
.lux-opinion-card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px;
  position: relative;
  overflow: hidden;
  transition: transform .25s, box-shadow .25s, border-color .25s;
  cursor: pointer;
}
.lux-opinion-card::before {
  content: '"';
  position: absolute;
  top: -10px; right: 16px;
  font-family: var(--lux-serif);
  font-size: 100px;
  line-height: 1;
  color: rgba(201,168,76,.08);
  pointer-events: none;
}
.lux-opinion-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(0,0,0,.1);
  border-color: rgba(201,168,76,.35);
}
.lux-opinion-text {
  font-family: var(--lux-serif);
  font-size: 16px;
  font-weight: 400;
  font-style: italic;
  line-height: 1.6;
  color: var(--ink);
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}
.lux-opinion-author-row {
  display: flex; align-items: center; gap: 12px;
}
.lux-opinion-av {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--lux-sans); font-size: 13px; font-weight: 700;
  flex-shrink: 0; overflow: hidden;
}
.lux-opinion-av img { width: 100%; height: 100%; object-fit: cover; }
.lux-opinion-name {
  font-family: var(--lux-sans); font-size: 13px; font-weight: 600;
  color: var(--ink);
}
.lux-opinion-beat {
  font-family: var(--lux-sans); font-size: 11px;
  color: var(--lux-gold); margin-top: 1px;
}

/* ══ NEWS LIST ════════════════════════════════════════════════ */
.lux-news-list { display: flex; flex-direction: column; }
.lux-news-item {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: background .15s, padding-left .2s;
  border-radius: 8px;
  align-items: start;
  position: relative;
}
.lux-news-item::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--lux-gold), var(--accent-r));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .2s;
}
.lux-news-item:hover::before { transform: scaleY(1); }
.lux-news-item:hover { background: var(--p2); padding-left: 10px; margin: 0 -10px; padding-right: 10px; border-color: transparent; }
.lux-news-thumb {
  height: 68px; border-radius: 8px;
  background-size: cover; background-position: center;
  flex-shrink: 0;
  transition: transform .35s;
  overflow: hidden;
}
.lux-news-item:hover .lux-news-thumb { transform: scale(1.05); }
.lux-news-cat {
  font-family: var(--lux-sans); font-size: 9px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--lux-gold); margin-bottom: 6px;
  display: inline-block;
}
.lux-news-title {
  font-family: var(--lux-serif);
  font-size: clamp(15px, 1.8vw, 18px);
  font-weight: 600; line-height: 1.3;
  color: var(--ink); margin-bottom: 7px;
  transition: color .15s;
}
.lux-news-item:hover .lux-news-title { color: var(--accent-r); }
.lux-news-meta {
  font-family: var(--lux-sans);
  font-size: 11px; color: var(--ink-3);
}

/* ══ FUNDING TICKER ══════════════════════════════════════════ */
.lux-funding-ticker {
  background: linear-gradient(135deg, #0a0906, #0f1320);
  border-top: 1px solid rgba(201,168,76,.1);
  border-bottom: 1px solid rgba(201,168,76,.1);
  padding: 20px 0;
  overflow: hidden;
  position: relative;
}
.lux-funding-ticker-inner {
  display: flex;
  gap: 0;
  animation: tickerScroll 50s linear infinite;
  width: max-content;
}
.lux-funding-ticker-inner:hover { animation-play-state: paused; }
.lux-fund-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 24px;
  border-right: 1px solid rgba(255,255,255,.06);
  cursor: pointer;
  transition: background .15s;
}
.lux-fund-chip:hover { background: rgba(255,255,255,.04); }
.lux-fund-logo {
  width: 28px; height: 28px;
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--lux-sans); font-size: 11px; font-weight: 800;
  flex-shrink: 0;
}
.lux-fund-company {
  font-family: var(--lux-sans); font-size: 13px; font-weight: 600;
  color: #fff;
}
.lux-fund-amount {
  font-family: var(--lux-sans); font-size: 12px; font-weight: 700;
  color: var(--lux-gold);
}
.lux-fund-round {
  font-family: var(--lux-sans); font-size: 10px;
  color: rgba(255,255,255,.35);
}

/* ══ LUXURY FOOTER ════════════════════════════════════════════ */
.lux-footer {
  background: #050403;
  border-top: 1px solid rgba(201,168,76,.12);
  padding-top: 56px;
}
.lux-footer-top {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
@media(max-width: 900px) { .lux-footer-top { grid-template-columns: 1fr 1fr; gap: 28px; } }
@media(max-width: 560px) { .lux-footer-top { grid-template-columns: 1fr; } }
.lux-footer-brand-logo {
  font-family: var(--lux-sans);
  font-size: 22px; font-weight: 700;
  letter-spacing: 5px; text-transform: uppercase;
  color: #fff; margin-bottom: 4px;
}
.lux-footer-brand-logo span { color: var(--accent-r); }
.lux-footer-rule {
  height: 1px;
  background: linear-gradient(90deg, var(--lux-gold), transparent);
  margin: 8px 0 14px;
}
.lux-footer-desc {
  font-family: var(--lux-sans); font-size: 13px; font-weight: 300;
  color: rgba(255,255,255,.4); line-height: 1.7; margin-bottom: 20px;
}
.lux-footer-socials { display: flex; gap: 8px; }
.lux-social-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.5);
  font-family: var(--lux-sans); font-size: 13px;
  cursor: pointer; transition: .2s;
  text-decoration: none;
}
.lux-social-btn:hover {
  background: var(--lux-gold);
  border-color: var(--lux-gold);
  color: var(--lux-dark);
  transform: translateY(-2px);
}
.lux-footer-col h4 {
  font-family: var(--lux-sans);
  font-size: 9px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--lux-gold); margin-bottom: 18px;
}
.lux-footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.lux-footer-col ul li a {
  font-family: var(--lux-sans); font-size: 13px;
  color: rgba(255,255,255,.4);
  transition: color .15s, padding-left .15s;
  display: block;
}
.lux-footer-col ul li a:hover { color: #fff; padding-left: 5px; }
.lux-footer-bottom {
  max-width: var(--max);
  margin: 0 auto;
  padding: 20px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.lux-footer-copy {
  font-family: var(--lux-sans); font-size: 12px;
  color: rgba(255,255,255,.25);
}
.lux-footer-legal { display: flex; gap: 20px; }
.lux-footer-legal a {
  font-family: var(--lux-sans); font-size: 11px;
  color: rgba(255,255,255,.25); transition: color .15s;
}
.lux-footer-legal a:hover { color: var(--lux-gold); }

/* ══ PAGE BUILDER ELEMENTS ════════════════════════════════════ */
/* Draggable block styles */
.pb-block {
  position: relative;
  margin-bottom: 20px;
  border: 2px dashed transparent;
  border-radius: 10px;
  transition: border-color .2s;
}
.pb-block.pb-dragging {
  opacity: .5;
  border-color: var(--lux-gold);
}
.pb-block.pb-drag-over {
  border-color: var(--accent-r);
  background: rgba(232,56,10,.04);
}
.pb-block-handle {
  position: absolute;
  top: 8px; left: 8px;
  width: 28px; height: 28px;
  background: rgba(0,0,0,.7);
  border-radius: 5px;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: grab;
  color: #fff;
  font-size: 14px;
  z-index: 10;
}
.pb-block:hover .pb-block-handle { display: flex; }

/* ══ NEWSLETTER INLINE ════════════════════════════════════════ */
.lux-nl-band {
  background: linear-gradient(135deg, #0a0906 0%, #1a0533 50%, #0c1445 100%);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}
.lux-nl-band::before {
  content: '';
  position: absolute;
  top: -100px; left: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,.08) 0%, transparent 70%);
}
.lux-nl-inner {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 28px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.lux-nl-eyebrow {
  font-family: var(--lux-sans); font-size: 10px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--lux-gold); margin-bottom: 16px;
  display: flex; align-items: center; justify-content: center; gap: 12px;
}
.lux-nl-eyebrow::before, .lux-nl-eyebrow::after {
  content: ''; display: block; width: 28px; height: 1px;
  background: rgba(201,168,76,.4);
}
.lux-nl-title {
  font-family: var(--lux-serif);
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 300; font-style: italic;
  color: #fff; line-height: 1.25;
  margin-bottom: 12px;
}
.lux-nl-sub {
  font-family: var(--lux-sans); font-size: 14px; font-weight: 300;
  color: rgba(255,255,255,.45); margin-bottom: 28px;
}
.lux-nl-form {
  display: flex; gap: 10px; max-width: 440px; margin: 0 auto;
}
@media(max-width: 480px) { .lux-nl-form { flex-direction: column; } }
.lux-nl-input {
  flex: 1; font-family: var(--lux-sans); font-size: 14px;
  padding: 13px 20px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 100px; color: #fff; outline: none;
  transition: border-color .2s, background .2s;
}
.lux-nl-input::placeholder { color: rgba(255,255,255,.35); }
.lux-nl-input:focus { border-color: var(--lux-gold); background: rgba(255,255,255,.12); }
.lux-nl-btn {
  font-family: var(--lux-sans); font-size: 12px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  padding: 13px 28px;
  background: linear-gradient(135deg, var(--lux-gold), #b8870a);
  color: var(--lux-dark); border: none;
  border-radius: 100px; cursor: pointer;
  transition: .2s; white-space: nowrap;
}
.lux-nl-btn:hover {
  box-shadow: 0 8px 28px rgba(201,168,76,.45);
  transform: translateY(-1px);
}

/* ══ HOT TOPICS — LUXURY ══════════════════════════════════════ */
.lux-topics-bar {
  background: var(--lux-dark);
  border-bottom: 1px solid rgba(201,168,76,.1);
  padding: 12px 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.lux-topics-bar::-webkit-scrollbar { display: none; }
.lux-topics-inner {
  max-width: var(--max); margin: 0 auto; padding: 0 28px;
  display: flex; gap: 8px; align-items: center; white-space: nowrap;
}
.lux-topics-label {
  font-family: var(--lux-sans); font-size: 9px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: rgba(201,168,76,.6); margin-right: 4px; flex-shrink: 0;
}
.lux-topic-pill {
  font-family: var(--lux-sans); font-size: 11px; font-weight: 500;
  padding: 5px 14px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.55);
  cursor: pointer;
  transition: .2s;
  white-space: nowrap;
}
.lux-topic-pill:hover {
  border-color: var(--lux-gold);
  color: var(--lux-gold);
  background: rgba(201,168,76,.08);
}

/* ══ SCROLL PROGRESS ════════════════════════════════════════ */
.lux-progress-bar {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--lux-gold), var(--accent-r), var(--lux-gold));
  background-size: 200% auto;
  animation: shimmer 2s linear infinite;
  width: 0%;
  z-index: 9999;
  transition: width .1s;
}

/* ══ BACK TO TOP — LUXURY ════════════════════════════════════ */
.lux-back-to-top {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 44px; height: 44px;
  background: var(--lux-gold);
  color: var(--lux-dark);
  border: none; border-radius: 50%;
  font-size: 18px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: translateY(16px);
  transition: opacity .3s, transform .3s, box-shadow .2s;
  z-index: 500;
  box-shadow: 0 4px 16px rgba(201,168,76,.3);
  animation: borderGlow 2s ease-in-out infinite;
}
.lux-back-to-top.show { opacity: 1; transform: none; }
.lux-back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(201,168,76,.5);
}

/* ══ DARK MODE LUXURY ════════════════════════════════════════ */
[data-theme="dark"] .lux-masthead { background: #0a0906; border-color: rgba(201,168,76,.1); }
[data-theme="dark"] .lux-small-card { background: #161614; border-color: #222; }
[data-theme="dark"] .lux-grid-card { background: #161614; border-color: #222; }
[data-theme="dark"] .lux-strip-card { background: #161614; border-color: #222; }
[data-theme="dark"] .lux-opinion-card { background: #161614; border-color: #222; }
[data-theme="dark"] .lux-news-item:hover { background: #1e1e1c; }
[data-theme="dark"] .lux-search { background: #1a1a18; border-color: #2a2927; color: #fff; }
[data-theme="dark"] .lux-footer-top li a { color: rgba(255,255,255,.35); }

/* ══ RESPONSIVE UTILITIES ════════════════════════════════════ */
.hide-mobile { display: none !important; }
@media(min-width: 960px) { .hide-mobile { display: block !important; } }
.hide-desktop { display: block; }
@media(min-width: 960px) { .hide-desktop { display: none; } }

/* ══════════════════════════════════════════════════════════════
   DARK MODE — GOLD LUXURY ALIGNMENT
   Overrides all standard dark mode with gold-aligned palette
══════════════════════════════════════════════════════════════ */
[data-theme="dark"]{
  --lux-gold:#d4a84c;
  --lux-gold-light:#f0c76d;
  --lux-gold-dim:rgba(212,168,76,.12);
}
[data-theme="dark"] .lux-masthead{background:#0a0906;border-color:rgba(201,168,76,.1)}
[data-theme="dark"] .lux-masthead::after{opacity:.5}
[data-theme="dark"] .lux-logo{color:#f2efe8}
[data-theme="dark"] .lux-logo-tagline{color:rgba(255,255,255,.3)}
[data-theme="dark"] .lux-search{background:#161614;border-color:rgba(201,168,76,.15);color:#f2efe8}
[data-theme="dark"] .lux-search:focus{border-color:var(--lux-gold)}
[data-theme="dark"] .lux-subscribe-btn{animation:none}
[data-theme="dark"] .lux-dark-toggle{background:var(--lux-gold);border-color:var(--lux-gold)}
[data-theme="dark"] .lux-small-card{background:#161614;border-color:#222}
[data-theme="dark"] .lux-small-card:hover{border-color:rgba(201,168,76,.4)}
[data-theme="dark"] .lux-grid-card{background:#161614;border-color:#222}
[data-theme="dark"] .lux-grid-card:hover{border-color:rgba(201,168,76,.3)}
[data-theme="dark"] .lux-strip-card{background:#161614;border-color:#222}
[data-theme="dark"] .lux-strip-card:hover{border-color:rgba(201,168,76,.3)}
[data-theme="dark"] .lux-opinion-card{background:#161614;border-color:#222}
[data-theme="dark"] .lux-opinion-card:hover{border-color:rgba(201,168,76,.35)}
[data-theme="dark"] .lux-news-item:hover{background:#1e1e1c;border-color:transparent}
[data-theme="dark"] .lux-stats-band{background:linear-gradient(135deg,#060605,#0d0c17 50%,#060c18 100%)}
[data-theme="dark"] .lux-section-alt{background:#111}
[data-theme="dark"] .lux-topics-bar{border-color:rgba(201,168,76,.08)}
[data-theme="dark"] .lux-topic-pill{border-color:rgba(255,255,255,.08);color:rgba(255,255,255,.45)}
[data-theme="dark"] .lux-topic-pill:hover{border-color:var(--lux-gold);color:var(--lux-gold)}
[data-theme="dark"] .lux-funding-ticker{background:#060605}
[data-theme="dark"] .lux-footer-col ul li a{color:rgba(255,255,255,.35)}
[data-theme="dark"] .lux-footer-col ul li a:hover{color:#fff}
[data-theme="dark"] .lux-section-h2{color:#f2efe8}
/* Big cards in dark mode */
[data-theme="dark"] .lux-big-card-overlay{
  background:linear-gradient(to top,rgba(6,6,5,.98) 0%,rgba(6,6,5,.5) 55%,transparent 100%)
}
/* Sidebar widgets dark */
[data-theme="dark"] .art-toc{background:#161614;border-color:rgba(201,168,76,.12)}
[data-theme="dark"] .art-author-card{background:#161614;border-color:#2a2927}
[data-theme="dark"] .art-comment-form{background:#161614}
[data-theme="dark"] .art-related{background:#0d0d0c}
[data-theme="dark"] .art-related-card{background:#161614;border-color:#222}
[data-theme="dark"] .art-reactions{border-color:#2a2927}
[data-theme="dark"] .art-tags{border-color:#2a2927}
[data-theme="dark"] .reaction-btn{border-color:#2a2927;color:rgba(255,255,255,.55)}
[data-theme="dark"] .reaction-btn:hover{border-color:var(--lux-gold);color:var(--lux-gold)}
[data-theme="dark"] .reaction-btn.active{border-color:var(--lux-gold);color:var(--lux-gold)}
[data-theme="dark"] .art-body h2{color:#f2efe8}
[data-theme="dark"] .art-body blockquote{background:#1e1e1c}
[data-theme="dark"] .art-cmt-input,[data-theme="dark"] .art-cmt-textarea{background:#1e1e1c;border-color:#2a2927;color:#f2efe8}
[data-theme="dark"] .art-headline{color:#fff}
[data-theme="dark"] .lux-hero-title{color:#fff}
