/* Tip + legal surfaces (ad-free site) */

.revenue-strip {
  padding: clamp(24px, 4vw, 40px) var(--page-pad-lg);
  background: linear-gradient(180deg, #dce6f0 0%, #cfd9e6 100%);
}

.revenue-strip-inner {
  max-width: var(--max-content, 1100px);
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: stretch;
}

.revenue-strip-inner .cta-row {
  width: 100%;
}

@media (min-width: 720px) {
  .revenue-strip-inner {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px 24px;
  }

  .revenue-strip-inner .cta-row {
    width: auto;
  }
}

.revenue-strip h2 {
  font-family: var(--font-display, inherit);
  font-size: clamp(1.15rem, 3vw, 1.25rem);
  letter-spacing: -0.02em;
  margin-bottom: 0.35rem;
}

.revenue-strip p {
  color: var(--ink-muted, #5c6f82);
  max-width: 36rem;
  line-height: 1.45;
  font-size: 0.98rem;
}

.legal-page {
  max-width: 720px;
  margin: 0 auto;
  width: 100%;
  padding: clamp(20px, 4vw, 36px) var(--page-pad)
    calc(40px + var(--safe-bottom, 0px));
}

.legal-page h1 {
  font-family: var(--font-display, inherit);
  font-size: clamp(1.65rem, 5vw, 2.4rem);
  letter-spacing: -0.03em;
  margin-bottom: 0.75rem;
}

.legal-page h2 {
  font-family: var(--font-display, inherit);
  font-size: 1.2rem;
  margin: 1.75rem 0 0.5rem;
}

.legal-page p,
.legal-page li {
  color: var(--ink-muted, #5c6f82);
  line-height: 1.55;
  margin-bottom: 0.75rem;
}

.legal-page ul {
  padding-left: 1.2rem;
  margin-bottom: 1rem;
}

.legal-meta {
  color: var(--ink-faint, #8a9aab);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.support-card-row {
  display: grid;
  gap: 14px;
  margin: 1.5rem 0 2rem;
}

@media (min-width: 720px) {
  .support-card-row {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
}

.support-panel {
  padding: 1.15rem 1.2rem;
  border-radius: 16px;
  background: var(--surface-elevated, #fff);
  border: 1px solid rgba(21, 38, 54, 0.06);
  box-shadow: 0 8px 30px var(--shadow, rgba(21, 38, 54, 0.08));
}

.support-panel h2 {
  margin-top: 0;
}

.support-panel .btn {
  width: 100%;
}

@media (min-width: 720px) {
  .support-panel .btn {
    width: auto;
  }
}

.tip-tiers {
  display: grid;
  gap: 12px;
  margin: 1rem 0 1.25rem;
}

@media (min-width: 640px) {
  .tip-tiers {
    grid-template-columns: repeat(3, 1fr);
  }
}

.tip-tier {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 1.1rem 1.15rem;
  border-radius: 16px;
  background: var(--surface-elevated, #fff);
  border: 1px solid rgba(21, 38, 54, 0.08);
  box-shadow: 0 8px 24px var(--shadow, rgba(21, 38, 54, 0.07));
  text-decoration: none;
  color: inherit;
  transition: transform 0.15s ease, border-color 0.15s ease;
  touch-action: manipulation;
  min-height: 44px;
}

.tip-tier:hover,
.tip-tier:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(47, 143, 132, 0.45);
  outline: none;
}

.tip-tier-amount {
  font-family: var(--font-display, inherit);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  color: var(--ink, #152636);
}

.tip-tier-title {
  font-weight: 600;
  color: var(--ink, #152636);
}

.tip-tier-blurb {
  font-size: 0.88rem;
  color: var(--ink-muted, #5c6f82);
  line-height: 1.4;
}

.tip-note {
  font-size: 0.92rem;
  color: var(--ink-muted, #5c6f82);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
}

.footer-links a {
  font-weight: 600;
  color: var(--ink);
}

.footer-links a:hover {
  color: var(--accent);
}
