/* Synrows theme — extends Pico CSS (vendor/pico.min.css) */

:root {
  --synrows-glow: rgba(34, 211, 238, 0.14);
  --synrows-border: rgba(255, 255, 255, 0.08);
  --section-space: clamp(3rem, 8vw, 5rem);
  --page-gutter: clamp(1.5rem, 5vw, 2.75rem);
  --content-max: 68rem;
  --pico-font-size: 93.75%;
  --pico-typography-spacing-vertical: 0.875rem;
}

html {
  scroll-behavior: smooth;
}

body.modal-open {
  overflow: hidden;
}

/* ── Page shell — consistent gutters in header, main, footer ── */
.container {
  width: 100%;
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: var(--page-gutter);
}

main {
  overflow-x: clip;
}

/* ── Header ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--synrows-border);
  background: color-mix(in srgb, var(--pico-background-color) 88%, transparent);
  backdrop-filter: blur(12px);
  padding-block: 0.65rem;
}

.site-header nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0;
  flex-wrap: nowrap;
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  flex: 0 0 auto;
  flex-shrink: 0;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--pico-color);
  text-decoration: none;
  white-space: nowrap;
}

.site-brand img {
  border-radius: 8px;
  width: 28px;
  height: 28px;
}

.site-nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem 1.25rem;
  flex: 1 1 auto;
  justify-content: center;
  min-width: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav-links a {
  color: var(--pico-muted-color);
  font-size: 0.9rem;
  text-decoration: none;
}

.site-nav-links a:hover {
  color: var(--pico-primary);
}

.site-nav-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex: 0 0 auto;
  flex-shrink: 0;
  min-width: max-content;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.9rem;
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.2;
  border-radius: var(--pico-border-radius);
  background: var(--pico-primary, #0ea5e9);
  color: var(--pico-primary-inverse, #0b1220);
  text-decoration: none;
  white-space: nowrap;
  margin-bottom: 0;
  flex-shrink: 0;
  min-height: 2rem;
  border: none;
  box-shadow: none;
}

.nav-cta:hover {
  color: var(--pico-primary-inverse, #0b1220);
  opacity: 0.92;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  min-width: 2.25rem;
  min-height: 2.25rem;
  padding: 0;
  margin: 0;
  border: 1px solid var(--synrows-border);
  border-radius: var(--pico-border-radius);
  background: color-mix(in srgb, var(--pico-background-color) 70%, transparent);
  color: var(--pico-color, #e2e8f0);
  cursor: pointer;
  flex-shrink: 0;
}

.nav-toggle-icon {
  display: block;
  width: 1.15rem;
  height: 1.15rem;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  pointer-events: none;
}

.nav-toggle-icon[hidden] {
  display: none;
}

.nav-mobile-cta {
  display: none;
}

@media (max-width: 768px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-cta {
    display: none;
  }

  .nav-mobile-cta {
    display: list-item;
  }

  .nav-mobile-cta a {
    font-weight: 600;
    color: var(--pico-primary);
  }

  .site-nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    padding: 0.75rem var(--page-gutter) 1rem;
    background: var(--pico-background-color);
    border-bottom: 1px solid var(--synrows-border);
  }

  .site-header nav.is-open .site-nav-links {
    display: flex;
  }

  .site-header nav {
    position: relative;
    flex-wrap: wrap;
  }
}

/* ── Sections ── */
.page-section {
  padding-block: var(--section-space);
}

.page-section.alt {
  background: color-mix(in srgb, var(--pico-card-background-color) 55%, transparent);
  border-block: 1px solid var(--synrows-border);
}

.section-head {
  text-align: center;
  max-width: 42rem;
  margin-inline: auto;
  margin-bottom: 2.5rem;
}

.section-head h2 {
  font-size: 1.35rem;
}

.section-head p {
  margin-bottom: 0;
  color: var(--pico-muted-color);
  font-size: 0.92rem;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pico-primary);
  margin-bottom: 0.5rem;
}

/* ── Hero ── */
.hero-section {
  padding-block: clamp(2.5rem, 6vw, 4.5rem) var(--section-space);
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, var(--synrows-glow), transparent),
    var(--pico-background-color);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
}

.hero-copy h1 {
  font-size: clamp(1.65rem, 3.8vw, 2.5rem);
  line-height: 1.08;
  margin-bottom: 1rem;
}

.hero-copy .lead {
  font-size: 0.95rem;
  color: var(--pico-muted-color);
  max-width: 38ch;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--synrows-border);
  font-size: 0.82rem;
  color: var(--pico-muted-color);
  margin-bottom: 1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.hero-actions a[role='button'] {
  margin-bottom: 0;
}

.hero-shot {
  margin: 0;
  border-radius: calc(var(--pico-border-radius) * 1.5);
  overflow: hidden;
  border: 1px solid var(--synrows-border);
  box-shadow:
    0 0 0 1px color-mix(in srgb, var(--pico-primary) 12%, transparent),
    0 28px 80px rgba(0, 0, 0, 0.45);
}

.hero-shot img {
  display: block;
  width: 100%;
  height: auto;
}

/* ── Layout grids ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

@media (max-width: 900px) {
  .features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Feature cards ── */
.feature-card {
  height: 100%;
  margin-bottom: 0;
  padding: 1.35rem;
  border-radius: calc(var(--pico-border-radius) * 1.1);
  background: var(--pico-card-background-color);
  border: 1px solid var(--synrows-border);
  transition: border-color 0.2s, transform 0.2s;
}

.feature-card:hover {
  border-color: color-mix(in srgb, var(--pico-primary) 35%, transparent);
  transform: translateY(-2px);
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 10px;
  background: color-mix(in srgb, var(--pico-primary) 15%, transparent);
  color: var(--pico-primary);
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
}

.feature-card h3 {
  margin-bottom: 0.4rem;
  font-size: 1rem;
}

.feature-card p {
  margin-bottom: 0;
  color: var(--pico-muted-color);
  font-size: 0.92rem;
}

/* ── Workflow steps ── */
.steps-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.75rem;
  counter-reset: step;
}

.steps-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem 1.15rem;
  border: 1px solid var(--synrows-border);
  border-radius: var(--pico-border-radius);
  background: var(--pico-card-background-color);
  margin-bottom: 0;
}

.steps-list li::before {
  counter-increment: step;
  content: counter(step);
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: color-mix(in srgb, var(--pico-primary) 18%, transparent);
  color: var(--pico-primary);
  font-weight: 700;
  font-size: 0.85rem;
}

/* ── Compare table ── */
.compare-table-wrap {
  margin-inline: auto;
  overflow-x: auto;
  border: 1px solid var(--synrows-border);
  border-radius: calc(var(--pico-border-radius) * 1.1);
  background: var(--pico-card-background-color);
}

.compare-table {
  width: 100%;
  min-width: 40rem;
  font-size: 0.84rem;
  border-collapse: collapse;
}

.compare-table th,
.compare-table td {
  padding: 0.7rem 0.9rem;
  border-bottom: 1px solid var(--synrows-border);
  text-align: left;
  vertical-align: top;
}

.compare-table thead th {
  background: color-mix(in srgb, var(--pico-primary) 10%, transparent);
  font-weight: 600;
  font-size: 0.82rem;
  white-space: nowrap;
}

.compare-table thead th:first-child {
  color: var(--pico-muted-color);
}

.compare-table tbody th[scope='row'] {
  font-weight: 500;
  color: var(--pico-muted-color);
  background: color-mix(in srgb, var(--pico-card-background-color) 60%, transparent);
  white-space: nowrap;
}

.compare-table tbody td {
  color: var(--pico-color);
}

.compare-table tbody tr:last-child th,
.compare-table tbody tr:last-child td {
  border-bottom: none;
}

.compare-table .compare-yes {
  color: var(--pico-primary);
}

.compare-table .compare-partial {
  color: var(--pico-muted-color);
}

.compare-table .compare-no {
  color: color-mix(in srgb, var(--pico-muted-color) 65%, transparent);
}

/* ── Pricing ── */
.pricing-trial-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1rem 1.35rem;
  margin-bottom: 1rem;
  border: 1px solid var(--synrows-border);
  border-radius: calc(var(--pico-border-radius) * 1.1);
  background: var(--pico-card-background-color);
}

.pricing-trial-copy h3 {
  margin: 0 0 0.2rem;
  font-size: 1rem;
}

.pricing-trial-copy p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--pico-muted-color);
}

.pricing-trial-strip a[role='button'] {
  margin-bottom: 0;
  white-space: nowrap;
}

.launch-banner {
  margin-bottom: 1rem;
  padding: 0.75rem 1rem;
  border-radius: calc(var(--pico-border-radius) * 1.1);
  border: 1px solid color-mix(in srgb, var(--pico-primary) 35%, transparent);
  background: color-mix(in srgb, var(--pico-primary) 12%, transparent);
  font-size: 0.88rem;
}

.launch-banner[hidden] {
  display: none !important;
}

.price-launch {
  font-weight: 700;
}

.price-list,
.pricing-price-was {
  font-size: 0.85em;
  color: var(--pico-muted-color);
  text-decoration: line-through;
  margin-left: 0.35rem;
  font-weight: 400;
}

.pricing-duo {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1rem;
  align-items: stretch;
  margin-bottom: 1rem;
}

.pricing-duo-plus {
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
}

.pricing-duo-plus span {
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 1px solid var(--synrows-border);
  background: var(--pico-card-background-color);
  font-size: 1.35rem;
  font-weight: 300;
  line-height: 1;
  color: var(--pico-muted-color);
}

.pricing-bundle-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding: 1.35rem 1.5rem;
  margin-bottom: 2rem;
  border: 1px solid color-mix(in srgb, var(--pico-primary) 45%, transparent);
  border-radius: calc(var(--pico-border-radius) * 1.1);
  background: color-mix(in srgb, var(--pico-primary) 8%, var(--pico-card-background-color));
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
}

.pricing-bundle-copy {
  flex: 1;
  min-width: min(100%, 18rem);
}

.pricing-bundle-copy h3 {
  margin: 0.35rem 0 0;
  font-size: 1.15rem;
}

.pricing-bundle-copy .pricing-badge {
  position: static;
  display: inline-block;
  margin-bottom: 0;
}

.pricing-bundle-copy .pricing-price {
  margin-top: 0.15rem;
}

.pricing-bundle-copy .pricing-period {
  margin-bottom: 0;
}

.pricing-bundle-bar > button {
  margin-bottom: 0;
  white-space: nowrap;
}

.pricing-card-cloud .checkout-actions {
  flex-direction: row;
}

.pricing-card-cloud .checkout-actions button {
  flex: 1;
  min-width: 0;
}

.plan-compare-wrap {
  margin-bottom: 2rem;
}

.plan-compare-heading {
  text-align: center;
  font-size: 1.05rem;
  font-weight: 600;
  margin: 0 0 1rem;
}

.plan-compare-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--synrows-border);
  border-radius: calc(var(--pico-border-radius) * 1.1);
  background: var(--pico-card-background-color);
}

.plan-compare {
  width: 100%;
  min-width: 28rem;
  font-size: 0.84rem;
  border-collapse: collapse;
}

.plan-compare th,
.plan-compare td {
  padding: 0.7rem 0.9rem;
  border-bottom: 1px solid var(--synrows-border);
  text-align: left;
  vertical-align: middle;
}

.plan-compare thead th {
  background: color-mix(in srgb, var(--pico-primary) 10%, transparent);
  font-weight: 600;
  font-size: 0.82rem;
  white-space: nowrap;
}

.plan-compare thead th:first-child {
  color: var(--pico-muted-color);
}

.plan-compare tbody th[scope='row'] {
  font-weight: 500;
  color: var(--pico-muted-color);
  background: color-mix(in srgb, var(--pico-card-background-color) 60%, transparent);
}

.plan-compare tbody td {
  color: var(--pico-color);
  text-align: center;
  width: 7rem;
}

.plan-compare .compare-yes {
  color: var(--pico-primary);
  font-weight: 600;
}

.plan-compare .compare-partial {
  color: var(--pico-muted-color);
  font-style: italic;
}

.plan-compare tbody tr:last-child th,
.plan-compare tbody tr:last-child td {
  border-bottom: none;
}

.plan-compare-section th {
  background: color-mix(in srgb, var(--pico-primary) 14%, transparent);
  font-weight: 700;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--pico-primary);
  text-align: left;
  padding-top: 0.85rem;
  padding-bottom: 0.85rem;
}

.plan-compare-section-tag {
  font-weight: 600;
  text-transform: none;
  letter-spacing: normal;
  font-size: 0.72rem;
  color: var(--pico-muted-color);
  margin-left: 0.35rem;
}

.plan-compare-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  flex-wrap: wrap;
}

.plan-compare-addon {
  font-size: 0.68rem;
  font-weight: 600;
  padding: 0.15rem 0.45rem;
  border-radius: 999px;
  background: color-mix(in srgb, var(--pico-primary) 16%, transparent);
  color: var(--pico-primary);
  white-space: nowrap;
}

.plan-compare-legend {
  text-align: center;
  font-size: 0.82rem;
  color: var(--pico-muted-color);
  margin: 0.85rem 0 0;
}

@media (max-width: 720px) {
  .pricing-duo {
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }

  .pricing-duo-plus {
    padding: 0.15rem 0;
  }

  .pricing-card-cloud .checkout-actions {
    flex-direction: column;
  }

  .pricing-bundle-bar {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .pricing-bundle-bar > button {
    width: 100%;
  }
}

.pricing-card {
  height: 100%;
  margin-bottom: 0;
  padding: 1.35rem;
  display: flex;
  flex-direction: column;
  border-radius: calc(var(--pico-border-radius) * 1.1);
  background: var(--pico-card-background-color);
  border: 1px solid var(--synrows-border);
  position: relative;
}

.pricing-card.featured {
  border-color: color-mix(in srgb, var(--pico-primary) 45%, transparent);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
}

.pricing-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  background: color-mix(in srgb, var(--pico-primary) 20%, transparent);
  color: var(--pico-primary);
}

.pricing-price {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  margin: 0.25rem 0 0;
}

.pricing-price-was {
  font-size: 1rem;
  font-weight: 500;
  color: var(--pico-muted-color);
  text-decoration: line-through;
  margin-left: 0.35rem;
}

.pricing-period {
  color: var(--pico-muted-color);
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
}

.pricing-features {
  list-style: none;
  list-style-type: none;
  padding: 0;
  margin: 0 0 1.5rem;
  flex: 1;
  display: grid;
  gap: 0.55rem;
}

.pricing-features li {
  list-style: none;
  list-style-type: none;
  font-size: 0.88rem;
  color: var(--pico-muted-color);
  padding-left: 1.25rem;
  padding-inline-start: 1.25rem;
  margin-inline-start: 0;
  position: relative;
}

.pricing-features li::marker {
  content: none;
  display: none;
}

.pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--pico-primary);
  font-weight: 700;
  font-size: 0.82rem;
}

.pricing-card footer {
  margin-top: auto;
  display: grid;
  gap: 0.5rem;
}

.pricing-card footer button,
.pricing-card footer a[role='button'] {
  width: 100%;
  margin-bottom: 0;
}

/* ── Download ── */
.download-panel {
  max-width: 52rem;
  margin-inline: auto;
  text-align: center;
  padding: 2rem;
  border: 1px solid var(--synrows-border);
  border-radius: calc(var(--pico-border-radius) * 1.25);
  background: var(--pico-card-background-color);
}

.download-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-top: 1.5rem;
}

@media (max-width: 700px) {
  .download-grid {
    grid-template-columns: 1fr;
  }
}

.download-grid a[role='button'] {
  margin-bottom: 0;
}

.download-note {
  margin-top: 1rem;
  margin-bottom: 0;
  font-size: 0.88rem;
  color: var(--pico-muted-color);
}

.is-disabled,
[aria-disabled='true'] {
  opacity: 0.45;
  pointer-events: none;
}

/* ── FAQ ── */
.faq-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  max-width: 64rem;
  margin-inline: auto;
  align-items: start;
}

.faq-column {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-width: 0;
}

@media (max-width: 768px) {
  .faq-columns {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .faq-column {
    gap: 0.85rem;
  }

  .faq-column + .faq-column {
    margin-top: 0.85rem;
  }
}

.faq-column details {
  margin-bottom: 0;
  border: 1px solid var(--synrows-border);
  border-radius: calc(var(--pico-border-radius) * 1.1);
  background: var(--pico-card-background-color);
  overflow: hidden;
}

.faq-column details summary {
  font-weight: 600;
  font-size: 0.92rem;
  line-height: 1.45;
  cursor: pointer;
  padding: 1.05rem 1.2rem;
  list-style: none;
}

.faq-column details summary::-webkit-details-marker {
  display: none;
}

.faq-column details[open] summary {
  border-bottom: 1px solid var(--synrows-border);
  background: color-mix(in srgb, var(--pico-primary) 6%, transparent);
}

.faq-column details p {
  margin-bottom: 0;
  padding: 0.9rem 1.2rem 1.15rem;
  color: var(--pico-muted-color);
  font-size: 0.88rem;
  line-height: 1.55;
}

/* ── Feedback ── */
.feedback-panel {
  max-width: 36rem;
  margin-inline: auto;
  padding: 2rem;
  border: 1px solid var(--synrows-border);
  border-radius: calc(var(--pico-border-radius) * 1.25);
  background: var(--pico-card-background-color);
}

.form-status {
  margin: 0.75rem 0 0;
  font-size: 0.9rem;
}

.form-status-success {
  color: #4ade80;
}

.form-status-error {
  color: #f87171;
}

/* ── Pricing checkout ── */
.pricing-legal-panel {
  max-width: 42rem;
  margin: 2rem auto 0;
  text-align: center;
}

.pricing-note {
  color: var(--pico-muted-color);
  font-size: 0.88rem;
  margin-bottom: 0.5rem;
}

.checkout-agree {
  display: inline-flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
  cursor: pointer;
}

.checkout-agree input {
  margin-top: 0.2rem;
}

.checkout-actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.purchase-fallback-panel {
  max-width: 36rem;
  margin: 2.5rem auto 0;
  padding: 1.75rem;
  border: 1px solid var(--synrows-border);
  border-radius: calc(var(--pico-border-radius) * 1.25);
  background: color-mix(in srgb, var(--pico-card-background-color) 70%, transparent);
}

.purchase-fallback-panel h3 {
  margin-bottom: 0.35rem;
  font-size: 1.05rem;
}

.purchase-fallback-panel > p {
  color: var(--pico-muted-color);
  font-size: 0.9rem;
}

/* ── Dialog (legacy) ── */
#purchase-modal {
  max-width: 26rem;
  border: 1px solid var(--synrows-border);
  border-radius: calc(var(--pico-border-radius) * 1.25);
  padding: 1.75rem;
}

#purchase-modal::backdrop {
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
}

#purchase-modal form {
  margin-bottom: 0;
}

.dialog-note {
  font-size: 0.85rem;
  color: var(--pico-muted-color);
  margin-bottom: 0;
}

/* ── Footer ── */
.site-footer {
  padding-block: 2.5rem;
  border-top: 1px solid var(--synrows-border);
  background: color-mix(in srgb, var(--pico-card-background-color) 40%, transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  align-items: start;
}

@media (max-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer-brand {
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  list-style: none;
  list-style-type: none;
  padding: 0;
  padding-inline-start: 0;
  margin: 0;
}

.footer-links li {
  list-style: none;
  list-style-type: none;
  padding-inline-start: 0;
  margin-inline-start: 0;
}

.footer-links li::marker {
  content: none;
  display: none;
}

.footer-links a {
  color: var(--pico-muted-color);
  font-size: 0.88rem;
  text-decoration: none;
}

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

.footer-copy {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 0.82rem;
  color: var(--pico-muted-color);
}

/* ── Legal pages ── */
.legal-hero {
  padding-block: 2.5rem 1rem;
  text-align: center;
}

.legal-hero h1 {
  margin-bottom: 0.35rem;
  font-size: 1.75rem;
}

.legal-hero p {
  color: var(--pico-muted-color);
  margin-bottom: 0;
}

.legal-body {
  max-width: 42rem;
  margin-inline: auto;
  padding-bottom: 3rem;
}

.legal-body h2 {
  margin-top: 2rem;
  font-size: 1.05rem;
}

.legal-body p,
.legal-body li {
  color: var(--pico-muted-color);
}
