/* ═══════════════════════════════════════════
   Components
   ═══════════════════════════════════════════ */

/* ── Badge ── */
.badge {
  display: inline-block;
  background: rgba(139, 92, 246, 0.12);
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: var(--radius-full);
  padding: 6px 18px;
  font-size: 12px;
  font-weight: 600;
  color: var(--purple-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}

.badge--yellow {
  background: rgba(251, 191, 36, 0.15);
  border-color: rgba(251, 191, 36, 0.35);
  color: var(--yellow);
  font-weight: 700;
}

.badge--green {
  background: rgba(34, 197, 94, 0.12);
  border-color: rgba(34, 197, 94, 0.25);
  color: var(--green-light);
}

/* ── Card ── */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: border-color var(--duration-normal) var(--ease-out),
              transform var(--duration-normal) var(--ease-out);
}

.card:hover {
  border-color: rgba(139, 92, 246, 0.3);
  transform: translateY(-3px);
}

.card__icon {
  font-size: 32px;
  margin-bottom: 16px;
  display: block;
}

.card__title {
  font-size: 16px;
  font-weight: 900;
  margin-bottom: 8px;
}

.card__text {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.7;
}

.card__title s {
  text-decoration: line-through;
  text-decoration-color: var(--pink-light);
  text-decoration-thickness: 2px;
  opacity: 0.85;
}

.card__label {
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ── Stripe Card (colored top border) ── */
.stripe-card {
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: transform var(--duration-normal) var(--ease-out);
}

.stripe-card:hover { transform: translateY(-3px); }

.stripe-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
}

.stripe-card__title {
  font-family: 'Unbounded', cursive;
  font-size: 16px;
  font-weight: 900;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.stripe-card__text {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.7;
}

.stripe-card__label {
  font-family: 'Unbounded', cursive;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}

/* Stripe variants */
.stripe-card--purple {
  background: rgba(139, 92, 246, 0.07);
  border: 1px solid rgba(139, 92, 246, 0.22);
}
.stripe-card--purple::before { background: linear-gradient(90deg, #8b5cf6, #a78bfa); }
.stripe-card--purple .stripe-card__label { color: var(--purple-light); }

.stripe-card--pink {
  background: rgba(236, 72, 153, 0.07);
  border: 1px solid rgba(236, 72, 153, 0.22);
}
.stripe-card--pink::before { background: linear-gradient(90deg, #ec4899, #f472b6); }
.stripe-card--pink .stripe-card__label { color: var(--pink-light); }

.stripe-card--blue {
  background: rgba(56, 189, 248, 0.06);
  border: 1px solid rgba(56, 189, 248, 0.20);
}
.stripe-card--blue::before { background: linear-gradient(90deg, #38bdf8, #7dd3fc); }
.stripe-card--blue .stripe-card__label { color: var(--blue-light); }

.stripe-card--yellow {
  background: rgba(251, 191, 36, 0.06);
  border: 1px solid rgba(251, 191, 36, 0.20);
}
.stripe-card--yellow::before { background: linear-gradient(90deg, #fbbf24, #fde68a); }
.stripe-card--yellow .stripe-card__label { color: var(--yellow); }

/* ── Stripe card list (thesis points) ── */
.stripe-card__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 14px 0 0;
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-dim);
}

.stripe-card__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.stripe-card__list li::before {
  content: '→';
  flex-shrink: 0;
  font-weight: 600;
}

.stripe-card__list--purple li::before { color: var(--purple-light); }
.stripe-card__list--pink li::before   { color: var(--pink-light); }
.stripe-card__list--blue li::before   { color: var(--blue-light); }

/* ── Result block (inside day cards) ── */
.result-block {
  border-radius: 10px;
  padding: 11px 14px;
  font-size: 12px;
  font-weight: 600;
  margin-top: 16px;
}

.result-block--purple { background: rgba(139, 92, 246, 0.15); color: var(--purple-light); }
.result-block--pink   { background: rgba(236, 72, 153, 0.15); color: var(--pink-light); }
.result-block--blue   { background: rgba(56, 189, 248, 0.15); color: var(--blue-light); }

/* ── Button ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--grad-btn);
  border: none;
  border-radius: 14px;
  padding: 18px 40px;
  font-family: 'Unbounded', cursive;
  font-weight: 700;
  font-size: 15px;
  color: #fff;
  letter-spacing: 0.02em;
  cursor: pointer;
  text-decoration: none;
  transition: opacity var(--duration-fast), transform var(--duration-fast);
  width: 100%;
  max-width: 420px;
  position: relative;
  overflow: hidden;
}

.btn:hover {
  opacity: 0.88;
  transform: scale(1.02);
}

/* Shine sweep on hover */
.btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: left 0.5s var(--ease-out);
}

.btn:hover::after {
  left: 120%;
}

/* ── Timer ── */
.timer {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px 28px;
}

.timer--bare {
  background: transparent;
  border: none;
  padding: 0;
}

.timer__unit { text-align: center; min-width: 48px; }

.timer__num {
  font-family: 'Unbounded', cursive;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.timer__label {
  font-size: 10px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 4px;
}

.timer__sep {
  font-family: 'Unbounded', cursive;
  font-size: 24px;
  color: var(--orange);
  align-self: flex-start;
  padding-top: 2px;
  opacity: 0.7;
}

/* ── Progress bar ── */
.progress {
  max-width: 420px;
}

.progress__text {
  font-size: 13px;
  color: var(--text-dim);
  margin-bottom: 8px;
}

.progress__text strong {
  color: var(--orange);
  font-weight: 700;
}

.progress__track {
  height: 8px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.progress__fill {
  height: 100%;
  background: var(--grad-progress);
  border-radius: var(--radius-full);
  transition: width 1.4s var(--ease-out);
}

/* ── CTA Block ── */
.cta-block {
  background: rgba(16, 16, 30, 0.8);
  border: 1px solid rgba(139, 92, 246, 0.25);
  border-radius: var(--radius-lg);
  padding: 40px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
}

/* ── Stats ── */
.stats {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.stat {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 22px 36px;
  text-align: center;
  transition: border-color var(--duration-normal) var(--ease-out);
}

.stat:hover { border-color: rgba(139, 92, 246, 0.2); }

.stat__num {
  font-family: 'Unbounded', cursive;
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
}

.stat__label {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 6px;
}

/* ── Value list ── */
.value-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
  font-weight: 400;
}

.value-list li:last-child { border-bottom: none; }

.value-list__check {
  color: var(--green);
  font-size: 18px;
  flex-shrink: 0;
  line-height: 1.4;
}

/* ── Pricing table ── */
.pricing-table {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.pricing-row {
  display: flex;
  align-items: center;
  padding: 18px 24px;
  border-bottom: 1px solid var(--border);
  gap: 14px;
}

.pricing-row:last-child { border-bottom: none; }

.pricing-row--highlight {
  background: rgba(34, 197, 94, 0.06);
}

.pricing-row__check {
  color: var(--green-light);
  font-size: 16px;
  flex-shrink: 0;
  font-weight: 600;
}

.pricing-row__text {
  flex: 1;
  font-size: 15px;
  font-weight: 500;
}

.pricing-row__price {
  font-size: 14px;
  color: var(--text-muted);
  white-space: nowrap;
  font-weight: 400;
}

.pricing-row__price--green {
  color: var(--green-light);
  font-weight: 600;
}

/* ── Pricing total block ── */
.pricing-total {
  margin-top: 20px;
  background: var(--grad-btn);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
}

.pricing-total__label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 6px;
}

.pricing-total__price {
  font-family: 'Unbounded', cursive;
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 900;
  color: #fff;
}

/* ── Price (legacy) ── */
.price {
  text-align: center;
  margin-top: 36px;
}

.price__old {
  font-size: 16px;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-bottom: 4px;
}

.price__current {
  font-family: 'Unbounded', cursive;
  font-size: clamp(34px, 5vw, 52px);
  font-weight: 900;
}

/* ── Video ── */
.video-wrap {
  max-width: 820px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 16 / 9;
  background: #000;
}

.video-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ── FAQ accordion ── */
.faq {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq__item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--duration-normal) var(--ease-out);
}

.faq__item.is-open { border-color: rgba(139, 92, 246, 0.3); }

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  gap: 16px;
  user-select: none;
  transition: color var(--duration-normal);
}

.faq__question:hover { color: #fff; }

.faq__arrow {
  color: var(--text-muted);
  transition: transform var(--duration-normal) var(--ease-out),
              color var(--duration-normal);
  flex-shrink: 0;
  font-size: 18px;
}

.faq__item.is-open .faq__arrow {
  transform: rotate(180deg);
  color: var(--purple-light);
}

.faq__answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s var(--ease-out);
}

.faq__item.is-open .faq__answer {
  grid-template-rows: 1fr;
}

.faq__answer-inner {
  overflow: hidden;
}

.faq__answer p {
  padding: 0 24px 20px;
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.7;
}

/* ── Guarantee ── */
.guarantee {
  background: rgba(34, 197, 94, 0.05);
  border: 1px solid rgba(34, 197, 94, 0.20);
  border-radius: var(--radius-xl);
  padding: 56px 48px;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.guarantee__icon {
  font-size: 56px;
  margin-bottom: 24px;
  display: block;
}

/* ── Bonus ── */
.bonus {
  background: rgba(139, 92, 246, 0.06);
  border: 1px solid rgba(139, 92, 246, 0.25);
  border-radius: var(--radius-xl);
  padding: 56px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
  max-width: 700px;
  margin: 0 auto;
}

/* ── Bonus inner blocks ── */
.bonus-prices {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 28px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px 32px;
}

.bonus-prices__item { text-align: center; }

.bonus-prices__num {
  font-family: 'Unbounded', cursive;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 900;
  color: var(--text);
}

.bonus-prices__num--strike {
  color: var(--pink);
  text-decoration: line-through;
  text-decoration-thickness: 3px;
}

.bonus-prices__label {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
}

.bonus-prices__plus {
  font-size: 24px;
  color: var(--text-muted);
  font-weight: 300;
}

.bonus-value {
  margin-top: 20px;
  background: rgba(34, 197, 94, 0.06);
  border: 1px solid rgba(34, 197, 94, 0.15);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  text-align: center;
}

.bonus-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 24px;
}

.bonus-features__item {
  font-size: 13px;
  color: var(--green-light);
  font-weight: 500;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .bonus-prices { flex-direction: row; gap: 16px; padding: 20px 16px; }
  .bonus-prices__num { font-size: 22px; }
  .bonus-features { flex-direction: column; align-items: center; gap: 10px; }
}

/* ── Author card ── */
.author-card {
  display: flex;
  align-items: center;
  gap: 24px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
}

.author-card__avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(139, 92, 246, 0.3);
  flex-shrink: 0;
}

.author-card__name {
  font-size: 18px;
  font-weight: 700;
}

.author-card__role {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 2px;
}

.author-card__bio {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.7;
  margin-top: 12px;
}

@media (max-width: 768px) {
  .author-card { flex-direction: column; text-align: center; }
}

/* ── Guarantee card ── */
.guarantee-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: rgba(34, 197, 94, 0.06);
  border: 1px solid rgba(34, 197, 94, 0.20);
  border-radius: var(--radius-lg);
  padding: 28px;
}

.guarantee-card__icon {
  font-size: 40px;
  flex-shrink: 0;
  line-height: 1;
}

.guarantee-card__title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.5;
}

.guarantee-card__text {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.7;
  margin-top: 8px;
}

@media (max-width: 768px) {
  .guarantee-card { flex-direction: column; }
}

/* ── Checkout card ── */
.checkout-card {
  background: var(--card);
  border: 1px solid rgba(139, 92, 246, 0.25);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
}

.checkout-form {
  margin-top: 24px;
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  min-height: 300px;
}

.checkout-benefits {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 24px;
}

.checkout-benefits__item {
  font-size: 13px;
  color: var(--green-light);
  font-weight: 500;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .checkout-card { padding: 24px 16px; }
  .checkout-benefits { flex-direction: column; align-items: center; gap: 8px; }
}

/* ── Mid CTA section ── */
.section-cta-mid {
  padding: 60px 0;
  background: linear-gradient(180deg, rgba(139, 92, 246, 0.06) 0%, transparent 100%);
  border-top: 1px solid rgba(139, 92, 246, 0.15);
  border-bottom: 1px solid rgba(139, 92, 246, 0.15);
}

/* ── Comparison ── */
.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.compare__card {
  border-radius: var(--radius-lg);
  padding: 36px;
}

.compare__card--left {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
}

.compare__card--right {
  background: rgba(139, 92, 246, 0.06);
  border: 1px solid rgba(139, 92, 246, 0.22);
}

.compare__title {
  font-size: 18px;
  font-weight: 900;
  margin-bottom: 24px;
}

.compare__list li {
  padding: 10px 0;
  font-size: 14px;
  color: var(--text-dim);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.5;
}

.compare__icon {
  flex-shrink: 0;
  font-size: 16px;
  line-height: 1.5;
}

/* ── Testimonial card ── */
.testimonial {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: border-color var(--duration-normal) var(--ease-out),
              transform var(--duration-normal) var(--ease-out);
}

.testimonial:hover {
  border-color: rgba(139, 92, 246, 0.3);
  transform: translateY(-2px);
}

.testimonial__header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.testimonial__avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border);
}

.testimonial__info { flex: 1; }

.testimonial__name {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
}

.testimonial__role {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 2px;
}

.testimonial__stars {
  font-size: 16px;
  letter-spacing: 2px;
  flex-shrink: 0;
}

.testimonial__text {
  font-size: 15px;
  color: var(--text-dim);
  line-height: 1.7;
}

.testimonial__result {
  margin-top: 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--green-light);
}

/* ── FOMO notification ── */
.fomo {
  position: fixed;
  bottom: 24px;
  left: 24px;
  background: rgba(16, 16, 30, 0.95);
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  max-width: 320px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 1000;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s var(--ease-out), transform 0.4s var(--ease-out);
  pointer-events: none;
}

.fomo.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.fomo__avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--grad-btn);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.fomo__text {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.4;
}

.fomo__text strong {
  color: var(--text);
  font-weight: 600;
}

.fomo__check {
  color: var(--green);
  font-size: 18px;
  flex-shrink: 0;
}

/* ── Sticky mobile bar ── */
.sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(8, 8, 16, 0.95);
  border-top: 1px solid rgba(139, 92, 246, 0.25);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 14px 20px;
  align-items: center;
  justify-content: space-between;
  z-index: 1000;
}

.sticky-bar__price {
  font-family: 'Unbounded', cursive;
  font-weight: 700;
  font-size: 18px;
}

.sticky-bar__btn {
  background: var(--grad-btn);
  border: none;
  border-radius: var(--radius-sm);
  padding: 12px 24px;
  font-family: 'Unbounded', cursive;
  font-weight: 700;
  font-size: 13px;
  color: #fff;
  cursor: pointer;
  text-decoration: none;
  transition: opacity var(--duration-fast);
}

.sticky-bar__btn:hover { opacity: 0.88; }

/* ── Social Proof (Hero) ── */
.social-proof {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: 48px;
}

.social-proof__row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.avatar-stack {
  display: flex;
  align-items: center;
}

.avatar-stack__img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 3px solid var(--bg);
  object-fit: cover;
  margin-left: -14px;
  position: relative;
  transition: transform var(--duration-fast);
}

.avatar-stack__img:first-child { margin-left: 0; }
.avatar-stack__img:nth-child(1) { z-index: 6; }
.avatar-stack__img:nth-child(2) { z-index: 5; }
.avatar-stack__img:nth-child(3) { z-index: 4; }
.avatar-stack__img:nth-child(4) { z-index: 3; }
.avatar-stack__img:nth-child(5) { z-index: 2; }
.avatar-stack__img:nth-child(6) { z-index: 1; }

.social-proof__stars {
  display: flex;
  gap: 1px;
  font-size: 20px;
  line-height: 1;
}

.social-proof__count {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
}

.social-proof__pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 24px;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
}

.pill--dark {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
  color: var(--text-dim);
}

.pill--accent {
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.22);
  color: var(--green-light);
}

.pill__icon {
  font-size: 16px;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .social-proof__row { flex-wrap: wrap; justify-content: center; gap: 12px; }
  .social-proof__pills { flex-direction: column; align-items: center; }
  .pill { font-size: 12px; padding: 9px 16px; white-space: normal; text-align: center; }
  .avatar-stack__img { width: 38px; height: 38px; margin-left: -12px; }
  .avatar-stack__img:first-child { margin-left: 0; }
}

/* ── Footer ── */
.footer {
  text-align: center;
  padding: 48px 24px;
  font-size: 13px;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
}
