/* enhancements.css — Gen Wealth Visual Revamp */

/* ── GOLD ACCENT TOKENS ── */
:root,
[data-theme='light'] {
  --gold-1: #D4A853;
  --gold-2: #E8C271;
  --gold-3: #F5D78E;
  --gold-4: #FFF1D0;
  --gold-gradient: linear-gradient(135deg, #D4A853, #F5D78E, #D4A853);
  --gold-text-gradient: linear-gradient(135deg, #D4A853 0%, #F5D78E 40%, #E8C271 60%, #D4A853 100%);
  --gold-glow: 0 0 20px rgba(212, 168, 83, 0.25), 0 0 40px rgba(212, 168, 83, 0.1);
  --gold-glow-strong: 0 0 30px rgba(212, 168, 83, 0.4), 0 0 60px rgba(212, 168, 83, 0.15);
  --gold-border: rgba(212, 168, 83, 0.35);
  --gold-bg-subtle: rgba(212, 168, 83, 0.06);
}

[data-theme='dark'] {
  --gold-1: #E8C271;
  --gold-2: #F5D78E;
  --gold-3: #FFEAB5;
  --gold-4: #FFF5DC;
  --gold-gradient: linear-gradient(135deg, #E8C271, #FFEAB5, #E8C271);
  --gold-text-gradient: linear-gradient(135deg, #E8C271 0%, #FFEAB5 40%, #F5D78E 60%, #E8C271 100%);
  --gold-glow: 0 0 20px rgba(232, 194, 113, 0.2), 0 0 40px rgba(232, 194, 113, 0.08);
  --gold-glow-strong: 0 0 30px rgba(232, 194, 113, 0.35), 0 0 60px rgba(232, 194, 113, 0.12);
  --gold-border: rgba(232, 194, 113, 0.3);
  --gold-bg-subtle: rgba(232, 194, 113, 0.05);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) {
    --gold-1: #E8C271;
    --gold-2: #F5D78E;
    --gold-3: #FFEAB5;
    --gold-4: #FFF5DC;
    --gold-gradient: linear-gradient(135deg, #E8C271, #FFEAB5, #E8C271);
    --gold-text-gradient: linear-gradient(135deg, #E8C271 0%, #FFEAB5 40%, #F5D78E 60%, #E8C271 100%);
    --gold-glow: 0 0 20px rgba(232, 194, 113, 0.2), 0 0 40px rgba(232, 194, 113, 0.08);
    --gold-glow-strong: 0 0 30px rgba(232, 194, 113, 0.35), 0 0 60px rgba(232, 194, 113, 0.12);
    --gold-border: rgba(232, 194, 113, 0.3);
    --gold-bg-subtle: rgba(232, 194, 113, 0.05);
  }
}

/* ═══════════════════════════════════════════════════
   1. HOMEPAGE HERO — Gold gradient title + animations
   ═══════════════════════════════════════════════════ */

.hero {
  position: relative;
}

/* Gold gradient text on hero title span */
.hero__title span {
  background: var(--gold-text-gradient);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gold-shimmer 4s ease-in-out infinite;
}

@keyframes gold-shimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* Hero chart animation */
.hero__chart-animation {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.hero__chart-svg {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 60%;
  max-width: 600px;
  height: 80%;
  opacity: 0.06;
}

.hero__chart-line {
  stroke: #D4A853;
  stroke-width: 2.5;
  fill: none;
  stroke-dasharray: 800;
  stroke-dashoffset: 800;
  animation: draw-chart 3s ease-out 0.5s forwards;
}

[data-theme='dark'] .hero__chart-line {
  stroke: #E8C271;
}

.hero__chart-fill {
  fill: url(#goldGradientFill);
  opacity: 0;
  animation: fade-in-chart 1.5s ease-out 2s forwards;
}

@keyframes draw-chart {
  to { stroke-dashoffset: 0; }
}

@keyframes fade-in-chart {
  to { opacity: 0.4; }
}

/* Hero content z-index */
.hero__content {
  position: relative;
  z-index: 2;
}
.hero__visual {
  position: relative;
  z-index: 2;
}

/* Floating card entrance */
.hero__floating-card {
  animation: float-card-in 0.8s var(--ease-out) both;
}
.hero__floating-card:nth-child(1) {
  animation-delay: 0.3s;
}
.hero__floating-card:nth-child(2) {
  animation-delay: 0.6s;
}

@keyframes float-card-in {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Subtle float on hero cards */
.hero__floating-card:first-child {
  animation: float-card-in 0.8s var(--ease-out) both, gentle-float 6s ease-in-out 1.2s infinite;
}
.hero__floating-card + .hero__floating-card {
  animation: float-card-in 0.8s var(--ease-out) 0.6s both, gentle-float-alt 5s ease-in-out 1.5s infinite;
}

@keyframes gentle-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
@keyframes gentle-float-alt {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

/* Hero badge gold accent */
.hero__badge {
  border: 1px solid var(--gold-border);
  background: var(--gold-bg-subtle);
  color: var(--gold-1);
}
.hero__badge svg {
  stroke: var(--gold-1);
}

/* Rising coin stack animation in hero visual */
.hero__coin-stack {
  position: absolute;
  bottom: 20px;
  left: -20px;
  display: flex;
  flex-direction: column-reverse;
  gap: 2px;
  z-index: 3;
}
.hero__coin {
  width: 32px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-gradient);
  box-shadow: 0 1px 4px rgba(212, 168, 83, 0.3);
  opacity: 0;
  animation: coin-stack-in 0.4s var(--ease-out) both;
}
.hero__coin:nth-child(1) { animation-delay: 1s; }
.hero__coin:nth-child(2) { animation-delay: 1.2s; }
.hero__coin:nth-child(3) { animation-delay: 1.4s; }
.hero__coin:nth-child(4) { animation-delay: 1.6s; }
.hero__coin:nth-child(5) { animation-delay: 1.8s; }

@keyframes coin-stack-in {
  from { opacity: 0; transform: translateY(10px) scaleX(0.8); }
  to { opacity: 1; transform: translateY(0) scaleX(1); }
}

/* ═══════════════════════════════════════════════════
   2. PREMIUM CARD HOVER EFFECTS — Golden glow
   ═══════════════════════════════════════════════════ */

.article-card {
  transition:
    box-shadow 0.35s var(--ease-out),
    transform 0.35s var(--ease-out),
    border-color 0.35s var(--ease-out);
  contain: layout style;
}

.article-card:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: var(--gold-glow), var(--shadow-lg);
  border-color: var(--gold-border);
}

.path-card {
  transition:
    box-shadow 0.35s var(--ease-out),
    transform 0.35s var(--ease-out),
    border-color 0.35s var(--ease-out);
  contain: layout style;
}

.path-card:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: var(--gold-glow), var(--shadow-md);
  border-color: var(--gold-border);
}

.win-card {
  transition:
    box-shadow 0.35s var(--ease-out),
    transform 0.35s var(--ease-out),
    border-color 0.35s var(--ease-out);
  contain: layout style;
}

.win-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--gold-glow), var(--shadow-md);
  border-color: var(--gold-border);
}

.card {
  transition:
    box-shadow 0.35s var(--ease-out),
    transform 0.35s var(--ease-out),
    border-color 0.35s var(--ease-out);
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--gold-glow), var(--shadow-md);
  border-color: var(--gold-border);
}

/* Subtle golden top-line on hovered cards */
.article-card::before,
.path-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold-gradient);
  opacity: 0;
  transition: opacity 0.35s var(--ease-out);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}
.article-card,
.path-card {
  position: relative;
}
.article-card:hover::before,
.path-card:hover::before {
  opacity: 1;
}

/* ═══════════════════════════════════════════════════
   3. SCROLL ANIMATIONS — Slide-in + count-up
   ═══════════════════════════════════════════════════ */

/* IntersectionObserver-based animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal-left.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal-right.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
.reveal-scale.is-visible {
  opacity: 1;
  transform: scale(1);
}

/* Staggered child animations */
.stagger-children .reveal {
  transition-delay: calc(var(--stagger-index, 0) * 0.1s);
}

/* Count-up numbers get a gold flash */
.count-up {
  font-variant-numeric: tabular-nums;
}
.count-up.is-counting {
  color: var(--gold-1);
  transition: color 0.5s ease;
}
.count-up.is-counted {
  transition: color 0.8s ease;
}

/* ═══════════════════════════════════════════════════
   4. ARTICLE PAGE ENHANCEMENTS
   ═══════════════════════════════════════════════════ */

/* Read progress bar */
.read-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: var(--gold-gradient);
  z-index: 100;
  transition: width 50ms linear;
  box-shadow: 0 0 8px rgba(212, 168, 83, 0.3);
}

/* Enhanced callout boxes */
.article-callout {
  background: var(--gold-bg-subtle);
  border-left: 3px solid var(--gold-1);
  border-radius: var(--radius-lg);
  padding: var(--space-5) var(--space-5) var(--space-5) var(--space-6);
  position: relative;
  overflow: hidden;
}

.article-callout::before {
  content: '';
  position: absolute;
  top: -20px;
  right: -10px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gold-gradient);
  opacity: 0.07;
}

.article-callout__label {
  color: var(--gold-1);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

/* Coin icon for callout */
.article-callout__label::before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--gold-gradient);
  flex-shrink: 0;
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.3);
}

/* Stat highlighting */
.article-content .stat-highlight {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4em;
  background: var(--gold-text-gradient);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline;
  line-height: 1.2;
}

/* Enhanced Traderise CTA in articles */
.article-cta {
  background: linear-gradient(135deg, #1a3822, #2D5F3B, #1a3822);
  border: 1px solid var(--gold-border);
  position: relative;
  overflow: hidden;
}

.article-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 168, 83, 0.12), transparent 70%);
}

.article-cta .btn--primary,
.article-cta .btn {
  background: var(--gold-gradient) !important;
  color: #1A1714 !important;
  font-weight: 800;
  border: none;
  box-shadow: 0 4px 16px rgba(212, 168, 83, 0.3);
  position: relative;
  overflow: hidden;
}

.article-cta .btn--primary:hover,
.article-cta .btn:hover {
  box-shadow: var(--gold-glow-strong);
  transform: translateY(-2px);
}

.article-cta .btn--primary::after,
.article-cta .btn::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(135deg, transparent 40%, rgba(255, 255, 255, 0.2) 50%, transparent 60%);
  transform: rotate(45deg);
  animation: btn-shine 3s ease-in-out infinite;
}

@keyframes btn-shine {
  0%, 100% { transform: translateX(-100%) rotate(45deg); }
  50% { transform: translateX(100%) rotate(45deg); }
}

.article-cta__badge {
  color: var(--gold-2);
}

/* Sidebar CTA gold styling */
.sidebar-card .btn--primary {
  background: var(--gold-gradient) !important;
  color: #1A1714 !important;
  font-weight: 800;
  border: none;
}

.sidebar-card .btn--primary:hover {
  box-shadow: var(--gold-glow);
}

/* ═══════════════════════════════════════════════════
   5. GOLD PARTICLE / FLOATING COIN EFFECTS
   ═══════════════════════════════════════════════════ */

.gold-particles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.gold-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold-1);
  opacity: 0;
  animation: particle-drift linear infinite;
}

@keyframes particle-drift {
  0% {
    opacity: 0;
    transform: translateY(100vh) scale(0);
  }
  10% {
    opacity: 0.4;
    transform: translateY(90vh) scale(1);
  }
  90% {
    opacity: 0.2;
  }
  100% {
    opacity: 0;
    transform: translateY(-10vh) scale(0.5);
  }
}

/* Floating micro-coins in hero area */
.hero__floating-coins {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

@media (max-width: 767px) {
  .hero__floating-coins {
    display: none;
  }
  .hero__coin-stack {
    display: none;
  }
}

.hero__micro-coin {
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, #D4A853, #F5D78E, #D4A853);
  opacity: 0.12;
  animation: micro-coin-float linear infinite;
  box-shadow: inset 0 1px 3px rgba(255, 255, 255, 0.3), 0 1px 4px rgba(212, 168, 83, 0.2);
}
.hero__micro-coin::after {
  content: '$';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 800;
  color: rgba(120, 80, 20, 0.5);
}

@keyframes micro-coin-float {
  0% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-20px) rotate(90deg); }
  50% { transform: translateY(-10px) rotate(180deg); }
  75% { transform: translateY(-30px) rotate(270deg); }
  100% { transform: translateY(0) rotate(360deg); }
}

.hero__micro-coin:nth-child(1) { top: 15%; left: 8%; animation-duration: 8s; width: 16px; height: 16px; }
.hero__micro-coin:nth-child(2) { top: 60%; left: 5%; animation-duration: 10s; animation-delay: -3s; opacity: 0.08; }
.hero__micro-coin:nth-child(3) { top: 30%; right: 12%; animation-duration: 9s; animation-delay: -5s; width: 14px; height: 14px; }
.hero__micro-coin:nth-child(4) { top: 75%; right: 8%; animation-duration: 7s; animation-delay: -2s; opacity: 0.1; }
.hero__micro-coin:nth-child(5) { top: 45%; left: 15%; animation-duration: 11s; animation-delay: -7s; width: 12px; height: 12px; opacity: 0.06; }

/* ═══════════════════════════════════════════════════
   6. INVESTMENT CALCULATOR SECTION
   ═══════════════════════════════════════════════════ */

.calc-section {
  padding: clamp(var(--space-12), 6vw, var(--space-24)) 0;
  background: var(--color-surface);
  position: relative;
  overflow: hidden;
}

.calc-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--gold-bg-subtle), transparent 70%);
  pointer-events: none;
}

.calc-card {
  background: var(--color-bg);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-2xl);
  padding: clamp(var(--space-6), 4vw, var(--space-10));
  display: grid;
  gap: var(--space-8);
  max-width: 900px;
  margin-inline: auto;
  position: relative;
  box-shadow: var(--gold-glow);
}

@media (min-width: 768px) {
  .calc-card {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.calc-card__header {
  grid-column: 1 / -1;
}

.calc-card__label {
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-1);
  margin-bottom: var(--space-2);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.calc-card__label svg {
  width: 16px;
  height: 16px;
  stroke: var(--gold-1);
}

.calc-card__title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 800;
  color: var(--color-text);
  letter-spacing: -0.02em;
}

/* Calculator inputs */
.calc-input-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.calc-field {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.calc-field__label {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text-muted);
}

.calc-field__input {
  padding: var(--space-3) var(--space-4);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-surface);
  color: var(--color-text);
  font-size: var(--text-base);
  font-weight: 600;
  font-family: var(--font-display);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.calc-field__input:focus {
  outline: none;
  border-color: var(--gold-1);
  box-shadow: 0 0 0 3px var(--gold-bg-subtle);
}

/* Calculator result */
.calc-result {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  padding: var(--space-6);
  background: var(--gold-bg-subtle);
  border-radius: var(--radius-xl);
  border: 1px solid var(--gold-border);
}

.calc-result__label {
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
}

.calc-result__value {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 800;
  background: var(--gold-text-gradient);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.1;
}

.calc-result__breakdown {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.calc-result__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--text-sm);
}

.calc-result__row-label {
  color: var(--color-text-muted);
}

.calc-result__row-value {
  font-weight: 700;
  color: var(--color-text);
  font-variant-numeric: tabular-nums;
}

.calc-result__row-value--green {
  color: var(--color-secondary);
}

/* Mini bar chart in calc */
.calc-chart {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 60px;
  margin-top: var(--space-2);
}

.calc-chart__bar {
  flex: 1;
  background: var(--gold-gradient);
  border-radius: 2px 2px 0 0;
  min-height: 4px;
  transition: height 0.6s var(--ease-out);
}

.calc-cta {
  grid-column: 1 / -1;
  text-align: center;
}

.calc-cta .btn--gold {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-8);
  background: var(--gold-gradient);
  color: #1A1714;
  font-weight: 800;
  font-size: var(--text-sm);
  border-radius: var(--radius-full);
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: box-shadow 0.3s, transform 0.3s;
  box-shadow: 0 4px 16px rgba(212, 168, 83, 0.25);
}

.calc-cta .btn--gold:hover {
  box-shadow: var(--gold-glow-strong);
  transform: translateY(-2px);
  color: #1A1714;
}

/* ═══════════════════════════════════════════════════
   7. FOOTER ENHANCEMENTS
   ═══════════════════════════════════════════════════ */

.footer {
  padding: clamp(var(--space-12), 5vw, var(--space-20)) 0 var(--space-8);
}

.footer__grid {
  gap: var(--space-8);
  margin-bottom: var(--space-10);
}

/* Social links */
.footer__social {
  display: flex;
  gap: var(--space-3);
  margin-top: var(--space-4);
}

.footer__social-link {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  background: var(--color-surface-offset);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  text-decoration: none;
}

.footer__social-link:hover {
  background: var(--gold-bg-subtle);
  color: var(--gold-1);
  box-shadow: 0 0 12px var(--gold-bg-subtle);
}

.footer__social-link svg {
  width: 16px;
  height: 16px;
}

/* Trust badges row */
.footer__trust {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  padding: var(--space-6) 0;
  border-top: 1px solid var(--color-divider);
  border-bottom: 1px solid var(--color-divider);
  margin-bottom: var(--space-6);
}

.footer__trust-badge {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  font-weight: 600;
}

.footer__trust-badge svg {
  width: 18px;
  height: 18px;
  stroke: var(--gold-1);
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════
   8. PERFORMANCE — containment + reduced motion
   ═══════════════════════════════════════════════════ */

/* CSS containment for performance */
.section {
  contain: layout style;
}
.hero {
  contain: layout style;
}

/* Reduced motion: disable all custom animations */
@media (prefers-reduced-motion: reduce) {
  .hero__title span {
    animation: none;
    background-size: 100% 100%;
  }
  .hero__chart-line,
  .hero__chart-fill {
    animation: none;
    opacity: 0.2;
    stroke-dashoffset: 0;
  }
  .hero__floating-card {
    animation: none !important;
    opacity: 1;
  }
  .hero__coin {
    animation: none;
    opacity: 1;
  }
  .hero__micro-coin {
    animation: none;
  }
  .gold-particle {
    animation: none;
    display: none;
  }
  .reveal,
  .reveal-left,
  .reveal-right,
  .reveal-scale {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .read-progress {
    transition: none;
  }
  .article-cta .btn::after,
  .article-cta .btn--primary::after {
    animation: none;
    display: none;
  }
  .calc-chart__bar {
    transition: none;
  }
  @keyframes gold-shimmer {
    0%, 100% { background-position: 0% 50%; }
  }
}

/* Win card amount gold styling */
.win-card__amount {
  background: var(--gold-text-gradient);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ═══════════════════════════════════════════════════
   ADDITIONAL POLISH
   ═══════════════════════════════════════════════════ */

/* Gold accent on section eyebrows */
.section__eyebrow {
  color: var(--gold-1);
}

/* Gold accent on category badges */
.article-card__cat {
  color: var(--gold-1);
}

/* Gold line under section titles */
.section__title {
  position: relative;
  display: inline-block;
}

.section__title::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: var(--gold-gradient);
  border-radius: 2px;
  margin-top: var(--space-3);
}

/* Primary button gold variant */
.btn--primary {
  background: var(--gold-gradient);
  color: #1A1714;
  border: none;
}
.btn--primary:hover {
  background: var(--gold-gradient);
  color: #1A1714;
  box-shadow: var(--gold-glow), var(--shadow-md);
}

/* Newsletter section gold accents */
.newsletter {
  background: linear-gradient(135deg, #1A1714, #2A2622);
  border: 1px solid var(--gold-border);
  position: relative;
  overflow: hidden;
}

.newsletter::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -30%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 168, 83, 0.1), transparent 70%);
  pointer-events: none;
}

.newsletter__title {
  color: var(--gold-3);
}

.newsletter__submit {
  background: var(--gold-gradient) !important;
  color: #1A1714 !important;
  font-weight: 800;
}

.newsletter__submit:hover {
  box-shadow: var(--gold-glow);
  color: #1A1714 !important;
  background: var(--gold-gradient) !important;
}

/* Article hero category gold */
.article-hero__cat {
  color: var(--gold-1);
}

/* Breadcrumb subtle gold on hover */
.breadcrumb a:hover {
  color: var(--gold-1);
}

/* Card tag gold */
.card__tag {
  color: var(--gold-1);
}

/* Sidebar card label gold */
.sidebar-card__label {
  color: var(--gold-1);
}

/* Path card link gold */
.path-card__link {
  color: var(--gold-1);
}
