/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg-deep: #1a1a2e;
  --bg-mid: #16213e;
  --bg-card: #242443;
  --bg-card-hover: #2c2c54;
  --accent: #e2b714;
  --accent-glow: rgba(226, 183, 20, 0.15);
  --accent-glow-strong: rgba(226, 183, 20, 0.3);
  --text-primary: #ffffff;
  --text-body: #e8e8e8;
  --text-muted: #a0a0b8;
  --text-dim: #6b6b80;
  --border-subtle: rgba(226, 183, 20, 0.15);
  --border-active: rgba(226, 183, 20, 0.5);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 24px;
  --transition-fast: 200ms ease;
  --transition-med: 300ms ease;
  --transition-slow: 500ms ease;
  --max-width: 680px;
  --font-heading: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background: linear-gradient(170deg, var(--bg-deep) 0%, var(--bg-mid) 100%);
  color: var(--text-body);
  min-height: 100vh;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ===== AMBIENT BACKGROUND ===== */
body::before {
  content: '';
  position: fixed;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(ellipse at 30% 20%, rgba(226, 183, 20, 0.03) 0%, transparent 50%),
              radial-gradient(ellipse at 70% 80%, rgba(22, 33, 62, 0.5) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

/* ===== LAYOUT ===== */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.page-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--text-primary);
  line-height: 1.2;
}

h1 {
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 600;
  letter-spacing: -0.01em;
}

h3 {
  font-size: 1.25rem;
  font-weight: 600;
}

p {
  color: var(--text-body);
  line-height: 1.7;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: opacity var(--transition-fast);
}

a:hover {
  opacity: 0.8;
}

/* ===== SCREEN SECTIONS ===== */
.screen {
  display: none;
  animation: fadeIn 300ms ease forwards;
}

.screen.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeOut {
  from { opacity: 1; transform: translateY(0); }
  to { opacity: 0; transform: translateY(-12px); }
}

.screen.exiting {
  animation: fadeOut 200ms ease forwards;
}

/* ===== LANDING PAGE ===== */
.landing {
  padding: 80px 24px 60px;
  text-align: center;
  max-width: var(--max-width);
  margin: 0 auto;
}

.landing__badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent);
  background: var(--accent-glow);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 32px;
}

.landing h1 {
  margin-bottom: 20px;
}

.landing__hook {
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.landing__cta-wrap {
  margin-bottom: 16px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--bg-deep);
  background: var(--accent);
  border: none;
  padding: 16px 48px;
  border-radius: 100px;
  cursor: pointer;
  transition: all var(--transition-fast);
  position: relative;
  overflow: hidden;
  min-height: 56px;
  min-width: 200px;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(226, 183, 20, 0.3);
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-primary:active {
  transform: translateY(0);
}

.landing__time {
  font-size: 0.85rem;
  color: var(--text-dim);
  margin-top: 12px;
}

.landing__age-input {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border-subtle);
}

.landing__age-input label {
  display: block;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.landing__age-input input {
  width: 120px;
  padding: 12px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-family: var(--font-heading);
  font-size: 1.25rem;
  text-align: center;
  outline: none;
  transition: border-color var(--transition-fast);
}

.landing__age-input input:focus {
  border-color: var(--accent);
}

.landing__age-input input::placeholder {
  color: var(--text-dim);
}

.landing__explainer {
  margin-top: 48px;
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  text-align: left;
}

.landing__explainer h3 {
  font-size: 1rem;
  color: var(--accent);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.landing__explainer p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.landing-seo {
  margin-top: 48px;
  text-align: left;
}

.landing-seo h2 {
  font-size: 1.25rem;
  color: var(--text-main);
  margin-bottom: 16px;
}

.landing-seo h3 {
  font-size: 1.05rem;
  color: var(--text-main);
  margin-top: 28px;
  margin-bottom: 12px;
}

.landing-seo p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

/* ===== PROGRESS BAR ===== */
.progress-wrapper {
  padding: 24px 0 8px;
}

.progress-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.progress-count {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
}

.progress-dimension {
  font-size: 0.75rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.progress-track {
  width: 100%;
  height: 4px;
  background: rgba(255,255,255,0.06);
  border-radius: 100px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), #f0d060);
  border-radius: 100px;
  transition: width 400ms cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
}

.progress-fill::after {
  content: '';
  position: absolute;
  right: 0;
  top: -2px;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(226, 183, 20, 0.5);
}

/* ===== QUESTION ===== */
.question-screen {
  padding: 0 0 60px;
}

.question-text {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.4;
  margin: 24px 0 32px;
}

.question-scenario {
  font-size: 0.9rem;
  color: var(--text-dim);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.option-card {
  display: block;
  width: 100%;
  text-align: left;
  padding: 18px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  color: var(--text-body);
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.5;
  cursor: pointer;
  transition: all var(--transition-fast);
  position: relative;
  overflow: hidden;
  min-height: 56px;
}

.option-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 100%;
  background: var(--accent);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.option-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-active);
  transform: translateX(4px);
}

.option-card:hover::before {
  opacity: 1;
}

.option-card:active {
  transform: translateX(2px) scale(0.995);
}

.option-card.selected {
  background: var(--accent-glow-strong);
  border-color: var(--accent);
  color: var(--text-primary);
}

.option-card.selected::before {
  opacity: 1;
}

/* ===== INTERSTITIAL ===== */
.interstitial {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 80vh;
  text-align: center;
  padding: 40px 0;
}

.interstitial__text {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 40px;
}

.interstitial__loader {
  display: flex;
  gap: 8px;
  margin-bottom: 48px;
}

.interstitial__dot {
  width: 10px;
  height: 10px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse-dot 1.2s ease-in-out infinite;
}

.interstitial__dot:nth-child(2) { animation-delay: 0.15s; }
.interstitial__dot:nth-child(3) { animation-delay: 0.3s; }
.interstitial__dot:nth-child(4) { animation-delay: 0.45s; }

@keyframes pulse-dot {
  0%, 80%, 100% { opacity: 0.2; transform: scale(0.8); }
  40% { opacity: 1; transform: scale(1.2); }
}

.interstitial__phases {
  font-size: 0.85rem;
  color: var(--text-dim);
  height: 24px;
}

.interstitial__phase {
  animation: fadePhase 1s ease forwards;
}

@keyframes fadePhase {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ===== RESULT PAGE ===== */
.result {
  padding: 60px 0 80px;
  text-align: center;
}

.result__label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent);
  margin-bottom: 16px;
}

.result__age-display {
  position: relative;
  margin-bottom: 8px;
}

.result__age-number {
  font-family: var(--font-heading);
  font-size: clamp(5rem, 15vw, 8rem);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
  position: relative;
  display: inline-block;
}

.result__age-number::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 4px;
  background: var(--accent);
  border-radius: 2px;
}

.result__age-suffix {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  display: block;
}

.result__comparison {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 8px;
  line-height: 1.6;
}

.result__gap-phrase {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 48px;
}

/* Dimension bars */
.dimensions {
  margin: 48px 0;
  text-align: left;
}

.dimensions__title {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-dim);
  margin-bottom: 20px;
  text-align: center;
}

.dimension-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.dimension-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  width: 120px;
  flex-shrink: 0;
  text-align: right;
}

.dimension-bar-track {
  flex: 1;
  height: 6px;
  background: rgba(255,255,255,0.06);
  border-radius: 100px;
  overflow: hidden;
}

.dimension-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), #f0d060);
  border-radius: 100px;
  transition: width 800ms cubic-bezier(0.22, 1, 0.36, 1);
  width: 0;
}

.dimension-score {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-primary);
  width: 36px;
  flex-shrink: 0;
}

/* Description */
.result__description {
  margin: 48px 0;
  text-align: left;
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
}

.result__description p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 20px;
}

.result__description p:last-child {
  margin-bottom: 0;
}

/* Gap Section */
.gap-section {
  margin: 40px 0;
  padding: 28px 32px;
  background: linear-gradient(135deg, rgba(226, 183, 20, 0.08) 0%, rgba(226, 183, 20, 0.02) 100%);
  border: 1px solid var(--border-active);
  border-radius: var(--radius-lg);
  text-align: center;
}

.gap-section__title {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-dim);
  margin-bottom: 16px;
}

.gap-name {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 3.5vw, 1.8rem);
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 12px;
}

.gap-insight {
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.7;
  max-width: 480px;
  margin: 0 auto 16px;
}

.gap-detail {
  font-size: 0.8rem;
  color: var(--text-dim);
}

/* Dimension Card (inline breakdown) */
.dimension-card {
  margin-bottom: 16px;
}

.dimension-advice {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-top: 8px;
  padding-left: 132px;
}

/* Closing Insight */
.closing-insight {
  margin: 48px 0;
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  text-align: left;
}

.closing-insight__title {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 16px;
}

.closing-insight__text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* Takeaway */
.result__takeaway {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  text-align: center;
  padding: 20px 24px;
  margin: 32px 0;
  border-left: 3px solid var(--accent);
  background: var(--bg-card);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

/* Score + Share Row */
.score-share-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-bottom: 32px;
}

.score-col {
  text-align: center;
}

.share-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.share-col__label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-dim);
  margin-bottom: 2px;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 50%;
  color: var(--text-body);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.share-btn:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-active);
  transform: translateY(-2px);
}

.share-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.share-btn--whatsapp:hover { color: #25D366; }
.share-btn--twitter:hover { color: #1DA1F2; }
.share-btn--copy:hover { color: var(--accent); }

.share-btn.copied {
  color: var(--accent);
  border-color: var(--accent);
}

/* CTA buttons */
.result__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 40px;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--accent);
  background: transparent;
  border: 1px solid var(--accent);
  padding: 14px 36px;
  border-radius: 100px;
  cursor: pointer;
  transition: all var(--transition-fast);
  min-height: 48px;
}

.btn-secondary:hover {
  background: var(--accent-glow);
  transform: translateY(-2px);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text-dim);
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px 16px;
  transition: color var(--transition-fast);
}

.btn-ghost:hover {
  color: var(--text-muted);
}

/* ===== BREAKDOWN PAGE ===== */
.breakdown {
  padding: 60px 0 80px;
}

.breakdown__back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--text-dim);
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px 0;
  margin-bottom: 24px;
  transition: color var(--transition-fast);
}

.breakdown__back:hover {
  color: var(--accent);
}

.breakdown h2 {
  margin-bottom: 8px;
}

.breakdown__subtitle {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 40px;
}

.breakdown-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 20px;
}

.breakdown-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.breakdown-card__name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
}

.breakdown-card__score {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent);
}

.breakdown-card__bar-track {
  width: 100%;
  height: 6px;
  background: rgba(255,255,255,0.06);
  border-radius: 100px;
  overflow: hidden;
  margin-bottom: 16px;
}

.breakdown-card__bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), #f0d060);
  border-radius: 100px;
  transition: width 800ms cubic-bezier(0.22, 1, 0.36, 1) 200ms;
  width: 0;
}

.breakdown-card__text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.breakdown__retry {
  text-align: center;
  margin-top: 48px;
}

/* ===== AD CONTAINERS ===== */
.ad-unit {
  width: 100%;
  margin: 32px 0;
  display: flex;
  justify-content: center;
  min-height: 100px;
  background: rgba(255,255,255,0.02);
  border: 1px dashed rgba(255,255,255,0.05);
  border-radius: var(--radius-md);
  overflow: hidden;
}

/* ===== FOOTER ===== */
.site-footer {
  margin-top: auto;
  padding: 32px 0;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.04);
}

.site-footer__links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 12px;
}

.site-footer__links a {
  font-size: 0.8rem;
  color: var(--text-dim);
}

.site-footer__links a:hover {
  color: var(--accent);
}

.site-footer__copy {
  font-size: 0.75rem;
  color: var(--text-dim);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .landing {
    padding: 48px 16px 40px;
  }

  .option-card {
    padding: 16px;
    font-size: 0.9rem;
  }

  .dimension-label {
    width: 90px;
    font-size: 0.7rem;
  }

  .dimension-advice {
    padding-left: 102px;
  }

  .result__description {
    padding: 24px;
  }

  .score-share-row {
    flex-direction: column;
  }

  .share-col {
    flex-direction: row;
  }

  .breakdown-card {
    padding: 20px;
  }
}

/* ===== PAGE TEMPLATE (about, privacy) ===== */
.page-content {
  padding: 80px 0 60px;
}

.page-content h1 {
  margin-bottom: 12px;
}

.page-content .page-subtitle {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 8px;
}
.page-content .page-byline {
  font-size: 0.8rem;
  color: var(--text-dim);
  margin-bottom: 48px;
  letter-spacing: 0.04em;
}

.page-content h2 {
  font-size: 1.35rem;
  margin: 40px 0 16px;
}

.page-content h3 {
  margin: 28px 0 12px;
}

.page-content p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.8;
}

.page-content ul, .page-content ol {
  margin: 0 0 16px 24px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
}

.page-content blockquote {
  margin: 24px 0;
  padding: 20px 24px;
  background: var(--bg-card);
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-style: italic;
  color: var(--text-muted);
}

.page-content .cta-box {
  margin: 48px 0;
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  text-align: center;
}

.page-content .cta-box p {
  color: var(--text-body);
  margin-bottom: 20px;
}

/* ===== UTILITY ===== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* Number count-up glow */
@keyframes numberReveal {
  from { text-shadow: 0 0 40px rgba(226, 183, 20, 0.6); }
  to { text-shadow: 0 0 0px transparent; }
}

.result__age-number.revealed {
  animation: numberReveal 1.5s ease-out forwards;
}

/* Also explore cross-links */
.also-explore {
  margin: 32px 0;
}
.also-explore__title {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 16px;
}
.also-explore__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.also-explore__card {
  display: block;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-decoration: none;
  transition: border-color var(--transition-fast), background var(--transition-fast);
}
.also-explore__card:hover {
  border-color: var(--border-active);
  background: var(--bg-card-hover);
}
.also-explore__name {
  display: block;
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 6px;
}
.also-explore__desc {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}
@media (max-width: 500px) {
  .also-explore__grid { grid-template-columns: 1fr; }
}
