/* ═══════════════════════════════════════════════════════════════
   HUSSLER HUB — SHARED STYLESHEET
   Single source of truth for design across all pages.
   Change a color here → it updates everywhere.
═══════════════════════════════════════════════════════════════ */

:root {
  /* Trust + Structure — midnight ink */
  --indigo: #0A0D2E;
  --indigo-deep: #0B0E3D;
  --indigo-soft: #2A2E80;
  --charcoal: #1A1A1A;
  --text-muted: #5C5C66;

  /* Canvas */
  --canvas: #FAFAF7;
  --canvas-warm: #F5F2EB;
  --divider: #ECEAE2;

  /* Gold family */
  --gold-pale: #E8BC3F;
  --gold-pale-light: #F5D472;
  --gold-pale-soft: #FFF4D6;
  --gold-royal: #D4A017;
  --gold-royal-deep: #B8860B;

  /* Legacy aliases */
  --coral: #0A0D2E;
  --coral-deep: #0B0E3D;
  --yellow: #E8BC3F;
  --mint: #E8BC3F;
  --gold: #D4A017;
  --gold-light: #E8BC3F;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(26, 26, 26, 0.06), 0 1px 3px rgba(26, 26, 26, 0.04);
  --shadow-md: 0 4px 12px rgba(26, 26, 26, 0.08), 0 2px 4px rgba(26, 26, 26, 0.04);
  --shadow-lg: 0 12px 32px rgba(26, 26, 26, 0.10), 0 4px 8px rgba(26, 26, 26, 0.05);
  --shadow-gold: 0 8px 24px rgba(212, 160, 23, 0.18), 0 2px 6px rgba(212, 160, 23, 0.12);

  /* Type */
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--canvas);
  color: var(--charcoal);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}

/* ─────────── HEADER ─────────── */
.header {
  position: sticky; top: 0; z-index: 100;
  background: var(--indigo); color: white;
  box-shadow: var(--shadow-md);
}
.header-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex; align-items: center; gap: 2rem;
}
.logo {
  display: flex; align-items: center; gap: 0.6rem;
  text-decoration: none; color: white; flex-shrink: 0;
}
.logo-mark {
  width: 38px; height: 38px;
  background: var(--gold); border-radius: 9px;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 700; font-size: 1.4rem;
  color: var(--indigo-deep);
  box-shadow: var(--shadow-sm);
}
.logo-text {
  font-family: var(--font-display);
  font-weight: 600; font-size: 1.35rem;
  letter-spacing: -0.01em;
}
.search-bar {
  flex: 1; max-width: 560px;
  display: flex; background: white;
  border-radius: 10px; overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.search-bar input {
  flex: 1; border: none;
  padding: 0.85rem 1.1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--charcoal);
  outline: none; background: transparent;
}
.search-bar input::placeholder { color: #999; }
.search-bar button {
  background: var(--gold-pale);
  color: var(--indigo-deep);
  border: none; padding: 0 1.4rem;
  font-family: var(--font-body);
  font-weight: 700; font-size: 0.92rem;
  cursor: pointer; transition: background 0.2s;
}
.search-bar button:hover { background: var(--gold-pale-light); }
.nav-links {
  display: flex; gap: 1.5rem; list-style: none;
}
.nav-links a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 0.9rem; font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold-light); }
@media (max-width: 880px) {
  .nav-links { display: none; }
  .header-inner { gap: 1rem; }
}

/* ─────────── HERO (index only) ─────────── */
.hero {
  background:
    radial-gradient(ellipse at top right, rgba(212, 160, 23, 0.08), transparent 50%),
    radial-gradient(ellipse at bottom left, rgba(255, 107, 71, 0.06), transparent 50%),
    var(--canvas);
  padding: 5rem 1.5rem 6rem;
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute;
  top: 15%; right: -5%;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(46, 49, 146, 0.04), transparent 70%);
  border-radius: 50%; pointer-events: none;
}
.hero-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem; align-items: center;
  position: relative;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--gold-pale);
  color: var(--gold);
  font-weight: 600; font-size: 0.78rem;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  margin-bottom: 1.5rem;
}
.hero-eyebrow::before { content: '✦'; color: var(--gold); }
.hero h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1.05; letter-spacing: -0.025em;
  color: var(--charcoal); margin-bottom: 1.25rem;
}
.hero h1 em {
  font-style: italic;
  color: var(--indigo); font-weight: 500;
}
.hero-sub {
  font-size: 1.1rem; color: var(--text-muted);
  max-width: 480px; margin-bottom: 2rem;
  line-height: 1.65;
}
.hero-ctas { display: flex; gap: 0.85rem; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.95rem 1.6rem; border-radius: 10px;
  font-family: var(--font-body);
  font-weight: 600; font-size: 0.95rem;
  text-decoration: none; cursor: pointer; border: none;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn-primary {
  background: var(--indigo);
  color: var(--gold-pale);
  box-shadow: 0 4px 14px rgba(10, 13, 46, 0.32);
  position: relative; overflow: hidden;
}
.btn-primary::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(232, 188, 63, 0.25) 50%, transparent 100%);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}
.btn-primary:hover {
  background: var(--indigo-deep);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(10, 13, 46, 0.45), 0 0 0 1px var(--gold-pale);
  color: var(--gold-pale-light);
}
.btn-primary:hover::before { transform: translateX(100%); }
.btn-secondary {
  background: transparent; color: var(--indigo);
  border: 1.5px solid var(--indigo);
}
.btn-secondary:hover { background: var(--indigo); color: white; }
.hero-stats {
  display: flex; gap: 2.5rem;
  margin-top: 3rem; padding-top: 1.75rem;
  border-top: 1px solid var(--divider);
}
.stat-num {
  font-family: var(--font-display);
  font-size: 1.6rem; font-weight: 600;
  color: var(--indigo); line-height: 1;
}
.stat-label {
  font-size: 0.78rem; color: var(--text-muted);
  margin-top: 0.3rem; letter-spacing: 0.02em;
}
.hero-visual { position: relative; }
.pick-card {
  background: white; border-radius: 20px;
  padding: 1.5rem; box-shadow: var(--shadow-lg);
  position: relative; max-width: 380px;
  margin-left: auto;
}
.pick-badge {
  position: absolute; top: -14px; left: 1.5rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--indigo-deep);
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.5rem 0.9rem; border-radius: 8px;
  box-shadow: var(--shadow-gold);
  display: inline-flex; align-items: center; gap: 0.4rem;
}
.pick-badge::before { content: '✦'; font-size: 0.9rem; }
.pick-image {
  background: linear-gradient(135deg, var(--canvas-warm), var(--gold-pale-soft));
  border-radius: 14px; height: 220px;
  margin-bottom: 1.25rem; margin-top: 0.75rem;
  display: grid; place-items: center;
  position: relative; overflow: hidden;
}
.pick-title {
  font-family: var(--font-display);
  font-weight: 600; font-size: 1.2rem;
  color: var(--charcoal);
  margin-bottom: 0.35rem; line-height: 1.25;
}
.pick-brand {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.pick-pricing {
  display: flex; align-items: baseline; gap: 0.7rem;
  margin-bottom: 1.2rem;
}
.pick-price {
  font-family: var(--font-display);
  font-weight: 600; font-size: 1.45rem;
  color: var(--indigo);
}
.pick-mrp {
  font-size: 0.95rem;
  color: var(--text-muted);
  text-decoration: line-through;
}
.pick-save {
  background: var(--mint); color: white;
  font-size: 0.72rem; font-weight: 700;
  padding: 0.25rem 0.5rem; border-radius: 5px;
}
.pick-cta {
  width: 100%; background: var(--indigo); color: white;
  padding: 0.85rem; border-radius: 10px; border: none;
  font-family: var(--font-body);
  font-weight: 600; font-size: 0.93rem;
  cursor: pointer; transition: background 0.2s;
}
.pick-cta:hover { background: var(--indigo-deep); }
@media (max-width: 880px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .pick-card { margin: 0 auto; }
  .hero-stats { gap: 1.5rem; }
}

/* ─────────── SPARKLES ─────────── */
@keyframes sparkle-drift {
  0%   { transform: translate(0, 0) rotate(0deg);   opacity: 0; }
  20%  { opacity: 0.7; }
  50%  { opacity: 1; }
  80%  { opacity: 0.6; }
  100% { transform: translate(-12px, -16px) rotate(180deg); opacity: 0; }
}
@keyframes sparkle-twinkle {
  0%, 100% { opacity: 0.3; transform: scale(0.85); }
  50%      { opacity: 1; transform: scale(1.1); }
}
.sparkle {
  position: absolute; pointer-events: none;
  color: var(--gold-royal);
  font-family: var(--font-display); font-weight: 700;
  animation: sparkle-drift 6s ease-in-out infinite;
  opacity: 0;
  text-shadow: 0 0 8px rgba(212, 160, 23, 0.5);
  z-index: 2;
}
.sparkle.s1 { top: 18%; left: 14%; font-size: 1.1rem; animation-delay: 0s; animation-duration: 7s; }
.sparkle.s2 { top: 32%; right: 18%; font-size: 0.85rem; animation-delay: 1.8s; animation-duration: 8s; }
.sparkle.s3 { bottom: 22%; left: 22%; font-size: 0.95rem; animation-delay: 3.4s; animation-duration: 6.5s; }
.sparkle.s4 { bottom: 30%; right: 14%; font-size: 1rem; animation-delay: 4.7s; animation-duration: 7.5s; }
.sparkle.s5 { top: 50%; left: 50%; font-size: 0.7rem; animation: sparkle-twinkle 4s ease-in-out infinite; animation-delay: 2s; }
.product-sparkle {
  position: absolute; pointer-events: none;
  color: var(--gold-royal);
  font-family: var(--font-display); font-weight: 700;
  animation: sparkle-drift 8s ease-in-out infinite;
  opacity: 0;
  text-shadow: 0 0 6px rgba(212, 160, 23, 0.4);
  z-index: 2;
}
.product-sparkle.p1 { top: 25%; right: 22%; font-size: 0.75rem; animation-delay: 0.5s; animation-duration: 8s; }
.product-sparkle.p2 { bottom: 28%; left: 24%; font-size: 0.65rem; animation-delay: 3.2s; animation-duration: 9s; }

/* ─────────── CATEGORIES (index) ─────────── */
.categories {
  background: var(--canvas-warm);
  padding: 3rem 1.5rem;
  border-top: 1px solid var(--divider);
  border-bottom: 1px solid var(--divider);
}
.categories-inner { max-width: 1280px; margin: 0 auto; }
.section-label {
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold-royal-deep);
  margin-bottom: 0.5rem;
}
.section-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  color: var(--charcoal);
  letter-spacing: -0.015em;
  margin-bottom: 2rem;
}
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
}
.category-card {
  background: white; border-radius: 14px;
  padding: 1.6rem 1.2rem; text-align: center;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none; color: var(--charcoal);
  border: 1px solid transparent;
}
.category-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}
.category-icon { font-size: 2rem; margin-bottom: 0.7rem; display: block; }
.category-name { font-weight: 600; font-size: 0.95rem; margin-bottom: 0.2rem; }
.category-count { font-size: 0.78rem; color: var(--text-muted); }

/* ─────────── FEATURED / PICKS GRID ─────────── */
.featured { padding: 5rem 1.5rem; background: var(--canvas); }
.featured-inner { max-width: 1280px; margin: 0 auto; }
.featured-header {
  display: flex; align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
  margin-bottom: 2.5rem;
}
.view-all {
  color: var(--indigo); text-decoration: none;
  font-weight: 600; font-size: 0.92rem;
  display: inline-flex; align-items: center; gap: 0.4rem;
  transition: gap 0.2s;
}
.view-all:hover { gap: 0.7rem; }
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
}
.product-card {
  background: white; border-radius: 16px; overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer; position: relative;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.product-image {
  background: linear-gradient(135deg, var(--canvas-warm), var(--divider));
  height: 200px;
  display: grid; place-items: center;
  position: relative; overflow: hidden;
}
.product-image img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.product-svg {
  width: 110px; height: 110px;
  stroke: var(--gold-royal); stroke-width: 2;
  fill: none; stroke-linecap: round; stroke-linejoin: round;
  opacity: 0.85;
  filter: drop-shadow(0 2px 4px rgba(11, 14, 61, 0.08));
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.product-card:hover .product-svg { transform: scale(1.05); opacity: 1; }
.hero-svg {
  width: 180px; height: 180px;
  stroke: var(--gold-royal); stroke-width: 2.5;
  fill: none; stroke-linecap: round; stroke-linejoin: round;
  opacity: 0.9;
  filter: drop-shadow(0 4px 8px rgba(11, 14, 61, 0.12));
}
.product-tag {
  position: absolute; top: 0.9rem; left: 0.9rem;
  background: var(--gold-pale);
  color: var(--indigo-deep);
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.05em;
  padding: 0.3rem 0.6rem; border-radius: 5px;
  z-index: 3;
}
.product-tag.new { background: var(--indigo-deep); color: var(--gold-pale); }
.product-tag.hot {
  background: var(--gold-royal); color: var(--indigo-deep);
  box-shadow: 0 2px 8px rgba(212, 160, 23, 0.35);
}
.product-info { padding: 1.1rem 1.2rem 1.3rem; }
.product-brand {
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 0.4rem;
}
.product-title {
  font-family: var(--font-display);
  font-weight: 500; font-size: 1.02rem;
  color: var(--charcoal);
  margin-bottom: 0.75rem; line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-pricing {
  display: flex; align-items: baseline;
  justify-content: space-between; gap: 0.5rem;
}
.product-price-group {
  display: flex; align-items: baseline; gap: 0.5rem;
}
.product-price {
  font-family: var(--font-display);
  font-weight: 600; font-size: 1.15rem;
  color: var(--indigo);
}
.product-mrp {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-decoration: line-through;
}
.product-discount {
  font-size: 0.78rem; font-weight: 700;
  color: var(--mint);
}

/* Empty/loading state for grids */
.grid-empty {
  text-align: center;
  padding: 3rem 1.5rem;
  color: var(--text-muted);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  grid-column: 1 / -1;
}

/* ─────────── AD ZONES ─────────── */
.ad-zone {
  max-width: 1280px; margin: 0 auto;
  padding: 1rem 1.5rem; position: relative;
}
.ad-zone-inner {
  background: var(--canvas-warm);
  border: 1px dashed var(--divider);
  border-radius: 12px; padding: 1rem;
  min-height: 90px;
  display: flex; align-items: center; justify-content: center;
  position: relative; transition: opacity 0.3s;
}
.ad-zone-label {
  position: absolute; top: 0.5rem; left: 0.75rem;
  font-size: 0.62rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-muted); opacity: 0.6;
}
.ad-zone-placeholder {
  font-family: var(--font-display);
  font-size: 0.82rem; color: var(--text-muted);
  font-style: italic; opacity: 0.5;
}
.ad-zone.leaderboard .ad-zone-inner { min-height: 90px; }
.ad-zone.mid-native .ad-zone-inner { min-height: 110px; }
.ad-zone.footer-rect .ad-zone-inner { min-height: 250px; max-width: 300px; margin: 0 auto; }
.ad-zone[data-state="inactive"] .ad-zone-inner { opacity: 0.4; }
@media (max-width: 768px) {
  .ad-zone { padding: 0.75rem 1rem; }
  .ad-zone-inner { min-height: 60px; padding: 0.75rem; }
}

/* ─────────── WHY (index) ─────────── */
.why {
  background:
    radial-gradient(ellipse at top right, rgba(212, 160, 23, 0.18), transparent 55%),
    radial-gradient(ellipse at bottom left, rgba(212, 160, 23, 0.10), transparent 55%),
    radial-gradient(circle at 50% 50%, rgba(255, 107, 71, 0.05), transparent 70%),
    linear-gradient(135deg, var(--indigo) 0%, var(--indigo-deep) 100%);
  color: white; padding: 5rem 1.5rem;
  position: relative; overflow: hidden;
}
.why::before {
  content: ''; position: absolute;
  top: -120px; right: -120px;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(212, 160, 23, 0.22), transparent 65%);
  border-radius: 50%; pointer-events: none;
}
.why::after {
  content: ''; position: absolute;
  bottom: -150px; left: -100px;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(212, 160, 23, 0.12), transparent 70%);
  border-radius: 50%; pointer-events: none;
}
.why-inner { max-width: 1100px; margin: 0 auto; position: relative; }
.why .section-label { color: var(--gold-light); }
.why .section-title {
  color: white; max-width: 700px; margin-bottom: 3rem;
}
.why .section-title em {
  font-style: italic; color: var(--gold-light); font-weight: 500;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.5rem;
}
.why-card-num {
  font-family: var(--font-display);
  font-size: 3rem; font-weight: 600;
  color: var(--gold); line-height: 1;
  margin-bottom: 1rem; display: block;
}
.why-card h3 {
  font-family: var(--font-display);
  font-weight: 600; font-size: 1.35rem;
  margin-bottom: 0.7rem; letter-spacing: -0.01em;
}
.why-card p {
  font-size: 0.96rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.65;
}

/* ─────────── CONTENT PAGES (about / privacy / terms) ─────────── */
.content {
  max-width: 800px;
  margin: 0 auto;
  padding: 5rem 1.5rem 6rem;
}
.content-eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--gold-pale-soft);
  color: var(--gold-royal-deep);
  font-weight: 600; font-size: 0.78rem;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.45rem 0.9rem; border-radius: 999px;
  margin-bottom: 1.5rem;
}
.content h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1; letter-spacing: -0.02em;
  color: var(--charcoal); margin-bottom: 2rem;
}
.content h1 em {
  font-style: italic; color: var(--indigo); font-weight: 500;
}
.content h2 {
  font-family: var(--font-display);
  font-weight: 600; font-size: 1.45rem;
  color: var(--charcoal);
  margin-top: 2.5rem; margin-bottom: 0.85rem;
  letter-spacing: -0.01em;
}
.content h3 {
  font-family: var(--font-display);
  font-weight: 600; font-size: 1.15rem;
  color: var(--charcoal);
  margin-top: 1.5rem; margin-bottom: 0.5rem;
}
.content p {
  font-size: 1.02rem;
  color: var(--charcoal);
  margin-bottom: 1.1rem;
  line-height: 1.7;
}
.content ul {
  margin: 0.5rem 0 1.5rem 1.5rem;
  color: var(--charcoal);
}
.content ul li {
  margin-bottom: 0.5rem;
  line-height: 1.7;
}
.content a {
  color: var(--indigo);
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-underline-offset: 3px;
}
.content a:hover {
  color: var(--gold-royal-deep);
}
.content-updated {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-style: italic;
}
.content-divider {
  border: none;
  border-top: 1px solid var(--divider);
  margin: 2.5rem 0;
}

/* ─────────── PAGE HEADER (picks / category pages) ─────────── */
.page-header {
  background: var(--canvas);
  padding: 4rem 1.5rem 2rem;
  border-bottom: 1px solid var(--divider);
}
.page-header-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.page-header h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.1; letter-spacing: -0.02em;
  color: var(--charcoal); margin-bottom: 0.75rem;
}
.page-header h1 em {
  font-style: italic; color: var(--indigo); font-weight: 500;
}
.page-header-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
}
.breadcrumb {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}
.breadcrumb a {
  color: var(--text-muted);
  text-decoration: none;
}
.breadcrumb a:hover { color: var(--indigo); }
.breadcrumb-sep { margin: 0 0.5rem; opacity: 0.5; }

/* ─────────── FOOTER ─────────── */
.footer {
  background: var(--canvas-warm);
  padding: 3.5rem 1.5rem 2rem;
  border-top: 1px solid var(--divider);
}
.footer-inner { max-width: 1280px; margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 3rem; margin-bottom: 2.5rem;
}
.footer-brand .logo {
  color: var(--charcoal);
  margin-bottom: 0.85rem;
}
.footer-brand .logo-mark {
  background: var(--indigo);
  color: var(--gold);
}
.footer-tagline {
  font-size: 0.92rem;
  color: var(--text-muted);
  max-width: 280px;
  line-height: 1.6;
}
.footer-col h4 {
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--charcoal); margin-bottom: 1rem;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.55rem; }
.footer-col a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--indigo); }
.footer-bottom {
  padding-top: 1.75rem;
  border-top: 1px solid var(--divider);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap; gap: 1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.footer-bottom a {
  color: var(--indigo);
  text-decoration: none; font-weight: 500;
}
.footer-disclaimer {
  text-align: center;
  font-size: 0.72rem;
  color: var(--text-muted);
  padding-top: 1rem;
  opacity: 0.7;
  line-height: 1.5;
}
.footer-disclaimer a {
  color: var(--text-muted);
  text-decoration: underline;
}
@media (max-width: 768px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1 / -1; }
}

/* ─────────── ANIMATIONS ─────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-eyebrow, .hero h1, .hero-sub, .hero-ctas, .hero-stats {
  animation: fadeUp 0.7s ease-out backwards;
}
.hero h1 { animation-delay: 0.1s; }
.hero-sub { animation-delay: 0.2s; }
.hero-ctas { animation-delay: 0.3s; }
.hero-stats { animation-delay: 0.4s; }
.pick-card { animation: fadeUp 0.8s ease-out 0.3s backwards; }
.content h1, .content-eyebrow, .content-updated {
  animation: fadeUp 0.6s ease-out backwards;
}
.page-header h1, .page-header-sub {
  animation: fadeUp 0.6s ease-out backwards;
}
