/* ============================================
   refresh.css - Distinctive design direction
   Bolder typography, bento layouts, sticker cards
============================================ */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@500;600;700&family=Instrument+Serif&display=swap');

:root {
  --font-display: 'Space Grotesk', 'Plus Jakarta Sans', sans-serif;
  --font-serif: 'Instrument Serif', Georgia, serif;
  --ink: #0a1f44;            /* deep navy (was black #0c0c10) */
  --ink-deep: #061731;       /* darker navy */
  --ink-soft: #1f3066;       /* slightly lighter navy */
  --blue: #1e40af;           /* primary blue */
  --blue-bright: #3b82f6;
  --blue-pale: #dbeafe;
  --blue-paler: #eff6ff;
  --paper: #f5f7fb;          /* paper now has a slight blue tint */
  --paper-2: #e8edf6;
  --coral: #ff5e57;
  --emerald: #10b981;
  --butter: #ffd166;
  --sky: #4cc9f0;
  --grape: #7c3aed;
}

/* Off-white paper background gives a magazine feel */
body { background: var(--paper); }

/* Typography refresh */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  letter-spacing: -0.03em;
}
h1 { font-weight: 700; line-height: 1.05; }
h2 { font-weight: 700; line-height: 1.1; }

.serif { font-family: var(--font-serif); font-weight: 500; font-style: italic; }

/* ============ Section numbering ============ */
.section-num {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}
.section-num .nm {
  display: inline-grid;
  place-items: center;
  width: 36px; height: 36px;
  background: linear-gradient(135deg, #4338ca, #6d28d9);
  color: var(--paper);
  border-radius: 50%;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0;
  box-shadow: 0 4px 12px rgba(67,56,202,0.3);
}
.section-num .lbl {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
/* Colorful section number variants */
.section-num.coral .nm { background: linear-gradient(135deg, #f97316, #ec4899); box-shadow: 0 4px 12px rgba(249,115,22,0.35); }
.section-num.emerald .nm { background: linear-gradient(135deg, #10b981, #059669); box-shadow: 0 4px 12px rgba(16,185,129,0.35); }
.section-num.purple .nm { background: linear-gradient(135deg, #8b5cf6, #6d28d9); box-shadow: 0 4px 12px rgba(139,92,246,0.35); }
.section-num.gold .nm { background: linear-gradient(135deg, #f59e0b, #d97706); box-shadow: 0 4px 12px rgba(245,158,11,0.35); }
.section-num.pink .nm { background: linear-gradient(135deg, #ec4899, #be185d); box-shadow: 0 4px 12px rgba(236,72,153,0.35); }
.section-num.sky .nm { background: linear-gradient(135deg, #0ea5e9, #2563eb); box-shadow: 0 4px 12px rgba(14,165,233,0.35); }

/* ============ Chunky pill buttons ============ */
.btn.cta {
  background: var(--ink);
  color: var(--paper);
  height: 52px;
  padding: 0 28px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  border: 2px solid var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.2s ease;
}
.btn.cta:hover {
  background: transparent;
  color: var(--ink);
  transform: translateY(-2px);
}
.btn.cta.invert {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
}
.btn.cta.invert:hover {
  background: transparent;
  color: var(--paper);
}
.btn.cta.outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn.cta.outline:hover {
  background: var(--ink);
  color: var(--paper);
}
.btn.cta.accent {
  background: var(--coral);
  border-color: var(--coral);
  color: #fff;
}
.btn.cta.accent:hover {
  background: transparent;
  color: var(--coral);
}

/* ============ Sticker card (tilted floating) ============ */
.sticker {
  background: #fff;
  border-radius: 20px;
  padding: 16px;
  box-shadow:
    0 1px 2px rgba(0,0,0,0.04),
    0 12px 28px rgba(0,0,0,0.12);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.sticker:hover { transform: rotate(0) scale(1.04) !important; }
.sticker-1 { transform: rotate(-4deg); }
.sticker-2 { transform: rotate(3deg); }
.sticker-3 { transform: rotate(-2deg); }
.sticker-4 { transform: rotate(5deg); }

/* ============ Bento Hero (landing) ============ */
.bento {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: auto auto;
  gap: 14px;
  margin: 18px 0 48px;
  min-height: 540px;
}
.bento-main {
  grid-column: 1; grid-row: 1 / 3;
  background: linear-gradient(135deg, #1e1b4b 0%, #312e81 50%, #4338ca 100%);
  color: var(--paper);
  border-radius: 28px;
  padding: 44px 44px 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  min-height: 540px;
}

/* Floating activity card on bento-main */
.bento-floating {
  position: absolute;
  top: 28px; right: 32px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 16px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--paper);
  font-weight: 600;
  z-index: 2;
  animation: float 3s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.bento-floating .live-dot {
  width: 8px; height: 8px;
  background: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(16,185,129,0.3);
  animation: pulse 1.5s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(16,185,129,0.3); }
  50% { box-shadow: 0 0 0 8px rgba(16,185,129,0.1); }
}

/* Mini preview card inside bento-main */
.bento-preview {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 18px;
  padding: 16px;
  display: flex;
  gap: 14px;
  align-items: center;
  margin: 28px 0 0;
  max-width: 380px;
  position: relative;
  z-index: 1;
}
.bento-preview .ic-blk {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, #f97316, #ef4444);
  display: grid; place-items: center;
  font-size: 22px;
  color: #fff;
  flex-shrink: 0;
}
.bento-preview .pv-info { flex: 1; min-width: 0; }
.bento-preview .pv-info .label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fbbf24;
  margin-bottom: 4px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.bento-preview .pv-info .label .pulse-fire {
  width: 6px; height: 6px;
  background: #f97316;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(249,115,22,0.3);
  animation: pulse 1.5s ease-in-out infinite;
}
.bento-preview .pv-info .title {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--paper);
  line-height: 1.3;
}
.bento-preview .pv-info .meta {
  font-size: 12px;
  opacity: 0.75;
  margin-top: 4px;
}
.bento-preview .arrow-pv {
  width: 32px; height: 32px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 12px;
  color: var(--paper);
}

/* Avatar stack on hero */
.hero-avatars {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
}
.hero-avatars .ava-row {
  display: inline-flex;
}
.hero-avatars .ava-row .av {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 2px solid var(--ink);
  margin-left: -10px;
  background: linear-gradient(135deg, var(--coral), #f97316);
  display: grid; place-items: center;
  color: #fff;
  font-weight: 700;
  font-size: 11px;
}
.hero-avatars .ava-row .av:first-child { margin-left: 0; }
.hero-avatars .ava-row .av:nth-child(2) { background: linear-gradient(135deg, #f59e0b, #d97706); }
.hero-avatars .ava-row .av:nth-child(3) { background: linear-gradient(135deg, var(--emerald), #059669); }
.hero-avatars .ava-row .av:nth-child(4) { background: linear-gradient(135deg, #ec4899, #db2777); }
.hero-avatars .ava-row .av:nth-child(5) { background: linear-gradient(135deg, #06b6d4, #0891b2); border: 2px solid var(--ink); }
.hero-avatars .ava-text { font-size: 13px; color: rgba(255,255,255,0.85); line-height: 1.3; }
.hero-avatars .ava-text strong { color: var(--paper); display: block; font-size: 14px; }
.bento-main::before {
  content: "";
  position: absolute;
  bottom: -120px; left: -100px;
  width: 360px; height: 360px;
  background: radial-gradient(closest-side, #f97316 0%, transparent 70%);
  opacity: 0.45;
  pointer-events: none;
}
.bento-main::after {
  content: "";
  position: absolute;
  top: -120px; right: -100px;
  width: 380px; height: 380px;
  background: radial-gradient(closest-side, #ec4899 0%, transparent 70%);
  opacity: 0.4;
  pointer-events: none;
}
.bento-main > * { position: relative; z-index: 1; }
.bento-main h1 {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  color: var(--paper);
  margin: 0;
  font-weight: 700;
}
.bento-main h1 .accent { color: #fbbf24; font-style: italic; font-family: var(--font-serif); font-weight: 400; }
.bento-main .lead {
  font-size: 17px;
  opacity: 0.85;
  max-width: 460px;
  line-height: 1.5;
  margin: 22px 0 32px;
}
.bento-main .cta-row { display: flex; gap: 12px; flex-wrap: wrap; }
.bento-main .strip {
  display: flex; align-items: center; gap: 24px;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.12);
  flex-wrap: wrap;
}
.bento-main .strip-row { display: flex; align-items: center; gap: 12px; }
.bento-main .strip-row .num { font-family: var(--font-display); font-size: 26px; font-weight: 700; line-height: 1; }
.bento-main .strip-row .lbl { font-size: 12px; opacity: 0.7; line-height: 1.3; }

.bento-top {
  grid-column: 2; grid-row: 1;
  border-radius: 28px;
  background: linear-gradient(135deg, #f97316 0%, #ec4899 60%, #be185d 100%);
  padding: 26px 26px 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--paper);
  position: relative;
  overflow: hidden;
  min-height: 260px;
}
.bento-top::before {
  content: "";
  position: absolute;
  top: -80px; right: -80px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(255,255,255,0.18), transparent 70%);
}
.bento-top::after {
  content: "";
  position: absolute;
  bottom: -100px; left: -50px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(76,201,240,0.35), transparent 70%);
}
.bento-top > * { position: relative; z-index: 1; }
.bento-top .label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  padding: 6px 12px;
  border-radius: 999px;
  width: max-content;
  color: var(--paper);
  border: 1px solid rgba(255,255,255,0.18);
}
.bento-top h3 {
  font-size: 1.4rem;
  margin: 12px 0 12px;
  max-width: 280px;
  color: var(--paper);
  line-height: 1.15;
}
.bento-top .perk-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 14px;
}
.bento-top .perk-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.92);
  font-weight: 500;
}
.bento-top .perk-list i {
  width: 18px; height: 18px;
  background: rgba(255,255,255,0.9);
  color: #be185d;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  flex-shrink: 0;
}
.bento-top .bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.bento-top .floaty {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  padding: 7px 14px;
  font-size: 12px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--paper);
}
.bento-top .floaty .dot {
  width: 7px; height: 7px;
  background: var(--emerald);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(16,185,129,0.3);
}
.bento-top .arrow {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--paper);
  color: var(--ink);
  display: grid; place-items: center;
  font-size: 14px;
  flex-shrink: 0;
  transition: transform 0.25s;
}
.bento-top:hover .arrow { transform: rotate(-45deg); }

.bento-bottom {
  grid-column: 2; grid-row: 2;
  border-radius: 28px;
  overflow: hidden;
  background: var(--paper-2);
  position: relative;
  min-height: 260px;
  display: flex;
  align-items: flex-end;
  padding: 0;
}
.bento-bottom img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.bento-bottom .label-overlay {
  position: relative; z-index: 1;
  background: var(--paper);
  margin: 22px;
  padding: 14px 18px;
  border-radius: 14px;
  display: flex; align-items: center; gap: 12px;
  font-weight: 600;
  font-size: 13.5px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}
.bento-bottom .label-overlay .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--emerald); }

@media (max-width: 1000px) {
  .bento { grid-template-columns: 1fr; min-height: auto; }
  .bento-main, .bento-top, .bento-bottom { grid-column: 1; }
  .bento-main { grid-row: auto; min-height: 460px; padding: 36px 28px; }
  .bento-top { grid-row: auto; }
  .bento-bottom { grid-row: auto; }
}

/* ============ NEW: Stats Band (colorful, content-rich) ============ */
.stats-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: 18px 0 36px;
}
.stat-tile {
  border-radius: 22px;
  padding: 24px;
  position: relative;
  overflow: hidden;
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s;
}
.stat-tile:hover { transform: translateY(-4px); }
.stat-tile.t-coral { background: linear-gradient(135deg, #fff7ed 0%, #fed7aa 100%); color: var(--ink); }
.stat-tile.t-emerald { background: linear-gradient(135deg, #ecfdf5 0%, #a7f3d0 100%); color: var(--ink); }
.stat-tile.t-blue { background: linear-gradient(135deg, #eff6ff 0%, #bfdbfe 100%); color: var(--ink); }
.stat-tile.t-gold { background: linear-gradient(135deg, #fefce8 0%, #fde68a 100%); color: var(--ink); }
.stat-tile .st-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.stat-tile .st-ic {
  width: 42px; height: 42px;
  border-radius: 12px;
  display: grid; place-items: center;
  font-size: 18px;
  color: #fff;
}
.stat-tile.t-coral .st-ic { background: #f97316; }
.stat-tile.t-emerald .st-ic { background: #10b981; }
.stat-tile.t-blue .st-ic { background: #2563eb; }
.stat-tile.t-gold .st-ic { background: #f59e0b; }
.stat-tile .trend-chip {
  font-size: 11px;
  font-weight: 700;
  padding: 4px 8px;
  background: rgba(255,255,255,0.7);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.stat-tile.t-coral .trend-chip { color: #ea580c; }
.stat-tile.t-emerald .trend-chip { color: #047857; }
.stat-tile.t-blue .trend-chip { color: #1d4ed8; }
.stat-tile.t-gold .trend-chip { color: #b45309; }
.stat-tile .big-num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.4vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--ink);
}
.stat-tile .st-lbl {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-soft);
  margin-top: 4px;
}
.stat-tile .watermark-ic {
  position: absolute;
  bottom: -10px;
  right: -10px;
  font-size: 90px;
  opacity: 0.12;
  pointer-events: none;
}
@media (max-width: 800px) { .stats-band { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .stats-band { grid-template-columns: 1fr; } }

/* ============ NEW: Why us (4 rich tiles) ============ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 24px 0;
}
.why-tile {
  background: #fff;
  border: 1px solid var(--paper-2);
  border-radius: 22px;
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  min-height: 280px;
}
.why-tile:hover {
  transform: translateY(-6px);
  border-color: var(--ink);
  box-shadow: 0 20px 40px rgba(10,31,68,0.1);
}
.why-tile::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
}
.why-tile.w-1::after { background: linear-gradient(90deg, #f97316, #fbbf24); }
.why-tile.w-2::after { background: linear-gradient(90deg, #10b981, #34d399); }
.why-tile.w-3::after { background: linear-gradient(90deg, #2563eb, #60a5fa); }
.why-tile.w-4::after { background: linear-gradient(90deg, #ec4899, #f472b6); }

.why-tile .why-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  display: grid; place-items: center;
  font-size: 22px;
  color: #fff;
  margin-bottom: 16px;
}
.why-tile.w-1 .why-icon { background: linear-gradient(135deg, #f97316, #fbbf24); }
.why-tile.w-2 .why-icon { background: linear-gradient(135deg, #10b981, #34d399); }
.why-tile.w-3 .why-icon { background: linear-gradient(135deg, #2563eb, #60a5fa); }
.why-tile.w-4 .why-icon { background: linear-gradient(135deg, #ec4899, #f472b6); }

.why-tile h4 {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
  color: var(--ink);
}
.why-tile p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.5;
  margin: 0;
  opacity: 0.8;
}
.why-tile .mini-stats {
  display: flex;
  gap: 14px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px dashed var(--paper-2);
}
.why-tile .mini-stats span {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-soft);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.why-tile .mini-stats i { color: var(--blue-bright); font-size: 11px; }

@media (max-width: 900px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .why-grid { grid-template-columns: 1fr; } }

/* ============ NEW: Activity ticker (real-time feel) ============ */
.activity-band {
  background: #fff;
  border: 1px solid var(--paper-2);
  border-radius: 22px;
  padding: 24px 28px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  align-items: center;
  margin: 24px 0;
}
.activity-band .ab-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}
.activity-band .ab-label .pulse-dot {
  width: 8px; height: 8px;
  background: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(16,185,129,0.2);
  animation: pulse 1.5s ease-in-out infinite;
}
.activity-band .ab-feed {
  display: flex;
  gap: 22px;
  overflow: hidden;
  position: relative;
}
.activity-band .ab-feed::after {
  content: "";
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 80px;
  background: linear-gradient(90deg, transparent, #fff);
  pointer-events: none;
}
.activity-row {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  animation: ticker 30s linear infinite;
  white-space: nowrap;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.activity-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: var(--ink-soft);
}
.activity-item strong { color: var(--ink); }
.activity-item .ai-av {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  color: #fff;
  display: grid; place-items: center;
  font-size: 10px;
  font-weight: 700;
}

@media (max-width: 700px) {
  .activity-band { grid-template-columns: 1fr; gap: 14px; }
}

/* ============ Marquee strip ============ */
.marquee-strip {
  background: linear-gradient(90deg, #1e1b4b 0%, #4c1d95 25%, #be185d 50%, #ea580c 75%, #d97706 100%);
  color: var(--paper);
  padding: 16px 0;
  overflow: hidden;
  border-radius: 999px;
  margin: 32px 0;
  position: relative;
}
.marquee-row {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  animation: scroll 30s linear infinite;
}
.marquee-row span {
  display: inline-flex; align-items: center; gap: 14px;
}
.marquee-row span::after {
  content: "✦";
  color: #fbbf24;
  font-size: 14px;
}
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============ Refresh Page Hero (more distinctive) ============ */
.page-hero.v2 {
  background: var(--ink);
  color: var(--paper);
  border: none;
  border-radius: 28px;
  padding: 0;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  overflow: hidden;
  position: relative;
}
.page-hero.v2::before {
  content: "";
  position: absolute;
  bottom: -150px; left: 30%;
  width: 360px; height: 360px;
  background: radial-gradient(closest-side, var(--coral) 0%, transparent 70%);
  opacity: 0.4;
  pointer-events: none;
}
.page-hero.v2 .page-hero-left { color: var(--paper); padding: 56px 48px; }
.page-hero.v2 .page-hero-left h1 { color: var(--paper); }
.page-hero.v2 .page-hero-left .lead { color: rgba(255,255,255,0.78); }
.page-hero.v2 .page-hero-stats { border-color: rgba(255,255,255,0.12); }
.page-hero.v2 .page-hero-stats .num { color: var(--paper); }
.page-hero.v2 .page-hero-stats .lbl { color: rgba(255,255,255,0.6); }

/* ============ Refresh: brand pills with logo only style ============ */
.logo-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  justify-content: center;
  padding: 24px 0;
  border-top: 1px solid var(--paper-2);
  border-bottom: 1px solid var(--paper-2);
  margin: 24px 0;
}
.logo-strip .logo-mark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  color: var(--ink-soft);
  opacity: 0.6;
  transition: opacity 0.2s;
  letter-spacing: -0.02em;
}
.logo-strip .logo-mark:hover { opacity: 1; }

/* ============ Refresh: testimonial sticker quote ============ */
.quote-sticker {
  background: linear-gradient(135deg, #fef3c7 0%, #fbbf24 50%, #f97316 100%);
  padding: 32px;
  border-radius: 28px;
  position: relative;
  max-width: 460px;
  transform: rotate(-1.5deg);
  box-shadow: 0 24px 48px rgba(249,115,22,0.25);
}
.quote-sticker::before {
  content: "\201C";
  position: absolute;
  top: -10px; left: 16px;
  font-size: 100px;
  font-family: Georgia, serif;
  color: var(--ink);
  line-height: 1;
}
.quote-sticker p {
  font-family: var(--font-serif);
  font-size: 22px;
  font-style: italic;
  line-height: 1.4;
  color: var(--ink);
  margin: 12px 0 16px;
  font-weight: 500;
}
.quote-sticker .who { display: flex; align-items: center; gap: 12px; }
.quote-sticker .who .avatar { background: var(--ink); color: var(--paper); }

/* ============ Refresh: category chip with circular icon ============ */
.cat-chip-v2 {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 20px 10px 10px;
  background: #fff;
  border: 1px solid var(--paper-2);
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
  transition: all 0.2s;
}
.cat-chip-v2:hover {
  border-color: var(--ink);
  transform: translateY(-2px);
}
.cat-chip-v2 .ic {
  width: 30px; height: 30px;
  border-radius: 50%;
  display: grid; place-items: center;
  color: #fff;
  font-size: 13px;
  flex-shrink: 0;
}

/* ============ Refresh v3: bento with real images ============ */
.bento-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: 32px 0;
}
.bento-cell {
  border-radius: 22px;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: var(--ink);
  transition: all 0.35s cubic-bezier(.22,1,.36,1);
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--paper-2);
}
/* Tinted band backgrounds matching each category */
.bento-cell.b-1 .bc-band { background: linear-gradient(180deg, #ffe4e6 0%, #fff 100%); }
.bento-cell.b-2 .bc-band { background: linear-gradient(180deg, #d1fae5 0%, #fff 100%); }
.bento-cell.b-3 .bc-band { background: linear-gradient(180deg, #dbeafe 0%, #fff 100%); }
.bento-cell.b-4 .bc-band { background: linear-gradient(180deg, #e0e7ff 0%, #fff 100%); }
.bento-cell.b-5 .bc-band { background: linear-gradient(180deg, #ede9fe 0%, #fff 100%); }
.bento-cell.b-7 .bc-band { background: linear-gradient(180deg, #e0f2fe 0%, #fff 100%); }
.bento-cell.b-8 .bc-band { background: linear-gradient(180deg, #fce7f3 0%, #fff 100%); }
.bento-cell:hover { transform: translateY(-6px); box-shadow: 0 24px 48px rgba(0,0,0,0.12); }
.bento-cell:hover .bc-img img { transform: scale(1.08); }
.bento-cell:hover .bc-arrow { background: var(--ink); color: var(--paper); transform: rotate(-45deg); }

/* Image area */
.bento-cell .bc-img {
  position: relative;
  height: 170px;
  overflow: hidden;
}
.bento-cell .bc-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(.22,1,.36,1);
}
.bento-cell .bc-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,0.18) 100%);
}

/* Top overlay: tag pill + number */
.bento-cell .bc-overlay {
  position: absolute;
  top: 14px; left: 14px; right: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 2;
}
.bento-cell .bc-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(6px);
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.02em;
}
.bento-cell .bc-tag i { font-size: 9px; }
.bento-cell .bc-num {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(6px);
  padding: 4px 9px;
  border-radius: 999px;
  letter-spacing: 0.05em;
}

/* Bottom band */
.bento-cell .bc-band {
  position: relative;
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 1;
  background: #fff;
}
.bento-cell .bc-band-top {
  display: flex;
  align-items: center;
  gap: 12px;
}
.bento-cell .bc-ic {
  width: 38px; height: 38px;
  border-radius: 11px;
  display: grid; place-items: center;
  font-size: 16px;
  flex-shrink: 0;
  color: #fff;
}
.bento-cell .bc-title-wrap { flex: 1; min-width: 0; }
.bento-cell h4 {
  font-size: 16px;
  margin: 0;
  letter-spacing: -0.02em;
  line-height: 1.2;
  font-weight: 700;
  color: var(--ink);
}
.bento-cell .bc-meta {
  font-size: 12px;
  color: var(--ink-soft);
  opacity: 0.7;
  margin-top: 2px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}
.bento-cell .bc-meta .star { color: #f59e0b; }
.bento-cell .bc-meta .sep { opacity: 0.4; }
.bento-cell .bc-arrow {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--paper);
  color: var(--ink);
  display: grid; place-items: center;
  font-size: 12px;
  transition: all 0.3s;
  flex-shrink: 0;
}

/* Color stripe at top of band */
.bento-cell .bc-band::before {
  content: "";
  position: absolute;
  top: 0; left: 18px; right: 18px;
  height: 3px;
  border-radius: 3px;
}
.bento-cell.b-1 .bc-band::before { background: #f43f5e; }
.bento-cell.b-2 .bc-band::before { background: #10b981; }
.bento-cell.b-3 .bc-band::before { background: #3b82f6; }
.bento-cell.b-4 .bc-band::before { background: #2563eb; }
.bento-cell.b-5 .bc-band::before { background: #8b5cf6; }
.bento-cell.b-6 .bc-band::before { background: var(--coral); }
.bento-cell.b-7 .bc-band::before { background: #0ea5e9; }
.bento-cell.b-8 .bc-band::before { background: #ec4899; }

/* Dark variant — full ink card with overlay text on image */
.bento-cell.dark {
  background: var(--ink);
  border-color: var(--ink);
}
.bento-cell.dark .bc-band { background: var(--ink); }
.bento-cell.dark h4 { color: var(--paper); }
.bento-cell.dark .bc-meta { color: rgba(255,255,255,0.6); }
.bento-cell.dark .bc-arrow { background: rgba(255,255,255,0.12); color: var(--paper); }
.bento-cell.dark:hover .bc-arrow { background: var(--paper); color: var(--ink); }


@media (max-width: 900px) { .bento-row { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .bento-row { grid-template-columns: 1fr; } }

/* ============ Refresh: ribbon banner ============ */
.ribbon {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--paper-2);
  padding: 14px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  width: max-content;
  max-width: 100%;
  margin-bottom: 18px;
}
.ribbon .badge-ic {
  width: 28px; height: 28px;
  background: var(--coral);
  color: #fff;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 12px;
  flex-shrink: 0;
}

/* Navbar refresh */
.navbar {
  background: var(--paper) !important;
  border-bottom-color: transparent;
}
.brand { font-family: var(--font-display); }
.brand-logo {
  background: var(--ink);
  border-radius: 12px;
}
.nav-search input {
  background: #fff;
  border-color: var(--paper-2);
  border-radius: 999px;
}
.nav-actions .btn-primary {
  background: var(--ink);
  border-radius: 999px;
}
.nav-actions .btn-primary:hover { background: var(--ink-soft); }
.nav-actions .btn-ghost { border-radius: 999px; }

/* Card refresh: tighter borders, sharper shadow on hover */
.x-card { border-color: var(--paper-2); border-radius: 22px; }
.x-card:hover { box-shadow: 0 20px 40px rgba(0,0,0,0.08); }
.m-card { border-color: var(--paper-2); border-radius: 22px; }
.feat-tile { border-color: var(--paper-2); border-radius: 22px; }
.cat-chip { border-color: var(--paper-2); }
.brand-pill { border-color: var(--paper-2); }

/* Refresh footer to navy color */
.footer { background: linear-gradient(180deg, var(--ink) 0%, var(--ink-deep) 100%); border-radius: 32px 32px 0 0; }

/* Brand logo as blue gradient */
.brand-logo {
  background: linear-gradient(135deg, #1e40af, #3b82f6);
}

/* ============================================
   NEW: Learning Track (Section 02 replacement)
============================================ */
.track-wrap {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  background: linear-gradient(135deg, #4c1d95 0%, #6d28d9 50%, #a855f7 100%);
  color: var(--paper);
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  min-height: 460px;
}
.track-wrap::before {
  content: "";
  position: absolute;
  top: -100px; right: 30%;
  width: 300px; height: 300px;
  background: radial-gradient(closest-side, #ec4899 0%, transparent 70%);
  opacity: 0.5;
  pointer-events: none;
}
.track-wrap::after {
  content: "";
  position: absolute;
  bottom: -100px; left: -50px;
  width: 280px; height: 280px;
  background: radial-gradient(closest-side, #f59e0b 0%, transparent 70%);
  opacity: 0.4;
  pointer-events: none;
}
.track-intro {
  padding: 44px 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
.track-intro .label-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  background: rgba(255,255,255,0.1);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  width: max-content;
  border: 1px solid rgba(255,255,255,0.12);
}
.track-intro h3 {
  font-size: clamp(1.6rem, 2.8vw, 2.1rem);
  color: var(--paper);
  margin: 18px 0 14px;
  line-height: 1.1;
}
.track-intro h3 .accent {
  font-family: var(--font-serif);
  font-style: italic;
  color: #fbbf24;
  font-weight: 400;
}
.track-intro .lead {
  font-size: 15px;
  color: rgba(255,255,255,0.78);
  margin-bottom: 24px;
  max-width: 360px;
  line-height: 1.55;
}
.track-intro .partners {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
  align-items: center;
}
.track-intro .partners .pl {
  width: 32px; height: 32px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 12px;
  font-weight: 800;
  color: #fff;
  border: 2px solid var(--ink);
  margin-left: -6px;
}
.track-intro .partners .pl:first-child { margin-left: 0; }
.track-intro .partners .plus {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  margin-left: 6px;
}

.track-steps {
  position: relative;
  z-index: 1;
  padding: 44px 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.01) 100%);
  border-left: 1px solid rgba(255,255,255,0.08);
}
.track-step {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 14px 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  text-decoration: none;
  color: var(--paper);
  transition: all 0.25s;
  position: relative;
}
.track-step::before {
  content: "";
  position: absolute;
  left: 36px; top: -16px;
  width: 1px; height: 14px;
  background: rgba(255,255,255,0.15);
}
.track-step:first-child::before { display: none; }
.track-step:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
  transform: translateX(6px);
}
.track-step .step-num {
  width: 44px; height: 44px;
  background: #fbbf24;
  border-radius: 12px;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
}
.track-step:nth-child(2) .step-num { background: #f97316; color: #fff; }
.track-step:nth-child(3) .step-num { background: #ec4899; color: #fff; }
.track-step:nth-child(4) .step-num { background: #10b981; color: #fff; }
.track-step .step-info { min-width: 0; }
.track-step .step-info .meta {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-bottom: 2px;
}
.track-step .step-info h5 {
  font-size: 15px;
  color: var(--paper);
  margin: 0;
  letter-spacing: -0.01em;
  font-weight: 600;
}
.track-step .step-arrow {
  width: 32px; height: 32px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 12px;
  color: var(--paper);
  transition: all 0.25s;
}
.track-step:hover .step-arrow { background: var(--paper); color: var(--ink); }

@media (max-width: 900px) {
  .track-wrap { grid-template-columns: 1fr; }
  .track-steps { border-left: none; border-top: 1px solid rgba(255,255,255,0.08); padding: 28px 24px; }
  .track-intro { padding: 32px 24px; }
}

/* ============================================
   NEW: Tabbed Career Browser (Section 03 replacement)
============================================ */
.careers-x {
  background: #fff;
  border-radius: 28px;
  padding: 32px;
  border: 1px solid var(--paper-2);
}
.career-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--paper-2);
}
.career-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--paper);
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  color: var(--ink-soft);
  cursor: pointer;
  transition: all 0.2s;
  border: 1px solid transparent;
}
.career-tab i { font-size: 12px; }
.career-tab:hover { background: var(--paper-2); color: var(--ink); }
.career-tab.active {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.career-tab .count {
  font-size: 11px;
  font-weight: 700;
  background: rgba(0,0,0,0.08);
  padding: 2px 8px;
  border-radius: 999px;
}
.career-tab.active .count { background: rgba(255,255,255,0.18); color: var(--paper); }

.career-content {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 18px;
}
.career-featured {
  background: var(--paper);
  border-radius: 22px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 380px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--paper-2);
}
.career-featured::after {
  content: "";
  position: absolute;
  top: -80px; right: -80px;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: var(--blue-pale);
  opacity: 0.8;
  pointer-events: none;
}
.career-featured > * { position: relative; z-index: 1; }
.career-featured .featured-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--ink);
  color: var(--paper);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  width: max-content;
}
.career-featured h3 {
  font-size: clamp(1.6rem, 2.6vw, 2rem);
  margin: 14px 0 10px;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--ink);
  max-width: 360px;
}
.career-featured p {
  color: var(--ink-soft);
  font-size: 15px;
  margin-bottom: 24px;
  max-width: 380px;
  line-height: 1.5;
}
.career-featured .data-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 26px;
}
.career-featured .data-stat {
  background: #fff;
  border-radius: 14px;
  padding: 14px;
  border: 1px solid var(--paper-2);
}
.career-featured .data-stat .num {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1;
}
.career-featured .data-stat .lbl {
  font-size: 11.5px;
  color: var(--ink-soft);
  opacity: 0.7;
  margin-top: 4px;
}

.career-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.career-mini {
  background: var(--paper);
  border-radius: 18px;
  padding: 20px;
  text-decoration: none;
  color: var(--ink);
  transition: all 0.25s;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--paper-2);
  min-height: 180px;
}
.career-mini:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(0,0,0,0.08);
  border-color: var(--ink);
}
.career-mini .mini-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.career-mini .mini-ic {
  width: 38px; height: 38px;
  border-radius: 10px;
  display: grid; place-items: center;
  font-size: 15px;
  color: #fff;
}
.career-mini .mini-arrow {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--paper-2);
  color: var(--ink);
  display: grid; place-items: center;
  font-size: 11px;
  transition: all 0.25s;
}
.career-mini:hover .mini-arrow { background: var(--ink); color: var(--paper); transform: rotate(-45deg); }
.career-mini h5 {
  font-size: 16px;
  margin: 0 0 4px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.career-mini .salary {
  font-size: 13px;
  color: var(--ink-soft);
  font-weight: 600;
  opacity: 0.7;
}

@media (max-width: 900px) {
  .career-content { grid-template-columns: 1fr; }
  .careers-x { padding: 24px; }
}
@media (max-width: 500px) {
  .career-grid { grid-template-columns: 1fr; }
}

/* ============================================
   NEW: Asymmetric Spotlight (Section 04 replacement)
============================================ */
.spotlight-grid {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  gap: 16px;
}
.spotlight-big {
  border-radius: 28px;
  padding: 44px;
  position: relative;
  overflow: hidden;
  min-height: 440px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background:
    linear-gradient(135deg, rgba(190,24,93,0.92) 0%, rgba(234,88,12,0.78) 50%, rgba(245,158,11,0.5) 100%),
    url('https://images.unsplash.com/photo-1581090464777-f3220bbe1b8b?w=1200&q=80') center/cover;
  color: var(--paper);
}
.spotlight-big .brand-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.spotlight-big .brand-row .bd {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
  border: 1px solid rgba(255,255,255,0.18);
}
.spotlight-big .brand-row .x {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 18px;
  color: rgba(255,255,255,0.65);
}
.spotlight-big h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.7rem);
  color: var(--paper);
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin: 0 0 14px;
  max-width: 480px;
}
.spotlight-big h2 .accent {
  font-family: var(--font-serif);
  font-style: italic;
  color: #fef3c7;
  font-weight: 400;
}
.spotlight-big .lead {
  font-size: 16px;
  color: rgba(255,255,255,0.85);
  max-width: 460px;
  line-height: 1.55;
  margin-bottom: 24px;
}
.spotlight-big .meta-strip {
  display: flex;
  gap: 22px;
  margin-bottom: 26px;
  flex-wrap: wrap;
}
.spotlight-big .meta-strip span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 600;
  opacity: 0.9;
}
.spotlight-big .meta-strip i { color: #fef3c7; }
.spotlight-big .actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.spotlight-side {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
}
.spotlight-mini {
  border-radius: 24px;
  padding: 28px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-decoration: none;
  transition: all 0.3s;
  min-height: 210px;
}
.spotlight-mini:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(0,0,0,0.12); }
.spotlight-mini.peach {
  background: linear-gradient(135deg, #d1fae5 0%, #6ee7b7 50%, #34d399 100%);
  color: var(--ink);
}
.spotlight-mini.indigo {
  background: linear-gradient(135deg, #1e1b4b 0%, #6d28d9 60%, #c084fc 100%);
  color: var(--paper);
}
.spotlight-mini .mini-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  background: rgba(0,0,0,0.1);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  width: max-content;
}
.spotlight-mini.indigo .mini-tag { background: rgba(255,255,255,0.18); }
.spotlight-mini h3 {
  font-size: 1.35rem;
  margin: 12px 0 12px;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: inherit;
  font-weight: 700;
}
.spotlight-mini.peach h3 { color: var(--ink); }
.spotlight-mini.indigo h3 { color: var(--paper); }
.spotlight-mini .mini-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  margin-top: auto;
}
.spotlight-mini .mini-cta i { transition: transform 0.2s; }
.spotlight-mini:hover .mini-cta i { transform: translateX(4px); }
.spotlight-mini .ico-watermark {
  position: absolute;
  bottom: -10px;
  right: -10px;
  font-size: 100px;
  opacity: 0.15;
  pointer-events: none;
}

@media (max-width: 900px) {
  .spotlight-grid { grid-template-columns: 1fr; }
  .spotlight-big { padding: 32px 24px; min-height: 360px; }
}
