/* BenCheck landing — conversion-focused, SEO-friendly static page */

:root {
  --ink: #0f1c2e;
  --ink-muted: #4a5d73;
  --surface: #ffffff;
  --surface-alt: #f4f7fa;
  --primary: #1e5f8a;
  --primary-dark: #164a6d;
  --accent: #e07a5f;
  --accent-hover: #c9684f;
  --success: #2a9d8f;
  --border: #dde4ec;
  --radius: 14px;
  --radius-sm: 10px;
  --radius-lg: 22px;
  --shadow: 0 12px 40px rgba(15, 28, 46, 0.1);
  --font: "DM Sans", system-ui, -apple-system, sans-serif;
  --font-display: "Fraunces", Georgia, serif;
  --max: 1120px;
  --narrow: 720px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--primary);
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 1rem;
}

h1 {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  letter-spacing: -0.01em;
}

h3 {
  font-size: 1.2rem;
}

p {
  margin: 0 0 1rem;
}

.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

.container--narrow {
  width: min(100% - 2.5rem, var(--narrow));
  margin-inline: auto;
}

.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1rem;
}

.lead {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: var(--ink-muted);
  max-width: 38rem;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.75rem;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s, background 0.15s, box-shadow 0.15s;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 20px rgba(224, 122, 95, 0.35);
}

.btn--primary:hover {
  background: var(--accent-hover);
  color: #fff;
}

.btn--secondary {
  background: var(--surface);
  color: var(--primary);
  border-color: var(--border);
}

.btn--secondary:hover {
  border-color: var(--primary);
  color: var(--primary-dark);
}

.btn--lg {
  padding: 1.1rem 2rem;
  font-size: 1.0625rem;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--primary);
  text-decoration: none;
}

.logo__mark {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--primary), var(--success));
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav a:not(.btn) {
  color: var(--ink-muted);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
}

.nav a:not(.btn):hover {
  color: var(--primary);
}

.nav__cta {
  margin-left: 0.5rem;
}

@media (max-width: 768px) {
  .nav a:not(.btn):not(.nav__cta) {
    display: none;
  }
}

/* Hero */

.hero {
  padding: 4rem 0 3rem;
  background:
    radial-gradient(ellipse 80% 60% at 70% -10%, rgba(42, 157, 143, 0.12), transparent),
    radial-gradient(ellipse 60% 50% at 10% 0%, rgba(30, 95, 138, 0.1), transparent),
    var(--surface-alt);
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

@media (max-width: 900px) {
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.hero__body {
  color: var(--ink-muted);
  max-width: 38rem;
  margin-bottom: 1rem;
}

.hero__hook {
  max-width: 38rem;
  padding: 0.85rem 1rem;
  background: rgba(224, 122, 95, 0.1);
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.98rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2rem 0 1.5rem;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.9rem;
  color: var(--ink-muted);
}

.hero__trust strong {
  display: block;
  font-size: 1.35rem;
  color: var(--ink);
  font-family: var(--font-display);
}

.hero-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 1.75rem;
  border: 1px solid var(--border);
}

.hero-card__label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-muted);
  margin-bottom: 1rem;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.check-list li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35rem;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: rgba(42, 157, 143, 0.15);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%232a9d8f'%3E%3Cpath d='M6.2 11.2 3.4 8.4l-.9.9 3.7 3.7 7.4-7.4-.9-.9z'/%3E%3C/svg%3E");
  background-size: 0.65rem;
  background-repeat: no-repeat;
  background-position: center;
}

/* Sections */

.section {
  padding: 5rem 0;
}

.section--alt {
  background: var(--surface-alt);
}

.section__header {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 3rem;
}

.section__header p {
  color: var(--ink-muted);
}

/* Service cards */

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.service-card:hover {
  box-shadow: var(--shadow);
  border-color: rgba(30, 95, 138, 0.25);
}

.service-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 1rem;
  background: rgba(30, 95, 138, 0.08);
}

.service-card p {
  font-size: 0.95rem;
  color: var(--ink-muted);
  margin: 0;
}

/* Payers */

.payer-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.payer-pill {
  padding: 0.5rem 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ink-muted);
}

/* Steps */

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  counter-reset: step;
}

@media (max-width: 768px) {
  .steps {
    grid-template-columns: 1fr;
  }
}

.step {
  position: relative;
  padding-top: 0.5rem;
}

.step::before {
  counter-increment: step;
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.step p {
  font-size: 0.95rem;
  color: var(--ink-muted);
  margin: 0;
}

/* Features grid */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media (max-width: 700px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }
}

.feature {
  display: flex;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.feature__icon {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 10px;
  background: rgba(42, 157, 143, 0.12);
  color: var(--success);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.feature p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--ink-muted);
}

/* FAQ */

.faq-list {
  max-width: var(--narrow);
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item summary {
  padding: 1.25rem 0;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 1.25rem;
  color: var(--primary);
  flex-shrink: 0;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item__body {
  padding: 0 0 1.25rem;
  color: var(--ink-muted);
  font-size: 0.95rem;
}

/* CTA band */

.cta-band {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: #fff;
  text-align: center;
}

.cta-band h2 {
  color: #fff;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 32rem;
  margin: 0 auto 2rem;
}

.cta-band .btn--primary {
  background: #fff;
  color: var(--primary-dark);
  box-shadow: none;
}

.cta-band .btn--primary:hover {
  background: var(--surface-alt);
}

/* Logo strip */

.logo-strip {
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}

.logo-strip__label {
  text-align: center;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 1rem;
}

.logo-strip__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.logo-strip__item {
  min-width: 140px;
  padding: 0.75rem 1.25rem;
  text-align: center;
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  color: var(--ink-muted);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* Anchor / cost-per-lead */

.anchor-block {
  text-align: center;
}

.anchor-block h2 {
  margin-bottom: 1.25rem;
}

.anchor-block p {
  color: var(--ink-muted);
  font-size: 1.05rem;
}

/* ROI calculator */

.roi-card {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  box-shadow: var(--shadow);
  max-width: 56rem;
  margin: 0 auto;
}

@media (max-width: 800px) {
  .roi-card {
    grid-template-columns: 1fr;
  }
}

.roi-sliders {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.roi-slider {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.roi-slider__label {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink);
}

.roi-slider__label strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--primary);
}

.roi-slider input[type="range"] {
  width: 100%;
  accent-color: var(--primary);
  cursor: pointer;
}

.roi-slider__range {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--ink-muted);
}

.roi-results {
  background: var(--surface-alt);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.75rem;
}

.roi-results__title {
  font-weight: 700;
  margin: 0;
  color: var(--ink);
}

.roi-results p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.98rem;
}

.roi-results strong {
  color: var(--ink);
}

/* Billing toggle */

.billing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  margin: 0 auto 2.5rem;
}

.billing-toggle__label {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink-muted);
}

.billing-toggle__label--active {
  color: var(--ink);
  font-weight: 600;
}

.billing-toggle__save {
  display: inline-block;
  margin-left: 0.35rem;
  padding: 0.15rem 0.5rem;
  background: rgba(42, 157, 143, 0.15);
  color: var(--success);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-radius: 999px;
  vertical-align: middle;
}

.billing-toggle__switch {
  position: relative;
  width: 52px;
  height: 30px;
  border: none;
  border-radius: 999px;
  background: var(--primary);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s;
}

.billing-toggle__switch[aria-checked="false"] {
  background: var(--border);
}

.billing-toggle__knob {
  position: absolute;
  top: 3px;
  left: 25px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 6px rgba(15, 28, 46, 0.2);
  transition: left 0.2s;
}

.billing-toggle__switch[aria-checked="false"] .billing-toggle__knob {
  left: 3px;
}

/* Pricing */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 52rem;
  margin: 0 auto;
}

.pricing-grid--tiers {
  grid-template-columns: repeat(4, 1fr);
  max-width: 100%;
  align-items: stretch;
}

@media (max-width: 1100px) {
  .pricing-grid--tiers {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .pricing-grid--tiers {
    grid-template-columns: 1fr;
  }
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem 1.5rem;
  box-shadow: none;
}

.pricing-card--featured {
  border: 2px solid var(--accent);
  background: linear-gradient(180deg, rgba(224, 122, 95, 0.06) 0%, var(--surface) 40%);
  box-shadow: var(--shadow);
}

.pricing-card__badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.25rem 0.75rem;
  background: var(--accent);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 999px;
  white-space: nowrap;
}

.pricing-card h3 {
  margin-bottom: 0.25rem;
}

.pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin: 0.5rem 0 0.15rem;
}

.pricing-card__amount {
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
}

.pricing-card__period {
  font-size: 1rem;
  color: var(--ink-muted);
}

.pricing-card__billed {
  font-size: 0.8rem;
  color: var(--ink-muted);
  margin-bottom: 0.75rem;
}

.pricing-card__tagline {
  font-size: 0.9rem;
  color: var(--ink-muted);
  margin-bottom: 0.75rem;
  min-height: 2.8em;
}

.pricing-card__checks {
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.35rem;
}

.pricing-card__setup {
  font-size: 0.875rem;
  color: var(--ink-muted);
  margin-bottom: 1.25rem;
}

.pricing-card .check-list {
  margin-bottom: 1.5rem;
  flex: 1;
}

.pricing-card .check-list li {
  font-size: 0.88rem;
}

.pricing-card .btn {
  width: 100%;
  margin-top: auto;
}

.pricing-note {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: var(--ink-muted);
}

/* Setup + guarantee */

.setup-list {
  margin: 1.25rem 0 1.5rem;
  max-width: 28rem;
}

.setup-highlight {
  margin-top: 1.25rem;
  padding: 1rem 1.25rem;
  background: rgba(42, 157, 143, 0.1);
  border-radius: var(--radius);
  font-weight: 600;
  color: var(--ink);
}

.guarantee-card {
  max-width: 40rem;
  margin: 0 auto;
  text-align: center;
  padding: 2.5rem 2rem;
  background: var(--surface-alt);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.guarantee-card__promise {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ink);
  padding: 1rem 1.25rem;
  background: var(--surface);
  border-radius: var(--radius);
  border-left: 3px solid var(--success);
  text-align: left;
}

/* CTA band extras */

.cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.btn--ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
  color: #fff;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.trust-badge {
  padding: 0.4rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

.cta-band__fine {
  font-size: 0.875rem;
  margin: 0 auto !important;
  opacity: 0.85;
}

/* Sticky mobile CTA */

.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--border);
  box-shadow: 0 -8px 24px rgba(15, 28, 46, 0.08);
}

.sticky-cta .btn {
  width: 100%;
}

@media (max-width: 768px) {
  .sticky-cta:not([hidden]) {
    display: block;
  }

  body {
    padding-bottom: 4.5rem;
  }
}

/* Contact form (Web3Forms) */

.contact-section {
  padding: 5rem 0;
  background: linear-gradient(180deg, var(--surface-alt) 0%, var(--surface) 100%);
}

.contact-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 4vw, 2.25rem);
  box-shadow: var(--shadow);
}

.contact-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

@media (max-width: 640px) {
  .contact-form__grid {
    grid-template-columns: 1fr;
  }
}

.contact-form__field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.contact-form__field--full {
  margin-bottom: 1.5rem;
}

.contact-form__label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ink);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 1rem;
  color: var(--ink);
  background: var(--surface);
  transition: border-color 0.15s, box-shadow 0.15s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(30, 95, 138, 0.12);
}

.contact-form textarea {
  resize: vertical;
  min-height: 6rem;
}

.contact-form__submit {
  width: 100%;
}

.contact-form__fine {
  margin: 1rem 0 0;
  font-size: 0.8rem;
  color: var(--ink-muted);
  text-align: center;
}

.contact-form__honeypot {
  display: none !important;
}

.thank-you {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 3rem 0;
  background: var(--surface-alt);
  text-align: center;
}

.thank-you__inner .lead {
  margin-inline: auto;
}

/* Audience tags */

.audience-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.audience-pill {
  padding: 0.6rem 1.1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink);
}

/* Demo embed */

.demo-section {
  padding: 4rem 0 5rem;
  background: var(--surface-alt);
}

.demo-wrap {
  max-width: var(--narrow);
  margin: 0 auto;
}

.demo-frame {
  width: 100%;
  height: 380px;
  min-height: 0;
  border: 0;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  background: var(--surface);
}

/* Intake embed - legacy alias */
.intake-section {
  padding: 4rem 0 5rem;
  background: var(--surface-alt);
}

.intake-wrap {
  max-width: var(--narrow);
  margin: 0 auto;
}

.intake-frame {
  width: 100%;
  height: 380px;
  min-height: 0;
  border: 0;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  background: var(--surface);
}

/* Footer */

.site-footer {
  padding: 3rem 0 2rem;
  border-top: 1px solid var(--border);
  font-size: 0.875rem;
  color: var(--ink-muted);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (max-width: 700px) {
  .site-footer__grid {
    grid-template-columns: 1fr;
  }
}

.site-footer a {
  color: var(--ink-muted);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--primary);
}

.site-footer__fine {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
  line-height: 1.5;
}
