:root {
  color-scheme: light;
  --font-sans-local: "Avenir Next", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --font-display-local: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
}

body {
  background:
    radial-gradient(circle at top left, rgba(166, 29, 45, 0.08), transparent 30%),
    radial-gradient(circle at 85% 15%, rgba(245, 158, 11, 0.08), transparent 18%),
    linear-gradient(180deg, #fbf8f5 0%, #ffffff 30%, #fbf8f5 100%);
}

.text-balance {
  text-wrap: balance;
}

.grain {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.55)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'%3E%3Cg fill='%23d6c6b2' fill-opacity='0.18'%3E%3Ccircle cx='22' cy='26' r='1.6'/%3E%3Ccircle cx='82' cy='72' r='1.3'/%3E%3Ccircle cx='146' cy='34' r='1.2'/%3E%3Ccircle cx='128' cy='132' r='1.5'/%3E%3Ccircle cx='44' cy='142' r='1.4'/%3E%3C/g%3E%3C/svg%3E");
}

::selection {
  background: rgba(166, 29, 45, 0.15);
  color: #4a0912;
}

.legal-prose h2 {
  margin-top: 2.5rem;
  font-family: var(--font-display-local);
  font-size: 1.7rem;
  line-height: 1.2;
  color: #0f172a;
}

.legal-prose p,
.legal-prose li {
  margin-top: 1rem;
  font-size: 1rem;
  line-height: 1.9;
  color: #475569;
}

.legal-prose ul {
  margin-top: 1rem;
  padding-left: 1.25rem;
  list-style: disc;
}

.legal-prose a {
  color: #a61d2d;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-prose strong {
  color: #0f172a;
}

.pricing-card {
  position: relative;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
}

.pricing-card::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0));
  content: "";
  pointer-events: none;
}

.pricing-card > * {
  position: relative;
  z-index: 1;
}

.pricing-card--featured::before {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0));
}

.pricing-card--featured {
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.14), transparent 28%),
    linear-gradient(145deg, #7f1223 0%, #a61d2d 48%, #be123c 100%);
  border-color: #7f1223;
  box-shadow:
    0 22px 60px rgba(74, 9, 18, 0.26),
    0 10px 24px rgba(74, 9, 18, 0.18);
}

.pricing-featured-panel {
  background: rgba(255, 255, 255, 0.12);
}

.hero-glow {
  box-shadow:
    0 30px 80px rgba(166, 29, 45, 0.12),
    0 8px 18px rgba(15, 23, 42, 0.06);
}

.stripe-placeholder {
  position: relative;
  overflow: hidden;
}

.stripe-placeholder::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 241, 242, 0.9), rgba(255, 255, 255, 0));
  transform: translateX(-100%);
  animation: stripe-placeholder-shimmer 2.8s linear infinite;
  content: "";
}

@keyframes stripe-placeholder-shimmer {
  100% {
    transform: translateX(100%);
  }
}

.report-kicker {
  background: linear-gradient(180deg, #fff6f6 0%, #fff 100%);
}

.report-article {
  background:
    radial-gradient(circle at top right, rgba(166, 29, 45, 0.05), transparent 24%),
    #fff;
}

.report-logo-band {
  border-bottom: 1px solid #e2e8f0;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.16), transparent 26%),
    linear-gradient(135deg, #7f1223 0%, #a61d2d 55%, #be123c 100%);
}

.report-prose p {
  font-size: 1.15rem;
  line-height: 1.95;
  color: #334155;
}

.report-prose strong {
  color: #0f172a;
}

.report-reference a {
  color: #a61d2d;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.report-ping {
  position: relative;
}

.report-ping::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 84px;
  height: 84px;
  border-radius: 9999px;
  background: rgba(166, 29, 45, 0.18);
  transform: translate(-50%, -50%);
  animation: report-ping 2.5s cubic-bezier(0, 0, 0.2, 1) infinite;
  pointer-events: none;
}

@keyframes report-ping {
  0% {
    transform: translate(-50%, -50%) scale(0.55);
    opacity: 1;
  }

  100% {
    transform: translate(-50%, -50%) scale(2.4);
    opacity: 0;
  }
}
